@charset "UTF-8";

/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 */

html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove the margin in all browsers (opinionated).
 */

body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  /* 1 */
  display: block;
}

/**
 * Add the correct display in IE 9-.
 */

audio,
canvas,
progress,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Add the correct display in IE 10-.
 * 1. Add the correct display in IE.
 */

template,
[hidden] {
  display: none;
}

/* Links
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */

a:active,
a:hover {
  outline-width: 0;
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */

b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * Add the correct font style in Android 4.3-.
 */

dfn {
  font-style: italic;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Add the correct background and color in IE 9-.
 */

mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10-.
 */

img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */

svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct margin in IE 8.
 */

figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/* Forms
   ========================================================================== */

/**
 * Change font properties to `inherit` in all browsers (opinionated).
 */

button,
input,
select,
textarea {
  font: inherit;
}

/**
 * Restore the font weight unset by the previous rule.
 */

optgroup {
  font-weight: bold;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 * 2. Show the overflow in Edge, Firefox, and IE.
 */

button,
input,
select {
  /* 2 */
  overflow: visible;
}

/**
 * Remove the margin in Safari.
 * 1. Remove the margin in Firefox and Safari.
 */

button,
input,
select,
textarea {
  /* 1 */
  margin: 0;
}

/**
 * Remove the inheritence of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritence of text transform in Firefox.
 */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Change the cursor in all browsers (opinionated).
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
}

/**
 * Restore the default cursor to disabled elements unset by the previous rule.
 */

[disabled] {
  cursor: default;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS.
 */

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
input:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the odd appearance of search inputs in Chrome and Safari.
 */

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

/**
 * Remove the inner padding and cancel buttons in Chrome on OS X and
 * Safari on OS X.
 */

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

/*!
 * Bootstrap Grid v4.0.0 (https://getbootstrap.com)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

@-ms-viewport {
  width: device-width;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*, ::after, ::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col, .no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
  -ms-flex-order: 12;
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-sm-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.333333%;
  }

  .offset-sm-2 {
    margin-left: 16.666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.333333%;
  }

  .offset-sm-5 {
    margin-left: 41.666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.333333%;
  }

  .offset-sm-8 {
    margin-left: 66.666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.333333%;
  }

  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-md-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-md-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-md-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-md-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-md-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-md-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-md-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-md-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-md-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-md-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-md-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-md-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-md-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.333333%;
  }

  .offset-md-2 {
    margin-left: 16.666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.333333%;
  }

  .offset-md-5 {
    margin-left: 41.666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.333333%;
  }

  .offset-md-8 {
    margin-left: 66.666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.333333%;
  }

  .offset-md-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-lg-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.333333%;
  }

  .offset-lg-2 {
    margin-left: 16.666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.333333%;
  }

  .offset-lg-5 {
    margin-left: 41.666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.333333%;
  }

  .offset-lg-8 {
    margin-left: 66.666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.333333%;
  }

  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-xl-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.333333%;
  }

  .offset-xl-2 {
    margin-left: 16.666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.333333%;
  }

  .offset-xl-5 {
    margin-left: 41.666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.333333%;
  }

  .offset-xl-8 {
    margin-left: 66.666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.333333%;
  }

  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

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

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

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

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

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

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.show {
  opacity: 1;
}

.collapse {
  display: none;
}

.collapse.show {
  display: block;
}

tr.collapse.show {
  display: table-row;
}

tbody.collapse.show {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  transition: height 0.35s ease;
}

.dropup,
.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 0.255em;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1000;
  display: none;
  float: right;
  min-width: 160px;
  padding: 8px 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.dropup .dropdown-menu {
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  margin-top: 0;
  margin-left: 0.125rem;
}

.dropright .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropleft .dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-toggle::before {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 4px 24px;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}

.dropdown-item.disabled, .dropdown-item:disabled {
  color: #6c757d;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

/**
* Owl Carousel v2.2.1
* Copyright 2013-2017 David Deutsch
* Licensed under  ()
*/

/*
*  Owl Carousel - Core
*/

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */

.no-js .owl-carousel {
  display: block;
}

/*
*  Owl Carousel - Animate Plugin
*/

.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

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

  100% {
    opacity: 0;
  }
}

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

  100% {
    opacity: 0;
  }
}

/*
* 	Owl Carousel - Auto Height Plugin
*/

.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
* 	Owl Carousel - Lazy Load Plugin
*/

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/*
* 	Owl Carousel - Video Plugin
*/

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("https://twebs-101-se.herokuapp.com/assets/css/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
* Owl Carousel v2.2.1
* Copyright 2013-2017 David Deutsch
* Licensed under  ()
*/

/*
*  Default theme - Owl Carousel CSS File
*/

.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] {
  -webkit-transition: all, .2s;
  transition: all, .2s;
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
  background: #ddd;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

.datepicker--cell-day.-other-month-, .datepicker--cell-year.-other-decade- {
  color: #dedede;
}

.datepicker--cell-day.-other-month-:hover, .datepicker--cell-year.-other-decade-:hover {
  color: #c5c5c5;
}

.-disabled-.-focus-.datepicker--cell-day.-other-month-, .-disabled-.-focus-.datepicker--cell-year.-other-decade- {
  color: #dedede;
}

.-selected-.datepicker--cell-day.-other-month-, .-selected-.datepicker--cell-year.-other-decade- {
  color: #fff;
  background: #a2ddf6;
}

.-selected-.-focus-.datepicker--cell-day.-other-month-, .-selected-.-focus-.datepicker--cell-year.-other-decade- {
  background: #8ad5f4;
}

.-in-range-.datepicker--cell-day.-other-month-, .-in-range-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.1);
  color: #cccccc;
}

.-in-range-.-focus-.datepicker--cell-day.-other-month-, .-in-range-.-focus-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.2);
}

.datepicker--cell-day.-other-month-:empty, .datepicker--cell-year.-other-decade-:empty {
  background: none;
  border: none;
}

/* -------------------------------------------------
    Datepicker cells
   ------------------------------------------------- */

.datepicker--cells {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.datepicker--cell {
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  position: relative;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  height: 32px;
  z-index: 1;
}

.datepicker--cell.-focus- {
  background: #f0f0f0;
}

.datepicker--cell.-current- {
  color: #4EB5E6;
}

.datepicker--cell.-current-.-focus- {
  color: #4a4a4a;
}

.datepicker--cell.-current-.-in-range- {
  color: #4EB5E6;
}

.datepicker--cell.-in-range- {
  background: rgba(92, 196, 239, 0.1);
  color: #4a4a4a;
  border-radius: 0;
}

.datepicker--cell.-in-range-.-focus- {
  background-color: rgba(92, 196, 239, 0.2);
}

.datepicker--cell.-disabled- {
  cursor: default;
  color: #aeaeae;
}

.datepicker--cell.-disabled-.-focus- {
  color: #aeaeae;
}

.datepicker--cell.-disabled-.-in-range- {
  color: #a1a1a1;
}

.datepicker--cell.-disabled-.-current-.-focus- {
  color: #aeaeae;
}

.datepicker--cell.-range-from- {
  border: 1px solid rgba(92, 196, 239, 0.5);
  background-color: rgba(92, 196, 239, 0.1);
  border-radius: 4px 0 0 4px;
}

.datepicker--cell.-range-to- {
  border: 1px solid rgba(92, 196, 239, 0.5);
  background-color: rgba(92, 196, 239, 0.1);
  border-radius: 0 4px 4px 0;
}

.datepicker--cell.-range-from-.-range-to- {
  border-radius: 4px;
}

.datepicker--cell.-selected- {
  color: #fff;
  border: none;
  background: #5cc4ef;
}

.datepicker--cell.-selected-.-current- {
  color: #fff;
  background: #5cc4ef;
}

.datepicker--cell.-selected-.-focus- {
  background: #45bced;
}

.datepicker--cell:empty {
  cursor: default;
}

.datepicker--days-names {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 8px 0 3px;
}

.datepicker--day-name {
  color: #FF9A19;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: .8em;
}

.datepicker--cell-day {
  width: 14.28571%;
}

.datepicker--cells-months {
  height: 170px;
}

.datepicker--cell-month {
  width: 33.33%;
  height: 25%;
}

.datepicker--years {
  height: 170px;
}

.datepicker--cells-years {
  height: 170px;
}

.datepicker--cell-year {
  width: 25%;
  height: 33.33%;
}

.datepicker--cell-day.-other-month-, .datepicker--cell-year.-other-decade- {
  color: #dedede;
}

.datepicker--cell-day.-other-month-:hover, .datepicker--cell-year.-other-decade-:hover {
  color: #c5c5c5;
}

.-disabled-.-focus-.datepicker--cell-day.-other-month-, .-disabled-.-focus-.datepicker--cell-year.-other-decade- {
  color: #dedede;
}

.-selected-.datepicker--cell-day.-other-month-, .-selected-.datepicker--cell-year.-other-decade- {
  color: #fff;
  background: #a2ddf6;
}

.-selected-.-focus-.datepicker--cell-day.-other-month-, .-selected-.-focus-.datepicker--cell-year.-other-decade- {
  background: #8ad5f4;
}

.-in-range-.datepicker--cell-day.-other-month-, .-in-range-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.1);
  color: #cccccc;
}

.-in-range-.-focus-.datepicker--cell-day.-other-month-, .-in-range-.-focus-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.2);
}

.datepicker--cell-day.-other-month-:empty, .datepicker--cell-year.-other-decade-:empty {
  background: none;
  border: none;
}

/* -------------------------------------------------
    Datepicker
   ------------------------------------------------- */

.datepickers-container {
  position: absolute;
  left: 0;
  top: 0;
}

@media print {
  .datepickers-container {
    display: none;
  }
}

.datepicker {
  background: #fff;
  border: 1px solid #dbdbdb;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  font-family: Tahoma, sans-serif;
  font-size: 14px;
  color: #4a4a4a;
  width: 250px;
  position: absolute;
  left: -100000px;
  opacity: 0;
  transition: opacity 0.3s ease, left 0s 0.3s, -webkit-transform 0.3s ease;
  -webkit-transition: opacity 0.3s ease, left 0s 0.3s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0.3s;
  transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0.3s, -webkit-transform 0.3s ease;
  z-index: 100;
}

.datepicker.-from-top- {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}

.datepicker.-from-right- {
  -webkit-transform: translateX(8px);
  transform: translateX(8px);
}

.datepicker.-from-bottom- {
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
}

.datepicker.-from-left- {
  -webkit-transform: translateX(-8px);
  transform: translateX(-8px);
}

.datepicker.active {
  opacity: 1;
  -webkit-transform: translate(0);
  transform: translate(0);
  transition: opacity 0.3s ease, left 0s 0s, -webkit-transform 0.3s ease;
  -webkit-transition: opacity 0.3s ease, left 0s 0s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0s;
  transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0s, -webkit-transform 0.3s ease;
}

.datepicker-inline .datepicker {
  border-color: #d7d7d7;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: static;
  left: auto;
  right: auto;
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.datepicker-inline .datepicker--pointer {
  display: none;
}

.datepicker--content {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 4px;
}

.-only-timepicker- .datepicker--content {
  display: none;
}

.datepicker--pointer {
  position: absolute;
  background: #fff;
  border-top: 1px solid #dbdbdb;
  border-right: 1px solid #dbdbdb;
  width: 10px;
  height: 10px;
  z-index: -1;
}

.-top-left- .datepicker--pointer, .-top-center- .datepicker--pointer, .-top-right- .datepicker--pointer {
  top: calc(100% - 4px);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.-right-top- .datepicker--pointer, .-right-center- .datepicker--pointer, .-right-bottom- .datepicker--pointer {
  right: calc(100% - 4px);
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

.-bottom-left- .datepicker--pointer, .-bottom-center- .datepicker--pointer, .-bottom-right- .datepicker--pointer {
  bottom: calc(100% - 4px);
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}

.-left-top- .datepicker--pointer, .-left-center- .datepicker--pointer, .-left-bottom- .datepicker--pointer {
  left: calc(100% - 4px);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.-top-left- .datepicker--pointer, .-bottom-left- .datepicker--pointer {
  left: 10px;
}

.-top-right- .datepicker--pointer, .-bottom-right- .datepicker--pointer {
  right: 10px;
}

.-top-center- .datepicker--pointer, .-bottom-center- .datepicker--pointer {
  left: calc(50% - 10px / 2);
}

.-left-top- .datepicker--pointer, .-right-top- .datepicker--pointer {
  top: 10px;
}

.-left-bottom- .datepicker--pointer, .-right-bottom- .datepicker--pointer {
  bottom: 10px;
}

.-left-center- .datepicker--pointer, .-right-center- .datepicker--pointer {
  top: calc(50% - 10px / 2);
}

.datepicker--body {
  display: none;
}

.datepicker--body.active {
  display: block;
}

.datepicker--cell-day.-other-month-, .datepicker--cell-year.-other-decade- {
  color: #dedede;
}

.datepicker--cell-day.-other-month-:hover, .datepicker--cell-year.-other-decade-:hover {
  color: #c5c5c5;
}

.-disabled-.-focus-.datepicker--cell-day.-other-month-, .-disabled-.-focus-.datepicker--cell-year.-other-decade- {
  color: #dedede;
}

.-selected-.datepicker--cell-day.-other-month-, .-selected-.datepicker--cell-year.-other-decade- {
  color: #fff;
  background: #a2ddf6;
}

.-selected-.-focus-.datepicker--cell-day.-other-month-, .-selected-.-focus-.datepicker--cell-year.-other-decade- {
  background: #8ad5f4;
}

.-in-range-.datepicker--cell-day.-other-month-, .-in-range-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.1);
  color: #cccccc;
}

.-in-range-.-focus-.datepicker--cell-day.-other-month-, .-in-range-.-focus-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.2);
}

.datepicker--cell-day.-other-month-:empty, .datepicker--cell-year.-other-decade-:empty {
  background: none;
  border: none;
}

/* -------------------------------------------------
    Navigation
   ------------------------------------------------- */

.datepicker--nav {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #efefef;
  min-height: 32px;
  padding: 4px;
}

.-only-timepicker- .datepicker--nav {
  display: none;
}

.datepicker--nav-title,
.datepicker--nav-action {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  cursor: pointer;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
}

.datepicker--nav-action {
  width: 32px;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.datepicker--nav-action:hover {
  background: #f0f0f0;
}

.datepicker--nav-action.-disabled- {
  visibility: hidden;
}

.datepicker--nav-action svg {
  width: 32px;
  height: 32px;
}

.datepicker--nav-action path {
  fill: none;
  stroke: #9c9c9c;
  stroke-width: 2px;
}

.datepicker--nav-title {
  border-radius: 4px;
  padding: 0 8px;
}

.datepicker--nav-title i {
  font-style: normal;
  color: #9c9c9c;
  margin-left: 5px;
}

.datepicker--nav-title:hover {
  background: #f0f0f0;
}

.datepicker--nav-title.-disabled- {
  cursor: default;
  background: none;
}

.datepicker--buttons {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  padding: 4px;
  border-top: 1px solid #efefef;
}

.datepicker--button {
  color: #4EB5E6;
  cursor: pointer;
  border-radius: 4px;
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  display: -ms-inline-flexbox;
  display: -webkit-inline-box;
  display: inline-flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  height: 32px;
}

.datepicker--button:hover {
  color: #4a4a4a;
  background: #f0f0f0;
}

.datepicker--cell-day.-other-month-, .datepicker--cell-year.-other-decade- {
  color: #dedede;
}

.datepicker--cell-day.-other-month-:hover, .datepicker--cell-year.-other-decade-:hover {
  color: #c5c5c5;
}

.-disabled-.-focus-.datepicker--cell-day.-other-month-, .-disabled-.-focus-.datepicker--cell-year.-other-decade- {
  color: #dedede;
}

.-selected-.datepicker--cell-day.-other-month-, .-selected-.datepicker--cell-year.-other-decade- {
  color: #fff;
  background: #a2ddf6;
}

.-selected-.-focus-.datepicker--cell-day.-other-month-, .-selected-.-focus-.datepicker--cell-year.-other-decade- {
  background: #8ad5f4;
}

.-in-range-.datepicker--cell-day.-other-month-, .-in-range-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.1);
  color: #cccccc;
}

.-in-range-.-focus-.datepicker--cell-day.-other-month-, .-in-range-.-focus-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.2);
}

.datepicker--cell-day.-other-month-:empty, .datepicker--cell-year.-other-decade-:empty {
  background: none;
  border: none;
}

/* -------------------------------------------------
    Timepicker
   ------------------------------------------------- */

.datepicker--time {
  border-top: 1px solid #efefef;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  padding: 4px;
  position: relative;
}

.datepicker--time.-am-pm- .datepicker--time-sliders {
  -ms-flex: 0 1 138px;
  -webkit-box-flex: 0;
          flex: 0 1 138px;
  max-width: 138px;
}

.-only-timepicker- .datepicker--time {
  border-top: none;
}

.datepicker--time-sliders {
  -ms-flex: 0 1 153px;
  -webkit-box-flex: 0;
          flex: 0 1 153px;
  margin-right: 10px;
  max-width: 153px;
}

.datepicker--time-label {
  display: none;
  font-size: 12px;
}

.datepicker--time-current {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  font-size: 14px;
  text-align: center;
  margin: 0 0 0 10px;
}

.datepicker--time-current-colon {
  margin: 0 2px 3px;
  line-height: 1;
}

.datepicker--time-current-hours,
.datepicker--time-current-minutes {
  line-height: 1;
  font-size: 19px;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  position: relative;
  z-index: 1;
}

.datepicker--time-current-hours:after,
.datepicker--time-current-minutes:after {
  content: '';
  background: #f0f0f0;
  border-radius: 4px;
  position: absolute;
  left: -2px;
  top: -3px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  opacity: 0;
}

.datepicker--time-current-hours.-focus-:after,
.datepicker--time-current-minutes.-focus-:after {
  opacity: 1;
}

.datepicker--time-current-ampm {
  text-transform: uppercase;
  -ms-flex-item-align: end;
      align-self: flex-end;
  color: #9c9c9c;
  margin-left: 6px;
  font-size: 11px;
  margin-bottom: 1px;
}

.datepicker--time-row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  font-size: 11px;
  height: 17px;
  background: -webkit-gradient(linear, left top, right top, from(#dedede), to(#dedede)) left 50%/100% 1px no-repeat;
  background: linear-gradient(to right, #dedede, #dedede) left 50%/100% 1px no-repeat;
}

.datepicker--time-row:first-child {
  margin-bottom: 4px;
}

.datepicker--time-row input[type='range'] {
  background: none;
  cursor: pointer;
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  height: 100%;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
}

.datepicker--time-row input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
}

.datepicker--time-row input[type='range']::-ms-tooltip {
  display: none;
}

.datepicker--time-row input[type='range']:hover::-webkit-slider-thumb {
  border-color: #b8b8b8;
}

.datepicker--time-row input[type='range']:hover::-moz-range-thumb {
  border-color: #b8b8b8;
}

.datepicker--time-row input[type='range']:hover::-ms-thumb {
  border-color: #b8b8b8;
}

.datepicker--time-row input[type='range']:focus {
  outline: none;
}

.datepicker--time-row input[type='range']:focus::-webkit-slider-thumb {
  background: #5cc4ef;
  border-color: #5cc4ef;
}

.datepicker--time-row input[type='range']:focus::-moz-range-thumb {
  background: #5cc4ef;
  border-color: #5cc4ef;
}

.datepicker--time-row input[type='range']:focus::-ms-thumb {
  background: #5cc4ef;
  border-color: #5cc4ef;
}

.datepicker--time-row input[type='range']::-webkit-slider-thumb {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid #dedede;
  background: #fff;
  cursor: pointer;
  -webkit-transition: background .2s;
  transition: background .2s;
}

.datepicker--time-row input[type='range']::-moz-range-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid #dedede;
  background: #fff;
  cursor: pointer;
  -moz-transition: background .2s;
  transition: background .2s;
}

.datepicker--time-row input[type='range']::-ms-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid #dedede;
  background: #fff;
  cursor: pointer;
  -ms-transition: background .2s;
  transition: background .2s;
}

.datepicker--time-row input[type='range']::-webkit-slider-thumb {
  margin-top: -6px;
}

.datepicker--time-row input[type='range']::-webkit-slider-runnable-track {
  border: none;
  height: 1px;
  cursor: pointer;
  color: transparent;
  background: transparent;
}

.datepicker--time-row input[type='range']::-moz-range-track {
  border: none;
  height: 1px;
  cursor: pointer;
  color: transparent;
  background: transparent;
}

.datepicker--time-row input[type='range']::-ms-track {
  border: none;
  height: 1px;
  cursor: pointer;
  color: transparent;
  background: transparent;
}

.datepicker--time-row input[type='range']::-ms-fill-lower {
  background: transparent;
}

.datepicker--time-row input[type='range']::-ms-fill-upper {
  background: transparent;
}

.datepicker--time-row span {
  padding: 0 12px;
}

.datepicker--time-icon {
  color: #9c9c9c;
  border: 1px solid;
  border-radius: 50%;
  font-size: 16px;
  position: relative;
  margin: 0 5px -1px 0;
  width: 1em;
  height: 1em;
}

.datepicker--time-icon:after, .datepicker--time-icon:before {
  content: '';
  background: currentColor;
  position: absolute;
}

.datepicker--time-icon:after {
  height: .4em;
  width: 1px;
  left: calc(50% - 1px);
  top: calc(50% + 1px);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.datepicker--time-icon:before {
  width: .4em;
  height: 1px;
  top: calc(50% + 1px);
  left: calc(50% - 1px);
}

.datepicker--cell-day.-other-month-, .datepicker--cell-year.-other-decade- {
  color: #dedede;
}

.datepicker--cell-day.-other-month-:hover, .datepicker--cell-year.-other-decade-:hover {
  color: #c5c5c5;
}

.-disabled-.-focus-.datepicker--cell-day.-other-month-, .-disabled-.-focus-.datepicker--cell-year.-other-decade- {
  color: #dedede;
}

.-selected-.datepicker--cell-day.-other-month-, .-selected-.datepicker--cell-year.-other-decade- {
  color: #fff;
  background: #a2ddf6;
}

.-selected-.-focus-.datepicker--cell-day.-other-month-, .-selected-.-focus-.datepicker--cell-year.-other-decade- {
  background: #8ad5f4;
}

.-in-range-.datepicker--cell-day.-other-month-, .-in-range-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.1);
  color: #cccccc;
}

.-in-range-.-focus-.datepicker--cell-day.-other-month-, .-in-range-.-focus-.datepicker--cell-year.-other-decade- {
  background-color: rgba(92, 196, 239, 0.2);
}

.datepicker--cell-day.-other-month-:empty, .datepicker--cell-year.-other-decade-:empty {
  background: none;
  border: none;
}

/* Version 3.4.4 */

@-webkit-keyframes plyr-progress {
  to {
    background-position: 25px 0;
  }
}

@keyframes plyr-progress {
  to {
    background-position: 25px 0;
  }
}

@-webkit-keyframes plyr-popup {
  0% {
    opacity: .5;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes plyr-popup {
  0% {
    opacity: .5;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes plyr-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes plyr-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.plyr {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  direction: ltr;
  font-family: Avenir,"Avenir Next","Helvetica Neue","Segoe UI",Helvetica,Arial,sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  line-height: 1.7;
  max-width: 100%;
  min-width: 200px;
  position: relative;
  text-shadow: none;
  -webkit-transition: -webkit-box-shadow .3s ease;
  transition: -webkit-box-shadow .3s ease;
  transition: box-shadow .3s ease;
  transition: box-shadow .3s ease, -webkit-box-shadow .3s ease;
}

.plyr audio, .plyr video {
  border-radius: inherit;
  height: auto;
  vertical-align: middle;
  width: 100%;
}

.plyr button {
  font: inherit;
  line-height: inherit;
  width: auto;
}

.plyr:focus {
  outline: 0;
}

.plyr--full-ui {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.plyr--full-ui *, .plyr--full-ui ::after, .plyr--full-ui ::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.plyr--full-ui a, .plyr--full-ui button, .plyr--full-ui input, .plyr--full-ui label {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

.plyr__badge {
  background: #4f5b5f;
  border-radius: 2px;
  color: #fff;
  font-size: 9px;
  line-height: 1;
  padding: 3px 4px;
}

.plyr--full-ui ::-webkit-media-text-track-container {
  display: none;
}

.plyr__captions {
  -webkit-animation: plyr-fade-in .3s ease;
          animation: plyr-fade-in .3s ease;
  bottom: 0;
  color: #fff;
  display: none;
  font-size: 14px;
  left: 0;
  padding: 10px;
  position: absolute;
  text-align: center;
  -webkit-transition: -webkit-transform .4s ease-in-out;
  transition: -webkit-transform .4s ease-in-out;
  transition: transform .4s ease-in-out;
  transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
  width: 100%;
}

.plyr__captions .plyr__caption {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 2px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: 185%;
  padding: .2em .5em;
  white-space: pre-wrap;
}

.plyr__captions .plyr__caption div {
  display: inline;
}

.plyr__captions span:empty {
  display: none;
}

@media (min-width: 480px) {
  .plyr__captions {
    font-size: 16px;
    padding: 20px;
  }
}

@media (min-width: 768px) {
  .plyr__captions {
    font-size: 18px;
  }
}

.plyr--captions-active .plyr__captions {
  display: block;
}

.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty) ~ .plyr__captions {
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
}

.plyr__control {
  background: 0 0;
  border: 0;
  border-radius: 3px;
  color: inherit;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: visible;
  padding: 7px;
  position: relative;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.plyr__control svg {
  display: block;
  fill: currentColor;
  height: 18px;
  pointer-events: none;
  width: 18px;
}

.plyr__control:focus {
  outline: 0;
}

.plyr__control.plyr__tab-focus {
  -webkit-box-shadow: 0 0 0 5px rgba(26, 175, 255, 0.5);
          box-shadow: 0 0 0 5px rgba(26, 175, 255, 0.5);
  outline: 0;
}

.plyr__control.plyr__control--pressed .icon--not-pressed, .plyr__control.plyr__control--pressed .label--not-pressed, .plyr__control:not(.plyr__control--pressed) .icon--pressed, .plyr__control:not(.plyr__control--pressed) .label--pressed {
  display: none;
}

.plyr--audio .plyr__control.plyr__tab-focus, .plyr--audio .plyr__control:hover, .plyr--audio .plyr__control[aria-expanded=true] {
  background: #1aafff;
  color: #fff;
}

.plyr--video .plyr__control svg {
  -webkit-filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
}

.plyr--video .plyr__control.plyr__tab-focus, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded=true] {
  background: #1aafff;
  color: #fff;
}

.plyr__control--overlaid {
  background: rgba(26, 175, 255, 0.8);
  border: 0;
  border-radius: 100%;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  color: #fff;
  display: none;
  left: 50%;
  padding: 15px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}

.plyr__control--overlaid svg {
  left: 2px;
  position: relative;
}

.plyr__control--overlaid:focus, .plyr__control--overlaid:hover {
  background: #1aafff;
}

.plyr--playing .plyr__control--overlaid {
  opacity: 0;
  visibility: hidden;
}

.plyr--full-ui.plyr--video .plyr__control--overlaid {
  display: block;
}

.plyr--full-ui ::-webkit-media-controls {
  display: none;
}

.plyr__controls {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: center;
}

.plyr__controls .plyr__menu, .plyr__controls .plyr__progress, .plyr__controls .plyr__time, .plyr__controls .plyr__volume, .plyr__controls > .plyr__control {
  margin-left: 5px;
}

.plyr__controls .plyr__menu + .plyr__control, .plyr__controls .plyr__progress + .plyr__control, .plyr__controls > .plyr__control + .plyr__control, .plyr__controls > .plyr__control + .plyr__menu {
  margin-left: 2px;
}

.plyr__controls > .plyr__control:first-child, .plyr__controls > .plyr__control:first-child + [data-plyr=pause] {
  margin-left: 0;
  margin-right: auto;
}

.plyr__controls:empty {
  display: none;
}

@media (min-width: 480px) {
  .plyr__controls .plyr__menu, .plyr__controls .plyr__progress, .plyr__controls .plyr__time, .plyr__controls .plyr__volume, .plyr__controls > .plyr__control {
    margin-left: 10px;
  }
}

.plyr--audio .plyr__controls {
  background: #fff;
  border-radius: inherit;
  color: #4f5b5f;
  padding: 10px;
}

.plyr--video .plyr__controls {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  bottom: 0;
  color: #fff;
  left: 0;
  padding: 20px 5px 5px;
  position: absolute;
  right: 0;
  -webkit-transition: opacity .4s ease-in-out,-webkit-transform .4s ease-in-out;
  transition: opacity .4s ease-in-out,-webkit-transform .4s ease-in-out;
  transition: opacity .4s ease-in-out,transform .4s ease-in-out;
  transition: opacity .4s ease-in-out,transform .4s ease-in-out,-webkit-transform .4s ease-in-out;
  z-index: 3;
}

@media (min-width: 480px) {
  .plyr--video .plyr__controls {
    padding: 35px 10px 10px;
  }
}

.plyr--video.plyr--hide-controls .plyr__controls {
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.plyr [data-plyr=airplay], .plyr [data-plyr=captions], .plyr [data-plyr=fullscreen], .plyr [data-plyr=pip] {
  display: none;
}

.plyr--airplay-supported [data-plyr=airplay], .plyr--captions-enabled [data-plyr=captions], .plyr--fullscreen-enabled [data-plyr=fullscreen], .plyr--pip-supported [data-plyr=pip] {
  display: inline-block;
}

.plyr__video-embed {
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}

.plyr__video-embed iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.plyr--full-ui .plyr__video-embed > .plyr__video-embed__container {
  padding-bottom: 240%;
  position: relative;
  -webkit-transform: translateY(-38.28125%);
          transform: translateY(-38.28125%);
}

.plyr__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.plyr__menu .plyr__control svg {
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

.plyr__menu .plyr__control[aria-expanded=true] svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.plyr__menu .plyr__control[aria-expanded=true] .plyr__tooltip {
  display: none;
}

.plyr__menu__container {
  -webkit-animation: plyr-popup .2s ease;
          animation: plyr-popup .2s ease;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  bottom: 100%;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  color: #4f5b5f;
  font-size: 16px;
  margin-bottom: 10px;
  position: absolute;
  right: -3px;
  text-align: left;
  white-space: nowrap;
  z-index: 3;
}

.plyr__menu__container > div {
  overflow: hidden;
  -webkit-transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.plyr__menu__container::after {
  border: 4px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.9);
  content: '';
  height: 0;
  position: absolute;
  right: 15px;
  top: 100%;
  width: 0;
}

.plyr__menu__container [role=menu] {
  padding: 7px;
}

.plyr__menu__container [role=menuitem], .plyr__menu__container [role=menuitemradio] {
  margin-top: 2px;
}

.plyr__menu__container [role=menuitem]:first-child, .plyr__menu__container [role=menuitemradio]:first-child {
  margin-top: 0;
}

.plyr__menu__container .plyr__control {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #4f5b5f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  padding: 4px 11px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.plyr__menu__container .plyr__control > span {
  -webkit-box-align: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.plyr__menu__container .plyr__control::after {
  border: 4px solid transparent;
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.plyr__menu__container .plyr__control--forward {
  padding-right: 28px;
}

.plyr__menu__container .plyr__control--forward::after {
  border-left-color: rgba(79, 91, 95, 0.8);
  right: 5px;
}

.plyr__menu__container .plyr__control--forward.plyr__tab-focus::after, .plyr__menu__container .plyr__control--forward:hover::after {
  border-left-color: currentColor;
}

.plyr__menu__container .plyr__control--back {
  font-weight: 500;
  margin: 7px;
  margin-bottom: 3px;
  padding-left: 28px;
  position: relative;
  width: calc(100% - 14px);
}

.plyr__menu__container .plyr__control--back::after {
  border-right-color: rgba(79, 91, 95, 0.8);
  left: 7px;
}

.plyr__menu__container .plyr__control--back::before {
  background: #b7c5cd;
  -webkit-box-shadow: 0 1px 0 #fff;
          box-shadow: 0 1px 0 #fff;
  content: '';
  height: 1px;
  left: 0;
  margin-top: 4px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
}

.plyr__menu__container .plyr__control--back.plyr__tab-focus::after, .plyr__menu__container .plyr__control--back:hover::after {
  border-right-color: currentColor;
}

.plyr__menu__container .plyr__control[role=menuitemradio] {
  padding-left: 7px;
}

.plyr__menu__container .plyr__control[role=menuitemradio]::after, .plyr__menu__container .plyr__control[role=menuitemradio]::before {
  border-radius: 100%;
}

.plyr__menu__container .plyr__control[role=menuitemradio]::before {
  background: rgba(0, 0, 0, 0.1);
  content: '';
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 16px;
  margin-right: 10px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  width: 16px;
}

.plyr__menu__container .plyr__control[role=menuitemradio]::after {
  background: #fff;
  border: 0;
  height: 6px;
  left: 12px;
  opacity: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(0);
          transform: translateY(-50%) scale(0);
  -webkit-transition: opacity .3s ease,-webkit-transform .3s ease;
  transition: opacity .3s ease,-webkit-transform .3s ease;
  transition: transform .3s ease,opacity .3s ease;
  transition: transform .3s ease,opacity .3s ease,-webkit-transform .3s ease;
  width: 6px;
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before {
  background: #1aafff;
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::after {
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}

.plyr__menu__container .plyr__control[role=menuitemradio].plyr__tab-focus::before, .plyr__menu__container .plyr__control[role=menuitemradio]:hover::before {
  background: rgba(0, 0, 0, 0.1);
}

.plyr__menu__container .plyr__menu__value {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: -5px;
  overflow: hidden;
  padding-left: 25px;
  pointer-events: none;
}

.plyr--full-ui input[type=range] {
  -webkit-appearance: none;
  background: 0 0;
  border: 0;
  border-radius: 28px;
  color: #1aafff;
  display: block;
  height: 20px;
  margin: 0;
  padding: 0;
  -webkit-transition: -webkit-box-shadow .3s ease;
  transition: -webkit-box-shadow .3s ease;
  transition: box-shadow .3s ease;
  transition: box-shadow .3s ease, -webkit-box-shadow .3s ease;
  width: 100%;
}

.plyr--full-ui input[type=range]::-webkit-slider-runnable-track {
  background: 0 0;
  border: 0;
  border-radius: 3px;
  height: 6px;
  -webkit-transition: -webkit-box-shadow .3s ease;
  transition: -webkit-box-shadow .3s ease;
  transition: box-shadow .3s ease;
  transition: box-shadow .3s ease, -webkit-box-shadow .3s ease;
  -webkit-user-select: none;
  user-select: none;
  background-image: -webkit-gradient(linear, left top, right top, from(currentColor), to(transparent));
  background-image: linear-gradient(to right, currentColor var(--value, 0), transparent var(--value, 0));
}

.plyr--full-ui input[type=range]::-webkit-slider-thumb {
  background: #fff;
  border: 0;
  border-radius: 100%;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2);
  height: 14px;
  position: relative;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  width: 14px;
  -webkit-appearance: none;
  margin-top: -4px;
}

.plyr--full-ui input[type=range]::-moz-range-track {
  background: 0 0;
  border: 0;
  border-radius: 3px;
  height: 6px;
  -moz-transition: box-shadow .3s ease;
  transition: box-shadow .3s ease;
  -moz-user-select: none;
  user-select: none;
}

.plyr--full-ui input[type=range]::-moz-range-thumb {
  background: #fff;
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2);
  height: 14px;
  position: relative;
  -moz-transition: all .2s ease;
  transition: all .2s ease;
  width: 14px;
}

.plyr--full-ui input[type=range]::-moz-range-progress {
  background: currentColor;
  border-radius: 3px;
  height: 6px;
}

.plyr--full-ui input[type=range]::-ms-track {
  background: 0 0;
  border: 0;
  border-radius: 3px;
  height: 6px;
  -ms-transition: box-shadow .3s ease;
  transition: box-shadow .3s ease;
  -ms-user-select: none;
  user-select: none;
  color: transparent;
}

.plyr--full-ui input[type=range]::-ms-fill-upper {
  background: 0 0;
  border: 0;
  border-radius: 3px;
  height: 6px;
  -ms-transition: box-shadow .3s ease;
  transition: box-shadow .3s ease;
  -ms-user-select: none;
  user-select: none;
}

.plyr--full-ui input[type=range]::-ms-fill-lower {
  background: 0 0;
  border: 0;
  border-radius: 3px;
  height: 6px;
  -ms-transition: box-shadow .3s ease;
  transition: box-shadow .3s ease;
  -ms-user-select: none;
  user-select: none;
  background: currentColor;
}

.plyr--full-ui input[type=range]::-ms-thumb {
  background: #fff;
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2);
  height: 14px;
  position: relative;
  -ms-transition: all .2s ease;
  transition: all .2s ease;
  width: 14px;
  margin-top: 0;
}

.plyr--full-ui input[type=range]::-ms-tooltip {
  display: none;
}

.plyr--full-ui input[type=range]:focus {
  outline: 0;
}

.plyr--full-ui input[type=range]::-moz-focus-outer {
  border: 0;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-webkit-slider-runnable-track {
  -webkit-box-shadow: 0 0 0 5px rgba(26, 175, 255, 0.5);
          box-shadow: 0 0 0 5px rgba(26, 175, 255, 0.5);
  outline: 0;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-moz-range-track {
  box-shadow: 0 0 0 5px rgba(26, 175, 255, 0.5);
  outline: 0;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-ms-track {
  box-shadow: 0 0 0 5px rgba(26, 175, 255, 0.5);
  outline: 0;
}

.plyr--full-ui.plyr--video input[type=range]::-webkit-slider-runnable-track {
  background-color: rgba(255, 255, 255, 0.25);
}

.plyr--full-ui.plyr--video input[type=range]::-moz-range-track {
  background-color: rgba(255, 255, 255, 0.25);
}

.plyr--full-ui.plyr--video input[type=range]::-ms-track {
  background-color: rgba(255, 255, 255, 0.25);
}

.plyr--full-ui.plyr--video input[type=range]:active::-webkit-slider-thumb {
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.plyr--full-ui.plyr--video input[type=range]:active::-moz-range-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.plyr--full-ui.plyr--video input[type=range]:active::-ms-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.plyr--full-ui.plyr--audio input[type=range]::-webkit-slider-runnable-track {
  background-color: rgba(183, 197, 205, 0.66);
}

.plyr--full-ui.plyr--audio input[type=range]::-moz-range-track {
  background-color: rgba(183, 197, 205, 0.66);
}

.plyr--full-ui.plyr--audio input[type=range]::-ms-track {
  background-color: rgba(183, 197, 205, 0.66);
}

.plyr--full-ui.plyr--audio input[type=range]:active::-webkit-slider-thumb {
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.plyr--full-ui.plyr--audio input[type=range]:active::-moz-range-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.plyr--full-ui.plyr--audio input[type=range]:active::-ms-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.plyr__poster {
  background-color: #000;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
  width: 100%;
  z-index: 1;
}

.plyr--stopped.plyr__poster-enabled .plyr__poster {
  opacity: 1;
}

.plyr__time {
  font-size: 14px;
}

.plyr__time + .plyr__time::before {
  content: '\2044';
  margin-right: 10px;
}

@media (max-width: 767px) {
  .plyr__time + .plyr__time {
    display: none;
  }
}

.plyr--video .plyr__time {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.plyr__tooltip {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  bottom: 100%;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  color: #4f5b5f;
  font-size: 14px;
  font-weight: 500;
  left: 50%;
  line-height: 1.3;
  margin-bottom: 10px;
  opacity: 0;
  padding: 5px 7.5px;
  pointer-events: none;
  position: absolute;
  -webkit-transform: translate(-50%, 10px) scale(0.8);
          transform: translate(-50%, 10px) scale(0.8);
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  -webkit-transition: opacity .2s .1s ease,-webkit-transform .2s .1s ease;
  transition: opacity .2s .1s ease,-webkit-transform .2s .1s ease;
  transition: transform .2s .1s ease,opacity .2s .1s ease;
  transition: transform .2s .1s ease,opacity .2s .1s ease,-webkit-transform .2s .1s ease;
  white-space: nowrap;
  z-index: 2;
}

.plyr__tooltip::before {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(255, 255, 255, 0.9);
  bottom: -4px;
  content: '';
  height: 0;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr .plyr__control.plyr__tab-focus .plyr__tooltip, .plyr .plyr__control:hover .plyr__tooltip, .plyr__tooltip--visible {
  opacity: 1;
  -webkit-transform: translate(-50%, 0) scale(1);
          transform: translate(-50%, 0) scale(1);
}

.plyr .plyr__control:hover .plyr__tooltip {
  z-index: 3;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip, .plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip {
  left: 0;
  -webkit-transform: translate(0, 10px) scale(0.8);
          transform: translate(0, 10px) scale(0.8);
  -webkit-transform-origin: 0 100%;
          transform-origin: 0 100%;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip::before, .plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip::before {
  left: 16px;
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip {
  left: auto;
  right: 0;
  -webkit-transform: translate(0, 10px) scale(0.8);
          transform: translate(0, 10px) scale(0.8);
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip::before {
  left: auto;
  right: 16px;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip--visible, .plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip--visible, .plyr__controls > .plyr__control:first-child + .plyr__control.plyr__tab-focus .plyr__tooltip, .plyr__controls > .plyr__control:first-child + .plyr__control:hover .plyr__tooltip, .plyr__controls > .plyr__control:first-child.plyr__tab-focus .plyr__tooltip, .plyr__controls > .plyr__control:first-child:hover .plyr__tooltip, .plyr__controls > .plyr__control:last-child .plyr__tooltip--visible, .plyr__controls > .plyr__control:last-child.plyr__tab-focus .plyr__tooltip, .plyr__controls > .plyr__control:last-child:hover .plyr__tooltip {
  -webkit-transform: translate(0, 0) scale(1);
          transform: translate(0, 0) scale(1);
}

.plyr--video {
  background: #000;
  overflow: hidden;
}

.plyr--video.plyr--menu-open {
  overflow: visible;
}

.plyr__video-wrapper {
  background: #000;
  border-radius: inherit;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.plyr__progress {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  left: 7px;
  margin-right: 14px;
  position: relative;
}

.plyr__progress input[type=range], .plyr__progress__buffer {
  margin-left: -7px;
  margin-right: -7px;
  width: calc(100% + 14px);
}

.plyr__progress input[type=range] {
  position: relative;
  z-index: 2;
}

.plyr__progress .plyr__tooltip {
  font-size: 14px;
  left: 0;
}

.plyr__progress__buffer {
  -webkit-appearance: none;
  background: 0 0;
  border: 0;
  border-radius: 100px;
  height: 6px;
  left: 0;
  margin-top: -3px;
  padding: 0;
  position: absolute;
  top: 50%;
}

.plyr__progress__buffer::-webkit-progress-bar {
  background: 0 0;
  -webkit-transition: width .2s ease;
  transition: width .2s ease;
}

.plyr__progress__buffer::-webkit-progress-value {
  background: currentColor;
  border-radius: 100px;
  min-width: 6px;
}

.plyr__progress__buffer::-moz-progress-bar {
  background: currentColor;
  border-radius: 100px;
  min-width: 6px;
  -moz-transition: width .2s ease;
  transition: width .2s ease;
}

.plyr__progress__buffer::-ms-fill {
  border-radius: 100px;
  -ms-transition: width .2s ease;
  transition: width .2s ease;
}

.plyr--video .plyr__progress__buffer {
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  color: rgba(255, 255, 255, 0.25);
}

.plyr--audio .plyr__progress__buffer {
  color: rgba(183, 197, 205, 0.66);
}

.plyr--loading .plyr__progress__buffer {
  -webkit-animation: plyr-progress 1s linear infinite;
          animation: plyr-progress 1s linear infinite;
  background-image: linear-gradient(-45deg, rgba(47, 52, 61, 0.6) 25%, transparent 25%, transparent 50%, rgba(47, 52, 61, 0.6) 50%, rgba(47, 52, 61, 0.6) 75%, transparent 75%, transparent);
  background-repeat: repeat-x;
  background-size: 25px 25px;
  color: transparent;
}

.plyr--video.plyr--loading .plyr__progress__buffer {
  background-color: rgba(255, 255, 255, 0.25);
}

.plyr--audio.plyr--loading .plyr__progress__buffer {
  background-color: rgba(183, 197, 205, 0.66);
}

.plyr__volume {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}

.plyr__volume input[type=range] {
  margin-left: 5px;
  position: relative;
  z-index: 2;
}

@media (min-width: 480px) {
  .plyr__volume {
    max-width: 90px;
  }
}

@media (min-width: 768px) {
  .plyr__volume {
    max-width: 110px;
  }
}

.plyr--is-ios .plyr__volume {
  display: none !important;
}

.plyr--is-ios.plyr--vimeo [data-plyr=mute] {
  display: none !important;
}

.plyr:-webkit-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-ms-fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-webkit-full-screen video {
  height: 100%;
}

.plyr:-ms-fullscreen video {
  height: 100%;
}

.plyr:fullscreen video {
  height: 100%;
}

.plyr:-webkit-full-screen .plyr__video-wrapper {
  height: 100%;
  width: 100%;
}

.plyr:-ms-fullscreen .plyr__video-wrapper {
  height: 100%;
  width: 100%;
}

.plyr:fullscreen .plyr__video-wrapper {
  height: 100%;
  width: 100%;
}

.plyr:-webkit-full-screen .plyr__video-embed {
  overflow: visible;
}

.plyr:-ms-fullscreen .plyr__video-embed {
  overflow: visible;
}

.plyr:fullscreen .plyr__video-embed {
  overflow: visible;
}

.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.plyr:-ms-fullscreen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-webkit-full-screen.plyr--hide-controls {
  cursor: none;
}

.plyr:-ms-fullscreen.plyr--hide-controls {
  cursor: none;
}

.plyr:fullscreen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-webkit-full-screen .plyr__captions {
    font-size: 21px;
  }

  .plyr:-ms-fullscreen .plyr__captions {
    font-size: 21px;
  }

  .plyr:fullscreen .plyr__captions {
    font-size: 21px;
  }
}

.plyr:-webkit-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-webkit-full-screen video {
  height: 100%;
}

.plyr:-webkit-full-screen .plyr__video-wrapper {
  height: 100%;
  width: 100%;
}

.plyr:-webkit-full-screen .plyr__video-embed {
  overflow: visible;
}

.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-webkit-full-screen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-webkit-full-screen .plyr__captions {
    font-size: 21px;
  }
}

.plyr:-moz-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-moz-full-screen video {
  height: 100%;
}

.plyr:-moz-full-screen .plyr__video-wrapper {
  height: 100%;
  width: 100%;
}

.plyr:-moz-full-screen .plyr__video-embed {
  overflow: visible;
}

.plyr:-moz-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-moz-full-screen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-moz-full-screen .plyr__captions {
    font-size: 21px;
  }
}

.plyr:-ms-fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-ms-fullscreen video {
  height: 100%;
}

.plyr:-ms-fullscreen .plyr__video-wrapper {
  height: 100%;
  width: 100%;
}

.plyr:-ms-fullscreen .plyr__video-embed {
  overflow: visible;
}

.plyr:-ms-fullscreen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-ms-fullscreen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-ms-fullscreen .plyr__captions {
    font-size: 21px;
  }
}

.plyr--fullscreen-fallback {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000000;
}

.plyr--fullscreen-fallback video {
  height: 100%;
}

.plyr--fullscreen-fallback .plyr__video-wrapper {
  height: 100%;
  width: 100%;
}

.plyr--fullscreen-fallback .plyr__video-embed {
  overflow: visible;
}

.plyr--fullscreen-fallback.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr--fullscreen-fallback.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr--fullscreen-fallback .plyr__captions {
    font-size: 21px;
  }
}

.plyr__ads {
  border-radius: inherit;
  bottom: 0;
  cursor: pointer;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.plyr__ads > div, .plyr__ads > div iframe {
  height: 100%;
  position: absolute;
  width: 100%;
}

.plyr__ads::after {
  background: rgba(47, 52, 61, 0.8);
  border-radius: 2px;
  bottom: 10px;
  color: #fff;
  content: attr(data-badge-text);
  font-size: 11px;
  padding: 2px 6px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  z-index: 3;
}

.plyr__ads::after:empty {
  display: none;
}

.plyr__cues {
  background: currentColor;
  display: block;
  height: 6px;
  left: 0;
  margin: -3px 0 0;
  opacity: .8;
  position: absolute;
  top: 50%;
  width: 3px;
  z-index: 3;
}

.plyr--no-transition {
  -webkit-transition: none !important;
  transition: none !important;
}

.plyr__sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  border: 0 !important;
  height: 1px !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.plyr [hidden] {
  display: none !important;
}

.uppy-Root {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: left;
  position: relative;
  color: #333;
}

.uppy-Root *, .uppy-Root :after, .uppy-Root :before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.uppy-Root [hidden] {
  display: none;
}

.UppyIcon {
  max-width: 100%;
  max-height: 100%;
  fill: currentColor;
  display: inline-block;
  overflow: hidden;
}

.UppyIcon--svg-baseline {
  bottom: -.125em;
  position: relative;
}

.uppy-u-reset {
  -webkit-appearance: none;
  line-height: 1;
  padding: 0;
  border: 0;
  color: inherit;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  background: none;
  border: medium none currentColor;
  border-collapse: separate;
  -o-border-image: none;
     border-image: none;
  border-radius: 0;
  border-spacing: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  clear: none;
  cursor: auto;
  display: inline;
  empty-cells: show;
  float: none;
  font-family: inherit;
  font-size: inherit;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  font-stretch: normal;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  left: auto;
  letter-spacing: normal;
  list-style: none;
  margin: 0;
  max-height: none;
  max-width: none;
  min-height: 0;
  min-width: 0;
  opacity: 1;
  outline: medium none invert;
  overflow: visible;
  overflow-x: visible;
  overflow-y: visible;
  text-align: left;
  text-decoration: none;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  top: auto;
  -webkit-transform: none;
          transform: none;
  -webkit-transform-origin: 50% 50% 0;
          transform-origin: 50% 50% 0;
  -webkit-transform-style: flat;
          transform-style: flat;
  -webkit-transition: none 0s ease 0s;
  transition: none 0s ease 0s;
  unicode-bidi: normal;
  vertical-align: baseline;
  visibility: visible;
  white-space: normal;
  z-index: auto;
}

.uppy-c-textInput {
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.5;
  padding: 6px 8px;
  background-color: #fff;
}

.uppy-size--md .uppy-c-textInput {
  padding: 8px 10px;
}

.uppy-c-textInput:focus {
  border-color: rgba(34, 117, 215, 0.6);
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.15);
          box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.15);
}

.uppy-c-btn {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  font-family: inherit;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.uppy-c-btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.uppy-c-btn::-moz-focus-inner {
  border: 0;
}

.uppy-c-btn-primary {
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 4px;
  background-color: #2275d7;
  color: #fff;
}

.uppy-size--md .uppy-c-btn-primary {
  padding: 13px 22px;
}

.uppy-c-btn-primary:hover {
  background-color: #1b5dab;
}

.uppy-c-btn-primary:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.4);
          box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.4);
}

.uppy-c-btn-link {
  font-size: 14px;
  line-height: 1;
  padding: 10px 15px;
  border-radius: 4px;
  background-color: transparent;
  color: #525252;
}

.uppy-size--md .uppy-c-btn-link {
  padding: 13px 18px;
}

.uppy-c-btn-link:hover {
  color: #333;
}

.uppy-c-btn-link:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.25);
          box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.25);
}

.uppy-c-btn--small {
  font-size: .9em;
  padding: 7px 16px;
  border-radius: 2px;
}

.uppy-size--md .uppy-c-btn--small {
  padding: 8px 10px;
  border-radius: 2px;
}

.uppy-Informer {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: all .25s ease-in;
  transition: all .25s ease-in;
  z-index: 1005;
}

.uppy-Informer[aria-hidden=true] {
  opacity: 0;
  -webkit-transform: translateY(350%);
          transform: translateY(350%);
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
  z-index: -1000;
}

.uppy-Informer p {
  display: inline-block;
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
  padding: 6px 15px;
  background-color: #757575;
  color: #fff;
  border-radius: 18px;
  max-width: 90%;
}

.uppy-size--md .uppy-Informer p {
  font-size: 14px;
  line-height: 1.3;
  max-width: 500px;
  padding: 10px 20px;
}

.uppy-Informer span {
  line-height: 12px;
  width: 13px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
  color: #525252;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  top: -1px;
  left: 3px;
  font-size: 10px;
  margin-left: -1px;
}

.uppy-Informer span:hover {
  cursor: help;
}

.uppy-Informer span:after {
  line-height: 1.3;
  word-wrap: break-word;
}

.uppy-Root [aria-label][role~=tooltip] {
  position: relative;
}

.uppy-Root [aria-label][role~=tooltip]:after, .uppy-Root [aria-label][role~=tooltip]:before {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all var(--microtip-transition-duration, 0.18s) var(--microtip-transition-easing, ease-in-out) var(--microtip-transition-delay, 0s);
  transition: all var(--microtip-transition-duration, 0.18s) var(--microtip-transition-easing, ease-in-out) var(--microtip-transition-delay, 0s);
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 10;
  -webkit-transform-origin: top;
          transform-origin: top;
}

.uppy-Root [aria-label][role~=tooltip]:before {
  background-size: 100% auto !important;
  content: "";
}

.uppy-Root [aria-label][role~=tooltip]:after {
  background: rgba(18, 18, 18, 0.9);
  border-radius: 4px;
  color: #fff;
  content: attr(aria-label);
  font-size: var(--microtip-font-size, 13px);
  font-weight: var(--microtip-font-weight, normal);
  text-transform: var(--microtip-text-transform, none);
  padding: .5em 1em;
  white-space: nowrap;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.uppy-Root [aria-label][role~=tooltip]:focus:after, .uppy-Root [aria-label][role~=tooltip]:focus:before, .uppy-Root [aria-label][role~=tooltip]:hover:after, .uppy-Root [aria-label][role~=tooltip]:hover:before {
  opacity: 1;
  pointer-events: auto;
}

.uppy-Root [role~=tooltip][data-microtip-position|=top]:before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='12'%3E%3Cpath fill='rgba(17, 17, 17, 0.9)' d='M2.658 0h32.004c-6 0-11.627 12.002-16.002 12.002C14.285 12.002 8.594 0 2.658 0z'/%3E%3C/svg%3E") no-repeat;
  height: 6px;
  width: 18px;
  margin-bottom: 5px;
}

.uppy-Root [role~=tooltip][data-microtip-position|=top]:after {
  margin-bottom: 11px;
}

.uppy-Root [role~=tooltip][data-microtip-position|=top]:before {
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
  bottom: 100%;
  left: 50%;
}

.uppy-Root [role~=tooltip][data-microtip-position|=top]:hover:before {
  -webkit-transform: translate3d(-50%, -5px, 0);
          transform: translate3d(-50%, -5px, 0);
}

.uppy-Root [role~=tooltip][data-microtip-position|=top]:after {
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
  bottom: 100%;
  left: 50%;
}

.uppy-Root [role~=tooltip][data-microtip-position=top]:hover:after {
  -webkit-transform: translate3d(-50%, -5px, 0);
          transform: translate3d(-50%, -5px, 0);
}

.uppy-Root [role~=tooltip][data-microtip-position=top-left]:after {
  -webkit-transform: translate3d(calc(-100% + 16px), 0, 0);
          transform: translate3d(calc(-100% + 16px), 0, 0);
  bottom: 100%;
}

.uppy-Root [role~=tooltip][data-microtip-position=top-left]:hover:after {
  -webkit-transform: translate3d(calc(-100% + 16px), -5px, 0);
          transform: translate3d(calc(-100% + 16px), -5px, 0);
}

.uppy-Root [role~=tooltip][data-microtip-position=top-right]:after {
  -webkit-transform: translate3d(calc(0% + -16px), 0, 0);
          transform: translate3d(calc(0% + -16px), 0, 0);
  bottom: 100%;
}

.uppy-Root [role~=tooltip][data-microtip-position=top-right]:hover:after {
  -webkit-transform: translate3d(calc(0% + -16px), -5px, 0);
          transform: translate3d(calc(0% + -16px), -5px, 0);
}

.uppy-Root [role~=tooltip][data-microtip-position|=bottom]:before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='12'%3E%3Cpath fill='rgba(17, 17, 17, 0.9)' d='M33.342 12H1.338c6 0 11.627-12.002 16.002-12.002C21.715-.002 27.406 12 33.342 12z'/%3E%3C/svg%3E") no-repeat;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}

.uppy-Root [role~=tooltip][data-microtip-position|=bottom]:after {
  margin-top: 11px;
}

.uppy-Root [role~=tooltip][data-microtip-position|=bottom]:before {
  -webkit-transform: translate3d(-50%, -10px, 0);
          transform: translate3d(-50%, -10px, 0);
  bottom: auto;
  left: 50%;
  top: 100%;
}

.uppy-Root [role~=tooltip][data-microtip-position|=bottom]:hover:before {
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
}

.uppy-Root [role~=tooltip][data-microtip-position|=bottom]:after {
  -webkit-transform: translate3d(-50%, -10px, 0);
          transform: translate3d(-50%, -10px, 0);
  top: 100%;
  left: 50%;
}

.uppy-Root [role~=tooltip][data-microtip-position=bottom]:hover:after {
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
}

.uppy-Root [role~=tooltip][data-microtip-position=bottom-left]:after {
  -webkit-transform: translate3d(calc(-100% + 16px), -10px, 0);
          transform: translate3d(calc(-100% + 16px), -10px, 0);
  top: 100%;
}

.uppy-Root [role~=tooltip][data-microtip-position=bottom-left]:hover:after {
  -webkit-transform: translate3d(calc(-100% + 16px), 0, 0);
          transform: translate3d(calc(-100% + 16px), 0, 0);
}

.uppy-Root [role~=tooltip][data-microtip-position=bottom-right]:after {
  -webkit-transform: translate3d(calc(0% + -16px), -10px, 0);
          transform: translate3d(calc(0% + -16px), -10px, 0);
  top: 100%;
}

.uppy-Root [role~=tooltip][data-microtip-position=bottom-right]:hover:after {
  -webkit-transform: translate3d(calc(0% + -16px), 0, 0);
          transform: translate3d(calc(0% + -16px), 0, 0);
}

.uppy-Root [role~=tooltip][data-microtip-position=left]:after, .uppy-Root [role~=tooltip][data-microtip-position=left]:before {
  bottom: auto;
  left: auto;
  right: 100%;
  top: 50%;
  -webkit-transform: translate3d(10px, -50%, 0);
          transform: translate3d(10px, -50%, 0);
}

.uppy-Root [role~=tooltip][data-microtip-position=left]:before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='36'%3E%3Cpath fill='rgba(17, 17, 17, 0.9)' d='M0 33.342V1.338c0 6 12.002 11.627 12.002 16.002C12.002 21.715 0 27.406 0 33.342z'/%3E%3C/svg%3E") no-repeat;
  height: 18px;
  width: 6px;
  margin-right: 5px;
  margin-bottom: 0;
}

.uppy-Root [role~=tooltip][data-microtip-position=left]:after {
  margin-right: 11px;
}

.uppy-Root [role~=tooltip][data-microtip-position=left]:hover:after, .uppy-Root [role~=tooltip][data-microtip-position=left]:hover:before {
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}

.uppy-Root [role~=tooltip][data-microtip-position=right]:after, .uppy-Root [role~=tooltip][data-microtip-position=right]:before {
  bottom: auto;
  left: 100%;
  top: 50%;
  -webkit-transform: translate3d(-10px, -50%, 0);
          transform: translate3d(-10px, -50%, 0);
}

.uppy-Root [role~=tooltip][data-microtip-position=right]:before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='36'%3E%3Cpath fill='rgba(17, 17, 17, 0.9)' d='M12 2.658v32.004c0-6-12.002-11.627-12.002-16.002C-.002 14.285 12 8.594 12 2.658z'/%3E%3C/svg%3E") no-repeat;
  height: 18px;
  width: 6px;
  margin-bottom: 0;
  margin-left: 5px;
}

.uppy-Root [role~=tooltip][data-microtip-position=right]:after {
  margin-left: 11px;
}

.uppy-Root [role~=tooltip][data-microtip-position=right]:hover:after, .uppy-Root [role~=tooltip][data-microtip-position=right]:hover:before {
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}

.uppy-Root [role~=tooltip][data-microtip-size=small]:after {
  white-space: normal;
  width: 80px;
}

.uppy-Root [role~=tooltip][data-microtip-size=medium]:after {
  white-space: normal;
  width: 150px;
}

.uppy-Root [role~=tooltip][data-microtip-size=large]:after {
  white-space: normal;
  width: 260px;
}

.uppy-StatusBar {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  position: relative;
  height: 40px;
  line-height: 40px;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  background-color: #fff;
  z-index: 1001;
  -webkit-transition: height .2s;
  transition: height .2s;
}

.uppy-size--md .uppy-StatusBar {
  height: 46px;
}

.uppy-StatusBar:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #eaeaea;
}

.uppy-StatusBar[aria-hidden=true] {
  overflow-y: hidden;
  height: 0;
}

.uppy-StatusBar.is-complete .uppy-StatusBar-progress {
  background-color: #1bb240;
}

.uppy-StatusBar.is-error .uppy-StatusBar-progress {
  background-color: #e32437;
}

.uppy-StatusBar.is-complete .uppy-StatusBar-statusIndicator {
  color: #1bb240;
}

.uppy-StatusBar.is-error .uppy-StatusBar-statusIndicator {
  color: #e32437;
}

.uppy-StatusBar:not([aria-hidden=true]).is-waiting {
  background-color: #fff;
  height: 65px;
  border-top: 1px solid #eaeaea;
}

.uppy-StatusBar-progress {
  background-color: #2275d7;
  height: 2px;
  position: absolute;
  z-index: 1001;
  -webkit-transition: background-color,width .3s ease-out;
  transition: background-color,width .3s ease-out;
}

.uppy-StatusBar-progress.is-indeterminate {
  background-size: 64px 64px;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.3) 25%, transparent 0, transparent 50%, rgba(0, 0, 0, 0.3) 0, rgba(0, 0, 0, 0.3) 75%, transparent 0, transparent);
  -webkit-animation: uppy-StatusBar-ProgressStripes 1s linear infinite;
          animation: uppy-StatusBar-ProgressStripes 1s linear infinite;
}

@-webkit-keyframes uppy-StatusBar-ProgressStripes {
  0% {
    background-position: 0 0;
  }

  to {
    background-position: 64px 0;
  }
}

@keyframes uppy-StatusBar-ProgressStripes {
  0% {
    background-position: 0 0;
  }

  to {
    background-position: 64px 0;
  }
}

.uppy-StatusBar.is-postprocessing .uppy-StatusBar-progress, .uppy-StatusBar.is-preprocessing .uppy-StatusBar-progress {
  background-color: #f6a623;
}

.uppy-StatusBar.is-waiting .uppy-StatusBar-progress {
  display: none;
}

.uppy-StatusBar-content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
  z-index: 1002;
  padding-left: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #333;
  height: 100%;
}

.uppy-size--md .uppy-StatusBar-content {
  padding-left: 15px;
}

.uppy-StatusBar-status {
  line-height: 1.4;
  font-weight: 400;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  max-width: 170px;
  overflow-x: hidden;
  padding-right: .3em;
}

.uppy-size--md .uppy-StatusBar-status {
  max-width: 400px;
}

.uppy-StatusBar-statusPrimary {
  font-weight: 500;
}

.uppy-StatusBar-statusSecondary {
  margin-top: 1px;
  font-size: 11px;
  line-height: 1.2;
  display: inline-block;
  color: #757575;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow-x: hidden;
}

.uppy-StatusBar-statusSecondaryHint {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  line-height: 1;
}

.uppy-size--md .uppy-StatusBar-statusSecondaryHint {
  margin-right: 8px;
}

.uppy-StatusBar-statusIndicator {
  position: relative;
  top: 1px;
  color: #525252;
  margin-right: 7px;
}

.uppy-StatusBar-statusIndicator svg {
  vertical-align: text-bottom;
}

.uppy-StatusBar-actions {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  z-index: 1004;
}

.uppy-StatusBar.is-waiting .uppy-StatusBar-actions {
  width: 100%;
  position: static;
  padding: 0 15px;
  background-color: #fafafa;
}

.uppy-StatusBar-actionCircleBtn {
  line-height: 1;
  cursor: pointer;
  padding: 3px;
  opacity: .9;
}

.uppy-StatusBar-actionCircleBtn:hover {
  opacity: 1;
}

.uppy-StatusBar-actionCircleBtn svg {
  vertical-align: bottom;
}

.uppy-StatusBar-actionBtn {
  display: inline-block;
  vertical-align: middle;
  font-size: 10px;
  line-height: inherit;
  color: #2275d7;
}

.uppy-size--md .uppy-StatusBar-actionBtn {
  font-size: 11px;
}

.uppy-StatusBar-actionBtn--retry {
  height: 16px;
  border-radius: 8px;
  margin-right: 6px;
  background-color: #ff4b23;
  line-height: 1;
  color: #fff;
  padding: 1px 6px 3px 18px;
  position: relative;
}

.uppy-StatusBar-actionBtn--retry:hover {
  background-color: #f92d00;
}

.uppy-StatusBar-actionBtn--retry svg {
  position: absolute;
  top: 3px;
  left: 6px;
}

.uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload {
  font-size: 14px;
  width: 100%;
  padding: 15px 10px;
  color: #fff;
  background-color: #1bb240;
  line-height: 1;
}

.uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload:hover {
  background-color: #148630;
}

.uppy-size--md .uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload {
  padding: 13px 22px;
  width: auto;
}

.uppy-StatusBar:not(.is-waiting) .uppy-StatusBar-actionBtn--upload {
  background-color: transparent;
  color: #2275d7;
}

.uppy-StatusBar-details {
  line-height: 12px;
  width: 13px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  background-color: #939393;
  border-radius: 50%;
  position: relative;
  top: 0;
  left: 2px;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  cursor: help;
}

.uppy-StatusBar-details:after {
  line-height: 1.3;
  word-wrap: break-word;
}

.uppy-StatusBar-spinner {
  -webkit-animation-name: uppy-StatusBar-spinnerAnimation;
          animation-name: uppy-StatusBar-spinnerAnimation;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  margin-right: 10px;
  fill: #2275d7;
}

.uppy-StatusBar.is-postprocessing .uppy-StatusBar-spinner, .uppy-StatusBar.is-preprocessing .uppy-StatusBar-spinner {
  fill: #f6a623;
}

@-webkit-keyframes uppy-StatusBar-spinnerAnimation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes uppy-StatusBar-spinnerAnimation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

.uppy-DashboardContent-panelBody {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
}

.uppy-Provider-auth, .uppy-Provider-empty, .uppy-Provider-error, .uppy-Provider-loading {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-flow: column wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-flow: column wrap;
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  color: #939393;
}

.uppy-Provider-empty {
  color: #939393;
}

.uppy-Provider-authIcon svg {
  width: 100px;
  height: 75px;
  margin-bottom: 15px;
}

.uppy-Provider-authTitle {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 30px;
  padding: 0 15px;
  max-width: 500px;
  text-align: center;
  color: #757575;
}

.uppy-size--md .uppy-Provider-authTitle {
  font-size: 20px;
}

.uppy-Provider-breadcrumbs {
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  color: #525252;
  font-size: 12px;
  margin-bottom: 10px;
  text-align: left;
}

.uppy-size--md .uppy-Provider-breadcrumbs {
  margin-bottom: 0;
}

.uppy-Provider-breadcrumbsIcon {
  display: inline-block;
  color: #525252;
  vertical-align: bottom;
  margin-right: 8px;
  line-height: 1;
}

.uppy-Provider-breadcrumbsIcon svg {
  width: 13px;
  height: 13px;
  fill: #525252;
}

.uppy-Provider-breadcrumbs button {
  display: inline-block;
  line-height: inherit;
}

.uppy-Provider-breadcrumbs button:hover {
  text-decoration: underline;
  cursor: pointer;
}

.uppy-ProviderBrowser {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  font-size: 14px;
  font-weight: 400;
  height: 100%;
}

.uppy-ProviderBrowser-user {
  margin: 0 8px 0 0;
  font-weight: 500;
  color: #333;
}

.uppy-ProviderBrowser-user:after {
  content: "\00B7";
  position: relative;
  left: 4px;
  color: #939393;
  font-weight: 400;
}

.uppy-ProviderBrowser-header {
  z-index: 1001;
  border-bottom: 1px solid #eaeaea;
  position: relative;
}

.uppy-ProviderBrowser-headerBar {
  padding: 12px 15px;
  background-color: #fafafa;
  z-index: 1001;
  color: #757575;
  line-height: 1.4;
  font-size: 12px;
}

.uppy-size--md .uppy-ProviderBrowser-headerBar {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  padding: 12px 15px;
}

.uppy-ProviderBrowser-headerBar--simple {
  text-align: center;
  display: block;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
}

.uppy-ProviderBrowser-headerBar--simple .uppy-Provider-breadcrumbsWrap {
  -ms-flex: none;
  -webkit-box-flex: 0;
          flex: none;
  display: inline-block;
  vertical-align: middle;
}

.uppy-ProviderBrowser-search {
  width: 100%;
  background-color: #fff;
  position: relative;
  height: 30px;
  margin-top: 10px;
  margin-bottom: 5px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

.uppy-ProviderBrowser-searchIcon {
  position: absolute;
  width: 12px;
  height: 12px;
  left: 16px;
  z-index: 1002;
  color: #bbb;
}

.uppy-ProviderBrowser-searchInput {
  width: 100%;
  height: 30px;
  background-color: transparent;
  outline: 0;
  font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif;
  font-size: 12px;
  line-height: 1.4;
  border: 0;
  margin: 0 8px;
  padding-left: 27px;
  z-index: 1001;
  border-radius: 4px;
}

.uppy-ProviderBrowser-searchInput:focus {
  outline: 0;
  background-color: #f4f4f4;
}

.uppy-ProviderBrowser-searchClose {
  position: absolute;
  width: 22px;
  height: 22px;
  padding: 6px;
  right: 12px;
  top: 4px;
  z-index: 1002;
  color: #939393;
  cursor: pointer;
}

.uppy-ProviderBrowser-searchClose:hover {
  color: #757575;
}

.uppy-ProviderBrowser-searchClose svg {
  vertical-align: text-top;
}

.uppy-ProviderBrowser-searchInput::-ms-input-placeholder {
  color: #939393;
  opacity: 1;
}

.uppy-ProviderBrowser-searchInput::-webkit-input-placeholder {
  color: #939393;
  opacity: 1;
}

.uppy-ProviderBrowser-searchInput::-moz-placeholder {
  color: #939393;
  opacity: 1;
}

.uppy-ProviderBrowser-searchInput:-ms-input-placeholder {
  color: #939393;
  opacity: 1;
}

.uppy-ProviderBrowser-searchInput::placeholder {
  color: #939393;
  opacity: 1;
}

.uppy-ProviderBrowser-userLogout {
  cursor: pointer;
  line-height: inherit;
  color: #2275d7;
}

.uppy-ProviderBrowser-userLogout:hover {
  text-decoration: underline;
}

.uppy-ProviderBrowser-body {
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  position: relative;
}

.uppy-ProviderBrowser-list {
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-spacing: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.uppy-ProviderBrowserItem-inner {
  cursor: pointer;
  font-weight: 500;
  font-size: 13px;
}

.uppy-ProviderBrowser-viewType--list {
  background-color: #fff;
}

.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  padding: 7px 15px;
  margin: 0;
}

.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-checkbox {
  vertical-align: middle;
}

.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-checkbox label:before {
  border-color: #cfcfcf;
}

.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-checkbox input:checked + label:before {
  border-color: #2275d7;
}

.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-inner {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-align: left;
  line-height: 1.4;
}

.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-inner img, .uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-inner svg {
  vertical-align: middle;
  margin-right: 8px;
  max-width: 20px;
  max-height: 20px;
}

.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowser-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  padding: 6px;
}

.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowser-list:after {
  content: "";
  -ms-flex: auto;
  -webkit-box-flex: 1;
          flex: auto;
}

.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem {
  display: inline-block;
  width: 50%;
  position: relative;
  margin: 0;
}

.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem:before {
  content: "";
  padding-top: 100%;
  display: block;
}

.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-inner {
  border-radius: 4px;
  overflow: hidden;
  position: absolute;
  top: 7px;
  left: 7px;
  right: 7px;
  bottom: 7px;
  text-align: center;
}

.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-inner:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.9);
          box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.9);
}

.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem img, .uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem--selected img, .uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem--selected svg {
  opacity: .85;
}

.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem--noPreview .uppy-ProviderBrowserItem-inner {
  background-color: rgba(148, 148, 148, 0.3);
}

.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem--noPreview svg {
  fill: rgba(0, 0, 0, 0.7);
  width: 30%;
  height: 30%;
}

.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-checkbox {
  position: absolute;
  width: 26px;
  height: 26px;
  top: 16px;
  right: 16px;
  display: block;
  margin-right: 0;
  z-index: 1002;
}

.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-checkbox label:before {
  background-color: #2275d7;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  top: 0;
}

.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-checkbox label:after {
  width: 12px;
  height: 7px;
  left: 7px;
  top: 8px;
}

.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-checkbox input + label {
  opacity: 0;
}

.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-checkbox input:checked + label {
  opacity: 1;
}

.uppy-size--md .uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem {
  width: 33.3333%;
}

.uppy-size--lg .uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem {
  width: 25%;
}

.uppy-ProviderBrowserItem-checkbox input {
  opacity: 0;
}

.uppy-ProviderBrowserItem-checkbox {
  position: relative;
  display: inline-block;
  margin-right: 15px;
}

.uppy-ProviderBrowserItem-checkbox label {
  display: block;
}

.uppy-ProviderBrowserItem-checkbox label:after, .uppy-ProviderBrowserItem-checkbox label:before {
  position: absolute;
  cursor: pointer;
}

.uppy-ProviderBrowserItem-checkbox label:before {
  content: "";
  display: inline-block;
  height: 17px;
  width: 17px;
  top: 2px;
  border: 1px solid #2275d7;
  background-color: #fff;
  border-radius: 3px;
}

.uppy-ProviderBrowserItem-checkbox label:after {
  content: "";
  display: inline-block;
  height: 5px;
  width: 9px;
  left: 4px;
  top: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.uppy-ProviderBrowserItem-checkbox input + label:after {
  content: none;
}

.uppy-ProviderBrowserItem-checkbox input:checked + label:after {
  content: "";
}

.uppy-ProviderBrowserItem-checkbox input:checked + label:before {
  background-color: #2275d7;
}

.uppy-ProviderBrowserItem-checkbox input:focus + label:before {
  outline: 5px auto #3b99fc;
}

.uppy-ProviderBrowser-footer {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  background: #fff;
  height: 65px;
  border-top: 1px solid #eaeaea;
  padding: 0 15px;
}

.uppy-ProviderBrowser-footer button {
  margin-right: 8px;
}

.uppy-transition-slideDownUp-enter {
  opacity: .01;
  -webkit-transform: translate3d(0, -105%, 0);
          transform: translate3d(0, -105%, 0);
  -webkit-transition: opacity .25s ease-in-out,-webkit-transform .25s ease-in-out;
  transition: opacity .25s ease-in-out,-webkit-transform .25s ease-in-out;
  transition: transform .25s ease-in-out,opacity .25s ease-in-out;
  transition: transform .25s ease-in-out,opacity .25s ease-in-out,-webkit-transform .25s ease-in-out;
}

.uppy-transition-slideDownUp-enter.uppy-transition-slideDownUp-enter-active {
  opacity: 1;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.uppy-transition-slideDownUp-leave {
  opacity: 1;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: opacity .25s ease-in-out,-webkit-transform .25s ease-in-out;
  transition: opacity .25s ease-in-out,-webkit-transform .25s ease-in-out;
  transition: transform .25s ease-in-out,opacity .25s ease-in-out;
  transition: transform .25s ease-in-out,opacity .25s ease-in-out,-webkit-transform .25s ease-in-out;
}

.uppy-transition-slideDownUp-leave.uppy-transition-slideDownUp-leave-active {
  opacity: .01;
  -webkit-transform: translate3d(0, -105%, 0);
          transform: translate3d(0, -105%, 0);
}

.uppy-Dashboard--modal {
  z-index: 1001;
}

.uppy-Dashboard--modal[aria-hidden=true] {
  display: none;
}

@-webkit-keyframes uppy-Dashboard-fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes uppy-Dashboard-fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes uppy-Dashboard-fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes uppy-Dashboard-fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes uppy-Dashboard-slideDownAndFadeIn {
  0% {
    -webkit-transform: translate3d(-50%, -70%, 0);
            transform: translate3d(-50%, -70%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);
    opacity: 1;
  }
}

@keyframes uppy-Dashboard-slideDownAndFadeIn {
  0% {
    -webkit-transform: translate3d(-50%, -70%, 0);
            transform: translate3d(-50%, -70%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);
    opacity: 1;
  }
}

@-webkit-keyframes uppy-Dashboard-slideDownAndFadeIn--small {
  0% {
    -webkit-transform: translate3d(0, -20%, 0);
            transform: translate3d(0, -20%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}

@keyframes uppy-Dashboard-slideDownAndFadeIn--small {
  0% {
    -webkit-transform: translate3d(0, -20%, 0);
            transform: translate3d(0, -20%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}

@-webkit-keyframes uppy-Dashboard-slideUpFadeOut {
  0% {
    -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-50%, -70%, 0);
            transform: translate3d(-50%, -70%, 0);
    opacity: 0;
  }
}

@keyframes uppy-Dashboard-slideUpFadeOut {
  0% {
    -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-50%, -70%, 0);
            transform: translate3d(-50%, -70%, 0);
    opacity: 0;
  }
}

@-webkit-keyframes uppy-Dashboard-slideUpFadeOut--small {
  0% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }

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

@keyframes uppy-Dashboard-slideUpFadeOut--small {
  0% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }

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

.uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose > .uppy-Dashboard-inner {
  -webkit-animation: uppy-Dashboard-slideDownAndFadeIn--small 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: uppy-Dashboard-slideDownAndFadeIn--small 0.3s cubic-bezier(0, 0, 0.2, 1);
}

@media only screen and (min-width: 820px) {
  .uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose > .uppy-Dashboard-inner {
    -webkit-animation: uppy-Dashboard-slideDownAndFadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
            animation: uppy-Dashboard-slideDownAndFadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  }
}

.uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose > .uppy-Dashboard-overlay {
  -webkit-animation: uppy-Dashboard-fadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: uppy-Dashboard-fadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose.uppy-Dashboard--isClosing > .uppy-Dashboard-inner {
  -webkit-animation: uppy-Dashboard-slideUpFadeOut--small 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: uppy-Dashboard-slideUpFadeOut--small 0.3s cubic-bezier(0, 0, 0.2, 1);
}

@media only screen and (min-width: 820px) {
  .uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose.uppy-Dashboard--isClosing > .uppy-Dashboard-inner {
    -webkit-animation: uppy-Dashboard-slideUpFadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
            animation: uppy-Dashboard-slideUpFadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  }
}

.uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose.uppy-Dashboard--isClosing > .uppy-Dashboard-overlay {
  -webkit-animation: uppy-Dashboard-fadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: uppy-Dashboard-fadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.uppy-Dashboard-isFixed {
  overflow: hidden;
  height: 100vh;
}

.uppy-Dashboard--modal .uppy-Dashboard-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
}

.uppy-Dashboard-inner {
  position: relative;
  background-color: #fafafa;
  max-width: 100%;
  max-height: 100%;
  min-height: 450px;
  outline: none;
  border: 1px solid #eaeaea;
  border-radius: 5px;
}

.uppy-size--md .uppy-Dashboard-inner {
  min-height: auto;
}

@media only screen and (min-width: 820px) {
  .uppy-Dashboard-inner {
    width: 750px;
    height: 550px;
  }
}

.uppy-Dashboard--modal .uppy-Dashboard-inner {
  z-index: 1002;
}

.uppy-Dashboard-innerWrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  opacity: 0;
}

.uppy-Dashboard--isInnerWrapVisible .uppy-Dashboard-innerWrap {
  opacity: 1;
}

.uppy-Dashboard--modal .uppy-Dashboard-inner {
  position: fixed;
  top: 64px;
  left: 15px;
  right: 15px;
  bottom: 64px;
  border: none;
}

@media only screen and (min-width: 820px) {
  .uppy-Dashboard--modal .uppy-Dashboard-inner {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-box-shadow: 0 5px 15px 4px rgba(0, 0, 0, 0.15);
            box-shadow: 0 5px 15px 4px rgba(0, 0, 0, 0.15);
  }
}

.uppy-Dashboard-close {
  display: block;
  position: absolute;
  top: -33px;
  right: -2px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
  font-size: 27px;
  z-index: 1005;
}

@media only screen and (min-width: 820px) {
  .uppy-Dashboard-close {
    font-size: 35px;
    top: -10px;
    right: -35px;
  }
}

.uppy-DashboardAddFiles {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  height: 100%;
  position: relative;
  text-align: center;
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  margin: 7px;
  border: 1px dashed #dfdfdf;
  border-radius: 3px;
}

.uppy-Dashboard-AddFilesPanel .uppy-DashboardAddFiles {
  border: none;
}

.uppy-Dashboard--modal .uppy-DashboardAddFiles {
  border-color: #cfcfcf;
}

.uppy-DashboardTabs {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  width: 100%;
}

.uppy-size--md .uppy-DashboardTabs {
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

.uppy-DashboardTabs-title {
  font-size: 14px;
  line-height: 30px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  text-align: center;
  color: #525252;
}

.uppy-size--md .uppy-DashboardTabs-title {
  font-size: 16px;
  line-height: 40px;
}

.uppy-DashboardAddFiles-info {
  padding-top: 15px;
  padding-bottom: 15px;
}

.uppy-size--md .uppy-DashboardAddFiles-info {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  padding-top: 30px;
  padding-bottom: 0;
}

.uppy-Dashboard-browse {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  cursor: pointer;
  color: rgba(34, 117, 215, 0.9);
}

.uppy-Dashboard-browse:hover {
  text-decoration: underline;
}

.uppy-Dashboard-browse:focus {
  outline: none;
  border-bottom: 2px solid #2275d7;
}

.uppy-DashboardTabs-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  max-height: 300px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 10px;
  padding: 2px 0;
}

.uppy-size--md .uppy-DashboardTabs-list {
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  max-width: 600px;
  overflow-x: initial;
  margin-top: 15px;
  padding-top: 0;
}

.uppy-DashboardTab {
  width: 100%;
  display: inline-block;
  text-align: center;
  border-bottom: 1px solid #eaeaea;
  padding: 0 2px;
}

.uppy-size--md .uppy-DashboardTab {
  width: auto;
  margin-bottom: 20px;
  border-bottom: none;
  padding: 0;
}

.uppy-DashboardTab-btn {
  width: 100%;
  height: 100%;
  cursor: pointer;
  border: 0;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #525252;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  padding: 12px 20px;
  line-height: 1;
  text-align: center;
}

.uppy-size--md .uppy-DashboardTab-btn {
  width: 86px;
  margin-right: 1px;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  padding: 10px 3px;
  border-radius: 5px;
}

.uppy-DashboardTab-btn::-moz-focus-inner {
  border: 0;
}

.uppy-DashboardTab-btn:hover {
  background-color: #f1f3f6;
}

.uppy-DashboardTab-btn:active, .uppy-DashboardTab-btn:focus {
  background-color: #ebeef2;
  outline: none;
}

.uppy-DashboardTab-btn svg {
  margin-right: 10px;
}

.uppy-size--md .uppy-DashboardTab-btn svg {
  margin-right: 0;
}

.uppy-DashboardTab-btn svg {
  max-width: 100%;
  max-height: 100%;
  display: inline-block;
  vertical-align: text-top;
  overflow: hidden;
  -webkit-transition: -webkit-transform .15s ease-in-out;
  transition: -webkit-transform .15s ease-in-out;
  transition: transform .15s ease-in-out;
  transition: transform .15s ease-in-out, -webkit-transform .15s ease-in-out;
}

.uppy-DashboardTab-name {
  font-size: 14px;
  font-weight: 500;
}

.uppy-size--md .uppy-DashboardTab-name {
  font-size: 11px;
  line-height: 14px;
  margin-top: 8px;
  margin-bottom: 0;
}

.uppy-DashboardTab svg {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

.uppy-size--md .uppy-DashboardTab svg {
  width: 27px;
  height: 27px;
}

.uppy-Dashboard-input {
  width: .1px;
  height: .1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.uppy-DashboardContent-bar {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  height: 40px;
  width: 100%;
  border-bottom: 1px solid #eaeaea;
  z-index: 1004;
  background-color: #fafafa;
  padding: 0 10px;
}

.uppy-size--md .uppy-DashboardContent-bar {
  height: 50px;
  padding: 0 15px;
}

.uppy-DashboardContent-title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 12px;
  line-height: 40px;
  font-weight: 500;
  max-width: 170px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow-x: hidden;
  margin: auto;
}

.uppy-size--md .uppy-DashboardContent-title {
  font-size: 14px;
  line-height: 50px;
  max-width: 300px;
}

.uppy-DashboardContent-back {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  color: #2275d7;
  padding: 7px 6px;
  margin-left: -6px;
  border-radius: 3px;
}

.uppy-DashboardContent-back:hover {
  color: #1a58a2;
}

.uppy-size--md .uppy-DashboardContent-back {
  font-size: 14px;
}

.uppy-DashboardContent-addMore {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  display: inline-block;
  font-weight: 500;
  cursor: pointer;
  color: #2275d7;
  width: 27px;
  height: 27px;
  padding: 6px;
  margin-right: -6px;
  border-radius: 3px;
}

.uppy-DashboardContent-addMore:hover {
  color: #1a58a2;
}

.uppy-DashboardContent-addMore svg {
  vertical-align: text-top;
}

.uppy-DashboardContent-panel {
  background-color: #f5f5f5;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
}

.uppy-Dashboard-AddFilesPanel, .uppy-DashboardContent-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 1005;
  border-radius: 5px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.uppy-Dashboard-AddFilesPanel {
  background: #fafafa;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(35%, #fafafa), to(rgba(250, 250, 250, 0.85)));
  background: linear-gradient(0deg, #fafafa 35%, rgba(250, 250, 250, 0.85));
  -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.15);
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.uppy-Dashboard--isAddFilesPanelVisible .uppy-Dashboard-files {
  -webkit-filter: blur(2px);
          filter: blur(2px);
}

.uppy-Dashboard-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12%;
}

.uppy-Dashboard-progressBarContainer.is-active {
  z-index: 1004;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.uppy-Dashboard-filesContainer {
  position: relative;
  overflow-y: hidden;
  margin: 0;
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
}

.uppy-Dashboard-filesContainer:after {
  content: "";
  display: table;
  clear: both;
}

.uppy-Dashboard-files {
  margin: 0;
  padding: 0 0 10px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
}

.uppy-size--md .uppy-Dashboard-files {
  padding-top: 10px;
}

.uppy-Dashboard-dropFilesHereHint {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  visibility: hidden;
  position: absolute;
  top: 7px;
  right: 7px;
  bottom: 7px;
  left: 7px;
  padding-top: 90px;
  border: 1px dashed #2275d7;
  border-radius: 3px;
  z-index: 2000;
  text-align: center;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='48' height='48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 1v1C11.85 2 2 11.85 2 24s9.85 22 22 22 22-9.85 22-22S36.15 2 24 2V1zm0 0V0c13.254 0 24 10.746 24 24S37.254 48 24 48 0 37.254 0 24 10.746 0 24 0v1zm7.707 19.293a.999.999 0 1 1-1.414 1.414L25 16.414V34a1 1 0 1 1-2 0V16.414l-5.293 5.293a.999.999 0 1 1-1.414-1.414l7-7a.999.999 0 0 1 1.414 0l7 7z' fill='%232275D7'/%3E%3C/svg%3E");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  color: #707070;
  font-size: 16px;
}

.uppy-Dashboard.uppy-Dashboard--isDraggingOver .uppy-Dashboard-dropFilesHereHint {
  visibility: visible;
}

.uppy-Dashboard.uppy-Dashboard--isDraggingOver .uppy-Dashboard-files, .uppy-Dashboard.uppy-Dashboard--isDraggingOver .uppy-Dashboard-progressindicators, .uppy-Dashboard.uppy-Dashboard--isDraggingOver .uppy-DashboardContent-bar {
  opacity: .15;
}

.uppy-Dashboard.uppy-Dashboard--isDraggingOver .uppy-DashboardAddFiles {
  opacity: .03;
}

.uppy-Dashboard-dropFilesTitle {
  max-width: 300px;
  text-align: center;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
  color: #525252;
  margin: auto;
  padding: 0 15px;
  padding-top: 20px;
}

.uppy-size--md .uppy-Dashboard-dropFilesTitle {
  max-width: 470px;
  font-size: 27px;
}

.uppy-Dashboard-note {
  font-size: 14px;
  line-height: 1.25;
  text-align: center;
  color: #757575;
  max-width: 350px;
  margin: auto;
  padding: 0 15px;
}

.uppy-size--md .uppy-Dashboard-note {
  font-size: 16px;
  line-height: 1.35;
  max-width: 600px;
}

a.uppy-Dashboard-poweredBy {
  display: inline-block;
  text-align: center;
  font-size: 11px;
  color: #939393;
  text-decoration: none;
  margin-top: 8px;
}

.uppy-Dashboard-poweredByIcon {
  stroke: #939393;
  fill: none;
  margin-left: 1px;
  margin-right: 1px;
  position: relative;
  top: 1px;
  opacity: .9;
  vertical-align: text-top;
}

.uppy-DashboardItem {
  list-style: none;
  margin: 10px 0;
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 10px;
  padding-left: 10px;
}

.uppy-size--md .uppy-DashboardItem {
  float: left;
  margin: 5px 15px;
  width: calc(33.333% - 15px - 15px);
  height: 170px;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  background-color: initial;
  border: 0;
  border-bottom: none;
  padding-bottom: 0;
  padding-left: 0;
}

.uppy-size--lg .uppy-DashboardItem {
  width: calc(25% - 15px - 15px);
  height: 190px;
}

.uppy-size--xl .uppy-DashboardItem {
  width: calc(20% - 15px - 15px);
  height: 210px;
}

.uppy-DashboardItem-preview {
  width: 50px;
  height: 50px;
  border-bottom: 0;
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

.uppy-size--md .uppy-DashboardItem-preview {
  width: 100%;
  height: 100px;
  border: 0;
}

.uppy-size--lg .uppy-DashboardItem-preview {
  height: 120px;
}

.uppy-size--xl .uppy-DashboardItem-preview {
  height: 140px;
}

.uppy-DashboardItem-previewLink {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1002;
}

.uppy-DashboardItem-sourceIcon {
  display: inline-block;
  vertical-align: bottom;
  color: #939393;
}

.uppy-DashboardItem-sourceIcon svg, .uppy-DashboardItem-sourceIcon svg * {
  max-width: 100%;
  max-height: 100%;
  display: inline-block;
  vertical-align: text-bottom;
  overflow: hidden;
  fill: currentColor;
  width: 11px;
  height: 12px;
}

.uppy-DashboardItem-previewInnerWrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.4);
  border-radius: 3px;
}

.uppy-size--md .uppy-DashboardItem-previewInnerWrap {
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.uppy-DashboardItem-previewInnerWrap:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.65);
  display: none;
  z-index: 1001;
}

.uppy-DashboardItem-preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.uppy-DashboardItem-previewIconWrap {
  height: 76px;
  max-height: 75%;
  position: relative;
}

.uppy-DashboardItem-previewIconBg {
  width: 100%;
  height: 100%;
  -webkit-filter: drop-shadow(rgba(0, 0, 0, 0.1) 0 1px 1px);
          filter: drop-shadow(rgba(0, 0, 0, 0.1) 0 1px 1px);
}

.uppy-DashboardItem-previewIcon {
  width: 25px;
  height: 25px;
  z-index: 100;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.uppy-size--md .uppy-DashboardItem-previewIcon {
  width: 38px;
  height: 38px;
}

.uppy-DashboardItem-previewIcon svg {
  width: 100%;
  height: 100%;
}

.uppy-DashboardItem-previewType {
  position: absolute;
  bottom: 14px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 1px;
  color: #525252;
  z-index: 100;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.uppy-DashboardItem-info {
  padding-left: 15px;
  position: relative;
  max-width: 65%;
}

.uppy-size--md .uppy-DashboardItem-info {
  width: 100%;
  max-width: 100%;
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  padding: 8px 0 0;
  border-top: 0;
}

.uppy-DashboardItem-name {
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
  margin: 0;
  padding: 0;
  margin-bottom: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.uppy-size--md .uppy-DashboardItem-name {
  word-break: break-all;
  white-space: normal;
  overflow: initial;
}

.uppy-DashboardItem-name a {
  text-decoration: none;
  color: #333;
}

.uppy-DashboardItem-status {
  font-size: 11px;
  line-height: 1.3;
  font-weight: 400;
  color: #757575;
  margin-bottom: 4px;
}

.uppy-DashboardItem-statusSize {
  display: inline-block;
  vertical-align: bottom;
  text-transform: uppercase;
}

.uppy-DashboardItem-copyLink, .uppy-DashboardItem-edit {
  display: inline-block;
  vertical-align: bottom;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.uppy-DashboardItem-copyLink:hover, .uppy-DashboardItem-edit:hover {
  text-decoration: underline;
}

.uppy-DashboardItem-copyLink:not(:first-child), .uppy-DashboardItem-edit:not(:first-child), .uppy-DashboardItem-sourceIcon:not(:first-child) {
  position: relative;
  margin-left: 14px;
}

.uppy-DashboardItem-copyLink:not(:first-child):before, .uppy-DashboardItem-edit:not(:first-child):before, .uppy-DashboardItem-sourceIcon:not(:first-child):before {
  content: "\00B7";
  position: absolute;
  top: 0;
  left: -9px;
  color: #757575;
}

.uppy-DashboardItem-action {
  position: absolute;
  top: 18px;
  right: 10px;
  z-index: 1002;
}

.uppy-size--md .uppy-DashboardItem-action {
  top: -8px;
  right: -8px;
}

.uppy-DashboardItem-remove {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  cursor: pointer;
  color: #1f1f1f;
  width: 20px;
  height: 20px;
  padding: 1px;
  opacity: .9;
}

.uppy-DashboardItem-remove:hover {
  opacity: 1;
}

.uppy-DashboardItem.is-inprogress:not(.is-resumable) .uppy-DashboardItem-remove {
  display: none;
}

.uppy-DashboardItem-progress {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1002;
  color: #fff;
  text-align: center;
  width: 120px;
  display: none;
  -webkit-transition: all .35 ease;
  transition: all .35 ease;
}

.uppy-DashboardItem.is-complete .uppy-DashboardItem-progress {
  -webkit-transform: none;
          transform: none;
  top: -9px;
  right: -8px;
  left: auto;
  width: auto;
}

.uppy-DashboardItem.is-complete .uppy-DashboardItem-progress, .uppy-DashboardItem.is-error .uppy-DashboardItem-progress, .uppy-DashboardItem.is-inprogress .uppy-DashboardItem-progress {
  display: block;
}

.uppy-DashboardItem-progressIndicator {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  display: inline-block;
  width: 38px;
  height: 38px;
  opacity: .9;
}

.uppy-size--md .uppy-DashboardItem-progressIndicator {
  width: 55px;
  height: 55px;
}

button.uppy-DashboardItem-progressIndicator {
  cursor: pointer;
}

.uppy-DashboardItem.is-error .uppy-DashboardItem-progressIndicator {
  width: 18px;
  height: 18px;
}

.uppy-size--md .uppy-DashboardItem.is-error .uppy-DashboardItem-progressIndicator {
  width: 28px;
  height: 28px;
}

.uppy-DashboardItem.is-complete .uppy-DashboardItem-progressIndicator {
  width: 18px;
  height: 18px;
  opacity: 1;
}

.uppy-size--md .uppy-DashboardItem.is-complete .uppy-DashboardItem-progressIndicator {
  width: 22px;
  height: 22px;
}

.uppy-DashboardItem-progressInfo {
  font-size: 9px;
  line-height: 1;
  font-weight: 500;
  height: 10px;
  display: none;
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
}

.uppy-size--md .uppy-DashboardItem-progressInfo {
  display: block;
}

.UppyIcon-progressCircle {
  width: 100%;
  height: 100%;
}

.uppy-DashboardItem .bg {
  stroke: rgba(255, 255, 255, 0.4);
  opacity: 0;
}

.uppy-DashboardItem .progress {
  stroke: #fff;
  -webkit-transition: stroke-dashoffset .5s ease-out;
  transition: stroke-dashoffset .5s ease-out;
  opacity: 0;
}

.uppy-DashboardItem .play {
  stroke: #fff;
  display: none;
}

.uppy-DashboardItem .cancel, .uppy-DashboardItem .pause, .uppy-DashboardItem .play {
  fill: #fff;
  opacity: 0;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.uppy-DashboardItem .pause {
  stroke: #fff;
  display: none;
}

.uppy-DashboardItem.is-error .retry {
  fill: #fff;
}

.uppy-DashboardItem.is-resumable .pause, .uppy-DashboardItem.is-resumable .play {
  display: block;
}

.uppy-DashboardItem.is-resumable .cancel {
  display: none;
}

.UppyIcon-progressCircle .check {
  opacity: 0;
  fill: #fff;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.uppy-DashboardItem.is-inprogress .bg, .uppy-DashboardItem.is-inprogress .cancel, .uppy-DashboardItem.is-inprogress .pause, .uppy-DashboardItem.is-inprogress .progress {
  opacity: 1;
}

.uppy-DashboardItem.is-error .uppy-DashboardItem-previewInnerWrap:after, .uppy-DashboardItem.is-inprogress .uppy-DashboardItem-previewInnerWrap:after {
  display: block;
}

.uppy-DashboardItem.is-paused .pause {
  opacity: 0;
}

.uppy-DashboardItem.is-paused .play {
  opacity: 1;
}

.uppy-DashboardItem.is-noIndividualCancellation .uppy-DashboardItem-progressIndicator {
  cursor: default;
}

.uppy-DashboardItem.is-noIndividualCancellation .cancel {
  display: none;
}

.uppy-DashboardItem.is-processing .uppy-DashboardItem-progress {
  opacity: 0;
}

.uppy-DashboardItem.is-complete .uppy-DashboardItem-progressIndicator {
  cursor: default;
}

.uppy-DashboardItem.is-complete .progress {
  stroke: #1bb240;
  fill: #1bb240;
  opacity: 1;
}

.uppy-DashboardItem.is-complete .check {
  opacity: 1;
}

.uppy-DashboardItem-progressNum {
  position: relative;
  z-index: 1001;
}

.uppy-DashboardItem-progressInner {
  height: 15px;
  background-color: #2275d7;
  position: absolute;
  top: 0;
  left: 0;
}

.uppy-Dashboard-actions {
  height: 55px;
  border-top: 1px solid #eaeaea;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  padding: 0 15px;
  background-color: #fafafa;
}

.uppy-size--md .uppy-Dashboard-actions {
  height: 65px;
}

.uppy-Dashboard-actionsBtn {
  margin-right: 10px;
}

.uppy-Dashboard-pauseResume .UppyIcon {
  width: 100%;
  height: 100%;
}

.uppy-Dashboard-upload {
  position: relative;
  width: 50px;
  height: 50px;
}

.uppy-size--md .uppy-Dashboard-upload {
  width: 60px;
  height: 60px;
}

.uppy-Dashboard-upload .UppyIcon {
  position: relative;
  top: 1px;
  width: 50%;
}

.uppy-Dashboard-uploadCount {
  position: absolute;
  top: -12px;
  right: -12px;
  background-color: #1bb240;
  color: #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  line-height: 16px;
  font-size: 8px;
}

.uppy-size--md .uppy-Dashboard-uploadCount {
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 9px;
}

.uppy-DashboardFileCard {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1005;
  -webkit-box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.uppy-DashboardFileCard, .uppy-DashboardFileCard-inner {
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
}

.uppy-DashboardFileCard-inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
}

.uppy-DashboardFileCard-preview {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
          flex-grow: 1;
  border-bottom: 1px solid #eaeaea;
  background-color: #fafafa;
  position: relative;
}

.uppy-DashboardFileCard-preview img {
  -webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 20px rgba(0, 0, 0, 0.15);
  max-width: 90%;
  max-height: 90%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3px;
  position: absolute;
}

.uppy-DashboardFileCard-info {
  padding: 30px 20px 20px;
  max-height: 40%;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
          flex-grow: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.uppy-DashboardFileCard-fieldset {
  font-size: 0;
  border: 0;
  padding: 0;
  max-width: 640px;
  margin: auto;
  margin-bottom: 12px;
}

.uppy-DashboardFileCard-label {
  display: inline-block;
  vertical-align: middle;
  width: 22%;
  font-size: 12px;
  color: #525252;
}

.uppy-size--md .uppy-DashboardFileCard-label {
  font-size: 14px;
}

.uppy-DashboardFileCard-input {
  display: inline-block;
  vertical-align: middle;
  width: 78%;
}

.uppy-DragDrop-container {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  border-radius: 7px;
  background-color: #fff;
}

.uppy-DragDrop-inner {
  margin: 0;
  text-align: center;
  padding: 80px 20px;
  line-height: 1.4;
}

.uppy-DragDrop-arrow {
  width: 60px;
  height: 60px;
  fill: #e0e0e0;
  margin-bottom: 17px;
}

.uppy-DragDrop--is-dragdrop-supported {
  border: 2px dashed;
  border-color: #adadad;
}

.uppy-DragDrop-container.drag {
  border-color: #939393;
  background-color: #e6e6e6;
}

.uppy-DragDrop-container.drag .uppy-DragDrop-arrow {
  fill: #939393;
}

.uppy-DragDrop-label {
  display: block;
  cursor: pointer;
  font-size: 1.15em;
  margin-bottom: 5px;
}

.uppy-DragDrop-note {
  font-size: 1em;
  color: #adadad;
}

.uppy-DragDrop-dragText {
  color: #2275d7;
}

.uppy-FileInput-container {
  margin-bottom: 15px;
}

.uppy-FileInput-btn {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  font-family: sans-serif;
  font-size: .85em;
  padding: 10px 15px;
  color: #14457f;
  border: 1px solid #14457f;
  border-radius: 8px;
  cursor: pointer;
}

.uppy-FileInput-btn:hover {
  background-color: #14457f;
  color: #fff;
}

.uppy-ProgressBar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 10000;
  -webkit-transition: height .2s;
  transition: height .2s;
}

.uppy-ProgressBar[aria-hidden=true] {
  height: 0;
}

.uppy-ProgressBar-inner {
  background-color: #2275d7;
  -webkit-box-shadow: 0 0 10px rgba(34, 117, 215, 0.7);
          box-shadow: 0 0 10px rgba(34, 117, 215, 0.7);
  height: 100%;
  width: 0;
  -webkit-transition: width .4s ease;
  transition: width .4s ease;
}

.uppy-ProgressBar-percentage {
  display: none;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
}

.uppy-Url {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
}

.uppy-Url-input {
  width: 90%;
  max-width: 650px;
  margin-bottom: 15px;
}

.uppy-size--md .uppy-Url-input {
  margin-bottom: 20px;
}

.uppy-Url-importButton {
  padding: 13px 25px;
}

.uppy-size--md .uppy-Url-importButton {
  padding: 13px 30px;
}

.uppy-Webcam-container {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.uppy-Webcam-videoContainer {
  width: 100%;
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow: hidden;
  background-color: #333;
  text-align: center;
  position: relative;
}

.uppy-Webcam-video {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.uppy-Webcam-video--mirrored {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.uppy-Webcam-buttonContainer {
  width: 100%;
  height: 75px;
  border-top: 1px solid #eaeaea;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  padding: 0 20px;
}

.uppy-Webcam-button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #e32437;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.uppy-Webcam-button svg {
  width: 30px;
  height: 30px;
  max-width: 100%;
  max-height: 100%;
  display: inline-block;
  vertical-align: text-top;
  overflow: hidden;
  fill: currentColor;
}

.uppy-size--md .uppy-Webcam-button {
  width: 60px;
  height: 60px;
}

.uppy-Webcam-button:hover {
  background-color: #d31b2d;
}

.uppy-Webcam-button:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(34, 117, 215, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(34, 117, 215, 0.5);
}

.uppy-Webcam-button--picture {
  margin-right: 12px;
}

.uppy-Webcam-permissons {
  padding: 15px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-flow: column wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-flow: column wrap;
  height: 100%;
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
}

.uppy-Webcam-permissons p {
  max-width: 450px;
  line-height: 1.3;
}

.uppy-Webcam-title {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 400;
  margin: 0;
  margin-bottom: 5px;
  padding: 0 15px;
  max-width: 500px;
  text-align: center;
  color: #333;
}

.uppy-Webcam-permissons p {
  text-align: center;
  line-height: 1.45;
  color: #939393;
  margin: 0;
}

.uppy-Webcam-permissonsIcon svg {
  width: 100px;
  height: 75px;
  color: #bbb;
  margin-bottom: 30px;
}

.card-bg-color {
  background-color: #fff;
}

.light-gray-bg-color {
  background-color: rgba(25, 25, 25, 0.04);
}

.white-text-color {
  color: #fff;
}

.primary-text-shadow {
  text-shadow: 0 1px 2px rgba(41, 54, 68, 0.29);
}

.primary-border {
  border: solid 2px rgba(0, 0, 0, 0.07);
}

.light-border {
  border: solid 1px rgba(252, 252, 252, 0.3);
}

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

[dir='rtl'] .pull-right {
  float: right;
}

[dir='ltr'] .pull-right {
  float: left;
}

[dir='rtl'] .pull-left {
  float: left;
}

[dir='ltr'] .pull-left {
  float: right;
}

.profile-form .form {
  width: 100%;
  margin-bottom: 32px;
  margin-top: 32px;
}

.profile-form .iner-header {
  background-color: transparent;
}

.profile-form .arrow-back {
  padding: 20px 8px 8px !important;
}

.auth-page-content .iner-header {
  background-color: transparent;
}

.login-header {
  width: 100%;
  margin-bottom: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

.login .section-wrapper {
  padding: 0 !important;
}

.login .form-group {
  margin-bottom: 16px;
}

.login .form {
  margin-top: 0;
}

.login .iner-header {
  background-color: transparent;
}

.login .iner-header .logo {
  margin: 0 auto !important;
  position: inherit !important;
  width: 100%;
}

.login .arrow-back {
  margin: 0 auto;
  position: relative;
  top: 8px;
  padding: 20px 10px 0;
  padding-top: 0 !important;
}

.login .arrow-back svg {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

[dir='rtl'] .login .arrow-back svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.login .arrow-back a h5 {
  line-height: 12px !important;
  font-size: 12px !important;
}

[dir='rtl'] .login .arrow-back img, [dir='rtl']
  .login .arrow-back h5 {
  margin-right: 5px;
}

[dir='ltr'] .login .arrow-back img, [dir='ltr']
  .login .arrow-back h5 {
  margin-left: 5px;
}

.login .arrow-back img {
  width: 24px;
  height: 24px;
}

.login .divider {
  width: 100%;
}

.login .divider .line-center {
  margin: 0;
  padding: 0 10px;
  display: inline-block;
}

.login .divider h4 {
  text-align: center;
  position: relative;
  z-index: 2;
}

.login .divider h4::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-top: solid 1px #efefef;
  z-index: -1;
}

.login p {
  font-size: 18px;
}

[dir='rtl'] .complete-profile label {
  text-align: right;
}

[dir='ltr'] .complete-profile label {
  text-align: left;
}

.complete-profile html {
  font-size: 16px;
}

[dir='rtl'] .complete-profile .input-select option {
  text-align: right;
}

[dir='ltr'] .complete-profile .input-select option {
  text-align: left;
}

.complete-profile .form-group {
  margin-bottom: 16px;
}

[dir='rtl'] .complete-profile .form-group {
  text-align: right;
}

[dir='ltr'] .complete-profile .form-group {
  text-align: left;
}

.complete-profile .form-control.form-control-icon.form-control-icon,
.complete-profile .selectize-input.form-control-icon {
  border-radius: 3px;
}

.complete-profile .selectize-control .selectize-input {
  display: block !important;
  height: 40px;
  border-radius: 3px;
  position: relative;
}

.complete-profile .selectize-control .selectize-input .item {
  top: 8px;
  position: absolute !important;
  height: 40px;
  width: 100%;
}

[dir='rtl'] .complete-profile .selectize-control .selectize-input .item {
  right: 5px;
}

[dir='ltr'] .complete-profile .selectize-control .selectize-input .item {
  left: 5px;
}

.complete-profile .selectize-control .selectize-input > input {
  top: 0;
  position: absolute !important;
  height: 40px;
  width: 100%;
}

[dir='rtl'] .complete-profile .selectize-control .selectize-input > input {
  right: 5px;
}

[dir='ltr'] .complete-profile .selectize-control .selectize-input > input {
  left: 5px;
}

.auth-view.dashboard {
  padding: 0;
}

.auth-view .header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}

.auth-view .guidelines {
  opacity: .5;
  margin-top: 40px;
}

.auth-view .auth-panner {
  padding: 40px 24px;
  text-align: center;
}

.auth-view .auth-panner p {
  color: #fff;
  font-size: 16px !important;
  margin-bottom: 16px;
}

.auth-view .auth-panner .btn {
  color: #fff;
  display: block;
  width: 100%;
  background: rgba(0, 0, 0, 0.08);
}

.auth-view .btn {
  max-width: 250px;
  width: 100%;
  margin: auto;
}

.auth-view .floating-back {
  margin: 0;
}

.auth-view .card {
  height: auto;
}

.auth-view > .section-wrapper {
  position: relative;
  top: 300px;
  right: 0;
  left: 0;
}

.auth-view .scroll-indictor {
  margin-bottom: 16px;
  background: rgba(206, 206, 206, 0.5);
  border-radius: 4px;
  height: 5px;
  width: 56px;
  margin-right: auto;
  margin-left: auto;
}

.auth-view .social-media {
  padding: 4px;
}

@media (max-width: 991.98px) {
  .auth-view .card {
    height: 100%;
  }

  .auth-view .btn {
    max-width: 100%;
  }

  .auth-view > .section-wrapper {
    position: absolute;
    top: 272px;
    right: 0;
    left: 0;
    bottom: 64px;
  }
}

.selectize-input {
  height: 48px !important;
}

.selectize-control .single .selectize-input::after {
  right: 16px;
}

.selectize-control.rtl.single .selectize-input::after {
  left: 16px;
  right: auto;
}

.complete-profile .selectize-control .selectize-input > input {
  left: 10px !important;
}

.form-group-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

[dir='rtl'] .form-group-icon .form-control:not(select) ~ .input-group-prepend {
  margin-right: -12px;
}

[dir='ltr'] .form-group-icon .form-control:not(select) ~ .input-group-prepend {
  margin-left: -12px;
}

.form-group-icon .avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
}

[dir='rtl'] .form-group-icon .avatar {
  margin-left: 8px;
}

[dir='ltr'] .form-group-icon .avatar {
  margin-right: 8px;
}

.input-group-text {
  border-radius: 0 3px !important 3px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 15px;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  border-bottom: 0;
  height: 96%;
}

[dir='rtl'] .input-group-text {
  margin-right: -40px;
}

[dir='ltr'] .input-group-text {
  margin-left: -40px;
}

[dir='rtl'] .input-group-text {
  border-radius: 0 0 3px 3px !important;
}

[dir='rtl'] .input-group-text {
  border-right: 0 !important;
}

[dir='ltr'] .input-group-text {
  border-left: 0 !important;
}

[dir='rtl'] .input-group-text {
  border-left: 1px solid #e0e0e0 !important;
}

[dir='ltr'] .input-group-text {
  border-right: 1px solid #e0e0e0 !important;
}

.input-group-text.password-visibility {
  opacity: .5;
}

.input-group-text.arrow-down {
  padding: 6px 15px;
  background-color: #fff;
}

.input-group-append,
.input-group-prepend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}

.input-group > .form-control {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}

.input-select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0 3px 3px 0;
}

.attachment-icon {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.attachment-icon.remove-btn {
  -webkit-transform: none;
          transform: none;
  width: auto;
  height: 20px;
  margin: 0;
}

.validation-error,
.validation-info {
  padding: 15px 20px;
  margin-bottom: 16px;
  border-radius: 4px;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

[dir='rtl'] .validation-error, [dir='rtl']
  .validation-info {
  text-align: right;
}

[dir='ltr'] .validation-error, [dir='ltr']
  .validation-info {
  text-align: left;
}

.validation-error {
  background: #fdded8;
}

.validation-error span {
  display: block;
}

.validation-error svg {
  width: 24px;
  fill: #d28b7d;
  margin-top: 1px;
}

[dir='rtl'] .validation-error svg {
  margin-left: 10px;
}

[dir='ltr'] .validation-error svg {
  margin-right: 10px;
}

.validation-info {
  background: rgba(0, 0, 0, 0.04);
}

.dashboard {
  height: auto !important;
  min-height: 100% !important;
  width: 100%;
  padding-top: 90px;
  background-color: #f7f9fc;
}

.dashboard .pill-point {
  border-radius: 50px;
  width: 60%;
  opacity: .85;
  background-color: rgba(131, 131, 131, 0.2);
  margin: 0 auto;
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.dashboard .pill-point i {
  font-size: 18px;
  position: relative;
  bottom: -3px;
}

.dashboard .pill-participations {
  border-radius: 50px;
  width: 65%;
  opacity: .85;
  background-color: rgba(131, 131, 131, 0.2);
  display: block;
  margin: 0 auto;
  margin-top: 10px;
}

.dashboard .arrow-back {
  padding: 0 0 20px;
}

.dashboard .arrow-back svg {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

[dir='rtl'] .dashboard .arrow-back svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.dashboard .arrow-back a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dashboard .arrow-back a img,
      .dashboard .arrow-back a span {
  margin-right: 10px;
  font-size: 16px !important;
  line-height: 16px !important;
}

.dashboard .arrow-back a span {
  margin-top: -2px;
}

.dashboard .arrow-back a img {
  width: 16px;
  height: 16px;
}

.dashboard .form {
  margin: 0 auto;
}

.dashboard .header .section-wrapper {
  padding: 0;
}

.dashboard .section-wrapper {
  padding: 48px 160px;
}

.dashboard .page-content {
  background-position: center top;
  height: auto;
  width: 100%;
}

.dashboard .page-content .content-dashbaord-description {
  max-width: 715px;
  margin: 0 auto;
}

.dashboard-participation .pill {
  font-size: 13.5px;
  padding: 3.5px 13px;
  margin-top: 24px;
  margin-bottom: 0;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
}

.dashboard-participation .item {
  margin-bottom: 48px;
}

.dashboard-participation .item .card {
  padding: 55px 40px;
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.dashboard-participation .item .card:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.dashboard-participation .item .card img {
  max-width: 120px;
  max-height: 88px;
}

.dashboard-participation .section-header .content-dashbaord-description {
  margin-bottom: 72px;
}

.dashboard-updates .container-fluid.card {
  padding: 48px;
}

.dashboard-updates .item {
  margin-bottom: 24px;
  width: 100%;
}

.dashboard-update-detail .container-fluid {
  overflow: hidden;
}

.dashboard-update-detail .section-header {
  padding: 72px;
  margin: -16px -16px 0;
  background-size: 300%;
  background-position: center;
  display: block;
}

.dashboard-update-detail .section-body {
  padding: 72px;
}

.dashboard-update-detail .section-body ul {
  list-style: disc;
  margin: inherit;
  padding: unset;
}

[dir='rtl'] .dashboard-update-detail .section-body ul {
  padding-right: 40px;
}

[dir='ltr'] .dashboard-update-detail .section-body ul {
  padding-left: 40px;
}

.dashboard-update-detail .section-body ul li {
  display: list-item;
}

.dashboard-single-track .section-wrapper {
  padding: 48px 160px;
}

.dashboard-single-track .track-header {
  padding: 48px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.07);
}

.dashboard-single-track .track-header .track-icon {
  height: 50px;
  margin-top: 8px;
}

[dir='rtl'] .dashboard-single-track .track-header .track-icon {
  margin-left: 8px;
}

[dir='ltr'] .dashboard-single-track .track-header .track-icon {
  margin-right: 8px;
}

.dashboard-single-track .track-header .track-title {
  margin-top: 8px;
}

.dashboard-single-track .track-details {
  padding: 48px;
}

.dashboard-single-track .track-action {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 8px;
}

.dashboard-single-track .single-track-card-footer {
  padding: 24px 0;
}

.dashboard-single-track .single-track-card-footer.detail {
  padding: 0 20px 20px;
}

.dashboard-single-track .single-track-card-footer .btn-action {
  height: auto;
  min-height: unset !important;
  padding: 10px;
  margin: auto !important;
  max-width: 420px;
  display: block;
  border-radius: 12px;
}

.dashboard-single-track .single-track-card-footer .submission {
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.dashboard-single-track .single-track-card-footer .submission:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.dashboard-single-track .single-track-card-footer .removal-request .options {
  z-index: 1000;
  width: 30px;
  padding: 0 7px;
  -webkit-transition: all ease-out 200ms;
  transition: all ease-out 200ms;
  border-radius: 3px;
}

.dashboard-single-track .single-track-card-footer .removal-request .options:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.dashboard-single-track .single-track-card-footer .removal-request .btn-remove,
  .dashboard-single-track .single-track-card-footer .removal-request .success {
  position: absolute;
  padding: 8px 16px;
  z-index: 1001;
  border-radius: 4px;
  border: 1px solid #efefef;
  -webkit-box-shadow: 0 2px 8px -4px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px -4px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1);
}

.dashboard-single-track .single-track-card-footer .removal-request .success {
  color: #36bf93;
  background-color: #fff;
}

.dashboard-single-track .single-track-card-footer .removal-request svg {
  width: 24px;
  height: 24px;
  margin-top: 3px;
}

.dashboard-single-track .single-track-card-footer .item {
  margin-bottom: 20px;
}

.dashboard-single-track .single-track-card-footer .btn-large {
  margin-left: 20px;
  min-height: 208px;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
  width: 100%;
}

.dashboard-single-track .single-track-card-footer .btn-large .title {
  margin: 0;
  text-align: start;
}

.dashboard-single-track .single-track-card-footer .btn-large .footer .xs span {
  font-size: 11px !important;
}

.dashboard-single-track .single-track-card-footer .btn-large.white {
  color: #fff;
}

.dashboard-single-track .single-track-card-footer .btn-large.white svg {
  fill: #fff;
}

.dashboard-single-track .single-track-card-footer .btn-large svg {
  fill: #293644;
}

.dashboard-single-track .single-track-card-footer .btn-add .open,
  .dashboard-single-track .single-track-card-footer .btn-add .closed {
  font-size: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

.dashboard-single-track .single-track-card-footer .btn-add .open span,
    .dashboard-single-track .single-track-card-footer .btn-add .closed span {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

.dashboard-single-track .avatar-bar {
  padding: 24px 20px;
}

.dashboard-single-track .tabs {
  padding: 0 48px 48px;
  max-width: 650px;
}

.dashboard-submission-success .btn {
  margin-top: 32px;
  max-width: 280px;
  text-overflow: ellipsis;
  width: auto;
}

.dashboard-submission .section-wrapper,
.dashboard-edit-profile .section-wrapper {
  padding: 0;
}

.dashboard-submission .section-wrapper .container,
  .dashboard-edit-profile .section-wrapper .container {
  position: relative;
}

.dashboard-submission .submission-form-bar,
.dashboard-edit-profile .submission-form-bar {
  position: fixed;
  left: 0;
  right: 0;
  top: 74px;
  background-color: #fff;
  padding: 16px;
  border: 1px solid rgba(0, 61, 76, 0.08);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  direction: rtl;
  z-index: 999999;
}

.dashboard-submission .submission-form-bar .arrow-back,
  .dashboard-edit-profile .submission-form-bar .arrow-back {
  padding: 0 !important;
}

.dashboard-submission .submission-form-bar .arrow-back .btn,
    .dashboard-edit-profile .submission-form-bar .arrow-back .btn {
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  padding: 9px 10px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 270px;
  width: 100%;
}

.dashboard-submission .submission-form-bar .arrow-back svg,
    .dashboard-edit-profile .submission-form-bar .arrow-back svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.dashboard-submission .submission-form-bar .form-title,
  .dashboard-edit-profile .submission-form-bar .form-title {
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  width: 100%;
}

.dashboard-submission .submission-form-bar .form-title .form-title-sub-heading,
    .dashboard-edit-profile .submission-form-bar .form-title .form-title-sub-heading {
  font-size: 16px !important;
  line-height: 16px !important;
}

.dashboard-submission .submission-form-bar .form-title .form-title-heading,
    .dashboard-edit-profile .submission-form-bar .form-title .form-title-heading {
  font-size: 21px !important;
  line-height: 21px !important;
  font-weight: bold !important;
  margin: 4px auto;
}

.dashboard-submission .submission-form-bar .saving-progress-control,
  .dashboard-edit-profile .submission-form-bar .saving-progress-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dashboard-submission .submission-form-bar .saving-progress-control.single-section .text-details,
    .dashboard-edit-profile .submission-form-bar .saving-progress-control.single-section .text-details {
  margin-right: auto;
}

.dashboard-submission .submission-form-bar .saving-progress-control.single-section .progress-circle,
    .dashboard-edit-profile .submission-form-bar .saving-progress-control.single-section .progress-circle {
  margin-left: auto;
}

.dashboard-submission .submission-form-bar .saving-progress-control .chevron,
    .dashboard-edit-profile .submission-form-bar .saving-progress-control .chevron {
  margin-left: auto;
  -webkit-transition: all .6s;
  transition: all .6s;
}

.dashboard-submission .submission-form-bar .saving-progress-control .chevron.chevron-up,
      .dashboard-edit-profile .submission-form-bar .saving-progress-control .chevron.chevron-up {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.dashboard-submission .submission-form-bar .saving-progress-control .text-details,
    .dashboard-edit-profile .submission-form-bar .saving-progress-control .text-details {
  min-width: 150px;
  text-align: left;
}

[dir='rtl'] .dashboard-submission .submission-form-bar .saving-progress-control .text-details, [dir='rtl']
      .dashboard-edit-profile .submission-form-bar .saving-progress-control .text-details {
  text-align: left;
}

[dir='ltr'] .dashboard-submission .submission-form-bar .saving-progress-control .text-details, [dir='ltr']
      .dashboard-edit-profile .submission-form-bar .saving-progress-control .text-details {
  text-align: right;
}

.dashboard-submission .submission-form-bar .saving-progress-control .text-details .timestamp-moment,
      .dashboard-edit-profile .submission-form-bar .saving-progress-control .text-details .timestamp-moment {
  opacity: 1 !important;
  margin: auto 4px;
}

.dashboard-submission .submission-form-bar .saving-progress-control .text-details .remaining,
      .dashboard-edit-profile .submission-form-bar .saving-progress-control .text-details .remaining {
  padding-bottom: 15px;
}

.dashboard-submission .submission-form-bar .saving-progress-control .text-details .timestamp-moment,
      .dashboard-submission .submission-form-bar .saving-progress-control .text-details .remaining,
      .dashboard-submission .submission-form-bar .saving-progress-control .text-details .saved,
      .dashboard-submission .submission-form-bar .saving-progress-control .text-details .saving,
      .dashboard-submission .submission-form-bar .saving-progress-control .text-details .not-saved,
      .dashboard-edit-profile .submission-form-bar .saving-progress-control .text-details .timestamp-moment,
      .dashboard-edit-profile .submission-form-bar .saving-progress-control .text-details .remaining,
      .dashboard-edit-profile .submission-form-bar .saving-progress-control .text-details .saved,
      .dashboard-edit-profile .submission-form-bar .saving-progress-control .text-details .saving,
      .dashboard-edit-profile .submission-form-bar .saving-progress-control .text-details .not-saved {
  font-size: 15px !important;
  line-height: 17px !important;
  height: 10px;
}

.dashboard-submission .submission-form-bar .saving-progress-control .text-details .saved,
      .dashboard-submission .submission-form-bar .saving-progress-control .text-details .not-saved,
      .dashboard-edit-profile .submission-form-bar .saving-progress-control .text-details .saved,
      .dashboard-edit-profile .submission-form-bar .saving-progress-control .text-details .not-saved {
  opacity: .3;
}

.dashboard-submission .submission-form-bar .saving-progress-control .text-details .saving,
      .dashboard-edit-profile .submission-form-bar .saving-progress-control .text-details .saving {
  color: #00c797;
}

.dashboard-submission .submission-form-bar .saving-progress-control .progress-circle,
    .dashboard-edit-profile .submission-form-bar .saving-progress-control .progress-circle {
  position: relative;
  height: 50px;
  width: 50px;
  margin-right: 8px;
  font-size: 0 !important;
}

.dashboard-submission .submission-form-bar .saving-progress-control .progress-circle .progress-circle-wrapper,
      .dashboard-edit-profile .submission-form-bar .saving-progress-control .progress-circle .progress-circle-wrapper {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.dashboard-submission .submission-form-bar .saving-progress-control .progress-circle .progress-circle-back,
      .dashboard-edit-profile .submission-form-bar .saving-progress-control .progress-circle .progress-circle-back {
  fill: none;
  stroke: #d2d2d2;
  stroke-width: 4px;
}

.dashboard-submission .submission-form-bar .saving-progress-control .progress-circle .progress-circle-prog,
      .dashboard-edit-profile .submission-form-bar .saving-progress-control .progress-circle .progress-circle-prog {
  fill: none;
  stroke: #00c797;
  stroke-width: 4px;
  stroke-dasharray: 0 999;
  stroke-dashoffset: 0;
  -webkit-transition: stroke-dasharray .7s linear 0s;
  transition: stroke-dasharray .7s linear 0s;
}

.dashboard-submission .submission-form-bar .saving-progress-control .progress-circle .progress-circle-text,
      .dashboard-edit-profile .submission-form-bar .saving-progress-control .progress-circle .progress-circle-text {
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: 24px;
  width: 100%;
  font-size: 12px !important;
}

.dashboard-submission .sections-navigation,
.dashboard-edit-profile .sections-navigation {
  position: fixed;
  left: 0;
  right: 0;
  top: 155px;
  background-color: #f0f2f6;
  height: 48px;
  padding: 8px;
  border: 1px solid rgba(0, 61, 76, 0.08);
  z-index: 999999;
}

[dir='rtl'] .dashboard-submission .sections-navigation, [dir='rtl']
  .dashboard-edit-profile .sections-navigation {
  direction: rtl;
}

[dir='ltr'] .dashboard-submission .sections-navigation, [dir='ltr']
  .dashboard-edit-profile .sections-navigation {
  direction: ltr;
}

.dashboard-submission .sections-navigation .navigation-item:last-of-type svg,
  .dashboard-edit-profile .sections-navigation .navigation-item:last-of-type svg {
  display: none;
}

.dashboard-submission .sections-navigation .navigation-item.error p,
  .dashboard-edit-profile .sections-navigation .navigation-item.error p {
  background: #f7e9e6;
  color: #f68653;
  opacity: 1;
}

.dashboard-submission .sections-navigation .navigation-item.active p,
  .dashboard-edit-profile .sections-navigation .navigation-item.active p {
  opacity: 1;
}

.dashboard-submission .sections-navigation .navigation-item svg,
  .dashboard-edit-profile .sections-navigation .navigation-item svg {
  -webkit-transform: rotate(0);
          transform: rotate(0);
  margin: 0 16px;
}

[dir='rtl'] .dashboard-submission .sections-navigation .navigation-item svg, [dir='rtl']
    .dashboard-edit-profile .sections-navigation .navigation-item svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.dashboard-submission .sections-navigation .navigation-item p,
  .dashboard-edit-profile .sections-navigation .navigation-item p {
  cursor: pointer;
  opacity: .5;
  padding: 0 12px;
  border-radius: 8px;
}

.dashboard-submission .form-wrapper,
.dashboard-edit-profile .form-wrapper {
  padding-top: 210px;
}

.dashboard-submission .form-wrapper.no-sections-navigation,
  .dashboard-edit-profile .form-wrapper.no-sections-navigation {
  padding-top: 120px;
}

.dashboard-submission .form-wrapper .form-section,
  .dashboard-edit-profile .form-wrapper .form-section {
  display: none;
}

.dashboard-submission .form-wrapper .form-section.active,
    .dashboard-edit-profile .form-wrapper .form-section.active {
  display: block;
}

.dashboard-submission .form-wrapper .field-section-header,
  .dashboard-edit-profile .form-wrapper .field-section-header {
  font-size: .31rem;
}

.dashboard-submission .form-wrapper .field-section-description,
  .dashboard-edit-profile .form-wrapper .field-section-description {
  font-size: .28rem !important;
  line-height: .41rem !important;
  margin-bottom: 48px;
}

.dashboard-submission .form-wrapper .form-group,
  .dashboard-edit-profile .form-wrapper .form-group {
  margin-bottom: 56px;
}

.dashboard-submission .form-wrapper .form-group.control-form-group-valid,
    .dashboard-edit-profile .form-wrapper .form-group.control-form-group-valid {
  background: rgba(0, 199, 151, 0.07);
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}

.dashboard-submission .form-wrapper .form-group label,
    .dashboard-edit-profile .form-wrapper .form-group label {
  font-size: 1rem;
  margin-bottom: 8px;
  display: block;
}

.dashboard-submission .form-wrapper .form-group label:not(.control),
      .dashboard-edit-profile .form-wrapper .form-group label:not(.control) {
  padding: 10px 15px;
  margin: 0;
}

.dashboard-submission .form-wrapper .form-group label.control-label-valid,
      .dashboard-edit-profile .form-wrapper .form-group label.control-label-valid {
  background: rgba(0, 199, 151, 0.07);
  padding: 10px 15px;
  margin-bottom: 0;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}

.dashboard-submission .form-wrapper .form-group .optional,
    .dashboard-edit-profile .form-wrapper .form-group .optional {
  opacity: .3;
}

.dashboard-submission .form-wrapper .form-group .form-control-error,
    .dashboard-edit-profile .form-wrapper .form-group .form-control-error {
  border-color: #f68653;
}

.dashboard-submission .form-wrapper .form-group .form-control-valid,
    .dashboard-edit-profile .form-wrapper .form-group .form-control-valid {
  border: 1px solid #00c797;
}

.dashboard-submission .form-wrapper .form-group .label-error,
    .dashboard-edit-profile .form-wrapper .form-group .label-error {
  color: #f68653;
}

.dashboard-submission .form-wrapper .form-group .form__error,
    .dashboard-edit-profile .form-wrapper .form-group .form__error {
  display: none;
  color: #f68653;
  background-color: rgba(246, 134, 83, 0.15);
  margin-top: 0;
  padding: 10px 15px;
  border-radius: 0 0 8px 8px;
}

.dashboard-submission .form-wrapper .form-group .textual-field,
    .dashboard-edit-profile .form-wrapper .form-group .textual-field {
  margin-bottom: 16px;
}

.dashboard-submission .form-wrapper .form-group .field-header,
    .dashboard-edit-profile .form-wrapper .form-group .field-header {
  border-bottom: 1px solid #e3e5e6;
  padding-bottom: 16px;
  margin-top: 104px;
  margin-bottom: 48px;
}

.dashboard-submission .form-wrapper .form-group .field-description,
    .dashboard-edit-profile .form-wrapper .form-group .field-description {
  font-size: 16px;
  font-weight: normal;
}

.dashboard-submission .form-wrapper .form-group .field-description li,
      .dashboard-edit-profile .form-wrapper .form-group .field-description li {
  display: list-item;
}

.dashboard-submission .form-wrapper .form-group .field-description ul,
      .dashboard-edit-profile .form-wrapper .form-group .field-description ul {
  list-style: disc inside;
}

.dashboard-submission .form-wrapper .form-general-error,
  .dashboard-edit-profile .form-wrapper .form-general-error {
  margin-bottom: 32px;
}

.dashboard-submission .form-wrapper .form-general-error .form__error,
    .dashboard-edit-profile .form-wrapper .form-general-error .form__error {
  border-radius: 8px;
}

.dashboard-submission .form-wrapper .submission-form-actions .btn,
  .dashboard-edit-profile .form-wrapper .submission-form-actions .btn {
  width: 50%;
}

[dir='rtl'] .dashboard-submission .form-wrapper .submission-form-actions .btn, [dir='rtl']
    .dashboard-edit-profile .form-wrapper .submission-form-actions .btn {
  margin-right: auto;
}

[dir='ltr'] .dashboard-submission .form-wrapper .submission-form-actions .btn, [dir='ltr']
    .dashboard-edit-profile .form-wrapper .submission-form-actions .btn {
  margin-left: auto;
}

.dashboard-submission .form-wrapper .submission-form-actions .btn.disabled,
    .dashboard-edit-profile .form-wrapper .submission-form-actions .btn.disabled {
  background-color: rgba(128, 128, 128, 0.56) !important;
  cursor: not-allowed;
}

[dir='rtl'] .dashboard-submission .form-wrapper .submission-form-actions .btn:nth-of-type(1), [dir='rtl']
    .dashboard-edit-profile .form-wrapper .submission-form-actions .btn:nth-of-type(1) {
  margin-left: 8px;
}

[dir='ltr'] .dashboard-submission .form-wrapper .submission-form-actions .btn:nth-of-type(1), [dir='ltr']
    .dashboard-edit-profile .form-wrapper .submission-form-actions .btn:nth-of-type(1) {
  margin-right: 8px;
}

@media (max-width: 991.98px) {
  .submission-form-bar {
    top: 0 !important;
  }

  .form-wrapper {
    padding-top: 0 !important;
  }

  .saving-progress-control {
    width: 100%;
  }

  .sections-navigation {
    top: 84px;
    height: auto !important;
  }

  .sections-navigation .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }

  .sections-navigation .navigation-item {
    margin-bottom: 8px;
  }

  .sections-navigation .navigation-item svg {
    display: none;
  }
}

.dashboard-profile .container-fluid.card {
  padding: 48px;
}

.form-success {
  background-color: #eaf6f5;
  margin-top: 0;
  padding: 10px 15px;
  border-radius: 0 0 8px 8px;
}

.form-general-alert {
  margin-bottom: 32px;
}

.form-general-alert .form-success {
  border-radius: 8px;
}

.dashboard-help .section-wrapper .container-fluid {
  padding: 0 15px;
}

.pt-dashboard {
  font-size: 0;
}

.logo-row {
  padding: 0 16px;
}

.dropdown-menu {
  -webkit-transform: translate3d(0, 48px, 0) !important;
          transform: translate3d(0, 48px, 0) !important;
}

.logout-language-controls {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  margin-top: 90px;
  text-align: center;
}

.logout-language-controls .logged-as {
  margin-bottom: 24px;
  opacity: .3;
}

.logout-language-controls .btn {
  margin-bottom: 24px;
}

.logout-language-controls .bold {
  font-weight: bold !important;
}

.logout-language-controls .powered-by {
  margin-top: 73px;
  font-size: 18px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logout-language-controls .powered-by p {
  opacity: .3;
}

[dir='rtl'] .logout-language-controls .powered-by svg {
  margin-right: 16px;
}

[dir='ltr'] .logout-language-controls .powered-by svg {
  margin-left: 16px;
}

section {
  height: 100vh;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center top;
}

section:first-of-type {
  padding-top: 110px;
  min-height: 100vh !important;
}

section .section-header {
  font-weight: 900;
  font-size: 1em;
}

section .section-header .hr {
  height: 1px;
  width: 80px;
  display: inline-block;
  margin-bottom: 3px;
}

[dir='rtl'] section .section-header .hr {
  margin-left: 10px;
}

[dir='ltr'] section .section-header .hr {
  margin-right: 10px;
}

section .section-description {
  max-width: 848px;
}

.section-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  width: 100%;
  padding: 124px;
}

#section-hero {
  min-height: 100vh;
  height: auto;
}

#section-hero > .language-switcher {
  margin: 0 16px;
  font-size: 12px !important;
  padding: 12px;
  line-height: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 16px;
  background-color: #fff;
}

#section-hero .content-hero-slogan {
  max-width: 410px;
  margin: auto;
}

#section-hero .section-wrapper {
  padding: 16px 0;
}

#section-hero .container {
  margin-top: 205px;
}

#section-hero .content-header-hamburger {
  margin: 0 10px;
}

#section-hero .hero-title-box {
  text-align: center;
  width: 100%;
  height: 100%;
  font-weight: 900;
}

#section-hero .content-hero-logo {
  max-height: 220px;
  max-width: 100%;
  height: auto;
}

#section-hero .card {
  margin: 24px auto;
}

#section-hero .card .card-body {
  max-width: 248px;
}

#section-hero .lity video {
  width: 100%;
}

#section-hero .video {
  max-height: 100%;
  max-width: 678px;
  border-radius: 8px;
  margin: 40px auto;
  z-index: 9;
  background-size: cover;
  -webkit-transition: .5s ease;
  transition: .5s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

#section-hero .video:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

#section-hero .video:focus {
  outline: none;
}

#section-hero .video .overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 8px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(2, 25, 43, 0.1)), to(rgba(2, 25, 43, 0.62)));
  background: linear-gradient(180deg, rgba(2, 25, 43, 0.1) 0%, rgba(2, 25, 43, 0.62) 100%);
  -webkit-box-shadow: 0 7px 33px -8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 7px 33px -8px rgba(0, 0, 0, 0.08);
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

#section-hero .video .thumbnail {
  position: relative;
  left: 0;
  right: 0;
  z-index: -999;
  overflow: hidden;
  max-height: 380px;
  max-width: 100%;
}

#section-hero .video .play-icon {
  position: absolute;
  max-width: 50px;
}

#section-hero .video-box {
  display: none;
}

#section-hero .video-box.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease;
  z-index: 99999999;
  will-change: opacity;
}

#section-hero #video-player {
  width: 100vw;
  max-height: 100vh;
  margin: 0 auto;
}

#section-hero .video-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 20px;
  top: 20px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 45px;
  font-weight: 300;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: 0 0;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

#section-hero.hero-style-2 .video {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

#section-hero.hero-style-2 .video .overlay {
  background: none;
}

#section-hero.hero-style-2 .video .overlay::after {
  opacity: .1;
  content: '';
  display: block;
  position: relative;
  top: 0;
  border-radius: 8px;
  z-index: -9;
  width: 100%;
  height: 100%;
}

#section-hero.hero-style-2 .video .thumbnail {
  display: none;
}

.hero_logo {
  width: 100%;
}

.hero_logo .hero-logo-img {
  display: block;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

#section-about {
  height: auto;
}

#section-about h1 {
  margin-bottom: 32px;
}

#section-about p {
  font-size: 1.35rem;
  margin-bottom: 48px;
}

#section-about.about-style-1 p {
  background: #fff;
  -webkit-box-shadow: 0 1px 4px rgba(15, 6, 102, 0.16) !important;
          box-shadow: 0 1px 4px rgba(15, 6, 102, 0.16) !important;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
}

#section-about.about-style-1 h1 {
  text-align: center;
}

#section-tracks {
  height: auto;
}

#section-tracks p {
  font-size: 1.35rem;
}

#section-tracks .container-fluid {
  padding: 0;
  margin-top: 48px;
}

#section-tracks .container-fluid .item {
  margin-bottom: 48px;
}

#section-tracks .container-fluid .item img {
  max-width: 132px;
  max-height: 88px;
  margin-bottom: 16px;
}

#section-tracks .container-fluid .card {
  text-align: center;
  padding: 55px 40px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#section-tracks .container-fluid .card .btn {
  position: relative;
  bottom: -70px;
  margin-top: auto;
  width: auto;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

#section-tracks .container-fluid .card .btn.disable-track {
  bottom: -20px !important;
}

#section-tracks .container-fluid .card .unpublished {
  border-radius: 50px;
  width: 120px;
  opacity: .85;
  background-color: rgba(131, 131, 131, 0.2);
  display: block;
  margin: 0 auto;
  margin-top: 10px;
  font-size: 12px;
}

#section-tracks.tracks-style-2 .container-fluid .card {
  border: 0;
  -webkit-box-shadow: 0 1px 4px rgba(15, 6, 102, 0.16) !important;
          box-shadow: 0 1px 4px rgba(15, 6, 102, 0.16) !important;
  border-radius: 2px;
  position: relative;
  padding-bottom: 104px;
  overflow: hidden;
}

#section-tracks.tracks-style-2 .container-fluid .card .btn {
  position: absolute;
  width: 100%;
  bottom: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 2px;
  color: #fff;
}

#section-tracks.tracks-style-2 .not-allowed {
  cursor: not-allowed;
}

#section-stages {
  overflow-x: hidden;
  height: auto;
  min-width: 100%;
}

#section-stages h1 {
  margin-bottom: 64px;
}

#section-stages .tabs {
  text-align: center;
}

#section-stages .tabs .vr {
  height: 24px;
  width: 4px;
  display: block;
  margin: 24px auto 0;
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  margin-top: auto;
  margin-bottom: -3px;
}

#section-stages .tabs .item {
  opacity: .7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
}

#section-stages .tabs .item .img-box {
  width: 40px;
  height: 40px;
  margin: 0 auto;
}

#section-stages .tabs .item .img-box img {
  max-width: 40px;
  max-height: 40px;
}

#section-stages .tabs .item.active {
  opacity: 1;
}

#section-stages .tabs .item.active .vr {
  opacity: 1;
  font-size: 24px;
}

#section-stages .tabs .item.current-stage .content-stages-tab-indicator-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}

#section-stages .tabs .item.current-stage .content-stages-tab-indicator-icon::after {
  content: '';
  top: -2px;
  bottom: 0;
  height: 35px;
  width: 35px;
  position: absolute;
  border-radius: 50%;
  -webkit-animation: pulse 1.5s infinite;
          animation: pulse 1.5s infinite;
}

[dir='rtl'] #section-stages .tabs .item.current-stage .content-stages-tab-indicator-icon::after {
  right: -5px;
}

[dir='ltr'] #section-stages .tabs .item.current-stage .content-stages-tab-indicator-icon::after {
  left: -5px;
}

[dir='rtl'] #section-stages .tabs .item.current-stage .content-stages-tab-indicator-icon::after {
  left: 0;
}

[dir='ltr'] #section-stages .tabs .item.current-stage .content-stages-tab-indicator-icon::after {
  right: 0;
}

#section-stages .tabs .item.current-stage .content-stages-tab-indicator-icon:hover {
  -webkit-animation: none;
          animation: none;
}

@-webkit-keyframes pulse {
  0% {
    [dir='rtl'] #section-stages .tabs .item.current-stage {
      right: 0;
    }
    [dir='ltr'] #section-stages .tabs .item.current-stage {
      left: 0;
    }
    [dir='rtl'] #section-stages .tabs .item.current-stage {
      left: 0;
    }
    [dir='ltr'] #section-stages .tabs .item.current-stage {
      right: 0;
    }
    opacity: .7;
    top: 3px;
    bottom: 0;
    height: 25px;
    width: 25px;
  }

  70% {
    [dir='rtl'] #section-stages .tabs .item.current-stage {
      right: -10px;
    }
    [dir='ltr'] #section-stages .tabs .item.current-stage {
      left: -10px;
    }
    [dir='rtl'] #section-stages .tabs .item.current-stage {
      left: 0;
    }
    [dir='ltr'] #section-stages .tabs .item.current-stage {
      right: 0;
    }
    opacity: 0;
    top: -6px;
    bottom: 0;
    height: 45px;
    width: 45px;
  }

  100% {
    [dir='rtl'] #section-stages .tabs .item.current-stage {
      right: -5px;
    }
    [dir='ltr'] #section-stages .tabs .item.current-stage {
      left: -5px;
    }
    [dir='rtl'] #section-stages .tabs .item.current-stage {
      left: 0;
    }
    [dir='ltr'] #section-stages .tabs .item.current-stage {
      right: 0;
    }
    opacity: 0;
    top: -2px;
    bottom: 0;
    height: 35px;
    width: 35px;
  }
}

@keyframes pulse {
  0% {
    [dir='rtl'] #section-stages .tabs .item.current-stage {
      right: 0;
    }
    [dir='ltr'] #section-stages .tabs .item.current-stage {
      left: 0;
    }
    [dir='rtl'] #section-stages .tabs .item.current-stage {
      left: 0;
    }
    [dir='ltr'] #section-stages .tabs .item.current-stage {
      right: 0;
    }
    opacity: .7;
    top: 3px;
    bottom: 0;
    height: 25px;
    width: 25px;
  }

  70% {
    [dir='rtl'] #section-stages .tabs .item.current-stage {
      right: -10px;
    }
    [dir='ltr'] #section-stages .tabs .item.current-stage {
      left: -10px;
    }
    [dir='rtl'] #section-stages .tabs .item.current-stage {
      left: 0;
    }
    [dir='ltr'] #section-stages .tabs .item.current-stage {
      right: 0;
    }
    opacity: 0;
    top: -6px;
    bottom: 0;
    height: 45px;
    width: 45px;
  }

  100% {
    [dir='rtl'] #section-stages .tabs .item.current-stage {
      right: -5px;
    }
    [dir='ltr'] #section-stages .tabs .item.current-stage {
      left: -5px;
    }
    [dir='rtl'] #section-stages .tabs .item.current-stage {
      left: 0;
    }
    [dir='ltr'] #section-stages .tabs .item.current-stage {
      right: 0;
    }
    opacity: 0;
    top: -2px;
    bottom: 0;
    height: 35px;
    width: 35px;
  }
}

#section-stages .tabs .item .content-stages-tab-indicator-icon {
  margin-top: 4px;
  display: none;
}

[dir='rtl'] #section-stages .tabs .item .content-stages-tab-indicator-icon {
  margin-left: 20px;
}

[dir='ltr'] #section-stages .tabs .item .content-stages-tab-indicator-icon {
  margin-right: 20px;
}

#section-stages .tabs .item .content-stages-tab-indicator-icon + h4 {
  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 270px;
  min-width: 5px;
}

#section-stages .owl-carousel {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

#section-stages .owl-carousel .owl-stage-outer {
  overflow: unset;
}

#section-stages .owl-carousel .owl-item {
  opacity: .3;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  cursor: pointer;
}

#section-stages .owl-carousel .owl-item * {
  pointer-events: none;
}

#section-stages .owl-carousel .owl-item.active {
  cursor: default;
  opacity: 1;
}

#section-stages .owl-carousel .owl-item.active * {
  pointer-events: all;
}

#section-stages .owl-dots {
  display: none;
}

#section-stages .owl-dots.active span {
  background-color: #fff;
}

#section-stages .owl-dots button {
  border: 0;
  background: none;
  padding: none;
  outline: none;
}

#section-stages .owl-dots span {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

#section-stages .owl-dots span span {
  background-color: #fff;
}

#section-stages .card-container {
  margin-top: 0;
  padding: 64px;
}

#section-stages .card-container .card-update {
  margin-top: 24px;
}

#section-stages .card-container > p {
  font-size: 1.35rem;
}

#section-stages.stages-style-2 .card-container {
  border-radius: 40px;
  border-top-right-radius: 0;
  padding: 24px;
  text-align: center;
}

#section-objectives {
  height: auto;
}

#section-objectives p {
  font-size: 1.35rem;
}

#section-objectives .container-fluid {
  padding: 0;
  margin-top: 48px;
}

#section-objectives .container-fluid .objectives {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#section-objectives .container-fluid .objectives .objective {
  max-width: 320px;
  width: 100%;
  height: auto;
  margin: 48px 24px;
}

#section-objectives .container-fluid .objectives .objective-icon img {
  width: 100%;
}

#section-objectives .container-fluid .objectives .card {
  text-align: center;
  padding: 55px 40px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#section-objectives.objectives-style-2 .container-fluid .objectives {
  display: block;
}

#section-objectives.objectives-style-2 .container-fluid .objectives .objective {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin: 48px 24px;
}

#section-objectives.objectives-style-2 .container-fluid .objectives .objective-icon img {
  width: 100%;
}

#section-objectives.objectives-style-2 .container-fluid .card {
  border: 0;
  -webkit-box-shadow: 0 1px 4px rgba(15, 6, 102, 0.16) !important;
          box-shadow: 0 1px 4px rgba(15, 6, 102, 0.16) !important;
  border-radius: 2px;
  position: relative;
  padding-bottom: 104px;
  overflow: hidden;
}

#section-voting {
  height: auto;
  padding-bottom: 128px;
}

#section-voting .section-wrapper {
  padding-bottom: 0 !important;
}

#section-voting .content-voting-heading {
  margin-bottom: 80px;
}

#section-voting .ghost {
  margin: 0;
  padding: 0;
}

#section-voting .voting-owl-carouse-next,
  #section-voting .voting-owl-carouse-prev {
  position: absolute;
  z-index: 10;
  top: 40%;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 48px;
  height: 48px;
  cursor: pointer;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

[dir='rtl'] #section-voting .voting-owl-carouse-next, [dir='rtl']
    #section-voting .voting-owl-carouse-prev {
  left: 40px;
}

[dir='ltr'] #section-voting .voting-owl-carouse-next, [dir='ltr']
    #section-voting .voting-owl-carouse-prev {
  right: 40px;
}

#section-voting .voting-owl-carouse-next span,
    #section-voting .voting-owl-carouse-prev span {
  color: #fff;
}

#section-voting .voting-owl-carouse-next svg,
    #section-voting .voting-owl-carouse-prev svg {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

[dir='rtl'] #section-voting .voting-owl-carouse-next svg, [dir='rtl']
      #section-voting .voting-owl-carouse-prev svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

#section-voting .voting-owl-carouse-prev {
  -webkit-transform: scale(0);
          transform: scale(0);
}

[dir='rtl'] #section-voting .voting-owl-carouse-prev {
  right: 40px;
}

[dir='ltr'] #section-voting .voting-owl-carouse-prev {
  left: 40px;
}

#section-voting .tab-nav {
  max-width: 1192px;
  height: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

#section-voting .tab-group {
  position: relative;
}

#section-voting .tab-group .item {
  margin: 0 20px 40px;
  width: 320px;
  height: 320px;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

#section-voting .owl-carousel .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#section-voting .owl-drag {
  cursor: -webkit-grab;
}

#section-voting .owl-grab {
  cursor: -webkit-grabbing;
}

#section-awards {
  height: auto;
}

#section-awards .award-card {
  width: 280px;
  height: 280px;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  text-align: center;
  color: #000;
  background-color: #e8e8e8;
  margin-bottom: 24px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-repeat: no-repeat;
}

[dir='rtl'] #section-awards .award-card {
  margin-left: 24px;
}

[dir='ltr'] #section-awards .award-card {
  margin-right: 24px;
}

#section-awards .award-card .wrapper {
  width: 100%;
  height: 100%;
  padding: 16px;
}

[dir='rtl'] #section-awards .award-row {
  margin-left: -30px;
}

[dir='ltr'] #section-awards .award-row {
  margin-right: -30px;
}

#section-awards .content-awards-award-divider {
  margin: 20px 0;
}

#section-awards .content-awards-award-divider h4 {
  white-space: nowrap;
  margin-right: 30px;
}

#section-awards .line,
  #section-awards .line-fade {
  height: 1px;
  bottom: 0;
}

#section-awards .line-fade {
  width: 100%;
  left: 0;
  background: #fff;
  opacity: .09;
}

#section-awards p.section-description {
  font-size: 1.35rem;
}

#section-awards .section-description {
  margin-bottom: 48px;
}

#section-awards .track-card-horizontal {
  margin-bottom: 24px;
}

#section-awards .track-card-horizontal img {
  max-width: 120px;
  max-height: 88px;
}

#section-awards.awards-style-1 .award-card {
  margin: 0;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-radius: 0 !important;
  background-repeat: no-repeat;
  border: 0;
}

#section-awards.awards-style-1 .award-row {
  -webkit-box-shadow: 0 1px 4px rgba(15, 6, 102, 0.16) !important;
          box-shadow: 0 1px 4px rgba(15, 6, 102, 0.16) !important;
}

#section-guidelines {
  height: auto;
  min-height: 750px;
}

#section-guidelines .content-guidelines-heading {
  margin-bottom: 88px;
}

#section-guidelines.guidelines-style-1 .accordion {
  background: none;
  border: 0;
}

#section-guidelines.guidelines-style-1 .accordion .item.item-header {
  margin-bottom: 8px;
  background: #fff;
  border-radius: 8px;
}

#section-guidelines.guidelines-style-1 .content-guidelines-item-description {
  background: #fff;
  margin-bottom: 8px;
  border-radius: 0 0 8px 8px;
  margin-top: -18px;
  border-top: 1px solid #d6d6d6;
}

#section-footer {
  height: auto;
}

#section-footer .section-wrapper {
  padding: 124px 124px 24px;
}

#section-footer .social-media {
  width: 251px;
  padding: 16px 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

#section-footer .social-media .ico {
  margin: 0 4px;
  width: 26px;
  height: 26px;
  margin-bottom: 0;
  display: inline-block;
  vertical-align: middle;
}

#section-footer .sponsors img {
  max-height: 84px;
}

#section-footer .sponsors .item {
  margin-bottom: 0;
}

#section-footer .sponsors h4 {
  font-weight: 100;
  margin-bottom: 24px;
}

#section-footer .item {
  margin-bottom: 32px;
}

#section-footer .item .title {
  margin-bottom: 24px;
}

#section-footer .item .body a {
  display: block;
}

#section-footer .version {
  margin-top: 20px;
}

#section-footer .version p {
  font-size: 16px !important;
  opacity: .8;
}

#section-footer.footer-style-2 .social-media {
  margin: auto;
}

#section-footer.footer-style-2 .links {
  max-width: 500px;
  margin: auto;
}

#section-footer.footer-style-2 .section-wrapper {
  padding: 24px;
}

#section-footer.footer-style-3 .section-wrapper, #section-footer.footer-style-4 .section-wrapper {
  padding: 32px;
}

#section-footer.footer-style-3 .logo, #section-footer.footer-style-4 .logo {
  width: 120px;
  padding: 24px 0;
}

#section-footer.footer-style-3 .sponsors-row, #section-footer.footer-style-4 .sponsors-row {
  margin-top: 40px;
}

#section-footer.footer-style-3 .sponsors-row .item, #section-footer.footer-style-4 .sponsors-row .item {
  margin: 0 16px;
}

#section-footer.footer-style-3 .sponsor-title, #section-footer.footer-style-4 .sponsor-title {
  text-align: center;
  margin-top: 20px;
}

.logo {
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
}

@media (max-width: 991.98px) {
  #section-footer.footer-style-2, #section-footer.footer-style-3, #section-footer.footer-style-4 {
    padding-bottom: 64px;
  }

  #section-footer.footer-style-2 .links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  #section-footer.footer-style-2 .links a {
    margin-bottom: 16px;
  }
}

#section-custom {
  height: auto;
}

.update-detail .section-header {
  padding: 72px;
  background-repeat: no-repeat;
  background-position: center;
  height: 512px;
  background-size: cover;
}

.update-detail .iner-header {
  padding: 32px 162px;
}

.update-detail .page-content {
  background-image: none;
}

.update-detail .page-content .container-fluid {
  padding: 1em;
}

.voting-detail .header {
  padding: 0;
}

[dir='rtl'] .voting-detail .header .back {
  margin-right: 12px;
}

[dir='ltr'] .voting-detail .header .back {
  margin-left: 12px;
}

.voting-detail .header .section-wrapper {
  padding: 0 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
}

.voting-detail .arrow-back svg {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

[dir='rtl'] .voting-detail .arrow-back svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.voting-detail #video-player {
  display: none !important;
}

.voting-detail .detail-header-bg {
  display: none !important;
}

.voting-detail .image .detail-header-bg {
  display: block !important;
}

.voting-detail .video-media #video-player {
  display: block !important;
}

.voting-detail .page-content {
  padding-top: 80px;
}

.voting-detail .page-content .container-fluid {
  padding: 0;
  min-height: calc(100vh - 80px);
}

.voting-detail .page-content .section-header {
  padding: 0;
  margin: -16px -16px 0;
  background-size: cover;
  background-position: center;
  display: block;
  height: 810px;
}

.voting-detail button .ytp-large-play-button .ytp-button {
  display: none;
}

.voting-detail .plyr__controls {
  display: none;
}

.voting-detail .plyr--full-ui.plyr--video .plyr__control--overlaid {
  width: 80px;
  height: 80px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #2d2d2d;
}

.voting-detail .section-body {
  padding: 0;
}

.voting-detail .section-body .tags-group {
  margin-bottom: 16px;
}

.voting-detail .section-body .vote-tag.voted {
  background-color: #36bf93;
  -webkit-box-shadow: 0 10px 19px -12px #36bf93;
          box-shadow: 0 10px 19px -12px #36bf93;
}

[dir='rtl'] .voting-detail .section-body .vote-tag.voted::before {
  content: 'تم التصويت';
}

[dir='ltr'] .voting-detail .section-body .vote-tag.voted::before {
  content: 'Already voted';
}

.voting-detail .section-body .vote-tag.voted p {
  display: none;
}

.voting-detail .section-body .vote-tag.voted:hover {
  background-color: #f50101;
  -webkit-box-shadow: 0 10px 19px -12px #f50101;
          box-shadow: 0 10px 19px -12px #f50101;
}

[dir='rtl'] .voting-detail .section-body .vote-tag.voted:hover::before {
  content: 'إزالة';
}

[dir='ltr'] .voting-detail .section-body .vote-tag.voted:hover::before {
  content: 'Remove vote';
}

.voting-detail .section-body .vote-box {
  height: 129px;
  border-radius: 16px;
  background-color: rgba(131, 131, 131, 0.2);
  margin-top: 56px;
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.voting-detail .section-body .vote-box .vote-tag {
  padding: 4px 17px;
  width: 231px;
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: all ease-out 300ms;
  transition: all ease-out 300ms;
}

[dir='rtl'] .voting-detail .section-body .vote-box .vote-tag {
  margin-left: 8px;
}

[dir='ltr'] .voting-detail .section-body .vote-box .vote-tag {
  margin-right: 8px;
}

.voting-detail .section-body .vote-box .vote-tag:hover {
  opacity: .8;
}

.voting-detail .section-body .vote-box .vote-tag p {
  font-size: 29px !important;
  opacity: 1;
}

[dir='rtl'] .voting-detail .section-body .vote-box .vote-tag svg {
  margin-right: 12px;
}

[dir='ltr'] .voting-detail .section-body .vote-box .vote-tag svg {
  margin-left: 12px;
}

.voting-detail .section-body .vote-box .sharing-button__link {
  margin: 0;
}

.voting-detail .section-body .vote-box .sharing-button__link .sharing-button {
  padding: 4px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform ease-in-out 100ms;
  transition: -webkit-transform ease-in-out 100ms;
  transition: transform ease-in-out 100ms;
  transition: transform ease-in-out 100ms, -webkit-transform ease-in-out 100ms;
}

.voting-detail .section-body .vote-box .sharing-button__link .sharing-button.show {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform ease-in-out 100ms;
  transition: -webkit-transform ease-in-out 100ms;
  transition: transform ease-in-out 100ms;
  transition: transform ease-in-out 100ms, -webkit-transform ease-in-out 100ms;
}

.voting-detail .section-body .vote-box .sharing-button-group {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  height: 0;
}

[dir='rtl'] .voting-detail .section-body .vote-box .sharing-button-group {
  margin-right: auto;
}

[dir='ltr'] .voting-detail .section-body .vote-box .sharing-button-group {
  margin-left: auto;
}

[dir='rtl'] .voting-detail .section-body .vote-box .sharing-button-group {
  left: 140px;
}

[dir='ltr'] .voting-detail .section-body .vote-box .sharing-button-group {
  right: 140px;
}

.voting-detail .section-body .vote-box .sharing-button-group.show {
  visibility: visible;
  height: auto;
}

.voting-detail .section-body .vote-box .share-tag {
  background-color: rgba(131, 131, 131, 0.2);
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

[dir='rtl'] .voting-detail .section-body .vote-box .share-tag {
  margin-right: auto;
}

[dir='ltr'] .voting-detail .section-body .vote-box .share-tag {
  margin-left: auto;
}

[dir='rtl'] .voting-detail .section-body .vote-box .share-tag {
  left: 32px;
}

[dir='ltr'] .voting-detail .section-body .vote-box .share-tag {
  right: 32px;
}

[dir='rtl'] .voting-detail .section-body .vote-box .share-tag.m-0 {
  margin-right: 12px;
}

[dir='ltr'] .voting-detail .section-body .vote-box .share-tag.m-0 {
  margin-left: 12px;
}

.voting-detail .section-body .vote-box .share-tag p {
  font-size: 13px !important;
}

[dir='rtl'] .voting-detail .section-body .vote-box .share-tag svg {
  margin-left: 4px;
}

[dir='ltr'] .voting-detail .section-body .vote-box .share-tag svg {
  margin-right: 4px;
}

.voting-detail .section-body .vote-box .vote-count {
  color: rgba(0, 0, 0, 0.6);
  opacity: .7;
}

[dir='rtl'] .voting-detail .section-body .vote-box .vote-count {
  margin-right: 12px;
}

[dir='ltr'] .voting-detail .section-body .vote-box .vote-count {
  margin-left: 12px;
}

.voting-detail .section-wrapper {
  padding-top: 112px;
}

.voting-detail .section-wrapper .submission-field-group {
  margin-bottom: 32px;
}

.voting-detail .section-wrapper .submission-field-group .submission-field-header {
  margin-bottom: 8px;
  height: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-left: 30px;
  width: 100%;
}

.voting-detail .section-wrapper .submission-field-group .hr {
  display: block;
  height: 1px;
  width: 100%;
  background: rgba(0, 0, 0, 0.04);
}

.voting-detail .section-wrapper .submission-field-group .submission-field-body {
  font-size: 1.5rem;
}

.voting-detail .section-wrapper .submission-details {
  margin-top: 24px;
  font-size: 14px !important;
  opacity: .7;
}

@media (max-width: 768px) {
  .voting-detail .section-wrapper {
    padding-top: 64px;
  }

  .voting-detail .sharing-button-group,
  .voting-detail .share-tag {
    position: relative !important;
  }

  [dir='rtl'] .voting-detail .sharing-button-group, [dir='rtl']
    .voting-detail .share-tag {
    left: initial !important;
  }

  [dir='ltr'] .voting-detail .sharing-button-group, [dir='ltr']
    .voting-detail .share-tag {
    right: initial !important;
  }

  .voting-detail .vote-box {
    display: block !important;
    height: auto !important;
    text-align: center;
  }

  .voting-detail .vote-box .sharing-button-group {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .voting-detail .vote-box .vote-tag,
    .voting-detail .vote-box .vote-count,
    .voting-detail .vote-box .share-tag,
    .voting-detail .vote-box .sharing-button-group {
    margin: 0 !important;
    width: 100% !important;
    margin-bottom: 16px !important;
  }
}

.spinner {
  margin: -2px auto 0;
  width: 70px;
  text-align: center;
}

.spinner .bounce1 {
  margin-left: 8px;
  -webkit-animation-delay: -.32s;
          animation-delay: -.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -.16s;
          animation-delay: -.16s;
}

.spinner > div {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out both;
          animation: bouncedelay 1.4s infinite ease-in-out both;
}

.submit-spinner {
  color: #fff !important;
}

@-webkit-keyframes bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.voting-all .section-header {
  height: 100% !important;
}

.voting-all .section-wrapper {
  max-width: 1288px !important;
}

.voting-all .content {
  margin-top: -300px;
}

[dir='rtl'] .voting-all .content .filter {
  margin-right: auto;
}

[dir='ltr'] .voting-all .content .filter {
  margin-left: auto;
}

.voting-all .vote-card {
  width: 320px;
  height: 320px;
  display: inline-block;
  margin: 10px;
}

.voting-all #section-voting {
  padding-bottom: 200px;
}

.accordion.card {
  padding: 0;
  width: 100%;
}

.accordion .item ul {
  list-style: disc;
  margin: inherit;
  padding: unset;
}

[dir='rtl'] .accordion .item ul {
  padding-right: 40px !important;
}

[dir='ltr'] .accordion .item ul {
  padding-left: 40px !important;
}

.accordion .item ul li {
  display: list-item;
}

.accordion .item > div {
  padding: 16px 24px;
}

.accordion .item strong {
  font-weight: 900 !important;
}

.accordion .item.item-header {
  border-top: solid 1px rgba(151, 151, 151, 0.18);
  padding: 0 24px;
  height: 108px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.accordion .item.item-header img {
  max-width: 24px;
  max-height: 24px;
}

.accordion .item.item-header p {
  font-size: 1.125rem;
}

[dir='rtl'] .accordion .item.item-header p {
  margin-left: auto;
}

[dir='ltr'] .accordion .item.item-header p {
  margin-right: auto;
}

[dir='rtl'] .accordion .item.item-header p {
  text-align: right;
}

[dir='ltr'] .accordion .item.item-header p {
  text-align: left;
}

.accordion .item.item-header:first-child {
  border-top: 0;
}

[dir='rtl'] .accordion .item .ico {
  margin-left: 32px;
}

[dir='ltr'] .accordion .item .ico {
  margin-right: 32px;
}

.avatar {
  border-radius: 100%;
  border: 2px solid currentColor;
  -webkit-box-shadow: 0 10px 19px -12px currentColor;
          box-shadow: 0 10px 19px -12px currentColor;
  background: #fff;
  display: block;
  max-width: 48px;
  max-height: 48px;
  width: 100%;
  height: 100%;
}

button .avatar {
  width: 32px;
  height: 32px;
}

[dir='rtl'] button .avatar {
  margin-left: 8px;
}

[dir='ltr'] button .avatar {
  margin-right: 8px;
}

.btn {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 0;
  width: auto;
  padding: 9px 32px;
  -webkit-transition: -webkit-box-shadow .2s ease-in;
  transition: -webkit-box-shadow .2s ease-in;
  transition: box-shadow .2s ease-in;
  transition: box-shadow .2s ease-in, -webkit-box-shadow .2s ease-in;
  line-height: 34px;
  height: 48px;
  cursor: pointer;
}

.btn.error {
  background-color: #fef0ea !important;
  color: #f7905d;
  -webkit-box-shadow: 0 10px 19px -12px #f7905d !important;
          box-shadow: 0 10px 19px -12px #f7905d !important;
}

.btn[type='button'] {
  min-width: 178px;
}

.btn[href='#remove'] {
  padding: 10px 20px;
}

[dir='rtl'] .btn[href='#remove'] {
  margin-left: 10px;
}

[dir='ltr'] .btn[href='#remove'] {
  margin-right: 10px;
}

.btn:focus {
  outline: 0;
}

.btn.btn-primary {
  background-color: #fff;
  border: 1px solid rgba(0, 61, 76, 0.08);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.btn.btn-transparent:hover {
  background-color: rgba(131, 131, 131, 0.2);
  -webkit-transition: -webkit-box-shadow .2s ease-out;
  transition: -webkit-box-shadow .2s ease-out;
  transition: box-shadow .2s ease-out;
  transition: box-shadow .2s ease-out, -webkit-box-shadow .2s ease-out;
}

.btn.btn-box-shadow :hover {
  -webkit-transition: -webkit-box-shadow .2s ease-out;
  transition: -webkit-box-shadow .2s ease-out;
  transition: box-shadow .2s ease-out;
  transition: box-shadow .2s ease-out, -webkit-box-shadow .2s ease-out;
}

.btn.btn-secondary {
  background-color: rgba(0, 0, 0, 0.04);
}

.btn.btn-secondary:hover {
  background-color: rgba(0, 0, 0, 0.08);
}

.btn .icon {
  width: 22px;
}

[dir='rtl'] .btn .icon {
  margin-left: 16px;
}

[dir='ltr'] .btn .icon {
  margin-right: 16px;
}

#view-file [href='#remove'] {
  padding: 14px 16px;
}

[dir='rtl'] #view-file [href='#remove'] {
  margin-right: 10px;
}

[dir='ltr'] #view-file [href='#remove'] {
  margin-left: 10px;
}

#view-file [href='#remove'] .remove-btn {
  margin: 0;
}

.btn-large {
  padding: 40px;
  font-size: 1.25rem;
  min-width: 256px;
  min-height: 144px;
}

.btn-large span {
  display: block;
  font-size: .875rem;
}

.btn-media {
  width: 100%;
  max-width: 100%;
  color: #fff;
  border-radius: 4px;
  margin-bottom: 16px;
  padding: 8px 16px;
  position: relative;
}

[dir='rtl'] .btn-media {
  text-align: right;
}

[dir='ltr'] .btn-media {
  text-align: left;
}

.btn-media img {
  width: 20px;
  position: absolute;
  top: 14px;
  margin: 0;
}

[dir='rtl'] .btn-media img {
  left: 16px;
}

[dir='ltr'] .btn-media img {
  right: 16px;
}

.btn-media.twitter {
  background: #5da8dc;
  border: 2px solid #5da8dc;
}

.btn-media.twitter:hover {
  background: #72b3e1;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-media.facebook {
  background: #3c5a9a;
  border: 2px solid #3c5a9a;
}

.btn-media.facebook:hover {
  background: #4365ac;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-media.google {
  background: #fff;
  color: #4285f4;
  border: 2px solid #4285f4;
}

.btn-media.google:hover {
  background: #ebf2fe;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.disable-track {
  background-color: rgba(131, 131, 131, 0.2) !important;
  border: 0;
  cursor: not-allowed;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.sharing-button__link,
.sharing-button__icon {
  display: inline-block;
}

.sharing-button__link {
  text-decoration: none;
  color: #fff;
  margin: 8px;
}

.sharing-button {
  border-radius: 5px;
  -webkit-transition: 25ms ease-out;
  transition: 25ms ease-out;
  padding: 8px;
}

.sharing-button__icon svg {
  width: 24px;
  height: 24px;
  margin-right: 5px;
  vertical-align: top;
}

.sharing-button__icon .sharing-button__icon {
  stroke: #fff;
  fill: none;
}

.sharing-button--small svg {
  margin: 0;
  vertical-align: middle;
}

.sharing-button__icon--solid,
.sharing-button__icon--solidcircle {
  fill: #293644;
  stroke: none;
}

.sharing-button--facebook:hover .sharing-button__icon--solid,
.sharing-button--facebook:hover .sharing-button__icon--solidcircle {
  fill: #3c5a9a;
  stroke: none;
}

.sharing-button--twitter:hover .sharing-button__icon--solid,
.sharing-button--twitter:hover .sharing-button__icon--solidcircle {
  fill: #5da8dc;
  stroke: none;
}

.sharing-button--whatsapp:hover .sharing-button__icon--solid,
.sharing-button--whatsapp:hover .sharing-button__icon--solidcircle {
  fill: #1da851;
  stroke: none;
}

.sharing-button--telegram:hover .sharing-button__icon--solid,
.sharing-button--telegram:hover .sharing-button__icon--solidcircle {
  fill: #249ad7;
  stroke: none;
}

.atlwdg-trigger .atlwdg-SUBTLE {
  margin: 24px !important;
  text-shadow: none !important;
  padding: 0 !important;
  height: 48px !important;
  width: 48px !important;
  text-align: center !important;
  background: #fff !important;
  border: 1px solid rgba(0, 61, 76, 0.08) !important;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
  border-radius: 64px !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  font-size: 24px !important;
}

.card {
  padding: 16px;
  height: 100%;
}

.card .card-title,
  .card .card-body {
  display: inline-block;
}

.card .card-title h4 {
  font-weight: 100;
}

[dir='rtl'] .card .card-body {
  margin-right: 2rem;
}

[dir='ltr'] .card .card-body {
  margin-left: 2rem;
}

.card.track-card-horizontal .card-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.card.track-card-horizontal .card-title img {
  max-width: 132px;
  max-height: 88px;
}

[dir='rtl'] .card.track-card-horizontal .card-title img {
  margin-left: 28px;
}

[dir='ltr'] .card.track-card-horizontal .card-title img {
  margin-right: 28px;
}

.card.track-card-horizontal .card-title p {
  font-size: 20px;
  max-width: 618px;
}

.card.track-card-horizontal .card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

[dir='rtl'] .card.track-card-horizontal .card-body {
  margin-right: 0;
}

[dir='ltr'] .card.track-card-horizontal .card-body {
  margin-left: 0;
}

.card.alert {
  max-width: 560px;
  padding: 24px;
  margin: 0 auto;
  text-align: center;
  font-size: 0;
}

.card.alert p {
  width: 100%;
}

.card.alert .alert-icon {
  max-height: 47px;
  margin-bottom: 16px;
}

.card.alert .alert-title {
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.card.alert .alert-body {
  margin-bottom: 24px;
}

.card.card-update {
  -webkit-transition: background-color .2s ease-in-out;
  transition: background-color .2s ease-in-out;
}

.card.card-update:hover {
  -webkit-box-shadow: inset 0 0 100px 100px rgba(0, 0, 0, 0.04);
          box-shadow: inset 0 0 100px 100px rgba(0, 0, 0, 0.04);
  -webkit-transition: background-color .2s ease-in-out;
  transition: background-color .2s ease-in-out;
}

.card.vote-card {
  position: relative;
  padding: 32px;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.card.vote-card a {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.card.vote-card .wrapper {
  z-index: 3;
  position: absolute;
  top: 32px;
  right: 32px;
  bottom: 32px;
  left: 32px;
}

.card.vote-card .overlay {
  display: none;
  background-color: rgba(41, 54, 68, 0.5);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.card.vote-card .title {
  margin-top: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.card.vote-card .dot {
  display: inline-block;
  background-color: #f50101;
  width: 10px;
  height: 10px;
  border-radius: 100%;
}

[dir='rtl'] .card.vote-card .dot {
  margin-left: 8px;
}

[dir='ltr'] .card.vote-card .dot {
  margin-right: 8px;
}

.card.vote-card .footer {
  position: absolute;
  bottom: 0;
  fill: rgba(41, 54, 68, 0.04);
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.card.vote-card .footer p {
  font-size: 11px !important;
  opacity: .7;
}

.card.vote-card .footer .username {
  text-overflow: ellipsis;
  overflow: hidden;
  width: 130px;
  white-space: nowrap;
}

[dir='rtl'] .card.vote-card .footer .go-action {
  margin-right: auto;
}

[dir='ltr'] .card.vote-card .footer .go-action {
  margin-left: auto;
}

.card.vote-card .footer .go-action svg {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  margin-bottom: -4px;
}

[dir='rtl'] .card.vote-card .footer .go-action svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.card.vote-card .footer .go-action.white {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  fill: #fff;
}

.card.vote-card .footer .play-action {
  display: none;
}

.card.vote-card.false a {
  color: #fff;
}

.card.vote-card.false .tag {
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.card.vote-card.false .tag p svg path {
  fill: #fff;
}

.card.vote-card.false .overlay {
  display: block;
}

.card.vote-card.false .play-action {
  border-radius: 100%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

[dir='rtl'] .card.vote-card.false .play-action {
  margin-right: auto;
}

[dir='ltr'] .card.vote-card.false .play-action {
  margin-left: auto;
}

.card.vote-card.false .play-action img {
  margin-bottom: -3px;
}

.card.vote-card.false .go-action {
  display: none !important;
}

.card.vote-card.false .go-action .white {
  display: block !important;
}

.right-border {
  position: relative;
}

.right-border::after {
  content: '';
  position: absolute;
  top: -2px;
  bottom: -2px;
  width: 8px;
  background-color: #24ddd7;
  z-index: 2;
}

[dir='rtl'] .right-border::after {
  right: -2px;
}

[dir='ltr'] .right-border::after {
  left: -2px;
}

.submission-card .status-pill {
  background-color: rgba(0, 199, 151, 0.16);
  color: #00c797;
  padding: 0 10px;
  border-radius: 20px;
  line-height: 22px;
  text-transform: uppercase;
  font-size: 12px !important;
}

.submission-card .status-pill.draft {
  background-color: rgba(234, 121, 57, 0.16);
  color: #ea7939;
}

.form-header {
  position: relative;
}

.submitted-pill {
  position: absolute;
  top: 20px;
  background-color: rgba(0, 199, 151, 0.16);
  color: #00c797;
  padding: 0 10px;
  border-radius: 20px;
  line-height: 22px;
  text-transform: uppercase;
  font-size: 12px !important;
  text-align: center;
  width: auto;
  font-weight: 400;
}

[dir='rtl'] .submitted-pill {
  left: 0;
}

[dir='ltr'] .submitted-pill {
  right: 0;
}

.form-view-block {
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.form-view-block .form-download {
  margin-top: 16px;
}

.form-view-block .block-ico {
  position: absolute;
  font-size: 90px;
  color: #f7f9fc;
}

[dir='rtl'] .form-view-block .block-ico {
  right: -20px;
}

[dir='ltr'] .form-view-block .block-ico {
  left: -20px;
}

.form-view-block .block-border {
  height: 1px;
  width: 90%;
  background-color: #f7f9fc;
  margin-bottom: 8px;
}

[dir='rtl'] .form-view-block .block-border {
  margin-right: 50px;
}

[dir='ltr'] .form-view-block .block-border {
  margin-left: 50px;
}

.form-view-block label.control-label {
  text-transform: capitalize;
}

[dir='rtl'] .form-view-block .control-label {
  padding-right: 50px;
}

[dir='ltr'] .form-view-block .control-label {
  padding-left: 50px;
}

[dir='rtl'] .form-view-block .block-content {
  padding-right: 50px;
}

[dir='ltr'] .form-view-block .block-content {
  padding-left: 50px;
}

.form-view-block .text-small {
  position: relative;
  top: -1.5em;
  font-size: 9px;
  text-transform: lowercase;
}

.feedbackModal {
  position: fixed;
  background: #fff;
  bottom: 20px;
  right: 20px;
  border: 1px solid #000;
  padding: 2px 10px;
  border-radius: 8px;
  font-size: 16px !important;
}

.feedbackModal img {
  width: 14px;
  margin-left: 5px;
}

.contact-us-modal {
  display: none;
  position: fixed;
  z-index: 999999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.2);
}

.modal-content {
  background-color: #fefefe;
  margin: 32px auto;
  padding: 20px;
  border: 1px solid #888;
  width: 96%;
  max-width: 720px;
}

.close {
  color: #aaa;
  float: left;
  font-size: 28px;
  font-weight: bold;
}

.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

html[dir='ltr'] .close {
  float: right;
}

.file-uploader-contact-us span {
  font-size: 12px;
  display: none;
}

.datepicker:not(.active) {
  left: 0 !important;
  display: none;
}

.datepicker .active {
  display: block;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  font-family: "Cairo";
  height: 100%;
  margin: 0;
  padding: 0;
}

[dir='rtl'] body {
  direction: rtl;
}

[dir='ltr'] body {
  direction: ltr;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul li {
  display: inline-block;
}

ul .styled {
  list-style: disc;
  margin: 0;
  padding: 0;
}

[dir='rtl'] ul .styled {
  padding-right: 32px;
}

[dir='ltr'] ul .styled {
  padding-left: 32px;
}

ul .styled li {
  display: list-item;
  font-family: "Noto Naskh Arabic", "Noto Sans", sans-serif;
  letter-spacing: 0;
}

.blue-link {
  color: #4a90e2;
}

.underline-link {
  text-decoration: underline;
}

.link-has-bg.active::after {
  opacity: .1;
  content: '';
  width: auto;
  height: 100%;
  display: block;
  position: relative;
  top: -48px;
  border-radius: 8px;
  z-index: -9;
}

.link-has-line,
.content-hero-nav-item {
  position: relative;
}

.link-has-line::after, .link-has-line::before,
  .content-hero-nav-item::after,
  .content-hero-nav-item::before {
  content: '';
  right: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  position: absolute;
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.48, 0.44, 1);
  transition: all 0.6s cubic-bezier(0.165, 0.48, 0.44, 1);
}

.link-has-line:hover::after,
  .content-hero-nav-item:hover::after {
  width: 100%;
  right: 0;
}

.link-has-line.active::after, .link-has-line[aria-expanded='true']::after,
  .content-hero-nav-item.active::after,
  .content-hero-nav-item[aria-expanded='true']::after {
  width: 100%;
  right: 0;
}

.timestamp {
  opacity: 0;
}

img {
  text-indent: -9999px;
}

strong {
  font-size: 20px !important;
}

.invisible {
  visibility: hidden;
}

.fit-content {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.mb-2 {
  margin-bottom: 32px;
}

.central-justification {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.vote-card .title {
  max-height: 180px;
  overflow: hidden;
}

#section-stages .owl-dots button {
  padding: 0 4px;
}

.validation-error {
  background: #fff3f3;
}

.validation-error div p {
  color: #d28b7d;
}

.invalid {
  border-bottom: solid 2px #f00;
  border-radius: 5px;
}

.form {
  max-width: 500px;
}

.form .form-header {
  margin: 32px 0 8px;
}

.form .form-header:first-child {
  margin-top: 0;
}

input,
select {
  font-size: 1.125rem;
  padding: .5rem .8rem;
  text-overflow: '';
  height: 48px;
}

textarea {
  height: 100%;
}

.form-control,
.selectize-input {
  display: block;
  width: 100%;
  padding: 6px 15px;
  font-size: 1rem;
  line-height: 1.5;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 4px;
  -webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
  border: 1px solid rgba(0, 61, 76, 0.08);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

[dir='rtl'] .form-control.form-control-icon, [dir='rtl']
  .selectize-input.form-control-icon {
  border-left: 0;
}

[dir='ltr'] .form-control.form-control-icon, [dir='ltr']
  .selectize-input.form-control-icon {
  border-right: 0;
}

.form-control:focus,
  .selectize-input:focus {
  outline: 0;
}

.form-control::-webkit-input-placeholder, .selectize-input::-webkit-input-placeholder {
  opacity: .6;
}

.form-control::-moz-placeholder, .selectize-input::-moz-placeholder {
  opacity: .6;
}

.form-control:-ms-input-placeholder, .selectize-input:-ms-input-placeholder {
  opacity: .6;
}

.form-control::-ms-input-placeholder, .selectize-input::-ms-input-placeholder {
  opacity: .6;
}

.form-control::placeholder,
  .selectize-input::placeholder {
  opacity: .6;
}

[dir='rtl'] .form-control::-webkit-input-placeholder, [dir='rtl']
    .selectize-input::-webkit-input-placeholder {
  text-align: right;
}

[dir='rtl'] .form-control::-moz-placeholder, [dir='rtl']
    .selectize-input::-moz-placeholder {
  text-align: right;
}

[dir='rtl'] .form-control:-ms-input-placeholder, [dir='rtl']
    .selectize-input:-ms-input-placeholder {
  text-align: right;
}

[dir='rtl'] .form-control::-ms-input-placeholder, [dir='rtl']
    .selectize-input::-ms-input-placeholder {
  text-align: right;
}

[dir='rtl'] .form-control::placeholder, [dir='rtl']
    .selectize-input::placeholder {
  text-align: right;
}

[dir='ltr'] .form-control::-webkit-input-placeholder, [dir='ltr']
    .selectize-input::-webkit-input-placeholder {
  text-align: left;
}

[dir='ltr'] .form-control::-moz-placeholder, [dir='ltr']
    .selectize-input::-moz-placeholder {
  text-align: left;
}

[dir='ltr'] .form-control:-ms-input-placeholder, [dir='ltr']
    .selectize-input:-ms-input-placeholder {
  text-align: left;
}

[dir='ltr'] .form-control::-ms-input-placeholder, [dir='ltr']
    .selectize-input::-ms-input-placeholder {
  text-align: left;
}

[dir='ltr'] .form-control::placeholder, [dir='ltr']
    .selectize-input::placeholder {
  text-align: left;
}

.form-control[disabled],
  .selectize-input[disabled] {
  opacity: .4;
  background: #eaeaea;
}

.file-upload {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: none;
  vertical-align: middle;
  width: 100%;
  max-width: 380px;
  text-align: center;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 48px;
}

[dir='rtl'] .file-upload {
  margin-right: 8px;
}

[dir='ltr'] .file-upload {
  margin-left: 8px;
}

.file-upload .upload {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
}

.file-upload-label {
  opacity: .4 !important;
}

.file-upload-label:focus {
  border: 0 !important;
}

.file-upload-label::-webkit-input-placeholder {
  opacity: 1 !important;
}

.file-upload-label::-moz-placeholder {
  opacity: 1 !important;
}

.file-upload-label:-ms-input-placeholder {
  opacity: 1 !important;
}

.file-upload-label::-ms-input-placeholder {
  opacity: 1 !important;
}

.file-upload-label::placeholder {
  opacity: 1 !important;
}

.file-upload-label[disabled] {
  font-size: 14px !important;
}

.file-upload-label[disabled]::-webkit-input-placeholder {
  font-size: 14px !important;
}

.file-upload-label[disabled]::-moz-placeholder {
  font-size: 14px !important;
}

.file-upload-label[disabled]:-ms-input-placeholder {
  font-size: 14px !important;
}

.file-upload-label[disabled]::-ms-input-placeholder {
  font-size: 14px !important;
}

.file-upload-label[disabled]::placeholder {
  font-size: 14px !important;
}

grammarly-ghost {
  display: none;
}

.control {
  cursor: pointer;
  display: block;
  position: relative;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 30px;
}

[dir='rtl'] .control {
  padding-right: 30px;
}

[dir='ltr'] .control {
  padding-left: 30px;
}

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.control input:disabled ~ .control__indicator {
  background: #e6e6e6;
  opacity: .6;
  pointer-events: none;
}

.control input:checked ~ .control__indicator {
  background: #00c797;
}

.control input:checked ~ .control__indicator::after {
  display: block;
}

.control input:focus ~ .control__indicator {
  background: #fff;
}

.control input:checked:focus ~ .control__indicator {
  background: #00c797;
}

.control:hover input ~ .control__indicator {
  background: #fff;
}

.control:hover input:not([disabled]):checked ~ .control__indicator {
  background: #00c797;
}

.control .control__indicator {
  position: absolute;
  top: 2px;
  height: 20px;
  width: 20px;
  background: #fff;
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 61, 76, 0.08);
  border-radius: 4px;
}

[dir='rtl'] .control .control__indicator {
  right: 0;
}

[dir='ltr'] .control .control__indicator {
  left: 0;
}

.control .control__indicator::after {
  content: '';
  position: absolute;
  display: none;
}

.control--radio .control__indicator {
  border-radius: 50%;
}

.control--radio .control__indicator::after {
  left: 6px;
  top: 6px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #fff;
}

.control--radio input:disabled ~ .control__indicator::after {
  background: #7b7b7b;
}

.control--checkbox .control__indicator::after {
  top: 3px;
  width: 6px;
  height: 10px;
  left: 6px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

[dir='rtl'] .control--checkbox .control__indicator::after {
  padding-right: 0;
}

[dir='ltr'] .control--checkbox .control__indicator::after {
  padding-left: 0;
}

.control--checkbox input:disabled ~ .control__indicator::after {
  background: #7b7b7b;
}

.header {
  padding: 64px 0;
}

.header .nav {
  height: 48px;
  line-height: 48px;
}

.header ul {
  font-size: 0 !important;
}

.header li {
  height: 48px;
  line-height: 48px;
}

[dir='rtl'] .header li {
  margin-left: 10px;
}

[dir='ltr'] .header li {
  margin-right: 10px;
}

.header li a {
  font-size: 1rem;
  font-weight: 600;
  padding: 0 6px;
  text-decoration: none;
  height: 48px;
  display: block;
}

.header .auth-btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .auth-btn-group button {
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
}

.header .auth-logged-in + .auth-btn-group {
  display: none;
}

[dir='rtl'] .header .sign-in, [dir='rtl']
  .header .dropdown {
  margin-left: 32px;
}

[dir='ltr'] .header .sign-in, [dir='ltr']
  .header .dropdown {
  margin-right: 32px;
}

.header-index {
  position: absolute;
  left: 0;
  right: 0;
}

.white-labelling {
  position: absolute;
  left: 0;
  right: 0;
  margin-top: -92px;
}

.white-labelling .language-switcher {
  margin: 32px 16px;
  display: block;
}

.white-labelling .language-switcher .bold {
  display: inline !important;
}

.header-fixed {
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  margin: 0;
  padding: 16px 0;
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  z-index: 999;
  -webkit-transition: -webkit-box-shadow ease-in-out 300ms;
  transition: -webkit-box-shadow ease-in-out 300ms;
  transition: box-shadow ease-in-out 300ms;
  transition: box-shadow ease-in-out 300ms, -webkit-box-shadow ease-in-out 300ms;
}

.header-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
}

.mobile-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.mobile-header ul {
  height: calc(100vh - 120px);
}

.mobile-header .content-hero-nav-item::after, .mobile-header .content-hero-nav-item::before {
  height: 0 !important;
  background-color: transparent;
}

.mobile-header .collapse-icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99999;
  padding: 16px;
  padding-top: 24px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.56)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0));
}

.mobile-header .collapse-icon .collapse-wrapper {
  max-width: 550px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  direction: ltr;
}

.mobile-header .collapse-icon svg {
  width: 32px;
  padding: 0 5px;
}

.mobile-header .content-header-hamburger {
  width: 50px;
  cursor: pointer;
}

.mobile-header .content-header-hamburger .menu svg {
  position: relative;
  top: -2px;
}

.mobile-header .collapse-nav-auth {
  opacity: 0;
  -webkit-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out;
  color: #fff;
  z-index: 9999;
}

.mobile-header .collapse-nav-auth .action-button {
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  padding: 40px;
}

.mobile-header .collapse-nav-auth .action-button span {
  color: rgba(255, 255, 255, 0.4);
}

.mobile-header .content-hero-btn-signup {
  margin-right: 16px;
  padding: 9px 3%;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  font-weight: bold !important;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.mobile-header .content-hero-btn-signup.large {
  width: 80%;
  max-width: 300px;
  height: 72px;
  padding: 25px 3%;
  font-size: 24px !important;
}

.mobile-header .content-hero-btn-menu {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 110px;
  padding: 8px;
  border: 1px solid rgba(0, 61, 76, 0.08);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  max-width: 118px;
  margin-left: auto;
}

.mobile-header .content-hero-btn-menu span {
  font-weight: bold !important;
}

.mobile-header .content-hero-btn-menu .back {
  display: none;
  width: 90px;
  margin: auto;
}

.mobile-header .content-hero-btn-menu .back svg {
  position: relative;
  top: 3px;
}

@-webkit-keyframes sneak-in {
  0% {
    opacity: 0;
    -webkit-transform: translate(100px, 0);
            transform: translate(100px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.3, 0, 0, 1);
            animation-timing-function: cubic-bezier(0.3, 0, 0, 1);
  }

  76.92% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }

  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes sneak-in {
  0% {
    opacity: 0;
    -webkit-transform: translate(100px, 0);
            transform: translate(100px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.3, 0, 0, 1);
            animation-timing-function: cubic-bezier(0.3, 0, 0, 1);
  }

  76.92% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }

  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@-webkit-keyframes sneak-out {
  0% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    -webkit-animation-timing-function: cubic-bezier(1, 0, 0.7, 1);
            animation-timing-function: cubic-bezier(1, 0, 0.7, 1);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate(100px, 0);
            transform: translate(100px, 0);
  }
}

@keyframes sneak-out {
  0% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    -webkit-animation-timing-function: cubic-bezier(1, 0, 0.7, 1);
            animation-timing-function: cubic-bezier(1, 0, 0.7, 1);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate(100px, 0);
            transform: translate(100px, 0);
  }
}

.mobile-header .collapse-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  overflow-y: scroll;
  z-index: 9999;
  background-color: #000;
  right: 0;
  width: 100%;
  -webkit-transition: right 1s linear;
  transition: right 1s linear;
  display: none;
}

.mobile-header .collapse-nav.animate-out {
  display: block;
  -webkit-animation-name: sneak-out;
          animation-name: sneak-out;
  -webkit-animation-duration: 240ms;
          animation-duration: 240ms;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.mobile-header .collapse-nav.animate-in {
  -webkit-animation-name: sneak-in;
          animation-name: sneak-in;
  -webkit-animation-duration: 430ms;
          animation-duration: 430ms;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.mobile-header .collapse-nav.active {
  display: block;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.mobile-header .collapse-nav .animate-in {
  -webkit-animation-name: sneak-in;
          animation-name: sneak-in;
  -webkit-animation-duration: 430ms;
          animation-duration: 430ms;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.mobile-header .collapse-nav ul {
  padding-top: 120px;
  padding-bottom: 140px;
  height: 1141px;
  max-width: 550px;
  width: 100%;
  margin: auto;
}

.mobile-header .collapse-nav .avatar-box {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mobile-header .collapse-nav .avatar-box .avatar {
  float: right;
  max-width: 32px;
  max-height: 32px;
}

[dir='rtl'] .mobile-header .collapse-nav .avatar-box .avatar {
  margin-left: 8px;
}

[dir='ltr'] .mobile-header .collapse-nav .avatar-box .avatar {
  margin-right: 8px;
}

.mobile-header .collapse-nav li {
  display: block;
  height: 62px;
  line-height: 62px;
  margin: 0;
}

.mobile-header .collapse-nav li :hover {
  border: 0;
  opacity: .4;
}

.mobile-header .collapse-nav li a {
  opacity: 0;
  width: 100%;
  height: 100%;
  display: block;
  font-size: 32px !important;
  color: #fff;
  font-weight: 600 !important;
}

[dir='rtl'] .mobile-header .collapse-nav li a {
  padding-right: 16px;
}

[dir='ltr'] .mobile-header .collapse-nav li a {
  padding-left: 16px;
}

.iner-header {
  padding: 40px 0 0;
  background-color: rgba(0, 0, 0, 0.04);
  margin: auto;
}

.iner-header .auth-btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.iner-header .auth-btn-group button {
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
}

.iner-header .dropdown-item {
  color: #212529 !important;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.iner-header .dropdown-menu {
  min-width: 230px;
}

.iner-header .points-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: #fff;
  font-size: 15px;
  font-weight: 100;
}

.iner-header .points-badge .badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
}

[dir='rtl'] .iner-header .points-badge .badge i {
  margin-left: 8px;
}

[dir='ltr'] .iner-header .points-badge .badge i {
  margin-right: 8px;
}

.iner-header ul {
  width: 100%;
  max-width: 560px;
}

.iner-header ul li {
  text-align: center;
}

.iner-header .auth-logout-btn,
  .iner-header .auth-language-btn {
  position: absolute;
}

.iner-header .auth-logout-btn a,
    .iner-header .auth-language-btn a {
  opacity: .6;
  font-size: 16px !important;
}

[dir='rtl'] .iner-header .auth-logout-btn {
  right: 10px;
}

[dir='ltr'] .iner-header .auth-logout-btn {
  left: 10px;
}

[dir='rtl'] .iner-header .auth-language-btn {
  left: 10px;
}

[dir='ltr'] .iner-header .auth-language-btn {
  right: 10px;
}

.iner-header .logo-row {
  position: relative;
  height: 70px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: initial;
}

.iner-header .clear {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
}

.iner-header .logo {
  height: 64px;
  width: auto;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.iner-header .logo img {
  height: 64px;
  width: auto;
  margin: 0 auto;
  display: block;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.iner-header .auth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
}

[dir='rtl'] .iner-header .auth img {
  margin-left: 8px;
}

[dir='ltr'] .iner-header .auth img {
  margin-right: 8px;
}

.iner-header .auth div {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.iner-header .auth .profile,
    .iner-header .auth .signout {
  display: block;
  font-weight: bold;
}

.iner-header .auth .signout {
  font-size: .875rem;
}

.dashboard-header {
  background-color: #fff;
  -webkit-box-shadow: 0 1px 4px rgba(15, 6, 102, 0.16);
          box-shadow: 0 1px 4px rgba(15, 6, 102, 0.16);
  height: 74px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999999;
}

.dashboard-header .container {
  height: 100%;
}

.dashboard-header .logo-row {
  padding: 16px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  height: 74px;
}

.dashboard-header .auth-btn-group {
  z-index: 9;
  width: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.dashboard-header .auth-btn-group.loggedin {
  width: 230px;
}

.dashboard-header .auth-btn-group .btn {
  line-height: 24px;
  height: 40px;
}

.dashboard-header .user-nav {
  height: 100%;
  margin: auto 0;
  padding: 4px 8px;
  border-radius: 8px;
  -webkit-transition: -webkit-box-shadow .2s ease-out;
  transition: -webkit-box-shadow .2s ease-out;
  transition: box-shadow .2s ease-out;
  transition: box-shadow .2s ease-out, -webkit-box-shadow .2s ease-out;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 9;
  border: 1px solid #e6e6e6;
}

.dashboard-header .user-nav .username {
  opacity: .6;
}

.dashboard-header .user-nav .dropdown-menu {
  top: -5px !important;
}

.dashboard-header .user-nav .dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dashboard-header .user-nav .dropdown::after {
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: .255em;
  content: '';
  border-top: 5px solid;
  border-right: 5px solid transparent;
  border-bottom: 0;
  border-left: 5px solid transparent;
}

[dir='rtl'] .dashboard-header .user-nav .dropdown::after {
  margin-right: 8px;
}

[dir='ltr'] .dashboard-header .user-nav .dropdown::after {
  margin-left: 8px;
}

[dir='rtl'] .dashboard-header .user-nav .dropdown::after {
  margin-left: 8px;
}

[dir='ltr'] .dashboard-header .user-nav .dropdown::after {
  margin-right: 8px;
}

.dashboard-header .user-nav .dropdown > .avatar {
  width: 32px;
  height: 32px;
}

[dir='rtl'] .dashboard-header .user-nav .dropdown > .avatar {
  margin-left: 8px;
}

[dir='ltr'] .dashboard-header .user-nav .dropdown > .avatar {
  margin-right: 8px;
}

.dashboard-header .user-nav .dropdown > .username {
  font-size: 16px !important;
  font-family: Cairo !important;
  max-width: 120px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.dashboard-header .logo {
  height: 40px;
  margin: 0;
  z-index: 9;
}

.dashboard-header .logo img {
  height: 40px;
  width: auto;
  margin: 0 auto;
  display: block;
}

.dashboard-header .menu-nav {
  position: relative;
  top: -74px;
  height: 74px;
}

.dashboard-header .menu-nav li {
  height: 48px;
  line-height: 48px;
  padding: 0 8px;
  min-width: 90px;
  text-align: center;
}

[dir='rtl'] .dashboard-header .menu-nav li {
  margin-left: 10px;
}

[dir='ltr'] .dashboard-header .menu-nav li {
  margin-right: 10px;
}

.dashboard-header .menu-nav li a {
  font-size: 1rem;
  font-weight: 600;
  padding: 0 16px;
  text-decoration: none;
  height: 48px;
  display: block;
}

.back-to-programs {
  height: 30px;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99999;
  text-align: center;
}

.back-to-programs:hover {
  opacity: .96;
}

.back-to-programs a {
  width: 100%;
  height: 100%;
}

.back-to-programs p {
  height: 100%;
  line-height: 31px;
  color: #fff;
  font-size: 13px !important;
}

.back-to-programs p span {
  font-weight: bolder !important;
}

.dashboard-mobile-header {
  margin: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 24px;
}

.dashboard-mobile-header .logo {
  margin: 0;
  position: relative;
}

.dashboard-mobile-header .logo img {
  width: 150px;
}

.disable-scroll {
  overflow-y: hidden;
  width: 100%;
  height: 100%;
  position: fixed;
}

.disable-scroll .content-hero-btn-menu .back {
  display: block;
  -webkit-transition: opacity 2s ease-out;
  transition: opacity 2s ease-out;
}

.disable-scroll .content-hero-btn-menu .menu {
  display: none;
  -webkit-transition: opacity 2s ease-out;
  transition: opacity 2s ease-out;
}

.disable-scroll .collapse-nav-auth {
  opacity: 1;
  -webkit-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out;
  position: fixed;
  width: 100%;
  bottom: 0;
  padding: 0 32px 32px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(43, 22, 55, 0)), to(black));
  background-image: linear-gradient(rgba(43, 22, 55, 0), black);
}

.pill {
  margin-top: 0;
  margin-bottom: 24px;
  padding: 4px 14px;
  text-align: center;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

[dir='rtl'] .pill {
  margin-right: 0;
  margin-left: 16px;
}

[dir='ltr'] .pill {
  margin-left: 0;
  margin-right: 16px;
}

.pill .title {
  font-size: 12px;
  width: 100%;
}

.pill .sub-title {
  font-size: 20px;
  width: 100%;
}

.pill .description {
  width: 100%;
  font-weight: 100;
}

.pill.long {
  width: auto;
  max-width: 300px;
}

.pill.long .description,
    .pill.long .sub-title {
  display: inline;
  line-height: 55px;
}

.pill.long .title {
  display: none;
}

.pill.pill-tag {
  width: auto;
}

.tabs .tab-nav {
  margin-bottom: 24px;
}

.tabs .tab-nav .tab {
  display: inline-block;
  padding: 8px;
  cursor: pointer;
}

[dir='rtl'] .tabs .tab-nav .tab {
  margin-left: 24px;
}

[dir='ltr'] .tabs .tab-nav .tab {
  margin-right: 24px;
}

.tabs .collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: none;
  transition: none;
}

.tabs-2 .tab-nav {
  color: #fff;
  position: relative;
  padding-bottom: 6px;
  margin-bottom: 48px;
}

.tabs-2 .tab-nav .tab {
  -webkit-transition: color ease-in-out 150ms;
  transition: color ease-in-out 150ms;
  display: inline-block;
  padding: 8px 0;
  cursor: pointer;
}

[dir='rtl'] .tabs-2 .tab-nav .tab {
  padding-left: 48px !important;
}

[dir='ltr'] .tabs-2 .tab-nav .tab {
  padding-right: 48px !important;
}

.tabs-2 .line,
.tabs-2 .line-fade {
  height: 1px;
  position: absolute;
  bottom: 0;
}

.tabs-2 .line-fade {
  width: 100%;
  left: 0;
  background: #fff;
  opacity: .09;
}

.tab-content strong,
.dashboard-update-detail .section-body strong {
  font-weight: 900 !important;
}

.tab-content ul,
.dashboard-update-detail .section-body ul {
  list-style: disc;
  margin: inherit;
  padding: unset;
}

[dir='rtl'] .tab-content ul, [dir='rtl']
  .dashboard-update-detail .section-body ul {
  padding-right: 40px !important;
}

[dir='ltr'] .tab-content ul, [dir='ltr']
  .dashboard-update-detail .section-body ul {
  padding-left: 40px !important;
}

.tab-content ul li,
  .dashboard-update-detail .section-body ul li {
  display: list-item;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 4.5rem;
  font-weight: 900;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: .3rem !important;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1rem;
}

p {
  font-family: "Noto Naskh Arabic", "Noto Sans", sans-serif;
  letter-spacing: 0;
}

a {
  color: #293644;
  font-size: 1rem;
  text-decoration: none;
}

@font-face {
  font-family: 'Bukra';

  font-style: normal;

  font-weight: 200;

  src: url("../fonts/bukra/29ltbukralight.ttf");
}

@font-face {
  font-family: 'Bukra';

  font-style: normal;

  font-weight: 400;

  src: url("../fonts/bukra/29ltbukraregular.ttf");
}

@font-face {
  font-family: 'Bukra';

  font-style: normal;

  font-weight: 900;

  src: url("../fonts/bukra/29ltbukrabold.ttf");
}

@font-face {
  font-family: 'JF Flat';

  font-style: normal;

  font-weight: 400;

  src: url("../fonts/jf-flat/JF-Flat-regular.ttf");
}

@font-face {
  font-family: 'Cairo';

  font-style: normal;

  font-weight: 900;

  src: url("../fonts/cairo/Cairo-Bold.ttf");
}

@font-face {
  font-family: 'Cairo';

  font-style: normal;

  font-weight: 800;

  src: url("../fonts/cairo/Cairo-Black.ttf");
}

@font-face {
  font-family: 'Cairo';

  font-style: normal;

  font-weight: 100;

  src: url("../fonts/cairo/Cairo-ExtraLight.ttf");
}

@font-face {
  font-family: 'Cairo';

  font-style: normal;

  font-weight: 300;

  src: url("../fonts/cairo/Cairo-Light.ttf");
}

@font-face {
  font-family: 'Cairo';

  font-style: normal;

  font-weight: 400;

  src: url("../fonts/cairo/Cairo-Regular.ttf");
}

@font-face {
  font-family: 'Cairo';

  font-style: normal;

  font-weight: 700;

  src: url("../fonts/cairo/Cairo-SemiBold.ttf");
}

@font-face {
  font-family: 'Effra';

  font-style: normal;

  font-weight: 100 200 300;

  src: url("https://twebs-101-se.herokuapp.com/assets/fonts/effra/Effra_lt.ttf");
}

@font-face {
  font-family: 'Effra';

  font-style: normal;

  font-weight: 400 500;

  src: url("../fonts/effra/Effra_Rg.ttf");
}

@font-face {
  font-family: 'Effra';

  font-style: normal;

  font-weight: 600 700;

  src: url("../fonts/effra/Effra_Md.ttf");
}

@font-face {
  font-family: 'Effra';

  font-style: normal;

  font-weight: 800 900;

  src: url("../fonts/effra/Effra_Bold.ttf");
}

.tag {
  border-radius: 17px;
  border: 1px solid rgba(131, 131, 131, 0.2);
  padding: 4px 17px;
}

[dir='rtl'] .tag {
  margin-left: 8px;
}

[dir='ltr'] .tag {
  margin-right: 8px;
}

.tag p {
  font-size: 11px !important;
  opacity: .7;
}

.tag p svg {
  margin-bottom: -1px;
}

[dir='rtl'] .tag p svg {
  margin-right: 5px;
}

[dir='ltr'] .tag p svg {
  margin-left: 5px;
}

.tag p svg path {
  fill: #293644;
}

.tag .dot {
  display: inline-block;
  background-color: #f50101;
  width: 10px;
  height: 10px;
  border-radius: 100%;
}

[dir='rtl'] .tag .dot {
  margin-left: 8px;
}

[dir='ltr'] .tag .dot {
  margin-right: 8px;
}

@media (max-width: 576px) {
  #section-hero .section-wrapper {
    padding: 16px;
  }

  #section-hero .container {
    margin-top: 70px;
    padding: 0 20px;
  }

  [dir='rtl'] #section-hero .container .card .card-body {
    margin-right: 0;
  }

  [dir='ltr'] #section-hero .container .card .card-body {
    margin-left: 0;
  }

  #section-hero .container .hero-title-box .logo {
    max-width: 466px;
    width: 100%;
    height: auto;
    padding: 40px;
    padding-bottom: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  #section-hero .container .hero-title-box h5 {
    max-width: 260px;
    margin: 0 auto;
  }

  #section-about {
    height: auto;
  }

  #section-about h1 {
    margin-bottom: 88px;
  }

  #section-about .content-about-description {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }

  #section-stages {
    height: auto;
  }

  #section-stages .section-wrapper {
    padding: 64px 0;
  }

  #section-stages .container {
    padding: 0 24px;
  }

  #section-stages .owl-container {
    padding: 0;
    overflow: hidden;
  }

  #section-stages .owl-container .owl-item {
    padding: 0 16px;
  }

  #section-stages .owl-container .row > .card {
    padding: 24px;
  }

  #section-awards {
    height: auto;
  }

  #section-awards .tag {
    padding: 4px 14px;
    width: 100%;
  }

  .track-card-horizontal .card-title {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    margin-bottom: 24px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  #section-more {
    height: auto;
  }

  #section-more h1 {
    font-size: 2.5rem;
  }

  .iner-header li a {
    padding: 0 4px !important;
    font-size: 17px !important;
  }

  .btn-large {
    min-width: 100%;
  }

  .dashboard-single-track .tabs {
    margin: 0 8px 16px 0 !important;
  }

  .dashboard-participation .section-header .content-dashbaord-description {
    margin-bottom: 24px;
  }

  [dir='rtl'] .tabs .tab-nav .tab {
    margin-left: 8px;
  }

  [dir='ltr'] .tabs .tab-nav .tab {
    margin-right: 8px;
  }

  .dashboard-submission .file-upload {
    width: 100%;
    margin: 0;
  }

  .dashboard-submission .btn {
    max-width: none;
    margin-bottom: 8px;
  }

  .pill {
    width: 100%;
  }

  .dashboard-update-detail .section-header {
    padding: 48px;
    height: auto;
  }

  .dashboard-update-detail .section-body {
    padding: 16px;
  }

  .update-detail .section-header {
    padding: 0;
    height: auto;
  }

  .update-detail .section-body {
    padding: 0;
  }

  .update-detail .section-wrapper.container-fluid {
    padding: 0 0 50px !important;
  }

  html h1, html {
    font-size: 45px !important;
  }

  html h6 {
    font-size: 18px !important;
  }

  .complete-profile .card.alert {
    padding: 16px;
  }
}

@media (max-width: 768px) {
  #section-voting {
    padding-bottom: 64px;
  }

  #section-voting .tab-group {
    margin: 0 !important;
  }

  #section-voting .item {
    margin: 20px !important;
  }

  #section-voting .voting-owl-carouse-prev {
    right: 20px;
  }

  #section-awards .award-card {
    width: 100%;
  }

  [dir='rtl'] #section-awards .award-card {
    margin-left: 0;
  }

  [dir='ltr'] #section-awards .award-card {
    margin-right: 0;
  }
}

@media (max-width: 991.98px) {
  body.index {
    position: relative;
  }

  .track-card-horizontal .card-title {
    margin-bottom: 24px;
  }

  .login .arrow-back {
    position: relative;
    left: 0;
    right: 0;
    top: 8px;
    width: 100%;
    max-width: 560px;
    display: block;
    margin: 0 auto;
  }

  .login .card.alert {
    max-width: 100%;
    padding: 24px;
    margin: 0 auto;
    text-align: center;
  }

  .update-detail .logo {
    position: absolute !important;
  }

  .iner-header ul {
    margin: 0 auto;
  }

  #section-registration {
    height: auto;
  }

  #section-footer {
    height: auto;
    background-size: cover;
  }

  #section-footer .social-media {
    float: none;
    margin: 0 auto;
    margin-top: 30px;
  }

  .profile-form .logo {
    margin: 0 auto !important;
    position: absolute !important;
  }

  .dashboard {
    padding-top: 0;
    height: auto !important;
  }

  .dashboard .section-wrapper {
    padding: 0;
  }

  .dashboard .iner-header .logo {
    margin: 0 auto !important;
    position: unset !important;
    width: 100%;
  }

  .dashboard .iner-header .auth {
    display: none;
  }

  .dashboard-profile .container-fluid.card {
    padding: 24px !important;
  }

  #section-footer .section-wrapper,
  .section-wrapper {
    padding: 64px 16px;
  }

  .dashboard-single-track .single-track-card-footer .btn-large {
    margin: 0 !important;
  }

  .dashboard-single-track .tabs {
    margin: 0 48px 88px 0;
  }

  .logo-row {
    margin-bottom: 0 !important;
  }

  section:first-of-type {
    padding-top: 0;
  }

  .dashboard-single-track .track-action {
    width: 100%;
  }

  .dashboard-single-track .track-action .btn {
    width: 100%;
  }

  .dashboard-submission .submission-form-bar .container {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .dashboard-submission > .container-fluid {
    padding-top: 120px !important;
  }

  .dashboard-single-track .section-wrapper {
    padding: 16px;
  }
}

@media (max-width: 1200px) {
  #section-about .content-about-description {
    margin: 0;
  }

  #section-stages .owl-dots {
    display: block;
  }

  #section-stages .card-container {
    padding: 24px;
  }

  [dir='rtl'] .header .sign-in {
    margin-left: 16px;
  }

  [dir='ltr'] .header .sign-in {
    margin-right: 16px;
  }

  .header li {
    margin: 0;
  }

  #section-awards .card.track-card-horizontal .card-title {
    margin-bottom: 48px;
  }

  .tabs-2 .line-fade {
    width: 93%;
    background: #fff;
    opacity: .09;
    margin: 0 auto;
    display: block;
    right: 0;
    left: 0;
  }

  #section-voting .tab-nav {
    padding: 0 40px;
  }

  #section-awards .award-row {
    margin-right: 0;
    margin-left: 0;
  }
}

.modal {
  visibility: hidden;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.modal .modal-content {
  -webkit-transition: -webkit-transform ease .3s;
  transition: -webkit-transform ease .3s;
  transition: transform ease .3s;
  transition: transform ease .3s, -webkit-transform ease .3s;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.modal.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease;
  z-index: 9999999;
  will-change: opacity;
  visibility: visible;
}

.modal.show .modal-content {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.modal .btn-dismiss {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 20px;
  top: 20px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 45px;
  font-weight: 300;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: 0 0;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.intl-tel-input {
  width: 100%;
}

.intl-tel-input .selected-flag {
  width: 86px !important;
  outline: none;
}

.intl-tel-input .selected-flag .iti-arrow {
  right: 12px !important;
}

.intl-tel-input.separate-dial-code .selected-dial-code {
  padding: 0 !important;
  font-size: 12px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.intl-tel-input .country-list .country {
  font-size: 12px;
  font-weight: normal;
  display: block;
}

.iti-mobile .intl-tel-input.iti-container {
  width: 84% !important;
}

.iti-flag {
  background-image: url("../img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti-flag {
    background-image: url("../img/flags@2x.png");
  }
}

.footer-nav {
  padding: 8px;
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.2s cubic-bezier(0.4, 0.03, 0.5, 0.9);
  transition: all 0.2s cubic-bezier(0.4, 0.03, 0.5, 0.9);
  background: #fff;
  -webkit-box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.12);
          box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.12);
  z-index: 999;
  width: 100%;
}

.footer-nav .btn {
  width: 100%;
  padding: 8px;
  background-color: #fff;
  font-weight: bold;
}

.footer-nav .btn span {
  font-weight: 600 !important;
  font-size: 16px !important;
}

.footer-nav .btn svg {
  position: relative;
  top: 3px;
}

[dir='rtl'] .footer-nav .btn svg {
  margin-right: 4px;
}

[dir='ltr'] .footer-nav .btn svg {
  margin-left: 4px;
}

.footer-nav .btn.active {
  background-color: #24ddd7;
}

.footer-nav .card {
  min-width: 327px;
  height: 296px;
  border-radius: 16px;
  margin: 24px;
  margin-bottom: 0;
}

.footer-nav.iosBlur {
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(20px);
  border-top: solid 1px rgba(0, 0, 0, 0.09);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.footer-nav .back {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: 1;
          flex-flow: 1;
  font-size: 24px;
  text-align: center;
  height: 48px;
  border: 1px solid rgba(0, 61, 76, 0.08);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  margin-left: 8px;
  -webkit-transition: all 0.2s cubic-bezier(0.4, 0.03, 0.5, 0.9);
  transition: all 0.2s cubic-bezier(0.4, 0.03, 0.5, 0.9);
}

.footer-nav.floating .btn {
  height: 56px;
  line-height: 44px;
}

.footer-nav .content-hero-btn-signup {
  -webkit-box-flex: 3;
      -ms-flex-positive: 3;
          flex-grow: 3;
  border: 1px solid rgba(0, 61, 76, 0.08);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.footer-nav .button:active, .footer-nav .button:hover {
  background-color: #793bf1;
  cursor: pointer;
}

.nav-group {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
}

.floating-back {
  z-index: 99999;
  position: relative;
  bottom: 16px;
  left: 16px;
  background-color: #fff;
  border-radius: 100% !important;
  width: 56px !important;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: unset;
  padding: 0;
  border: 1px solid rgba(0, 61, 76, 0.08);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  float: left;
}

.floating-back svg {
  position: relative;
  top: 0 !important;
}

[dir='rtl'] .floating-back svg {
  margin-right: 0 !important;
}

[dir='ltr'] .floating-back svg {
  margin-left: 0 !important;
}

.visibility-hidden {
  visibility: hidden;
}

.w-full {
  width: 100%;
}

.alert-bar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: #dbedff;
  z-index: 99999;
  padding: 0 32px;
}

.alert-bar .close-alert {
  cursor: pointer;
}

.alert-bar a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 100%;
  width: 100%;
  line-height: 31px;
  color: #032f62;
  font-size: 13px !important;
}

@media (max-width: 991.98px) {
  .alert-bar {
    top: 0 !important;
  }

  .alert-bar a {
    max-width: 90%;
  }

  .alert-bar .language-switcher {
    top: 64px;
  }
}

.uppy-Dashboard--modal {
  z-index: 9999999;
}

.uppy-Dashboard--modal .uppy-Dashboard-inner {
  right: auto;
}

html[dir='rtl'] .uppy-StatusBar-actions {
  position: relative;
  margin-left: 16px;
}

html[dir='rtl'] .uppy-StatusBar-content {
  margin-left: auto !important;
  margin-right: 4px !important;
}

.uppy-upload {
  cursor: pointer;
}

.file-upload-counter {
  background: rgba(234, 234, 234, 0.4) !important;
  color: rgba(43, 44, 89, 0.6);
  opacity: 1 !important;
  font-size: 17px !important;
  line-height: 32px !important;
  text-align: center;
}

.uppy-DashboardItem-remove,
.uppy-DashboardItem-progressIndicator {
  outline: none;
}

.uppy-Dashboard-files {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.uppy-DashboardContent-title {
  display: none;
}

.uppy-DashboardContent-back {
  margin-bottom: 25px;
}

.uppy-DashboardItem-progressIndicator {
  width: 20px !important;
  height: 20px !important;
}

.uppy-DashboardItem-action,
.uppy-DashboardItem-progress {
  top: -30px !important;
}

.uppy-DashboardItem-copyLink {
  display: none;
}

@media (max-width: 546px) {
  .uppy-Dashboard-inner {
    right: 0 !important;
    margin-right: 15px !important;
  }

  .uppy-Dashboard-files {
    display: block !important;
    padding-right: 10px !important;
  }

  .uppy-Dashboard-overlay {
    margin: auto !important;
  }

  .file-upload-counter {
    font-size: 16px !important;
  }

  .uppy-DashboardItem-action {
    margin-top: 21px !important;
  }

  .uppy-remove-append {
    position: fixed;
    width: 500px;
    height: 90px;
  }
}

@media (max-width: 320px) {
  .uppy-Dashboard-inner {
    right: 0 !important;
    margin-right: 15px !important;
  }

  .uppy-Dashboard-files {
    display: block !important;
    padding-right: 10px !important;
  }

  .uppy-Dashboard-overlay {
    margin: auto !important;
  }

  .file-upload-counter {
    font-size: 14px !important;
  }

  .uppy-DashboardItem-action {
    margin-top: 21px !important;
  }

  .uppy-remove-append {
    position: fixed;
    width: 400px;
    height: 90px;
  }
}

@media (max-width: 991.98px) {
  .uppy-Dashboard-inner {
    right: 0 !important;
    margin-right: 15px !important;
  }

  .uppy-Dashboard-files {
    display: block !important;
    padding-right: 10px !important;
  }

  .uppy-Dashboard-overlay {
    margin: auto !important;
  }

  .file-upload-counter {
    font-size: 16px !important;
  }
}

@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .uppy-DashboardItem-progress {
      font-size: 20px !important;
      margin-top: 24px !important;
    }

    .uppy-DashboardItem-action {
      font-size: 20px !important;
      margin-top: 24px !important;
    }
  }
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

/**
 * Removes the default spacing and border for appropriate elements.
 */

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

button {
  background-color: transparent;
  background-image: none;
  padding: 0;
}

/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 */

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

fieldset {
  margin: 0;
  padding: 0;
}

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

/**
 * Tailwind custom reset styles
 */

/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */

html {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 1 */
  line-height: 1.5; /* 2 */
}

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */

*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e2e8f0; /* 2 */
}

/*
 * Ensure horizontal rules are visible by default
 */

hr {
  border-top-width: 1px;
}

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

img {
  border-style: solid;
}

textarea {
  resize: vertical;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #a0aec0;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #a0aec0;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #a0aec0;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #a0aec0;
}

input::placeholder,
textarea::placeholder {
  color: #a0aec0;
}

button,
[role="button"] {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */

a {
  color: inherit;
  text-decoration: inherit;
}

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */

button,
input,
optgroup,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */

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

/**
 * Make replaced elements `display: block` by default as that's
 * the behavior you want almost all of the time. Inspired by
 * CSS Remedy, with `svg` added as well.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}

/**
 * Constrain images and videos to the parent width and preserve
 * their instrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

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

/*tailwind start components
 */

.container{
  width: 100%;
}

@media (min-width: 640px){
  .container{
    max-width: 640px;
  }
}

@media (min-width: 768px){
  .container{
    max-width: 768px;
  }
}

@media (min-width: 1024px){
  .container{
    max-width: 1024px;
  }
}

@media (min-width: 1280px){
  .container{
    max-width: 1280px;
  }
}

/*tailwind end components
 */

.border-collapse{
  border-collapse: collapse !important;
}

.border{
  border-width: 1px !important;
}

.block{
  display: block !important;
}

.inline-block{
  display: inline-block !important;
}

.inline{
  display: inline !important;
}

.flex{
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.inline-flex{
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.table{
  display: table !important;
}

.table-caption{
  display: table-caption !important;
}

.table-cell{
  display: table-cell !important;
}

.table-column{
  display: table-column !important;
}

.table-column-group{
  display: table-column-group !important;
}

.table-footer-group{
  display: table-footer-group !important;
}

.table-header-group{
  display: table-header-group !important;
}

.table-row-group{
  display: table-row-group !important;
}

.table-row{
  display: table-row !important;
}

.grid{
  display: grid !important;
}

.inline-grid{
  display: inline-grid !important;
}

.hidden{
  display: none !important;
}

.flex-wrap{
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

.flex-grow{
  -webkit-box-flex: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
}

.flex-shrink{
  -ms-flex-negative: 1 !important;
      flex-shrink: 1 !important;
}

.h-1{
  height: 0.25rem !important;
}

.h-2{
  height: 0.5rem !important;
}

.m-0{
  margin: 0 !important;
}

.m-1{
  margin: 0.25rem !important;
}

.m-auto{
  margin: auto !important;
}

.mt-2{
  margin-top: 0.5rem !important;
}

.mb-2{
  margin-bottom: 0.5rem !important;
}

.mt-4{
  margin-top: 1rem !important;
}

.outline-none{
  outline: 0 !important;
}

.overflow-hidden{
  overflow: hidden !important;
}

.p-1{
  padding: 0.25rem !important;
}

.static{
  position: static !important;
}

.fixed{
  position: fixed !important;
}

.absolute{
  position: absolute !important;
}

.relative{
  position: relative !important;
}

.sticky{
  position: -webkit-sticky !important;
  position: sticky !important;
}

.resize{
  resize: both !important;
}

.shadow{
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
}

.shadow-none{
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.text-justify{
  text-align: justify !important;
}

.text-white{
  --text-opacity: 1 !important;
  color: #fff !important;
  color: rgba(255, 255, 255, var(--text-opacity)) !important;
}

.italic{
  font-style: italic !important;
}

.uppercase{
  text-transform: uppercase !important;
}

.lowercase{
  text-transform: lowercase !important;
}

.capitalize{
  text-transform: capitalize !important;
}

.underline{
  text-decoration: underline !important;
}

.line-through{
  text-decoration: line-through !important;
}

.visible{
  visibility: visible !important;
}

.invisible{
  visibility: hidden !important;
}

.break-all{
  word-break: break-all !important;
}

.truncate{
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.w-12{
  width: 3rem !important;
}

.w-2\/3{
  width: 66.666667% !important;
}

.w-full{
  width: 100% !important;
}

.transform{
  --transform-translate-x: 0 !important;
  --transform-translate-y: 0 !important;
  --transform-rotate: 0 !important;
  --transform-skew-x: 0 !important;
  --transform-skew-y: 0 !important;
  --transform-scale-x: 1 !important;
  --transform-scale-y: 1 !important;
  -webkit-transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y)) !important;
          transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y)) !important;
}

.transition{
  -webkit-transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform !important;
  transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform !important;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, -webkit-box-shadow, -webkit-transform !important;
}

.ease-in-out{
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}