@charset "UTF-8";
/*!
Theme Name: new-rc
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: new-rc
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

new-rc is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* Normalize ( REQD )
--------------------------------------------- */
/* @import "generic/normalize"; */
/* Box sizing ( REQD )
--------------------------------------------- */
/* @import "generic/box-sizing"; */
/* Import variables and mixins. */
:root {
  --blue: #4F9BFB;
  --indigo: #2542C7;
  --purple: #6f42c1;
  --pink: #FFB7CF;
  --red: #FE4709;
  --orange: #FF8F07;
  --yellow: #FFC60C;
  --green: #46B204;
  --teal: #57B1D1;
  --cyan: #17a2b8;
  --white: #FFFFFF;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --indigo-light: #4965DE;
  --indigo-dark: #050DB0;
  --primary: #4F9BFB;
  --secondary: #6c757d;
  --success: #46B204;
  --info: #17a2b8;
  --warning: #FFC60C;
  --danger: #FE4709;
  --light: #f8f9fa;
  --dark: #343a40;
  --default: #2542C7;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1280px;
  --font-family-sans-serif: "HCo Gotham SSm", "Gotham SSm A", "Gotham SSm B", "Gotham", Helvetica, Arial, sans-serif;
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

body {
  margin: 0;
  font-family: "HCo Gotham SSm", "Gotham SSm A", "Gotham SSm B", "Gotham", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #FFFFFF;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 29px;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #2542C7;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #192d86;
  text-decoration: underline;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

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

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 29px;
  font-weight: 700;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 3.4375rem;
}

h2, .h2 {
  font-size: 2.5rem;
}

h3, .h3 {
  font-size: 1.5rem;
}

h4, .h4 {
  font-size: 0.875rem;
}

h5, .h5 {
  font-size: 0.8125rem;
}

h6, .h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

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

small,
.small {
  font-size: 0.6875rem;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.375rem;
}

.blockquote-footer {
  display: block;
  font-size: 0.6875rem;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #FFFFFF;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

code {
  font-size: 87.5%;
  color: #FFB7CF;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #FFFFFF;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm,
.container-xs {
  width: 100%;
  padding-right: 14.5px;
  padding-left: 14.5px;
  margin-right: auto;
  margin-left: auto;
}

.container {
  max-width: 415px;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1280px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1142px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -14.5px;
  margin-left: -14.5px;
}

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

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

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

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

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

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

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

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

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

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

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

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

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

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

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

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

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

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

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

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

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

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

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

  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-sm-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

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

  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

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

  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

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

  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

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

  .order-sm-first {
    order: -1;
  }

  .order-sm-last {
    order: 13;
  }

  .order-sm-0 {
    order: 0;
  }

  .order-sm-1 {
    order: 1;
  }

  .order-sm-2 {
    order: 2;
  }

  .order-sm-3 {
    order: 3;
  }

  .order-sm-4 {
    order: 4;
  }

  .order-sm-5 {
    order: 5;
  }

  .order-sm-6 {
    order: 6;
  }

  .order-sm-7 {
    order: 7;
  }

  .order-sm-8 {
    order: 8;
  }

  .order-sm-9 {
    order: 9;
  }

  .order-sm-10 {
    order: 10;
  }

  .order-sm-11 {
    order: 11;
  }

  .order-sm-12 {
    order: 12;
  }

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

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

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

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

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

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

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

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

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

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

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

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-md-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

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

  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

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

  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

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

  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

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

  .order-md-first {
    order: -1;
  }

  .order-md-last {
    order: 13;
  }

  .order-md-0 {
    order: 0;
  }

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .order-md-3 {
    order: 3;
  }

  .order-md-4 {
    order: 4;
  }

  .order-md-5 {
    order: 5;
  }

  .order-md-6 {
    order: 6;
  }

  .order-md-7 {
    order: 7;
  }

  .order-md-8 {
    order: 8;
  }

  .order-md-9 {
    order: 9;
  }

  .order-md-10 {
    order: 10;
  }

  .order-md-11 {
    order: 11;
  }

  .order-md-12 {
    order: 12;
  }

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

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

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

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

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

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

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

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

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

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

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

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-lg-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

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

  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

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

  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

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

  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

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

  .order-lg-first {
    order: -1;
  }

  .order-lg-last {
    order: 13;
  }

  .order-lg-0 {
    order: 0;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .order-lg-3 {
    order: 3;
  }

  .order-lg-4 {
    order: 4;
  }

  .order-lg-5 {
    order: 5;
  }

  .order-lg-6 {
    order: 6;
  }

  .order-lg-7 {
    order: 7;
  }

  .order-lg-8 {
    order: 8;
  }

  .order-lg-9 {
    order: 9;
  }

  .order-lg-10 {
    order: 10;
  }

  .order-lg-11 {
    order: 11;
  }

  .order-lg-12 {
    order: 12;
  }

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

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

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

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

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

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

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

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

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

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

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

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1280px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-xl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

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

  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

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

  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

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

  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

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

  .order-xl-first {
    order: -1;
  }

  .order-xl-last {
    order: 13;
  }

  .order-xl-0 {
    order: 0;
  }

  .order-xl-1 {
    order: 1;
  }

  .order-xl-2 {
    order: 2;
  }

  .order-xl-3 {
    order: 3;
  }

  .order-xl-4 {
    order: 4;
  }

  .order-xl-5 {
    order: 5;
  }

  .order-xl-6 {
    order: 6;
  }

  .order-xl-7 {
    order: 7;
  }

  .order-xl-8 {
    order: 8;
  }

  .order-xl-9 {
    order: 9;
  }

  .order-xl-10 {
    order: 10;
  }

  .order-xl-11 {
    order: 11;
  }

  .order-xl-12 {
    order: 12;
  }

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

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

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

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

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

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

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

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

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

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

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

  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #212529;
  text-decoration: none;
}
.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(79, 155, 251, 0.25);
}
.btn.disabled, .btn:disabled {
  opacity: 0.65;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #FFFFFF;
  background-color: #4F9BFB;
  border-color: #4F9BFB;
}
.btn-primary:hover {
  color: #FFFFFF;
  background-color: #2a86fa;
  border-color: #1d7ffa;
}
.btn-primary:focus, .btn-primary.focus {
  color: #FFFFFF;
  background-color: #2a86fa;
  border-color: #1d7ffa;
  box-shadow: 0 0 0 0.2rem rgba(105, 170, 252, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #FFFFFF;
  background-color: #4F9BFB;
  border-color: #4F9BFB;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #FFFFFF;
  background-color: #1d7ffa;
  border-color: #1178fa;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(105, 170, 252, 0.5);
}

.btn-secondary {
  color: #FFFFFF;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  color: #FFFFFF;
  background-color: #5a6268;
  border-color: #545b62;
}
.btn-secondary:focus, .btn-secondary.focus {
  color: #FFFFFF;
  background-color: #5a6268;
  border-color: #545b62;
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #FFFFFF;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #FFFFFF;
  background-color: #545b62;
  border-color: #4e555b;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-success {
  color: #FFFFFF;
  background-color: #46B204;
  border-color: #46B204;
}
.btn-success:hover {
  color: #FFFFFF;
  background-color: #378d03;
  border-color: #328003;
}
.btn-success:focus, .btn-success.focus {
  color: #FFFFFF;
  background-color: #378d03;
  border-color: #328003;
  box-shadow: 0 0 0 0.2rem rgba(98, 190, 42, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: #FFFFFF;
  background-color: #46B204;
  border-color: #46B204;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #FFFFFF;
  background-color: #328003;
  border-color: #2d7403;
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(98, 190, 42, 0.5);
}

.btn-info {
  color: #FFFFFF;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  color: #FFFFFF;
  background-color: #138496;
  border-color: #117a8b;
}
.btn-info:focus, .btn-info.focus {
  color: #FFFFFF;
  background-color: #138496;
  border-color: #117a8b;
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}
.btn-info.disabled, .btn-info:disabled {
  color: #FFFFFF;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #FFFFFF;
  background-color: #117a8b;
  border-color: #10707f;
}
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #FFC60C;
  border-color: #FFC60C;
}
.btn-warning:hover {
  color: #212529;
  background-color: #e5af00;
  border-color: #d8a500;
}
.btn-warning:focus, .btn-warning.focus {
  color: #212529;
  background-color: #e5af00;
  border-color: #d8a500;
  box-shadow: 0 0 0 0.2rem rgba(222, 174, 16, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #FFC60C;
  border-color: #FFC60C;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d8a500;
  border-color: #cb9c00;
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 174, 16, 0.5);
}

.btn-danger {
  color: #FFFFFF;
  background-color: #FE4709;
  border-color: #FE4709;
}
.btn-danger:hover {
  color: #FFFFFF;
  background-color: #e03901;
  border-color: #d33601;
}
.btn-danger:focus, .btn-danger.focus {
  color: #FFFFFF;
  background-color: #e03901;
  border-color: #d33601;
  box-shadow: 0 0 0 0.2rem rgba(254, 99, 46, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  color: #FFFFFF;
  background-color: #FE4709;
  border-color: #FE4709;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #FFFFFF;
  background-color: #d33601;
  border-color: #c63301;
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(254, 99, 46, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}
.btn-light:focus, .btn-light.focus {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-dark {
  color: #FFFFFF;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:hover {
  color: #FFFFFF;
  background-color: #23272b;
  border-color: #1d2124;
}
.btn-dark:focus, .btn-dark.focus {
  color: #FFFFFF;
  background-color: #23272b;
  border-color: #1d2124;
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
  color: #FFFFFF;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #FFFFFF;
  background-color: #1d2124;
  border-color: #171a1d;
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-default {
  color: #FFFFFF;
  background-color: #2542C7;
  border-color: #2542C7;
}
.btn-default:hover {
  color: #FFFFFF;
  background-color: #1f37a7;
  border-color: #1d349c;
}
.btn-default:focus, .btn-default.focus {
  color: #FFFFFF;
  background-color: #1f37a7;
  border-color: #1d349c;
  box-shadow: 0 0 0 0.2rem rgba(70, 94, 207, 0.5);
}
.btn-default.disabled, .btn-default:disabled {
  color: #FFFFFF;
  background-color: #2542C7;
  border-color: #2542C7;
}
.btn-default:not(:disabled):not(.disabled):active, .btn-default:not(:disabled):not(.disabled).active, .show > .btn-default.dropdown-toggle {
  color: #FFFFFF;
  background-color: #1d349c;
  border-color: #1b3091;
}
.btn-default:not(:disabled):not(.disabled):active:focus, .btn-default:not(:disabled):not(.disabled).active:focus, .show > .btn-default.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(70, 94, 207, 0.5);
}

.btn-outline-primary {
  color: #4F9BFB;
  border-color: #4F9BFB;
}
.btn-outline-primary:hover {
  color: #FFFFFF;
  background-color: #4F9BFB;
  border-color: #4F9BFB;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(79, 155, 251, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #4F9BFB;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #FFFFFF;
  background-color: #4F9BFB;
  border-color: #4F9BFB;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(79, 155, 251, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:hover {
  color: #FFFFFF;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #FFFFFF;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #46B204;
  border-color: #46B204;
}
.btn-outline-success:hover {
  color: #FFFFFF;
  background-color: #46B204;
  border-color: #46B204;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(70, 178, 4, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #46B204;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: #FFFFFF;
  background-color: #46B204;
  border-color: #46B204;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(70, 178, 4, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:hover {
  color: #FFFFFF;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  color: #FFFFFF;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #FFC60C;
  border-color: #FFC60C;
}
.btn-outline-warning:hover {
  color: #212529;
  background-color: #FFC60C;
  border-color: #FFC60C;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 198, 12, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #FFC60C;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #FFC60C;
  border-color: #FFC60C;
}
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 198, 12, 0.5);
}

.btn-outline-danger {
  color: #FE4709;
  border-color: #FE4709;
}
.btn-outline-danger:hover {
  color: #FFFFFF;
  background-color: #FE4709;
  border-color: #FE4709;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(254, 71, 9, 0.5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #FE4709;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  color: #FFFFFF;
  background-color: #FE4709;
  border-color: #FE4709;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(254, 71, 9, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:hover {
  color: #FFFFFF;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: #FFFFFF;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-default {
  color: #2542C7;
  border-color: #2542C7;
}
.btn-outline-default:hover {
  color: #FFFFFF;
  background-color: #2542C7;
  border-color: #2542C7;
}
.btn-outline-default:focus, .btn-outline-default.focus {
  box-shadow: 0 0 0 0.2rem rgba(37, 66, 199, 0.5);
}
.btn-outline-default.disabled, .btn-outline-default:disabled {
  color: #2542C7;
  background-color: transparent;
}
.btn-outline-default:not(:disabled):not(.disabled):active, .btn-outline-default:not(:disabled):not(.disabled).active, .show > .btn-outline-default.dropdown-toggle {
  color: #FFFFFF;
  background-color: #2542C7;
  border-color: #2542C7;
}
.btn-outline-default:not(:disabled):not(.disabled):active:focus, .btn-outline-default:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-default.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(37, 66, 199, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #2542C7;
  text-decoration: none;
}
.btn-link:hover {
  color: #192d86;
  text-decoration: underline;
}
.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #2542C7;
  background-color: #FFFFFF;
  border: 1px solid #dee2e6;
}
.page-link:hover {
  z-index: 2;
  color: #192d86;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(79, 155, 251, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.page-item.active .page-link {
  z-index: 3;
  color: #FFFFFF;
  background-color: #4F9BFB;
  border-color: #4F9BFB;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #FFFFFF;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}
.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #cee3fe;
}
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #a3cbfd;
}

.table-hover .table-primary:hover {
  background-color: #b5d5fd;
}
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #b5d5fd;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #d6d8db;
}
.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #b3b7bb;
}

.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #cbe9b9;
}
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #9fd77c;
}

.table-hover .table-success:hover {
  background-color: #bde3a6;
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #bde3a6;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #bee5eb;
}
.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #86cfda;
}

.table-hover .table-info:hover {
  background-color: #abdde5;
}
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffefbb;
}
.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #ffe181;
}

.table-hover .table-warning:hover {
  background-color: #ffe9a2;
}
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe9a2;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #ffcbba;
}
.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #fe9f7f;
}

.table-hover .table-danger:hover {
  background-color: #ffb8a1;
}
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #ffb8a1;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}
.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #fbfcfc;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}
.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #95999c;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

.table-default,
.table-default > th,
.table-default > td {
  background-color: #c2caef;
}
.table-default th,
.table-default td,
.table-default thead th,
.table-default tbody + tbody {
  border-color: #8e9de2;
}

.table-hover .table-default:hover {
  background-color: #aeb8ea;
}
.table-hover .table-default:hover > td,
.table-hover .table-default:hover > th {
  background-color: #aeb8ea;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #FFFFFF;
  background-color: #343a40;
  border-color: #454d55;
}
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #FFFFFF;
  background-color: #343a40;
}
.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #454d55;
}
.table-dark.table-bordered {
  border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
.table-dark.table-hover tbody tr:hover {
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1279.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-responsive > .table-bordered {
  border: 0;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #FFFFFF;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 4px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}
.form-control:focus {
  color: #495057;
  background-color: #FFFFFF;
  border-color: #cce2fe;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(79, 155, 251, 0.25);
}
.form-control::-moz-placeholder {
  color: #4a4a4a;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #4a4a4a;
  opacity: 1;
}
.form-control::-ms-input-placeholder {
  color: #4a4a4a;
  opacity: 1;
}
.form-control::placeholder {
  color: #4a4a4a;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #FFFFFF;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control[size], select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.6875rem;
  color: #46B204;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #FFFFFF;
  background-color: rgba(70, 178, 4, 0.9);
  border-radius: 0.25rem;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #46B204;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2346B204' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #46B204;
  box-shadow: 0 0 0 0.2rem rgba(70, 178, 4, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #46B204;
  padding-right: calc(0.75em + 2.3125rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2346B204' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #FFFFFF no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #46B204;
  box-shadow: 0 0 0 0.2rem rgba(70, 178, 4, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #46B204;
}
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #46B204;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #46B204;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #5ae405;
  background-color: #5ae405;
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(70, 178, 4, 0.25);
}
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #46B204;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #46B204;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #46B204;
  box-shadow: 0 0 0 0.2rem rgba(70, 178, 4, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.6875rem;
  color: #FE4709;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #FFFFFF;
  background-color: rgba(254, 71, 9, 0.9);
  border-radius: 0.25rem;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #FE4709;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23FE4709' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23FE4709' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #FE4709;
  box-shadow: 0 0 0 0.2rem rgba(254, 71, 9, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #FE4709;
  padding-right: calc(0.75em + 2.3125rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23FE4709' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23FE4709' stroke='none'/%3e%3c/svg%3e") #FFFFFF no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #FE4709;
  box-shadow: 0 0 0 0.2rem rgba(254, 71, 9, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #FE4709;
}
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #FE4709;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #FE4709;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #fe6d3c;
  background-color: #fe6d3c;
}
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(254, 71, 9, 0.25);
}
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #FE4709;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #FE4709;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #FE4709;
  box-shadow: 0 0 0 0.2rem rgba(254, 71, 9, 0.25);
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 576px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
.form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.media {
  display: flex;
  align-items: flex-start;
}

.media-body {
  flex: 1;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
}
.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}
.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}
.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}
.input-group > .form-control:not(:last-child),
.input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .custom-file {
  display: flex;
  align-items: center;
}
.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: flex;
}
.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}
.input-group-prepend .btn:focus,
.input-group-append .btn:focus {
  z-index: 3;
}
.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 4px;
}
.input-group-text input[type=radio],
.input-group-text input[type=checkbox] {
  margin-top: 0;
}

.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.5em + 1rem + 2px);
}

.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem;
}

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}

.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #FFFFFF;
  border-color: #4F9BFB;
  background-color: #4F9BFB;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(79, 155, 251, 0.25);
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #cce2fe;
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #FFFFFF;
  background-color: #fefeff;
  border-color: #fefeff;
}
.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}
.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}
.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #FFFFFF;
  border: #adb5bd solid 1px;
}
.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50%/50% 50%;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23FFFFFF' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #4F9BFB;
  background-color: #4F9BFB;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23FFFFFF' d='M0 2h4'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(79, 155, 251, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(79, 155, 251, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23FFFFFF'/%3e%3c/svg%3e");
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(79, 155, 251, 0.5);
}

.custom-switch {
  padding-left: 2.25rem;
}
.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}
.custom-switch .custom-control-label::after {
  top: calc(0.25rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}
.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #FFFFFF;
  transform: translateX(0.75rem);
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(79, 155, 251, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #FFFFFF url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-select:focus {
  border-color: #cce2fe;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(79, 155, 251, 0.25);
}
.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #FFFFFF;
}
.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}
.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}
.custom-select::-ms-expand {
  display: none;
}
.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  opacity: 0;
}
.custom-file-input:focus ~ .custom-file-label {
  border-color: #cce2fe;
  box-shadow: 0 0 0 0.2rem rgba(79, 155, 251, 0.25);
}
.custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}
.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #FFFFFF;
  border: 1px solid #ced4da;
  border-radius: 4px;
}
.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 0.75rem);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 4px 4px 0;
}

.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-range:focus {
  outline: none;
}
.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #FFFFFF, 0 0 0 0.2rem rgba(79, 155, 251, 0.25);
}
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #FFFFFF, 0 0 0 0.2rem rgba(79, 155, 251, 0.25);
}
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #FFFFFF, 0 0 0 0.2rem rgba(79, 155, 251, 0.25);
}
.custom-range::-moz-focus-outer {
  border: 0;
}
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #4F9BFB;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.custom-range::-webkit-slider-thumb:active {
  background-color: #fefeff;
}
.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #4F9BFB;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.custom-range::-moz-range-thumb:active {
  background-color: #fefeff;
}
.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #4F9BFB;
  border: 0;
  border-radius: 1rem;
  -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    -ms-transition: none;
    transition: none;
  }
}
.custom-range::-ms-thumb:active {
  background-color: #fefeff;
}
.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}
.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}
.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-moz-range-track {
  cursor: default;
}
.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
.custom-file-label,
.custom-select {
    transition: none;
  }
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 8.5px;
  vertical-align: 8.5px;
  content: "";
  border-top: 10px solid;
  border-right: 10px solid transparent;
  border-bottom: 0;
  border-left: 10px solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #FFFFFF;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1280px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 8.5px;
  vertical-align: 8.5px;
  content: "";
  border-top: 0;
  border-right: 10px solid transparent;
  border-bottom: 10px solid;
  border-left: 10px solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 8.5px;
  vertical-align: 8.5px;
  content: "";
  border-top: 10px solid transparent;
  border-right: 0;
  border-bottom: 10px solid transparent;
  border-left: 10px solid;
}
.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 8.5px;
  vertical-align: 8.5px;
  content: "";
}
.dropleft .dropdown-toggle::after {
  display: none;
}
.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 8.5px;
  vertical-align: 8.5px;
  content: "";
  border-top: 10px solid transparent;
  border-right: 10px solid;
  border-bottom: 10px solid transparent;
}
.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^=top], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left] {
  right: auto;
  bottom: auto;
}

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

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  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.active, .dropdown-item:active {
  color: #FFFFFF;
  text-decoration: none;
  background-color: #4F9BFB;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: transparent;
}

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

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.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: flex !important;
}

.d-inline-flex {
  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: flex !important;
  }

  .d-sm-inline-flex {
    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: flex !important;
  }

  .d-md-inline-flex {
    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: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1280px) {
  .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: flex !important;
  }

  .d-xl-inline-flex {
    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: flex !important;
  }

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

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

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

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

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

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

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

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

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

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

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

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

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

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

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

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

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

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

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

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

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

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

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

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

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

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

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

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

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

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

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

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

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

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

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

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

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

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

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

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

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

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

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

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

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

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

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

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

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

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

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

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

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

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

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

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

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

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

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

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

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

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

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1280px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

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

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

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

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

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

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

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

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

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

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

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

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

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

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

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

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
.my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
.mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
.my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
.mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
.my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
.mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
.my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
.mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
.my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
.mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
.my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
.mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
.my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
.mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
.my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
.mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
.my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
.mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
.my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
.mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
.my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
.mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
.mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
.py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
.px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
.py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
.px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
.py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
.px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
.py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
.px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
.py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
.px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
.py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
.px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
.py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
.px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
.py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
.px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
.py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
.px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
.py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
.px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
.py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
.px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
.px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-n1 {
    margin: -0.25rem !important;
  }

  .mt-sm-n1,
.my-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-sm-n1,
.mx-sm-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-sm-n1,
.my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-sm-n1,
.mx-sm-n1 {
    margin-left: -0.25rem !important;
  }

  .m-sm-n2 {
    margin: -0.5rem !important;
  }

  .mt-sm-n2,
.my-sm-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-sm-n2,
.mx-sm-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-sm-n2,
.my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-sm-n2,
.mx-sm-n2 {
    margin-left: -0.5rem !important;
  }

  .m-sm-n3 {
    margin: -1rem !important;
  }

  .mt-sm-n3,
.my-sm-n3 {
    margin-top: -1rem !important;
  }

  .mr-sm-n3,
.mx-sm-n3 {
    margin-right: -1rem !important;
  }

  .mb-sm-n3,
.my-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n3,
.mx-sm-n3 {
    margin-left: -1rem !important;
  }

  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  .mt-sm-n4,
.my-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-n4,
.mx-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-n4,
.my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-n4,
.mx-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .mt-sm-n5,
.my-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n5,
.mx-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n5,
.my-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n5,
.mx-sm-n5 {
    margin-left: -3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
.my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
.mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
.my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
.mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
.my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
.mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
.my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
.mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
.my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
.mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
.my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
.mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
.my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
.mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
.my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
.mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
.my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
.mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
.my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
.mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
.my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
.mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
.my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
.mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
.my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
.mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
.my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
.mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
.py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
.px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
.py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
.px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
.py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
.px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
.py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
.px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
.py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
.px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
.py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
.px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
.py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
.px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
.py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
.px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
.py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
.px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
.py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
.px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
.py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
.px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
.py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
.px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-n1 {
    margin: -0.25rem !important;
  }

  .mt-md-n1,
.my-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-md-n1,
.mx-md-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-md-n1,
.my-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-md-n1,
.mx-md-n1 {
    margin-left: -0.25rem !important;
  }

  .m-md-n2 {
    margin: -0.5rem !important;
  }

  .mt-md-n2,
.my-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-md-n2,
.mx-md-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-md-n2,
.my-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-md-n2,
.mx-md-n2 {
    margin-left: -0.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .mt-md-n3,
.my-md-n3 {
    margin-top: -1rem !important;
  }

  .mr-md-n3,
.mx-md-n3 {
    margin-right: -1rem !important;
  }

  .mb-md-n3,
.my-md-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n3,
.mx-md-n3 {
    margin-left: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .mt-md-n4,
.my-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-md-n4,
.mx-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-md-n4,
.my-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-n4,
.mx-md-n4 {
    margin-left: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .mt-md-n5,
.my-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n5,
.mx-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n5,
.my-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n5,
.mx-md-n5 {
    margin-left: -3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
.my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
.mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
.my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
.mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
.my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
.mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
.my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
.mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
.my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
.mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
.my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
.mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
.my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
.mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
.my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
.mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
.my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
.mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
.my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
.mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
.my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
.mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
.my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
.mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
.my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
.mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
.my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
.mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
.py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
.px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
.py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
.px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
.py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
.px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
.py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
.px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
.py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
.px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
.py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
.px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
.py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
.px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
.py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
.px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
.py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
.px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
.py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
.px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
.py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
.px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
.py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
.px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-n1 {
    margin: -0.25rem !important;
  }

  .mt-lg-n1,
.my-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-lg-n1,
.mx-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-lg-n1,
.my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-lg-n1,
.mx-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .m-lg-n2 {
    margin: -0.5rem !important;
  }

  .mt-lg-n2,
.my-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-lg-n2,
.mx-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-lg-n2,
.my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-lg-n2,
.mx-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .mt-lg-n3,
.my-lg-n3 {
    margin-top: -1rem !important;
  }

  .mr-lg-n3,
.mx-lg-n3 {
    margin-right: -1rem !important;
  }

  .mb-lg-n3,
.my-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n3,
.mx-lg-n3 {
    margin-left: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .mt-lg-n4,
.my-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-n4,
.mx-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-n4,
.my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-n4,
.mx-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .mt-lg-n5,
.my-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n5,
.mx-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n5,
.my-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n5,
.mx-lg-n5 {
    margin-left: -3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
.my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
.mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
.my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
.mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1280px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
.my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
.mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
.my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
.mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
.my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
.mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
.my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
.mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
.my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
.mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
.my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
.mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
.my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
.mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
.my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
.mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
.my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
.mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
.my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
.mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
.my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
.mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
.my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
.mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
.py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
.px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
.py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
.px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
.py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
.px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
.py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
.px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
.py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
.px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
.py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
.px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
.py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
.px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
.py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
.px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
.py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
.px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
.py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
.px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
.py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
.px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
.py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
.px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xl-n1,
.my-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xl-n1,
.mx-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xl-n1,
.my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xl-n1,
.mx-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xl-n2,
.my-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xl-n2,
.mx-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xl-n2,
.my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xl-n2,
.mx-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .mt-xl-n3,
.my-xl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xl-n3,
.mx-xl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xl-n3,
.my-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n3,
.mx-xl-n3 {
    margin-left: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xl-n4,
.my-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-n4,
.mx-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-n4,
.my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-n4,
.mx-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .mt-xl-n5,
.my-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n5,
.mx-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n5,
.my-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n5,
.mx-xl-n5 {
    margin-left: -3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
.my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
.mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
.my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
.mx-xl-auto {
    margin-left: auto !important;
  }
}
.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

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

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1280px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

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

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #FFFFFF !important;
}

.text-primary {
  color: #4F9BFB !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #0671f8 !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #494f54 !important;
}

.text-success {
  color: #46B204 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #296702 !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important;
}

.text-warning {
  color: #FFC60C !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #bf9200 !important;
}

.text-danger {
  color: #FE4709 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #ba3001 !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #121416 !important;
}

.text-default {
  color: #2542C7 !important;
}

a.text-default:hover, a.text-default:focus {
  color: #192d86 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

img {
  border: none;
}
img.responsive {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}
a:visited {
  color: inherit;
}
a img {
  border: none;
}
a:hover {
  text-decoration: none;
}

.inverseText {
  color: #FFFFFF;
}

html {
  font-family: "HCo Gotham SSm", "Gotham SSm A", "Gotham SSm B", "Gotham", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #000000;
}

h1, .h1 {
  font-size: 55px;
  font-size: 3.4375rem;
  line-height: 66px;
  line-height: 4.125rem;
}

h2, .h2 {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 47px;
  line-height: 2.9375rem;
}

h3, .h3 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 32px;
  line-height: 2rem;
}

h4, .h4 {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 19px;
  line-height: 1.1875rem;
}

h5, .h5 {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 18px;
  line-height: 1.125rem;
}

.subhead1 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 29px;
  line-height: 1.8125rem;
}

.subhead2 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 25px;
  line-height: 1.5625rem;
}

.blockquote, blockquote {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 35px;
  line-height: 2.1875rem;
}

.blockquote-footer {
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.375rem;
}
.blockquote-footer .cite, .blockquote-footer cite {
  font-weight: bold;
}

@media (max-width: 576px) {
  html {
    font-size: 12px;
  }
}
/*@import "./vendor/slick.scss";
@import "./vendor/slick-theme.scss";*/
.react-toggle {
  touch-action: pan-x;
  display: inline-block;
  position: relative;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  padding: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

.react-toggle-screenreader-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.react-toggle--disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transition: opacity 0.25s;
}

.react-toggle-track {
  width: 50px;
  height: 24px;
  padding: 0;
  border-radius: 30px;
  background-color: #4D4D4D;
  transition: all 0.2s ease;
}

.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track {
  background-color: #000000;
}

.react-toggle--checked .react-toggle-track {
  background-color: #19AB27;
}

.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track {
  background-color: #128D15;
}

.react-toggle-track-check {
  position: absolute;
  width: 14px;
  height: 10px;
  top: 0px;
  bottom: 0px;
  margin-top: auto;
  margin-bottom: auto;
  line-height: 0;
  left: 8px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.react-toggle--checked .react-toggle-track-check {
  opacity: 1;
  transition: opacity 0.25s ease;
}

.react-toggle-track-x {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 0px;
  bottom: 0px;
  margin-top: auto;
  margin-bottom: auto;
  line-height: 0;
  right: 10px;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.react-toggle--checked .react-toggle-track-x {
  opacity: 0;
}

.react-toggle-thumb {
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0ms;
  position: absolute;
  top: 1px;
  left: 1px;
  width: 22px;
  height: 22px;
  border: 1px solid #4D4D4D;
  border-radius: 50%;
  background-color: #FAFAFA;
  box-sizing: border-box;
  transition: all 0.25s ease;
}

.react-toggle--checked .react-toggle-thumb {
  left: 27px;
  border-color: #19AB27;
}

.react-toggle--focus .react-toggle-thumb {
  box-shadow: 0px 0px 2px 3px #0099E0;
}

.react-toggle:active:not(.react-toggle--disabled) .react-toggle-thumb {
  box-shadow: 0px 0px 5px 5px #0099E0;
}

.Alert {
  display: flex;
  height: 50px;
  background-color: #ffffff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
  position: absolute;
  left: 24px;
  right: 24px;
}
.Alert .Alert-icon {
  flex: 0 0 auto;
  line-height: 50px;
  font-size: 24px;
  padding: 0 10px 0 16px;
  color: #2542c7;
}
.Alert .Alert-message {
  flex: 1 1 auto;
  line-height: 50px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}
.Alert .Alert-close {
  flex: 0 0 auto;
  line-height: 50px;
  font-size: 16px;
  padding: 0 10px 0 16px;
  cursor: pointer;
}
.Alert .icon.material-icons {
  top: 0;
}
.Alert.Alert-warning {
  background-color: #fff6e4;
}
.Alert.Alert-warning .Alert-icon,
.Alert.Alert-warning .Alert-message,
.Alert.Alert-warning .Alert-close {
  color: #ffad0d;
}
.Alert.Alert-error {
  background-color: #ffeaea;
}
.Alert.Alert-error .Alert-icon,
.Alert.Alert-error .Alert-message,
.Alert.Alert-error .Alert-close {
  color: #fe4709;
}
.Alert.Alert-info {
  background-color: #cce6ff;
}
.Alert.Alert-info .Alert-icon,
.Alert.Alert-info .Alert-message,
.Alert.Alert-info .Alert-close {
  color: #0c66ff;
}
.Alert.Alert-success {
  background-color: #cff8eb;
}
.Alert.Alert-success .Alert-icon,
.Alert.Alert-success .Alert-message,
.Alert.Alert-success .Alert-close {
  color: #22c993;
}
.Alert.Alert-close {
  transition: all 0.5s;
  transform: translateY(-50px);
  opacity: 0;
}

.Avatar {
  height: 32px;
  width: 32px;
  border-radius: 32px;
  background-color: #2542C7;
  font-size: 13px;
  color: white;
  line-height: 32px;
  text-transform: uppercase;
  position: relative;
}
.Avatar.Avatar-online:after, .Avatar.Avatar-offline:after, .Avatar.Avatar-away:after {
  display: block;
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  border-radius: 8px;
  bottom: 0px;
  right: 0px;
}
.Avatar.Avatar-online:after {
  background-color: #46B204;
}
.Avatar.Avatar-offline:after {
  background-color: #FE4709;
}
.Avatar.Avatar-away:after {
  background-color: #FFC60C;
}

.Button {
  line-height: 1em;
  cursor: pointer;
  border-radius: 10em;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}
.Button.Button-size-extraSmall {
  font-weight: 500;
  height: 24px;
  height: 1.5rem;
  padding: 0 14px;
  padding: 0 0.875rem;
  font-size: 10px;
  font-size: 0.625rem;
}
.Button.Button-size-small {
  font-weight: 500;
  height: 34px;
  height: 2.125rem;
  padding: 0 20px;
  padding: 0 1.25rem;
  font-size: 10px;
  font-size: 0.625rem;
}
.Button.Button-size-medium {
  font-weight: bold;
  height: 47px;
  height: 2.9375rem;
  padding: 0 28px;
  padding: 0 1.75rem;
  font-size: 12px;
  font-size: 0.75rem;
}
.Button.Button-size-large {
  font-weight: bold;
  height: 50px;
  height: 3.125rem;
  padding: 0 36px;
  padding: 0 2.25rem;
  font-size: 14px;
  font-size: 0.875rem;
}
.Button.Button-color-primary {
  background-color: #2542c7;
  color: #ffffff;
  border: none;
}
.Button.Button-color-primary:hover {
  background-color: #050db0;
}
.Button.Button-color-secondary {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #8b96a0;
}
.Button.Button-color-secondary:hover {
  background-color: #ffffff;
  border-color: #2c3e51;
}
.Button.Button-disabled {
  background-color: #f1f2f4 !important;
  border: 1px solid #e1e4e8 !important;
  color: #a6aebc !important;
  cursor: default;
}
.Button.Button-disabled:after {
  display: none;
}
.Button.Button-loading.Button-color-primary:hover {
  background-color: #2542c7;
}
.Button.Button-loading:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  -webkit-animation: Button-Loading 2s ease-in-out infinite;
          animation: Button-Loading 2s ease-in-out infinite;
}
.Button.Button-loading.Button-color-primary:after {
  background-color: #050db0;
}
.Button.Button-loading.Button-color-secondary:after {
  background-color: #f0f0f0;
}
.Button.Button-progress {
  background-color: #9BA9E5;
}
.Button.Button-progress .Button-progress {
  background-color: #050db0;
  height: 100%;
  position: absolute;
  left: 0;
}
.Button .Button-text {
  position: relative;
  z-index: 100;
}
.Button .Button-icon {
  position: relative;
  right: -0.5em;
  z-index: 100;
}
.Button .Button-icon .icon.material-icons {
  top: 0;
  font-size: 1.5em;
  vertical-align: middle;
}

@-webkit-keyframes Button-Loading {
  0% {
    transform: translateX(-100%);
  }
  40% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(0%);
  }
  90% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes Button-Loading {
  0% {
    transform: translateX(-100%);
  }
  40% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(0%);
  }
  90% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.buttonLink {
  display: inline-block;
}

#Header {
  position: fixed;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 99999;
  max-width: 1680px;
  margin: 0 auto;
}
#Header:after {
  content: "";
  display: block;
  clear: both;
}
#Header #Header-container {
  background-color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 100;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}
#Header .Header-content {
  display: flex;
  flex: 1 1 100%;
  justify-content: space-between;
}
#Header .Header-logo {
  flex: 0 0 auto;
  height: 72px;
  padding: 19px 0 19px 19px;
  margin-right: 1em;
}
#Header .Header-logo .Link,
#Header .Header-logo .Link-content {
  display: inline-block;
  height: 100%;
}
#Header .Header-logo img.img-fluid {
  max-width: initial;
  height: 100%;
  width: auto;
}
#Header .Header-bar {
  position: absolute;
  top: 100%;
  z-index: 10;
  background-color: #FFFFFF;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  transform-style: flat;
  width: 100%;
  left: 0;
  padding: 10px 0;
  -webkit-animation: 0.5s Header-animateDownIn;
  animation: 0.5s Header-animateDownIn;
}

.icon {
  display: inline-block;
}
.icon.material-icons {
  font-size: inherit;
  line-height: inherit;
  position: relative;
  top: 0.1em;
}

.input {
  width: 100%;
  position: relative;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 12px;
  line-height: 0.75rem;
  line-height: 1em;
  margin-bottom: 1em;
}
.input.autocomplete .Dropdown {
  width: 100%;
  margin: 3px 0 0;
  z-index: 999;
  max-height: 290px;
  overflow-y: scroll;
  top: 100%;
}
.input.autocomplete .Dropdown ul, .input.autocomplete .Dropdown li {
  list-style: none;
  padding: 0;
  margin: 0;
}
.input.autocomplete .Dropdown li {
  cursor: pointer;
  padding: 10px;
}
.input.autocomplete .Dropdown li:hover {
  background-color: #dbe7fc;
}
.input .input-container {
  position: relative;
  transition: padding-bottom 0.3s;
}
.input .input-container label.input-field.checkbox {
  cursor: pointer;
}
.input .input-container label.input-field.checkbox input {
  margin-right: 5px;
}
.input input[type=text]::-ms-clear {
  display: none;
}
.input input,
.input textarea,
.input select,
.input .input-inputText,
.input .input-placeholder {
  text-align: left;
  font-size: 1em;
  line-height: 1.4em;
}
.input .input-placeholder {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  padding-right: 40px;
}
.input textarea {
  min-height: 10rem;
}
.input select {
  height: 2.78rem;
}
.input input,
.input select,
.input textarea {
  background-color: transparent;
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  outline: 0;
  border: none;
  z-index: 100;
  color: #000000;
}
.input .input-field {
  display: flex;
  background-color: #FFFFFF;
  position: relative;
  border: 1px solid #C4CCD2;
  border-radius: 4px;
  transition: all 0.25s;
}
.input .input-field.input-disabled {
  background-color: #fafafa;
}
.input .input-field input, .input .input-field textarea, .input .input-field select {
  padding: 14px 12px;
  padding: 0.875rem 0.75rem;
}
.input .input-field .input-widget-phonecode {
  line-height: 41px;
  margin-top: 2px;
  display: flex;
}
.input .input-field .input-widget-phonecode .country-flag {
  background: url("https://sep.yimg.com/yf/sbp/img/3e2d2fa3.c_flags.png") 20px 0 no-repeat;
  width: 20px;
  margin: 15px 5px 0 10px;
  height: 17px;
}
.input .input-field .input-placeholder {
  color: #4a4a4a;
  background-color: #FFFFFF;
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  padding-right: 2px;
  transition: all 0.25s;
  z-index: 100;
}
.input .input-field .input-placeholder.input-disabled {
  background-color: #fafafa;
}
.input .input-field.multiline .input-placeholder {
  top: 12%;
}
.input .input-field.checkbox {
  border: none;
}
.input .input-field.checkbox input {
  width: auto;
  display: none;
}
.input .input-field.checkbox .unchecked {
  color: #e1e1e1;
}
.input .input-field.checkbox .checked {
  color: #2542C7;
}
.input .input-field.checkbox .iconwrap {
  margin-right: 10px;
  position: relative;
}
.input .input-field.checkbox .iconwrap .icon {
  font-size: 1.4em;
  top: 0;
}
.input .input-field.checkbox input + .iconwrap .checked {
  display: none;
}
.input .input-field.checkbox input[type=radio]:checked + .iconwrap .unchecked,
.input .input-field.checkbox input[type=checkbox]:checked + .iconwrap .unchecked {
  display: none;
}
.input .input-field.checkbox input[type=radio]:checked + .iconwrap .checked,
.input .input-field.checkbox input[type=checkbox]:checked + .iconwrap .checked {
  display: inline-block;
}
.input .input-field.checkbox.radio .checked {
  color: #e1e1e1;
}
.input .input-field.checkbox.radio .checked.plus {
  color: #2542C7;
  position: absolute;
  font-size: 14px;
  left: 50%;
  margin-left: -0.5em;
  top: 0;
  font-size: 1em;
}
.input.input-hasFocus .input-field {
  border-color: #2542C7;
}
.input .input-error {
  color: #FE4709;
  font-size: 12px;
  opacity: 0;
  position: relative;
  transition: height 0.35s ease-out, opacity 0.35s ease-in;
}
.input .input-error .input-error-text {
  position: absolute;
  bottom: 0;
}
.input.input-hasError .input-error {
  opacity: 1;
  margin-top: 5px;
}
.input.input-hasError .input-field {
  border-color: #FE4709;
}
.input.input-hasFocus .input-placeholder, .input.input-hasValue .input-placeholder, .input.input-fixedLabel .input-placeholder {
  top: 0px;
  margin-left: -4px;
  color: #000000;
  font-size: 0.9em;
  padding: 0 4px;
}
.input.input-hasFocus .multiline .input-placeholder, .input.input-hasValue .multiline .input-placeholder, .input.input-fixedLabel .multiline .input-placeholder {
  top: 0px;
}
.input.input-linear .input-field {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background-color: transparent;
}
.input.input-linear .input-field .input-placeholder {
  left: 8px;
  background-color: transparent;
  color: #4a4a4a;
}
.input.input-linear .input-field input, .input.input-linear .input-field textarea, .input.input-linear .input-field select {
  background-color: transparent;
  padding-left: 8px;
  padding-right: 2em;
}
.input.input-linear .input-error-text {
  padding-left: 8px;
}
.input.input-linear.input-hasFocus .input-placeholder, .input.input-linear.input-hasValue .input-placeholder, .input.input-linear.input-fixedLabel .input-placeholder {
  color: #4a4a4a;
  font-size: 0.5em;
}
.input.input-linear.input-small {
  font-size: 12px;
  font-size: 0.75rem;
}
.input.input-linear.input-small .input-field input, .input.input-linear.input-small .input-field textarea, .input.input-linear.input-small .input-field select {
  padding-top: 8px;
  padding-top: 0.5rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}
.input.input-linear.input-small.input-hasFocus .input-placeholder, .input.input-linear.input-small.input-hasValue .input-placeholder, .input.input-linear.input-small.input-fixedLabel .input-placeholder {
  color: #4a4a4a;
  font-size: 0.8em;
}
.input.input-linear.input-medium {
  font-size: 26px;
  font-size: 1.625rem;
}
.input.input-linear.input-medium .input-field input, .input.input-linear.input-medium .input-field textarea, .input.input-linear.input-medium .input-field select {
  padding-top: 12px;
  padding-top: 0.75rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
.input.input-linear.input-large {
  font-size: 30px;
  font-size: 1.875rem;
}
.input.input-linear.input-large .input-field {
  border-bottom-width: 2px;
}
.input.input-linear.input-large .input-field input, .input.input-linear.input-large .input-field textarea, .input.input-linear.input-large .input-field select {
  padding-top: 13px;
  padding-top: 0.8125rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
}

.input .input-field .input-widget-phonecode .country-flag.be {
  width: 18px;
}
.input .input-field .input-widget-phonecode .country-flag.ch {
  width: 15px;
}
.input .input-field .input-widget-phonecode .country-flag.mc {
  width: 19px;
}
.input .input-field .input-widget-phonecode .country-flag.ne {
  width: 18px;
}
.input .input-field .input-widget-phonecode .country-flag.ac {
  height: 10px;
  background-position: 0 0;
}
.input .input-field .input-widget-phonecode .country-flag.ad {
  height: 14px;
  background-position: -22px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ae {
  height: 10px;
  background-position: -44px 0;
}
.input .input-field .input-widget-phonecode .country-flag.af, .input .input-field .input-widget-phonecode .country-flag.ag {
  height: 14px;
}
.input .input-field .input-widget-phonecode .country-flag.af {
  background-position: -66px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ag {
  background-position: -88px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ai {
  height: 10px;
  background-position: -110px 0;
}
.input .input-field .input-widget-phonecode .country-flag.al {
  height: 15px;
  background-position: -132px 0;
}
.input .input-field .input-widget-phonecode .country-flag.am {
  height: 10px;
  background-position: -154px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ao, .input .input-field .input-widget-phonecode .country-flag.aq {
  height: 14px;
}
.input .input-field .input-widget-phonecode .country-flag.ao {
  background-position: -176px 0;
}
.input .input-field .input-widget-phonecode .country-flag.aq {
  background-position: -198px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ar {
  height: 13px;
  background-position: -220px 0;
}
.input .input-field .input-widget-phonecode .country-flag.as {
  height: 10px;
  background-position: -242px 0;
}
.input .input-field .input-widget-phonecode .country-flag.at {
  height: 14px;
  background-position: -264px 0;
}
.input .input-field .input-widget-phonecode .country-flag.au {
  height: 10px;
  background-position: -286px 0;
}
.input .input-field .input-widget-phonecode .country-flag.aw {
  height: 14px;
  background-position: -308px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ax {
  height: 13px;
  background-position: -330px 0;
}
.input .input-field .input-widget-phonecode .country-flag.az, .input .input-field .input-widget-phonecode .country-flag.ba {
  height: 10px;
}
.input .input-field .input-widget-phonecode .country-flag.az {
  background-position: -352px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ba {
  background-position: -374px 0;
}
.input .input-field .input-widget-phonecode .country-flag.bb {
  height: 14px;
  background-position: -396px 0;
}
.input .input-field .input-widget-phonecode .country-flag.bd {
  height: 12px;
  background-position: -418px 0;
}
.input .input-field .input-widget-phonecode .country-flag.be {
  height: 15px;
  background-position: -440px 0;
}
.input .input-field .input-widget-phonecode .country-flag.bf {
  height: 14px;
  background-position: -460px 0;
}
.input .input-field .input-widget-phonecode .country-flag.bg, .input .input-field .input-widget-phonecode .country-flag.bh, .input .input-field .input-widget-phonecode .country-flag.bi {
  height: 12px;
}
.input .input-field .input-widget-phonecode .country-flag.bg {
  background-position: -482px 0;
}
.input .input-field .input-widget-phonecode .country-flag.bh {
  background-position: -504px 0;
}
.input .input-field .input-widget-phonecode .country-flag.bi {
  background-position: -526px 0;
}
.input .input-field .input-widget-phonecode .country-flag.bj, .input .input-field .input-widget-phonecode .country-flag.bl {
  height: 14px;
}
.input .input-field .input-widget-phonecode .country-flag.bj {
  background-position: -548px 0;
}
.input .input-field .input-widget-phonecode .country-flag.bl {
  background-position: -570px 0;
}
.input .input-field .input-widget-phonecode .country-flag.bm, .input .input-field .input-widget-phonecode .country-flag.bn {
  height: 10px;
}
.input .input-field .input-widget-phonecode .country-flag.bm {
  background-position: -592px 0;
}
.input .input-field .input-widget-phonecode .country-flag.bn {
  background-position: -614px 0;
}
.input .input-field .input-widget-phonecode .country-flag.bo, .input .input-field .input-widget-phonecode .country-flag.bq, .input .input-field .input-widget-phonecode .country-flag.br {
  height: 14px;
}
.input .input-field .input-widget-phonecode .country-flag.bo {
  background-position: -636px 0;
}
.input .input-field .input-widget-phonecode .country-flag.bq {
  background-position: -658px 0;
}
.input .input-field .input-widget-phonecode .country-flag.br {
  background-position: -680px 0;
}
.input .input-field .input-widget-phonecode .country-flag.bs {
  height: 10px;
  background-position: -702px 0;
}
.input .input-field .input-widget-phonecode .country-flag.bt {
  height: 14px;
  background-position: -724px 0;
}
.input .input-field .input-widget-phonecode .country-flag.bv {
  height: 15px;
  background-position: -746px 0;
}
.input .input-field .input-widget-phonecode .country-flag.bw {
  height: 14px;
  background-position: -768px 0;
}
.input .input-field .input-widget-phonecode .country-flag.by {
  height: 10px;
  background-position: -790px 0;
}
.input .input-field .input-widget-phonecode .country-flag.bz {
  height: 14px;
  background-position: -812px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ca, .input .input-field .input-widget-phonecode .country-flag.cc {
  height: 10px;
}
.input .input-field .input-widget-phonecode .country-flag.ca {
  background-position: -834px 0;
}
.input .input-field .input-widget-phonecode .country-flag.cc {
  background-position: -856px 0;
}
.input .input-field .input-widget-phonecode .country-flag.cd {
  height: 15px;
  background-position: -878px 0;
}
.input .input-field .input-widget-phonecode .country-flag.cf, .input .input-field .input-widget-phonecode .country-flag.cg {
  height: 14px;
}
.input .input-field .input-widget-phonecode .country-flag.cf {
  background-position: -900px 0;
}
.input .input-field .input-widget-phonecode .country-flag.cg {
  background-position: -922px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ch {
  height: 15px;
  background-position: -944px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ci {
  height: 14px;
  background-position: -961px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ck {
  height: 10px;
  background-position: -983px 0;
}
.input .input-field .input-widget-phonecode .country-flag.cl, .input .input-field .input-widget-phonecode .country-flag.cm, .input .input-field .input-widget-phonecode .country-flag.cn, .input .input-field .input-widget-phonecode .country-flag.co, .input .input-field .input-widget-phonecode .country-flag.cp {
  height: 14px;
}
.input .input-field .input-widget-phonecode .country-flag.cl {
  background-position: -1005px 0;
}
.input .input-field .input-widget-phonecode .country-flag.cm {
  background-position: -1027px 0;
}
.input .input-field .input-widget-phonecode .country-flag.cn {
  background-position: -1049px 0;
}
.input .input-field .input-widget-phonecode .country-flag.co {
  background-position: -1071px 0;
}
.input .input-field .input-widget-phonecode .country-flag.cp {
  background-position: -1093px 0;
}
.input .input-field .input-widget-phonecode .country-flag.cr {
  height: 12px;
  background-position: -1115px 0;
}
.input .input-field .input-widget-phonecode .country-flag.cu {
  height: 10px;
  background-position: -1137px 0;
}
.input .input-field .input-widget-phonecode .country-flag.cv {
  height: 12px;
  background-position: -1159px 0;
}
.input .input-field .input-widget-phonecode .country-flag.cw {
  height: 14px;
  background-position: -1181px 0;
}
.input .input-field .input-widget-phonecode .country-flag.cx {
  height: 10px;
  background-position: -1203px 0;
}
.input .input-field .input-widget-phonecode .country-flag.cy {
  height: 13px;
  background-position: -1225px 0;
}
.input .input-field .input-widget-phonecode .country-flag.cz {
  height: 14px;
  background-position: -1247px 0;
}
.input .input-field .input-widget-phonecode .country-flag.de {
  height: 12px;
  background-position: -1269px 0;
}
.input .input-field .input-widget-phonecode .country-flag.dg {
  height: 10px;
  background-position: -1291px 0;
}
.input .input-field .input-widget-phonecode .country-flag.dj {
  height: 14px;
  background-position: -1313px 0;
}
.input .input-field .input-widget-phonecode .country-flag.dk {
  height: 15px;
  background-position: -1335px 0;
}
.input .input-field .input-widget-phonecode .country-flag.dm {
  height: 10px;
  background-position: -1357px 0;
}
.input .input-field .input-widget-phonecode .country-flag.do {
  height: 13px;
  background-position: -1379px 0;
}
.input .input-field .input-widget-phonecode .country-flag.dz, .input .input-field .input-widget-phonecode .country-flag.ea, .input .input-field .input-widget-phonecode .country-flag.ec {
  height: 14px;
}
.input .input-field .input-widget-phonecode .country-flag.dz {
  background-position: -1401px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ea {
  background-position: -1423px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ec {
  background-position: -1445px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ee {
  height: 13px;
  background-position: -1467px 0;
}
.input .input-field .input-widget-phonecode .country-flag.eg {
  height: 14px;
  background-position: -1489px 0;
}
.input .input-field .input-widget-phonecode .country-flag.eh, .input .input-field .input-widget-phonecode .country-flag.er {
  height: 10px;
}
.input .input-field .input-widget-phonecode .country-flag.eh {
  background-position: -1511px 0;
}
.input .input-field .input-widget-phonecode .country-flag.er {
  background-position: -1533px 0;
}
.input .input-field .input-widget-phonecode .country-flag.es {
  height: 14px;
  background-position: -1555px 0;
}
.input .input-field .input-widget-phonecode .country-flag.et {
  height: 10px;
  background-position: -1577px 0;
}
.input .input-field .input-widget-phonecode .country-flag.eu {
  height: 14px;
  background-position: -1599px 0;
}
.input .input-field .input-widget-phonecode .country-flag.fi {
  height: 12px;
  background-position: -1621px 0;
}
.input .input-field .input-widget-phonecode .country-flag.fj, .input .input-field .input-widget-phonecode .country-flag.fk {
  height: 10px;
}
.input .input-field .input-widget-phonecode .country-flag.fj {
  background-position: -1643px 0;
}
.input .input-field .input-widget-phonecode .country-flag.fk {
  background-position: -1665px 0;
}
.input .input-field .input-widget-phonecode .country-flag.fm {
  height: 11px;
  background-position: -1687px 0;
}
.input .input-field .input-widget-phonecode .country-flag.fo {
  height: 15px;
  background-position: -1709px 0;
}
.input .input-field .input-widget-phonecode .country-flag.fr {
  height: 14px;
  background-position: -1731px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ga {
  height: 15px;
  background-position: -1753px 0;
}
.input .input-field .input-widget-phonecode .country-flag.gb {
  height: 10px;
  background-position: -1775px 0;
}
.input .input-field .input-widget-phonecode .country-flag.gd {
  height: 12px;
  background-position: -1797px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ge, .input .input-field .input-widget-phonecode .country-flag.gf, .input .input-field .input-widget-phonecode .country-flag.gg, .input .input-field .input-widget-phonecode .country-flag.gh {
  height: 14px;
}
.input .input-field .input-widget-phonecode .country-flag.ge {
  background-position: -1819px 0;
}
.input .input-field .input-widget-phonecode .country-flag.gf {
  background-position: -1841px 0;
}
.input .input-field .input-widget-phonecode .country-flag.gg {
  background-position: -1863px 0;
}
.input .input-field .input-widget-phonecode .country-flag.gh {
  background-position: -1885px 0;
}
.input .input-field .input-widget-phonecode .country-flag.gi {
  height: 10px;
  background-position: -1907px 0;
}
.input .input-field .input-widget-phonecode .country-flag.gl, .input .input-field .input-widget-phonecode .country-flag.gm, .input .input-field .input-widget-phonecode .country-flag.gn, .input .input-field .input-widget-phonecode .country-flag.gp, .input .input-field .input-widget-phonecode .country-flag.gq, .input .input-field .input-widget-phonecode .country-flag.gr {
  height: 14px;
}
.input .input-field .input-widget-phonecode .country-flag.gl {
  background-position: -1929px 0;
}
.input .input-field .input-widget-phonecode .country-flag.gm {
  background-position: -1951px 0;
}
.input .input-field .input-widget-phonecode .country-flag.gn {
  background-position: -1973px 0;
}
.input .input-field .input-widget-phonecode .country-flag.gp {
  background-position: -1995px 0;
}
.input .input-field .input-widget-phonecode .country-flag.gq {
  background-position: -2017px 0;
}
.input .input-field .input-widget-phonecode .country-flag.gr {
  background-position: -2039px 0;
}
.input .input-field .input-widget-phonecode .country-flag.gs {
  height: 10px;
  background-position: -2061px 0;
}
.input .input-field .input-widget-phonecode .country-flag.gt {
  height: 13px;
  background-position: -2083px 0;
}
.input .input-field .input-widget-phonecode .country-flag.gu {
  height: 11px;
  background-position: -2105px 0;
}
.input .input-field .input-widget-phonecode .country-flag.gw {
  height: 10px;
  background-position: -2127px 0;
}
.input .input-field .input-widget-phonecode .country-flag.gy {
  height: 12px;
  background-position: -2149px 0;
}
.input .input-field .input-widget-phonecode .country-flag.hk {
  height: 14px;
  background-position: -2171px 0;
}
.input .input-field .input-widget-phonecode .country-flag.hm, .input .input-field .input-widget-phonecode .country-flag.hn, .input .input-field .input-widget-phonecode .country-flag.hr {
  height: 10px;
}
.input .input-field .input-widget-phonecode .country-flag.hm {
  background-position: -2193px 0;
}
.input .input-field .input-widget-phonecode .country-flag.hn {
  background-position: -2215px 0;
}
.input .input-field .input-widget-phonecode .country-flag.hr {
  background-position: -2237px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ht {
  height: 12px;
  background-position: -2259px 0;
}
.input .input-field .input-widget-phonecode .country-flag.hu {
  height: 10px;
  background-position: -2281px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ic, .input .input-field .input-widget-phonecode .country-flag.id {
  height: 14px;
}
.input .input-field .input-widget-phonecode .country-flag.ic {
  background-position: -2303px 0;
}
.input .input-field .input-widget-phonecode .country-flag.id {
  background-position: -2325px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ie {
  height: 10px;
  background-position: -2347px 0;
}
.input .input-field .input-widget-phonecode .country-flag.il {
  height: 15px;
  background-position: -2369px 0;
}
.input .input-field .input-widget-phonecode .country-flag.im {
  height: 10px;
  background-position: -2391px 0;
}
.input .input-field .input-widget-phonecode .country-flag.in {
  height: 14px;
  background-position: -2413px 0;
}
.input .input-field .input-widget-phonecode .country-flag.io {
  height: 10px;
  background-position: -2435px 0;
}
.input .input-field .input-widget-phonecode .country-flag.iq {
  height: 14px;
  background-position: -2457px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ir {
  height: 12px;
  background-position: -2479px 0;
}
.input .input-field .input-widget-phonecode .country-flag.is {
  height: 15px;
  background-position: -2501px 0;
}
.input .input-field .input-widget-phonecode .country-flag.it {
  height: 14px;
  background-position: -2523px 0;
}
.input .input-field .input-widget-phonecode .country-flag.je {
  height: 12px;
  background-position: -2545px 0;
}
.input .input-field .input-widget-phonecode .country-flag.jm, .input .input-field .input-widget-phonecode .country-flag.jo {
  height: 10px;
}
.input .input-field .input-widget-phonecode .country-flag.jm {
  background-position: -2567px 0;
}
.input .input-field .input-widget-phonecode .country-flag.jo {
  background-position: -2589px 0;
}
.input .input-field .input-widget-phonecode .country-flag.jp, .input .input-field .input-widget-phonecode .country-flag.ke {
  height: 14px;
}
.input .input-field .input-widget-phonecode .country-flag.jp {
  background-position: -2611px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ke {
  background-position: -2633px 0;
}
.input .input-field .input-widget-phonecode .country-flag.kg {
  height: 12px;
  background-position: -2655px 0;
}
.input .input-field .input-widget-phonecode .country-flag.kh {
  height: 13px;
  background-position: -2677px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ki {
  height: 10px;
  background-position: -2699px 0;
}
.input .input-field .input-widget-phonecode .country-flag.km {
  height: 12px;
  background-position: -2721px 0;
}
.input .input-field .input-widget-phonecode .country-flag.kn {
  height: 14px;
  background-position: -2743px 0;
}
.input .input-field .input-widget-phonecode .country-flag.kp {
  height: 10px;
  background-position: -2765px 0;
}
.input .input-field .input-widget-phonecode .country-flag.kr {
  height: 14px;
  background-position: -2787px 0;
}
.input .input-field .input-widget-phonecode .country-flag.kw, .input .input-field .input-widget-phonecode .country-flag.ky, .input .input-field .input-widget-phonecode .country-flag.kz {
  height: 10px;
}
.input .input-field .input-widget-phonecode .country-flag.kw {
  background-position: -2809px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ky {
  background-position: -2831px 0;
}
.input .input-field .input-widget-phonecode .country-flag.kz {
  background-position: -2853px 0;
}
.input .input-field .input-widget-phonecode .country-flag.la, .input .input-field .input-widget-phonecode .country-flag.lb {
  height: 14px;
}
.input .input-field .input-widget-phonecode .country-flag.la {
  background-position: -2875px 0;
}
.input .input-field .input-widget-phonecode .country-flag.lb {
  background-position: -2897px 0;
}
.input .input-field .input-widget-phonecode .country-flag.lc {
  height: 10px;
  background-position: -2919px 0;
}
.input .input-field .input-widget-phonecode .country-flag.li {
  height: 12px;
  background-position: -2941px 0;
}
.input .input-field .input-widget-phonecode .country-flag.lk {
  height: 10px;
  background-position: -2963px 0;
}
.input .input-field .input-widget-phonecode .country-flag.lr {
  height: 11px;
  background-position: -2985px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ls {
  height: 14px;
  background-position: -3007px 0;
}
.input .input-field .input-widget-phonecode .country-flag.lt, .input .input-field .input-widget-phonecode .country-flag.lu {
  height: 12px;
}
.input .input-field .input-widget-phonecode .country-flag.lt {
  background-position: -3029px 0;
}
.input .input-field .input-widget-phonecode .country-flag.lu {
  background-position: -3051px 0;
}
.input .input-field .input-widget-phonecode .country-flag.lv, .input .input-field .input-widget-phonecode .country-flag.ly {
  height: 10px;
}
.input .input-field .input-widget-phonecode .country-flag.lv {
  background-position: -3073px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ly {
  background-position: -3095px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ma {
  height: 14px;
  background-position: -3117px 0;
}
.input .input-field .input-widget-phonecode .country-flag.mc {
  height: 15px;
  background-position: -3139px 0;
}
.input .input-field .input-widget-phonecode .country-flag.md, .input .input-field .input-widget-phonecode .country-flag.me {
  height: 10px;
}
.input .input-field .input-widget-phonecode .country-flag.md {
  background-position: -3160px 0;
}
.input .input-field .input-widget-phonecode .country-flag.me {
  background-position: -3182px 0;
}
.input .input-field .input-widget-phonecode .country-flag.mf, .input .input-field .input-widget-phonecode .country-flag.mg {
  height: 14px;
}
.input .input-field .input-widget-phonecode .country-flag.mf {
  background-position: -3204px 0;
}
.input .input-field .input-widget-phonecode .country-flag.mg {
  background-position: -3226px 0;
}
.input .input-field .input-widget-phonecode .country-flag.mh {
  height: 11px;
  background-position: -3248px 0;
}
.input .input-field .input-widget-phonecode .country-flag.mk {
  height: 10px;
  background-position: -3270px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ml, .input .input-field .input-widget-phonecode .country-flag.mm {
  height: 14px;
}
.input .input-field .input-widget-phonecode .country-flag.ml {
  background-position: -3292px 0;
}
.input .input-field .input-widget-phonecode .country-flag.mm {
  background-position: -3314px 0;
}
.input .input-field .input-widget-phonecode .country-flag.mn {
  height: 10px;
  background-position: -3336px 0;
}
.input .input-field .input-widget-phonecode .country-flag.mo {
  height: 14px;
  background-position: -3358px 0;
}
.input .input-field .input-widget-phonecode .country-flag.mp {
  height: 10px;
  background-position: -3380px 0;
}
.input .input-field .input-widget-phonecode .country-flag.mq, .input .input-field .input-widget-phonecode .country-flag.mr {
  height: 14px;
}
.input .input-field .input-widget-phonecode .country-flag.mq {
  background-position: -3402px 0;
}
.input .input-field .input-widget-phonecode .country-flag.mr {
  background-position: -3424px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ms {
  height: 10px;
  background-position: -3446px 0;
}
.input .input-field .input-widget-phonecode .country-flag.mt, .input .input-field .input-widget-phonecode .country-flag.mu, .input .input-field .input-widget-phonecode .country-flag.mv, .input .input-field .input-widget-phonecode .country-flag.mw {
  height: 14px;
}
.input .input-field .input-widget-phonecode .country-flag.mt {
  background-position: -3468px 0;
}
.input .input-field .input-widget-phonecode .country-flag.mu {
  background-position: -3490px 0;
}
.input .input-field .input-widget-phonecode .country-flag.mv {
  background-position: -3512px 0;
}
.input .input-field .input-widget-phonecode .country-flag.mw {
  background-position: -3534px 0;
}
.input .input-field .input-widget-phonecode .country-flag.mx {
  height: 12px;
  background-position: -3556px 0;
}
.input .input-field .input-widget-phonecode .country-flag.my {
  height: 10px;
  background-position: -3578px 0;
}
.input .input-field .input-widget-phonecode .country-flag.mz, .input .input-field .input-widget-phonecode .country-flag.na {
  height: 14px;
}
.input .input-field .input-widget-phonecode .country-flag.mz {
  background-position: -3600px 0;
}
.input .input-field .input-widget-phonecode .country-flag.na {
  background-position: -3622px 0;
}
.input .input-field .input-widget-phonecode .country-flag.nc {
  height: 10px;
  background-position: -3644px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ne {
  height: 15px;
  background-position: -3666px 0;
}
.input .input-field .input-widget-phonecode .country-flag.nf, .input .input-field .input-widget-phonecode .country-flag.ng {
  height: 10px;
}
.input .input-field .input-widget-phonecode .country-flag.nf {
  background-position: -3686px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ng {
  background-position: -3708px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ni {
  height: 12px;
  background-position: -3730px 0;
}
.input .input-field .input-widget-phonecode .country-flag.nl {
  height: 14px;
  background-position: -3752px 0;
}
.input .input-field .input-widget-phonecode .country-flag.no, .input .input-field .input-widget-phonecode .country-flag.np {
  height: 15px;
}
.input .input-field .input-widget-phonecode .country-flag.no {
  background-position: -3774px 0;
}
.input .input-field .input-widget-phonecode .country-flag.np {
  width: 13px;
  background-position: -3796px 0;
  background-color: transparent;
}
.input .input-field .input-widget-phonecode .country-flag.nr, .input .input-field .input-widget-phonecode .country-flag.nu, .input .input-field .input-widget-phonecode .country-flag.nz, .input .input-field .input-widget-phonecode .country-flag.om {
  height: 10px;
}
.input .input-field .input-widget-phonecode .country-flag.nr {
  background-position: -3811px 0;
}
.input .input-field .input-widget-phonecode .country-flag.nu {
  background-position: -3833px 0;
}
.input .input-field .input-widget-phonecode .country-flag.nz {
  background-position: -3855px 0;
}
.input .input-field .input-widget-phonecode .country-flag.om {
  background-position: -3877px 0;
}
.input .input-field .input-widget-phonecode .country-flag.pa, .input .input-field .input-widget-phonecode .country-flag.pe, .input .input-field .input-widget-phonecode .country-flag.pf {
  height: 14px;
}
.input .input-field .input-widget-phonecode .country-flag.pa {
  background-position: -3899px 0;
}
.input .input-field .input-widget-phonecode .country-flag.pe {
  background-position: -3921px 0;
}
.input .input-field .input-widget-phonecode .country-flag.pf {
  background-position: -3943px 0;
}
.input .input-field .input-widget-phonecode .country-flag.pg {
  height: 15px;
  background-position: -3965px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ph {
  height: 10px;
  background-position: -3987px 0;
}
.input .input-field .input-widget-phonecode .country-flag.pk {
  height: 14px;
  background-position: -4009px 0;
}
.input .input-field .input-widget-phonecode .country-flag.pl {
  height: 13px;
  background-position: -4031px 0;
}
.input .input-field .input-widget-phonecode .country-flag.pm {
  height: 14px;
  background-position: -4053px 0;
}
.input .input-field .input-widget-phonecode .country-flag.pn {
  height: 10px;
  background-position: -4075px 0;
}
.input .input-field .input-widget-phonecode .country-flag.pr {
  height: 14px;
  background-position: -4097px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ps {
  height: 10px;
  background-position: -4119px 0;
}
.input .input-field .input-widget-phonecode .country-flag.pt {
  height: 14px;
  background-position: -4141px 0;
}
.input .input-field .input-widget-phonecode .country-flag.pw {
  height: 13px;
  background-position: -4163px 0;
}
.input .input-field .input-widget-phonecode .country-flag.py {
  height: 11px;
  background-position: -4185px 0;
}
.input .input-field .input-widget-phonecode .country-flag.qa {
  height: 8px;
  background-position: -4207px 0;
}
.input .input-field .input-widget-phonecode .country-flag.re, .input .input-field .input-widget-phonecode .country-flag.ro, .input .input-field .input-widget-phonecode .country-flag.rs, .input .input-field .input-widget-phonecode .country-flag.ru, .input .input-field .input-widget-phonecode .country-flag.rw, .input .input-field .input-widget-phonecode .country-flag.sa {
  height: 14px;
}
.input .input-field .input-widget-phonecode .country-flag.re {
  background-position: -4229px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ro {
  background-position: -4251px 0;
}
.input .input-field .input-widget-phonecode .country-flag.rs {
  background-position: -4273px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ru {
  background-position: -4295px 0;
}
.input .input-field .input-widget-phonecode .country-flag.rw {
  background-position: -4317px 0;
}
.input .input-field .input-widget-phonecode .country-flag.sa {
  background-position: -4339px 0;
}
.input .input-field .input-widget-phonecode .country-flag.sb, .input .input-field .input-widget-phonecode .country-flag.sc, .input .input-field .input-widget-phonecode .country-flag.sd {
  height: 10px;
}
.input .input-field .input-widget-phonecode .country-flag.sb {
  background-position: -4361px 0;
}
.input .input-field .input-widget-phonecode .country-flag.sc {
  background-position: -4383px 0;
}
.input .input-field .input-widget-phonecode .country-flag.sd {
  background-position: -4405px 0;
}
.input .input-field .input-widget-phonecode .country-flag.se {
  height: 13px;
  background-position: -4427px 0;
}
.input .input-field .input-widget-phonecode .country-flag.sg {
  height: 14px;
  background-position: -4449px 0;
}
.input .input-field .input-widget-phonecode .country-flag.sh, .input .input-field .input-widget-phonecode .country-flag.si {
  height: 10px;
}
.input .input-field .input-widget-phonecode .country-flag.sh {
  background-position: -4471px 0;
}
.input .input-field .input-widget-phonecode .country-flag.si {
  background-position: -4493px 0;
}
.input .input-field .input-widget-phonecode .country-flag.sj {
  height: 15px;
  background-position: -4515px 0;
}
.input .input-field .input-widget-phonecode .country-flag.sk, .input .input-field .input-widget-phonecode .country-flag.sl {
  height: 14px;
}
.input .input-field .input-widget-phonecode .country-flag.sk {
  background-position: -4537px 0;
}
.input .input-field .input-widget-phonecode .country-flag.sl {
  background-position: -4559px 0;
}
.input .input-field .input-widget-phonecode .country-flag.sm {
  height: 15px;
  background-position: -4581px 0;
}
.input .input-field .input-widget-phonecode .country-flag.sn, .input .input-field .input-widget-phonecode .country-flag.so, .input .input-field .input-widget-phonecode .country-flag.sr {
  height: 14px;
}
.input .input-field .input-widget-phonecode .country-flag.sn {
  background-position: -4603px 0;
}
.input .input-field .input-widget-phonecode .country-flag.so {
  background-position: -4625px 0;
}
.input .input-field .input-widget-phonecode .country-flag.sr {
  background-position: -4647px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ss, .input .input-field .input-widget-phonecode .country-flag.st {
  height: 10px;
}
.input .input-field .input-widget-phonecode .country-flag.ss {
  background-position: -4669px 0;
}
.input .input-field .input-widget-phonecode .country-flag.st {
  background-position: -4691px 0;
}
.input .input-field .input-widget-phonecode .country-flag.sv {
  height: 12px;
  background-position: -4713px 0;
}
.input .input-field .input-widget-phonecode .country-flag.sx, .input .input-field .input-widget-phonecode .country-flag.sy, .input .input-field .input-widget-phonecode .country-flag.sz {
  height: 14px;
}
.input .input-field .input-widget-phonecode .country-flag.sx {
  background-position: -4735px 0;
}
.input .input-field .input-widget-phonecode .country-flag.sy {
  background-position: -4757px 0;
}
.input .input-field .input-widget-phonecode .country-flag.sz {
  background-position: -4779px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ta, .input .input-field .input-widget-phonecode .country-flag.tc {
  height: 10px;
}
.input .input-field .input-widget-phonecode .country-flag.ta {
  background-position: -4801px 0;
}
.input .input-field .input-widget-phonecode .country-flag.tc {
  background-position: -4823px 0;
}
.input .input-field .input-widget-phonecode .country-flag.td, .input .input-field .input-widget-phonecode .country-flag.tf {
  height: 14px;
}
.input .input-field .input-widget-phonecode .country-flag.td {
  background-position: -4845px 0;
}
.input .input-field .input-widget-phonecode .country-flag.tf {
  background-position: -4867px 0;
}
.input .input-field .input-widget-phonecode .country-flag.tg {
  height: 13px;
  background-position: -4889px 0;
}
.input .input-field .input-widget-phonecode .country-flag.th {
  height: 14px;
  background-position: -4911px 0;
}
.input .input-field .input-widget-phonecode .country-flag.tj, .input .input-field .input-widget-phonecode .country-flag.tk, .input .input-field .input-widget-phonecode .country-flag.tl {
  height: 10px;
}
.input .input-field .input-widget-phonecode .country-flag.tj {
  background-position: -4933px 0;
}
.input .input-field .input-widget-phonecode .country-flag.tk {
  background-position: -4955px 0;
}
.input .input-field .input-widget-phonecode .country-flag.tl {
  background-position: -4977px 0;
}
.input .input-field .input-widget-phonecode .country-flag.tm, .input .input-field .input-widget-phonecode .country-flag.tn {
  height: 14px;
}
.input .input-field .input-widget-phonecode .country-flag.tm {
  background-position: -4999px 0;
}
.input .input-field .input-widget-phonecode .country-flag.tn {
  background-position: -5021px 0;
}
.input .input-field .input-widget-phonecode .country-flag.to {
  height: 10px;
  background-position: -5043px 0;
}
.input .input-field .input-widget-phonecode .country-flag.tr {
  height: 14px;
  background-position: -5065px 0;
}
.input .input-field .input-widget-phonecode .country-flag.tt {
  height: 12px;
  background-position: -5087px 0;
}
.input .input-field .input-widget-phonecode .country-flag.tv {
  height: 10px;
  background-position: -5109px 0;
}
.input .input-field .input-widget-phonecode .country-flag.tw, .input .input-field .input-widget-phonecode .country-flag.tz, .input .input-field .input-widget-phonecode .country-flag.ua, .input .input-field .input-widget-phonecode .country-flag.ug {
  height: 14px;
}
.input .input-field .input-widget-phonecode .country-flag.tw {
  background-position: -5131px 0;
}
.input .input-field .input-widget-phonecode .country-flag.tz {
  background-position: -5153px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ua {
  background-position: -5175px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ug {
  background-position: -5197px 0;
}
.input .input-field .input-widget-phonecode .country-flag.um, .input .input-field .input-widget-phonecode .country-flag.us {
  height: 11px;
}
.input .input-field .input-widget-phonecode .country-flag.um {
  background-position: -5219px 0;
}
.input .input-field .input-widget-phonecode .country-flag.us {
  background-position: -5241px 0;
}
.input .input-field .input-widget-phonecode .country-flag.uy {
  height: 14px;
  background-position: -5263px 0;
}
.input .input-field .input-widget-phonecode .country-flag.uz {
  height: 10px;
  background-position: -5285px 0;
}
.input .input-field .input-widget-phonecode .country-flag.va {
  width: 15px;
  height: 15px;
  background-position: -5307px 0;
}
.input .input-field .input-widget-phonecode .country-flag.vc, .input .input-field .input-widget-phonecode .country-flag.ve {
  height: 14px;
}
.input .input-field .input-widget-phonecode .country-flag.vc {
  background-position: -5324px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ve {
  background-position: -5346px 0;
}
.input .input-field .input-widget-phonecode .country-flag.vg {
  height: 10px;
  background-position: -5368px 0;
}
.input .input-field .input-widget-phonecode .country-flag.vi, .input .input-field .input-widget-phonecode .country-flag.vn {
  height: 14px;
}
.input .input-field .input-widget-phonecode .country-flag.vi {
  background-position: -5390px 0;
}
.input .input-field .input-widget-phonecode .country-flag.vn {
  background-position: -5412px 0;
}
.input .input-field .input-widget-phonecode .country-flag.vu {
  height: 12px;
  background-position: -5434px 0;
}
.input .input-field .input-widget-phonecode .country-flag.wf {
  height: 14px;
  background-position: -5456px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ws {
  height: 10px;
  background-position: -5478px 0;
}
.input .input-field .input-widget-phonecode .country-flag.xk {
  height: 15px;
  background-position: -5500px 0;
}
.input .input-field .input-widget-phonecode .country-flag.ye, .input .input-field .input-widget-phonecode .country-flag.yt, .input .input-field .input-widget-phonecode .country-flag.za, .input .input-field .input-widget-phonecode .country-flag.zm {
  height: 14px;
}
.input .input-field .input-widget-phonecode .country-flag.ye {
  background-position: -5522px 0;
}
.input .input-field .input-widget-phonecode .country-flag.yt {
  background-position: -5544px 0;
}
.input .input-field .input-widget-phonecode .country-flag.za {
  background-position: -5566px 0;
}
.input .input-field .input-widget-phonecode .country-flag.zm {
  background-position: -5588px 0;
}
.input .input-field .input-widget-phonecode .country-flag.zw {
  height: 10px;
  background-position: -5610px 0;
}
.input .input-field .input-widget-phonecode .country-flag {
  height: 15px;
  box-shadow: 0 0 1px 0 #888;
  background-image: url(https://sep.yimg.com/yf/nrp/image/common/c_flags.png);
  background-repeat: no-repeat;
  background-position: 20px 0;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .input .input-field .input-widget-phonecode .country-flag {
    background-image: url(https://sep.yimg.com/yf/nrp/image/common/c_flags.png);
  }
}

.Consent {
  display: flex;
}
.Consent .Consent-icon .iconwrap {
  padding-top: 6px;
}

.countryPhoneInput {
  margin-bottom: 0.5em;
  position: relative;
  outline: none;
}
.countryPhoneInput .countryCodeNum {
  color: #777;
}
.countryPhoneInput .countryCodeNum.countryCodeInput {
  font-size: 0.73em;
}
.countryPhoneInput .countryPhone {
  margin-bottom: 0;
}
.countryPhoneInput .countryPhone .input-code-2 .input-element {
  padding-left: 80px;
}
.countryPhoneInput .countryPhone .input-code-3 .input-element {
  padding-left: 87px;
}
.countryPhoneInput .countryPhone .input-code-4 .input-element {
  padding-left: 94px;
}
.countryPhoneInput .countryPhone .input-code-5 .input-element {
  padding-left: 101px;
}
.countryPhoneInput .countryPhone .input-placeholder {
  z-index: 102;
}
.countryPhoneInput .countrySelectorBtn {
  width: 20%;
  min-width: 50px;
  max-width: 60px;
  height: calc(100% - 2px);
  max-height: 44px;
  padding: 1em 0.8em 1em;
  position: absolute;
  left: 1px;
  top: 1px;
  display: flex;
  background-color: #fff;
  z-index: 101;
  border-radius: 4px 0 0 4px;
}
.countryPhoneInput .countrySelectorBtn.disabled {
  background-color: #fafafa;
}
.countryPhoneInput .countrySelectorBtn.disabled:hover {
  cursor: default;
}
.countryPhoneInput .countrySelectorBtn:hover {
  background-color: #fafafa;
  cursor: pointer;
}
.countryPhoneInput .countrySelectorBtn .flagSelector {
  position: absolute;
  top: 16px;
  left: 14px;
  display: inline-block;
}
.countryPhoneInput .countrySelectorBtn .arrow {
  position: absolute;
  top: 50%;
  margin-top: -2px;
  right: 8px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #555;
}
.countryPhoneInput .countryCodeInput {
  position: absolute;
  left: 60px;
  top: 15px;
  z-index: 101;
}
.countryPhoneInput .countrySelectorDropDown {
  position: absolute;
  top: 46px;
  z-index: 103;
  overflow: scroll;
  max-height: 200px;
  width: 130%;
  background-color: #fff;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  font-size: 0.8em;
}
.countryPhoneInput .countrySelectorDropDown .countrySelectorList {
  list-style: none;
  margin: 0;
  padding-left: 0;
  border: 1px solid #C4CCD2;
  border-top: 0;
}
.countryPhoneInput .countrySelectorDropDown .countrySelectorList-item {
  padding: 5px;
  display: flex;
  align-items: center;
}
.countryPhoneInput .countrySelectorDropDown .countrySelectorList-item:hover {
  background-color: #fafafa;
}
.countryPhoneInput .countrySelectorDropDown .countrySelectorList-item .flagContainer {
  padding: 4px 8px 4px 4px;
}
.countryPhoneInput .countrySelectorDropDown .countrySelectorList-item .countryName {
  margin-right: 8px;
}
.countryPhoneInput .flag {
  width: 20px;
  height: 12px;
  max-height: 15px;
  box-shadow: 0 0 1px 0 #888;
  background-image: url(https://sep.yimg.com/yf/idm/img/3fa34ac2.flags.png);
  background-repeat: no-repeat;
  background-color: #888;
}
.countryPhoneInput .flag.ac {
  height: 10px;
  background-position: 0px 0px;
}
.countryPhoneInput .flag.ad {
  height: 14px;
  background-position: -22px 0px;
}
.countryPhoneInput .flag.ae {
  height: 10px;
  background-position: -44px 0px;
}
.countryPhoneInput .flag.af {
  height: 14px;
  background-position: -66px 0px;
}
.countryPhoneInput .flag.ag {
  height: 14px;
  background-position: -88px 0px;
}
.countryPhoneInput .flag.ai {
  height: 10px;
  background-position: -110px 0px;
}
.countryPhoneInput .flag.al {
  height: 15px;
  background-position: -132px 0px;
}
.countryPhoneInput .flag.am {
  height: 10px;
  background-position: -154px 0px;
}
.countryPhoneInput .flag.ao {
  height: 14px;
  background-position: -176px 0px;
}
.countryPhoneInput .flag.aq {
  height: 14px;
  background-position: -198px 0px;
}
.countryPhoneInput .flag.ar {
  height: 13px;
  background-position: -220px 0px;
}
.countryPhoneInput .flag.as {
  height: 10px;
  background-position: -242px 0px;
}
.countryPhoneInput .flag.at {
  height: 14px;
  background-position: -264px 0px;
}
.countryPhoneInput .flag.au {
  height: 10px;
  background-position: -286px 0px;
}
.countryPhoneInput .flag.aw {
  height: 14px;
  background-position: -308px 0px;
}
.countryPhoneInput .flag.ax {
  height: 13px;
  background-position: -330px 0px;
}
.countryPhoneInput .flag.az {
  height: 10px;
  background-position: -352px 0px;
}
.countryPhoneInput .flag.ba {
  height: 10px;
  background-position: -374px 0px;
}
.countryPhoneInput .flag.bb {
  height: 14px;
  background-position: -396px 0px;
}
.countryPhoneInput .flag.bd {
  height: 12px;
  background-position: -418px 0px;
}
.countryPhoneInput .flag.be {
  height: 15px;
  background-position: -440px 0px;
}
.countryPhoneInput .flag.bf {
  height: 14px;
  background-position: -460px 0px;
}
.countryPhoneInput .flag.bg {
  height: 12px;
  background-position: -482px 0px;
}
.countryPhoneInput .flag.bh {
  height: 12px;
  background-position: -504px 0px;
}
.countryPhoneInput .flag.bi {
  height: 12px;
  background-position: -526px 0px;
}
.countryPhoneInput .flag.bj {
  height: 14px;
  background-position: -548px 0px;
}
.countryPhoneInput .flag.bl {
  height: 14px;
  background-position: -570px 0px;
}
.countryPhoneInput .flag.bm {
  height: 10px;
  background-position: -592px 0px;
}
.countryPhoneInput .flag.bn {
  height: 10px;
  background-position: -614px 0px;
}
.countryPhoneInput .flag.bo {
  height: 14px;
  background-position: -636px 0px;
}
.countryPhoneInput .flag.bq {
  height: 14px;
  background-position: -658px 0px;
}
.countryPhoneInput .flag.br {
  height: 14px;
  background-position: -680px 0px;
}
.countryPhoneInput .flag.bs {
  height: 10px;
  background-position: -702px 0px;
}
.countryPhoneInput .flag.bt {
  height: 14px;
  background-position: -724px 0px;
}
.countryPhoneInput .flag.bv {
  height: 15px;
  background-position: -746px 0px;
}
.countryPhoneInput .flag.bw {
  height: 14px;
  background-position: -768px 0px;
}
.countryPhoneInput .flag.by {
  height: 10px;
  background-position: -790px 0px;
}
.countryPhoneInput .flag.bz {
  height: 14px;
  background-position: -812px 0px;
}
.countryPhoneInput .flag.ca {
  height: 10px;
  background-position: -834px 0px;
}
.countryPhoneInput .flag.cc {
  height: 10px;
  background-position: -856px 0px;
}
.countryPhoneInput .flag.cd {
  height: 15px;
  background-position: -878px 0px;
}
.countryPhoneInput .flag.cf {
  height: 14px;
  background-position: -900px 0px;
}
.countryPhoneInput .flag.cg {
  height: 14px;
  background-position: -922px 0px;
}
.countryPhoneInput .flag.ch {
  height: 15px;
  background-position: -944px 0px;
}
.countryPhoneInput .flag.ci {
  height: 14px;
  background-position: -961px 0px;
}
.countryPhoneInput .flag.ck {
  height: 10px;
  background-position: -983px 0px;
}
.countryPhoneInput .flag.cl {
  height: 14px;
  background-position: -1005px 0px;
}
.countryPhoneInput .flag.cm {
  height: 14px;
  background-position: -1027px 0px;
}
.countryPhoneInput .flag.cn {
  height: 14px;
  background-position: -1049px 0px;
}
.countryPhoneInput .flag.co {
  height: 14px;
  background-position: -1071px 0px;
}
.countryPhoneInput .flag.cp {
  height: 14px;
  background-position: -1093px 0px;
}
.countryPhoneInput .flag.cr {
  height: 12px;
  background-position: -1115px 0px;
}
.countryPhoneInput .flag.cu {
  height: 10px;
  background-position: -1137px 0px;
}
.countryPhoneInput .flag.cv {
  height: 12px;
  background-position: -1159px 0px;
}
.countryPhoneInput .flag.cw {
  height: 14px;
  background-position: -1181px 0px;
}
.countryPhoneInput .flag.cx {
  height: 10px;
  background-position: -1203px 0px;
}
.countryPhoneInput .flag.cy {
  height: 13px;
  background-position: -1225px 0px;
}
.countryPhoneInput .flag.cz {
  height: 14px;
  background-position: -1247px 0px;
}
.countryPhoneInput .flag.de {
  height: 12px;
  background-position: -1269px 0px;
}
.countryPhoneInput .flag.dg {
  height: 10px;
  background-position: -1291px 0px;
}
.countryPhoneInput .flag.dj {
  height: 14px;
  background-position: -1313px 0px;
}
.countryPhoneInput .flag.dk {
  height: 15px;
  background-position: -1335px 0px;
}
.countryPhoneInput .flag.dm {
  height: 10px;
  background-position: -1357px 0px;
}
.countryPhoneInput .flag.do {
  height: 13px;
  background-position: -1379px 0px;
}
.countryPhoneInput .flag.dz {
  height: 14px;
  background-position: -1401px 0px;
}
.countryPhoneInput .flag.ea {
  height: 14px;
  background-position: -1423px 0px;
}
.countryPhoneInput .flag.ec {
  height: 14px;
  background-position: -1445px 0px;
}
.countryPhoneInput .flag.ee {
  height: 13px;
  background-position: -1467px 0px;
}
.countryPhoneInput .flag.eg {
  height: 14px;
  background-position: -1489px 0px;
}
.countryPhoneInput .flag.eh {
  height: 10px;
  background-position: -1511px 0px;
}
.countryPhoneInput .flag.er {
  height: 10px;
  background-position: -1533px 0px;
}
.countryPhoneInput .flag.es {
  height: 14px;
  background-position: -1555px 0px;
}
.countryPhoneInput .flag.et {
  height: 10px;
  background-position: -1577px 0px;
}
.countryPhoneInput .flag.eu {
  height: 14px;
  background-position: -1599px 0px;
}
.countryPhoneInput .flag.fi {
  height: 12px;
  background-position: -1621px 0px;
}
.countryPhoneInput .flag.fj {
  height: 10px;
  background-position: -1643px 0px;
}
.countryPhoneInput .flag.fk {
  height: 10px;
  background-position: -1665px 0px;
}
.countryPhoneInput .flag.fm {
  height: 11px;
  background-position: -1687px 0px;
}
.countryPhoneInput .flag.fo {
  height: 15px;
  background-position: -1709px 0px;
}
.countryPhoneInput .flag.fr {
  height: 14px;
  background-position: -1731px 0px;
}
.countryPhoneInput .flag.ga {
  height: 15px;
  background-position: -1753px 0px;
}
.countryPhoneInput .flag.gb {
  height: 10px;
  background-position: -1775px 0px;
}
.countryPhoneInput .flag.gd {
  height: 12px;
  background-position: -1797px 0px;
}
.countryPhoneInput .flag.ge {
  height: 14px;
  background-position: -1819px 0px;
}
.countryPhoneInput .flag.gf {
  height: 14px;
  background-position: -1841px 0px;
}
.countryPhoneInput .flag.gg {
  height: 14px;
  background-position: -1863px 0px;
}
.countryPhoneInput .flag.gh {
  height: 14px;
  background-position: -1885px 0px;
}
.countryPhoneInput .flag.gi {
  height: 10px;
  background-position: -1907px 0px;
}
.countryPhoneInput .flag.gl {
  height: 14px;
  background-position: -1929px 0px;
}
.countryPhoneInput .flag.gm {
  height: 14px;
  background-position: -1951px 0px;
}
.countryPhoneInput .flag.gn {
  height: 14px;
  background-position: -1973px 0px;
}
.countryPhoneInput .flag.gp {
  height: 14px;
  background-position: -1995px 0px;
}
.countryPhoneInput .flag.gq {
  height: 14px;
  background-position: -2017px 0px;
}
.countryPhoneInput .flag.gr {
  height: 14px;
  background-position: -2039px 0px;
}
.countryPhoneInput .flag.gs {
  height: 10px;
  background-position: -2061px 0px;
}
.countryPhoneInput .flag.gt {
  height: 13px;
  background-position: -2083px 0px;
}
.countryPhoneInput .flag.gu {
  height: 11px;
  background-position: -2105px 0px;
}
.countryPhoneInput .flag.gw {
  height: 10px;
  background-position: -2127px 0px;
}
.countryPhoneInput .flag.gy {
  height: 12px;
  background-position: -2149px 0px;
}
.countryPhoneInput .flag.hk {
  height: 14px;
  background-position: -2171px 0px;
}
.countryPhoneInput .flag.hm {
  height: 10px;
  background-position: -2193px 0px;
}
.countryPhoneInput .flag.hn {
  height: 10px;
  background-position: -2215px 0px;
}
.countryPhoneInput .flag.hr {
  height: 10px;
  background-position: -2237px 0px;
}
.countryPhoneInput .flag.ht {
  height: 12px;
  background-position: -2259px 0px;
}
.countryPhoneInput .flag.hu {
  height: 10px;
  background-position: -2281px 0px;
}
.countryPhoneInput .flag.ic {
  height: 14px;
  background-position: -2303px 0px;
}
.countryPhoneInput .flag.id {
  height: 14px;
  background-position: -2325px 0px;
}
.countryPhoneInput .flag.ie {
  height: 10px;
  background-position: -2347px 0px;
}
.countryPhoneInput .flag.il {
  height: 15px;
  background-position: -2369px 0px;
}
.countryPhoneInput .flag.im {
  height: 10px;
  background-position: -2391px 0px;
}
.countryPhoneInput .flag.in {
  height: 14px;
  background-position: -2413px 0px;
}
.countryPhoneInput .flag.io {
  height: 10px;
  background-position: -2435px 0px;
}
.countryPhoneInput .flag.iq {
  height: 14px;
  background-position: -2457px 0px;
}
.countryPhoneInput .flag.ir {
  height: 12px;
  background-position: -2479px 0px;
}
.countryPhoneInput .flag.is {
  height: 15px;
  background-position: -2501px 0px;
}
.countryPhoneInput .flag.it {
  height: 14px;
  background-position: -2523px 0px;
}
.countryPhoneInput .flag.je {
  height: 12px;
  background-position: -2545px 0px;
}
.countryPhoneInput .flag.jm {
  height: 10px;
  background-position: -2567px 0px;
}
.countryPhoneInput .flag.jo {
  height: 10px;
  background-position: -2589px 0px;
}
.countryPhoneInput .flag.jp {
  height: 14px;
  background-position: -2611px 0px;
}
.countryPhoneInput .flag.ke {
  height: 14px;
  background-position: -2633px 0px;
}
.countryPhoneInput .flag.kg {
  height: 12px;
  background-position: -2655px 0px;
}
.countryPhoneInput .flag.kh {
  height: 13px;
  background-position: -2677px 0px;
}
.countryPhoneInput .flag.ki {
  height: 10px;
  background-position: -2699px 0px;
}
.countryPhoneInput .flag.km {
  height: 12px;
  background-position: -2721px 0px;
}
.countryPhoneInput .flag.kn {
  height: 14px;
  background-position: -2743px 0px;
}
.countryPhoneInput .flag.kp {
  height: 10px;
  background-position: -2765px 0px;
}
.countryPhoneInput .flag.kr {
  height: 14px;
  background-position: -2787px 0px;
}
.countryPhoneInput .flag.kw {
  height: 10px;
  background-position: -2809px 0px;
}
.countryPhoneInput .flag.ky {
  height: 10px;
  background-position: -2831px 0px;
}
.countryPhoneInput .flag.kz {
  height: 10px;
  background-position: -2853px 0px;
}
.countryPhoneInput .flag.la {
  height: 14px;
  background-position: -2875px 0px;
}
.countryPhoneInput .flag.lb {
  height: 14px;
  background-position: -2897px 0px;
}
.countryPhoneInput .flag.lc {
  height: 10px;
  background-position: -2919px 0px;
}
.countryPhoneInput .flag.li {
  height: 12px;
  background-position: -2941px 0px;
}
.countryPhoneInput .flag.lk {
  height: 10px;
  background-position: -2963px 0px;
}
.countryPhoneInput .flag.lr {
  height: 11px;
  background-position: -2985px 0px;
}
.countryPhoneInput .flag.ls {
  height: 14px;
  background-position: -3007px 0px;
}
.countryPhoneInput .flag.lt {
  height: 12px;
  background-position: -3029px 0px;
}
.countryPhoneInput .flag.lu {
  height: 12px;
  background-position: -3051px 0px;
}
.countryPhoneInput .flag.lv {
  height: 10px;
  background-position: -3073px 0px;
}
.countryPhoneInput .flag.ly {
  height: 10px;
  background-position: -3095px 0px;
}
.countryPhoneInput .flag.ma {
  height: 14px;
  background-position: -3117px 0px;
}
.countryPhoneInput .flag.mc {
  height: 15px;
  background-position: -3139px 0px;
}
.countryPhoneInput .flag.md {
  height: 10px;
  background-position: -3160px 0px;
}
.countryPhoneInput .flag.me {
  height: 10px;
  background-position: -3182px 0px;
}
.countryPhoneInput .flag.mf {
  height: 14px;
  background-position: -3204px 0px;
}
.countryPhoneInput .flag.mg {
  height: 14px;
  background-position: -3226px 0px;
}
.countryPhoneInput .flag.mh {
  height: 11px;
  background-position: -3248px 0px;
}
.countryPhoneInput .flag.mk {
  height: 10px;
  background-position: -3270px 0px;
}
.countryPhoneInput .flag.ml {
  height: 14px;
  background-position: -3292px 0px;
}
.countryPhoneInput .flag.mm {
  height: 14px;
  background-position: -3314px 0px;
}
.countryPhoneInput .flag.mn {
  height: 10px;
  background-position: -3336px 0px;
}
.countryPhoneInput .flag.mo {
  height: 14px;
  background-position: -3358px 0px;
}
.countryPhoneInput .flag.mp {
  height: 10px;
  background-position: -3380px 0px;
}
.countryPhoneInput .flag.mq {
  height: 14px;
  background-position: -3402px 0px;
}
.countryPhoneInput .flag.mr {
  height: 14px;
  background-position: -3424px 0px;
}
.countryPhoneInput .flag.ms {
  height: 10px;
  background-position: -3446px 0px;
}
.countryPhoneInput .flag.mt {
  height: 14px;
  background-position: -3468px 0px;
}
.countryPhoneInput .flag.mu {
  height: 14px;
  background-position: -3490px 0px;
}
.countryPhoneInput .flag.mv {
  height: 14px;
  background-position: -3512px 0px;
}
.countryPhoneInput .flag.mw {
  height: 14px;
  background-position: -3534px 0px;
}
.countryPhoneInput .flag.mx {
  height: 12px;
  background-position: -3556px 0px;
}
.countryPhoneInput .flag.my {
  height: 10px;
  background-position: -3578px 0px;
}
.countryPhoneInput .flag.mz {
  height: 14px;
  background-position: -3600px 0px;
}
.countryPhoneInput .flag.na {
  height: 14px;
  background-position: -3622px 0px;
}
.countryPhoneInput .flag.nc {
  height: 10px;
  background-position: -3644px 0px;
}
.countryPhoneInput .flag.ne {
  height: 15px;
  background-position: -3666px 0px;
}
.countryPhoneInput .flag.nf {
  height: 10px;
  background-position: -3686px 0px;
}
.countryPhoneInput .flag.ng {
  height: 10px;
  background-position: -3708px 0px;
}
.countryPhoneInput .flag.ni {
  height: 12px;
  background-position: -3730px 0px;
}
.countryPhoneInput .flag.nl {
  height: 14px;
  background-position: -3752px 0px;
}
.countryPhoneInput .flag.no {
  height: 15px;
  background-position: -3774px 0px;
}
.countryPhoneInput .flag.np {
  height: 15px;
  background-position: -3796px 0px;
}
.countryPhoneInput .flag.nr {
  height: 10px;
  background-position: -3811px 0px;
}
.countryPhoneInput .flag.nu {
  height: 10px;
  background-position: -3833px 0px;
}
.countryPhoneInput .flag.nz {
  height: 10px;
  background-position: -3855px 0px;
}
.countryPhoneInput .flag.om {
  height: 10px;
  background-position: -3877px 0px;
}
.countryPhoneInput .flag.pa {
  height: 14px;
  background-position: -3899px 0px;
}
.countryPhoneInput .flag.pe {
  height: 14px;
  background-position: -3921px 0px;
}
.countryPhoneInput .flag.pf {
  height: 14px;
  background-position: -3943px 0px;
}
.countryPhoneInput .flag.pg {
  height: 15px;
  background-position: -3965px 0px;
}
.countryPhoneInput .flag.ph {
  height: 10px;
  background-position: -3987px 0px;
}
.countryPhoneInput .flag.pk {
  height: 14px;
  background-position: -4009px 0px;
}
.countryPhoneInput .flag.pl {
  height: 13px;
  background-position: -4031px 0px;
}
.countryPhoneInput .flag.pm {
  height: 14px;
  background-position: -4053px 0px;
}
.countryPhoneInput .flag.pn {
  height: 10px;
  background-position: -4075px 0px;
}
.countryPhoneInput .flag.pr {
  height: 14px;
  background-position: -4097px 0px;
}
.countryPhoneInput .flag.ps {
  height: 10px;
  background-position: -4119px 0px;
}
.countryPhoneInput .flag.pt {
  height: 14px;
  background-position: -4141px 0px;
}
.countryPhoneInput .flag.pw {
  height: 13px;
  background-position: -4163px 0px;
}
.countryPhoneInput .flag.py {
  height: 11px;
  background-position: -4185px 0px;
}
.countryPhoneInput .flag.qa {
  height: 8px;
  background-position: -4207px 0px;
}
.countryPhoneInput .flag.re {
  height: 14px;
  background-position: -4229px 0px;
}
.countryPhoneInput .flag.ro {
  height: 14px;
  background-position: -4251px 0px;
}
.countryPhoneInput .flag.rs {
  height: 14px;
  background-position: -4273px 0px;
}
.countryPhoneInput .flag.ru {
  height: 14px;
  background-position: -4295px 0px;
}
.countryPhoneInput .flag.rw {
  height: 14px;
  background-position: -4317px 0px;
}
.countryPhoneInput .flag.sa {
  height: 14px;
  background-position: -4339px 0px;
}
.countryPhoneInput .flag.sb {
  height: 10px;
  background-position: -4361px 0px;
}
.countryPhoneInput .flag.sc {
  height: 10px;
  background-position: -4383px 0px;
}
.countryPhoneInput .flag.sd {
  height: 10px;
  background-position: -4405px 0px;
}
.countryPhoneInput .flag.se {
  height: 13px;
  background-position: -4427px 0px;
}
.countryPhoneInput .flag.sg {
  height: 14px;
  background-position: -4449px 0px;
}
.countryPhoneInput .flag.sh {
  height: 10px;
  background-position: -4471px 0px;
}
.countryPhoneInput .flag.si {
  height: 10px;
  background-position: -4493px 0px;
}
.countryPhoneInput .flag.sj {
  height: 15px;
  background-position: -4515px 0px;
}
.countryPhoneInput .flag.sk {
  height: 14px;
  background-position: -4537px 0px;
}
.countryPhoneInput .flag.sl {
  height: 14px;
  background-position: -4559px 0px;
}
.countryPhoneInput .flag.sm {
  height: 15px;
  background-position: -4581px 0px;
}
.countryPhoneInput .flag.sn {
  height: 14px;
  background-position: -4603px 0px;
}
.countryPhoneInput .flag.so {
  height: 14px;
  background-position: -4625px 0px;
}
.countryPhoneInput .flag.sr {
  height: 14px;
  background-position: -4647px 0px;
}
.countryPhoneInput .flag.ss {
  height: 10px;
  background-position: -4669px 0px;
}
.countryPhoneInput .flag.st {
  height: 10px;
  background-position: -4691px 0px;
}
.countryPhoneInput .flag.sv {
  height: 12px;
  background-position: -4713px 0px;
}
.countryPhoneInput .flag.sx {
  height: 14px;
  background-position: -4735px 0px;
}
.countryPhoneInput .flag.sy {
  height: 14px;
  background-position: -4757px 0px;
}
.countryPhoneInput .flag.sz {
  height: 14px;
  background-position: -4779px 0px;
}
.countryPhoneInput .flag.ta {
  height: 10px;
  background-position: -4801px 0px;
}
.countryPhoneInput .flag.tc {
  height: 10px;
  background-position: -4823px 0px;
}
.countryPhoneInput .flag.td {
  height: 14px;
  background-position: -4845px 0px;
}
.countryPhoneInput .flag.tf {
  height: 14px;
  background-position: -4867px 0px;
}
.countryPhoneInput .flag.tg {
  height: 13px;
  background-position: -4889px 0px;
}
.countryPhoneInput .flag.th {
  height: 14px;
  background-position: -4911px 0px;
}
.countryPhoneInput .flag.tj {
  height: 10px;
  background-position: -4933px 0px;
}
.countryPhoneInput .flag.tk {
  height: 10px;
  background-position: -4955px 0px;
}
.countryPhoneInput .flag.tl {
  height: 10px;
  background-position: -4977px 0px;
}
.countryPhoneInput .flag.tm {
  height: 14px;
  background-position: -4999px 0px;
}
.countryPhoneInput .flag.tn {
  height: 14px;
  background-position: -5021px 0px;
}
.countryPhoneInput .flag.to {
  height: 10px;
  background-position: -5043px 0px;
}
.countryPhoneInput .flag.tr {
  height: 14px;
  background-position: -5065px 0px;
}
.countryPhoneInput .flag.tt {
  height: 12px;
  background-position: -5087px 0px;
}
.countryPhoneInput .flag.tv {
  height: 10px;
  background-position: -5109px 0px;
}
.countryPhoneInput .flag.tw {
  height: 14px;
  background-position: -5131px 0px;
}
.countryPhoneInput .flag.tz {
  height: 14px;
  background-position: -5153px 0px;
}
.countryPhoneInput .flag.ua {
  height: 14px;
  background-position: -5175px 0px;
}
.countryPhoneInput .flag.ug {
  height: 14px;
  background-position: -5197px 0px;
}
.countryPhoneInput .flag.um {
  height: 11px;
  background-position: -5219px 0px;
}
.countryPhoneInput .flag.us {
  height: 11px;
  background-position: -5241px 0px;
}
.countryPhoneInput .flag.uy {
  height: 14px;
  background-position: -5263px 0px;
}
.countryPhoneInput .flag.uz {
  height: 10px;
  background-position: -5285px 0px;
}
.countryPhoneInput .flag.va {
  height: 15px;
  background-position: -5307px 0px;
}
.countryPhoneInput .flag.vc {
  height: 14px;
  background-position: -5324px 0px;
}
.countryPhoneInput .flag.ve {
  height: 14px;
  background-position: -5346px 0px;
}
.countryPhoneInput .flag.vg {
  height: 10px;
  background-position: -5368px 0px;
}
.countryPhoneInput .flag.vi {
  height: 14px;
  background-position: -5390px 0px;
}
.countryPhoneInput .flag.vn {
  height: 14px;
  background-position: -5412px 0px;
}
.countryPhoneInput .flag.vu {
  height: 12px;
  background-position: -5434px 0px;
}
.countryPhoneInput .flag.wf {
  height: 14px;
  background-position: -5456px 0px;
}
.countryPhoneInput .flag.ws {
  height: 10px;
  background-position: -5478px 0px;
}
.countryPhoneInput .flag.xk {
  height: 15px;
  background-position: -5500px 0px;
}
.countryPhoneInput .flag.ye {
  height: 14px;
  background-position: -5522px 0px;
}
.countryPhoneInput .flag.yt {
  height: 14px;
  background-position: -5544px 0px;
}
.countryPhoneInput .flag.za {
  height: 14px;
  background-position: -5566px 0px;
}
.countryPhoneInput .flag.zm {
  height: 14px;
  background-position: -5588px 0px;
}
.countryPhoneInput .flag.zw {
  height: 10px;
  background-position: -5610px 0px;
}

.SideMenu-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  min-height: 100%;
  overflow: auto;
  right: 0;
  width: 100%;
  max-width: 576px;
  z-index: 10000;
  background-color: #2542C7;
  min-height: 100%;
  padding: 3rem;
  color: #FFFFFF;
  transition: 0.3s transform ease-in-out;
  transform: translateX(576px);
}
.SideMenu-menu-close {
  font-size: 30px;
  padding: 15px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.SideMenu-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 5000;
}
.SideMenu-shown .SideMenu-menu {
  transform: translateX(0);
}
.SideMenu-transition {
  transition: transform 0.3s ease-out;
}
@media (max-width: 576px) {
  .SideMenu-menu {
    transform: translateX(100%);
  }
}

.slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}
.slideshow .slideshow-slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.slideshow .slideshow-slide.slideshow-cssSlide {
  z-index: 100;
  transition-property: transform, opacity;
}
.slideshow .slideshow-slide.slideshow-cssSlide.slideshow-cssSlideCurrent {
  z-index: 200;
}
.slideshow .slideshow-slide.slideshow-cssSlide.slideshow-cssSlideHide {
  z-index: 10;
  transition-property: none;
}
.slideshow .slideshow-controls {
  width: 100%;
  text-align: center;
}
.slideshow .slideshow-controls .slideshow-dot {
  display: inline-block;
  border-radius: 50%;
  height: 9px;
  width: 9px;
  margin: 0 5px;
  background-color: #adb5bd;
  cursor: pointer;
  transition: background-color 0.2s;
}
.slideshow .slideshow-controls .slideshow-dot.slideshow-dotSelected {
  background-color: #495057;
}
.slideshow .slideshow-meta {
  position: absolute;
  width: 50%;
  left: 25%;
  bottom: 29px;
  z-index: 1000;
}

.rs-tooltip.rs-inline-block [open] {
  font-size: 12px;
  font-size: 0.75rem;
}
.rs-tooltip.rs-standalone [open] {
  font-size: 12px;
  font-size: 0.75rem;
}

.linearForm {
  position: relative;
  text-align: left;
}
.linearForm .linearForm-submit {
  position: absolute;
  right: 0;
  top: 0px;
  cursor: pointer;
  z-index: 1000;
}
.linearForm .linearForm-submit-transparent .Button {
  border: none;
  background-color: transparent;
  padding: 0 1em;
  box-shadow: none;
  outline: none;
}
.linearForm .linearForm-submit-icon:hover {
  color: #2542C7;
}
.linearForm .linearForm-submit-icon:active {
  color: #050DB0;
}
.linearForm .linearForm-submit-icon {
  color: #444444;
  line-height: 1;
}
.linearForm.linearForm-small .linearForm-submit-icon {
  font-size: 24px;
  font-size: 1.5rem;
}
.linearForm.linearForm-medium .linearForm-submit-icon {
  font-size: 52px;
  font-size: 3.25rem;
}
.linearForm.linearForm-large .linearForm-submit-icon {
  font-size: 64px;
  font-size: 4rem;
}

.Link {
  display: inline-block;
  cursor: pointer;
}
.Link:hover {
  color: #4965DE;
}
.inverseText .Link:hover {
  color: #FFFFFF;
}
.Link.active, .Link.active:hover, .Link:active {
  color: #050DB0;
}
.inverseText .Link.active, .inverseText .Link.active:hover, .inverseText .Link:active {
  color: #FFFFFF;
}
.Link .Link-content,
.Link a.Link-content {
  color: #2542C7;
  display: inline-block;
}
.Link .Link-content:visited,
.Link a.Link-content:visited {
  color: #2542C7;
}
.Link .Link-content.Link-cta,
.Link a.Link-content.Link-cta {
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid #2542C7;
}
.Link a.Link-content.Link-navigation {
  color: #666666;
}
.Link a.Link-content.Link-navigation:visited {
  color: #666666;
}
.Link a.Link-content.Link-navigation.Link-navigation-active {
  color: #2542C7;
}
.Link a.Link-content.Link-navigation.Link-navigation-active:visited {
  color: #2542C7;
}
.inverseText .Link {
  color: #FFFFFF;
}
.inverseText .Link .Link-content.Link-cta,
.inverseText .Link a.Link-content.Link-cta {
  border-bottom-color: #FFFFFF;
}
.inverseText .Link a.Link-content,
.inverseText .Link a.Link-content:visited,
.inverseText .Link a.Link-content.Link-navigation.Link-navigation-active:visited {
  color: #FFFFFF;
}
.Link-Disabled {
  pointer-events: none;
}
.Link-Disabled .Link-content,
.Link-Disabled a.Link-content {
  color: #C4CCD2;
}

.ConfirmationModal.Modal .Modal-dialog-body {
  display: flex;
  flex-direction: column;
  padding: 0;
  justify-content: space-between;
  align-items: center;
}
.ConfirmationModal.Modal .ConfirmationModal-text {
  overflow: auto;
  padding: 2.5rem;
  width: 100%;
}
.ConfirmationModal.Modal .ConfirmationModal-bottom {
  flex: 0 0 auto;
  padding: 25px;
  border-top: 1px solid #e1e1e1;
  width: 100%;
}
.ConfirmationModal.Modal .ConfirmationModal-checklist {
  margin-bottom: 25px;
}
.ConfirmationModal.Modal .ConfirmationModal-button {
  text-align: center;
}
.ConfirmationModal.Modal .Consent-infoBlock {
  display: flex;
  flex-direction: row;
}
.ConfirmationModal.Modal .Consent-infoText {
  margin-top: 5px;
  margin-left: 5px;
}

.Modal {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000001;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.Modal .Modal-backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.Modal .Modal-dialog {
  position: relative;
  width: 100%;
  max-height: 100%;
  background-color: white;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 1000001;
  border-radius: 10px;
  box-shadow: 0 20px 50px 0 rgba(10, 31, 68, 0.12);
}
.Modal .Modal-dialog.Modal-dialog-medium {
  max-width: 782px;
}
@media (max-width: 768px) {
  .Modal .Modal-dialog.Modal-dialog-medium {
    height: 100%;
  }
}
.Modal .Modal-dialog.Modal-dialog-medium-large {
  max-width: 1182px;
}
@media (max-width: 768px) {
  .Modal .Modal-dialog.Modal-dialog-medium-large {
    height: 100%;
  }
}
.Modal .Modal-dialog.Modal-dialog-small {
  max-width: 498px;
}
.Modal .Modal-dialog-header {
  padding: 1.563rem;
  border-bottom: 1px solid #D3D3D3;
  font-size: 1.2em;
  padding-bottom: 1.5em;
}
.Modal .Modal-dialog-body {
  padding: 1.563rem;
}
.Modal .Modal-dialog-close {
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 25px;
  line-height: 1.5625rem;
  padding: 1.563rem;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9999;
}

.Dropdown {
  position: absolute;
  background-color: #FFFFFF;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  z-index: 3000;
}
.Dropdown.Dropdown-showArrow {
  margin-top: 10px;
}
.Dropdown.Dropdown-showArrow:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  bottom: 100%;
  left: 0;
  height:  10px;
}
.Dropdown.Dropdown-showArrow:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 100%;
  left: 5px;
  border-bottom: 10px solid #FFFFFF;
  border-top: 10px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.Dropdown.Dropdown-right {
  right: 0;
}
.Dropdown.Dropdown-right.Dropdown-showArrow:after {
  left: auto;
  right: 5px;
}
.Dropdown.Dropdown-top {
  bottom: 100%;
}
.Dropdown.hidden {
  height: 0;
  opacity: 0;
  overflow: hidden;
}
.Dropdown.visible {
  height: auto;
  overflow: auto;
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -webkit-transition: opacity 0.4s ease-in-out;
}

.Selector {
  display: inline-block;
  position: relative;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #6c757d;
}
.Selector .caret {
  position: absolute;
  top: 10px;
  right: 5px;
  border-top: 6px solid #6c757d;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
}
.Selector .CurrentSelection {
  padding: 5px 5px;
  position: relative;
}
.Selector .SelectorContent {
  width: 100%;
  position: absolute;
  z-index: 1;
  top: 100%;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background: #FFFFFF;
  padding: 5px;
}
.Selector .SelectorContent .selectItems {
  margin-bottom: 5px;
}

.carousel .chevron {
  display: flex;
  align-items: center;
  position: absolute;
  opacity: 0.9;
  cursor: pointer;
  color: #eaeaea;
  z-index: 10005;
  top: 0;
  bottom: 0;
  font-size: 7rem;
  text-shadow: #000 1px 0 20px;
}
.carousel .chevron.chevron-left {
  left: -20px;
}
.carousel .chevron.chevron-right {
  right: -20px;
}
.carousel .chevron .icon.material-icons {
  top: 0;
}
.carousel .slick-list .slick-slide {
  width: 400px !important;
}
.carousel .slick-list .slick-slide img {
  display: block;
  width: 100%;
}
.carousel.zoomable .slick-list .slick-slide {
  transform: scale(0.8);
  transition: all 400ms ease-in 0s;
}
.carousel.zoomable .slick-list .slick-slide.slick-current {
  transform: scale(1);
  transition: all 400ms ease-out 1s;
}

.yc-toggle {
  display: inline-block;
}
.yc-toggle input {
  display: none;
}
.yc-toggle:hover {
  cursor: pointer;
}
.yc-toggle.disabled {
  cursor: not-allowed;
}
.yc-toggle .toggle-label {
  display: inline-block;
  padding: 0px 5px;
}
.yc-toggle .icon.check_box {
  color: #2542C7;
}
.yc-toggle .icon.check_box_outline_blank {
  color: #ced4da;
}
.yc-toggle .switch {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 18px;
}
.yc-toggle .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ced4da;
  transition: 0.4s;
}
.yc-toggle .switch .slider.round {
  border-radius: 100px;
}
.yc-toggle .switch .slider.round:before {
  border-radius: 50%;
}
.yc-toggle .switch .slider:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
}
.yc-toggle .switch .slider.disabled {
  cursor: not-allowed;
}
.yc-toggle .switch.active .slider {
  background-color: #2542C7;
}
.yc-toggle .switch.active .slider:before {
  transform: translateX(14px);
}
@media (max-width: 576px) {
  .yc-toggle .icon.material-icons {
    transform: scale(2);
    -ms-transform: scale(2);
    /* IE */
    -moz-transform: scale(2);
    /* FF */
    -webkit-transform: scale(2);
    /* Safari and Chrome */
    -o-transform: scale(2);
    /* Opera */
    padding: 5px;
  }
}

.Captcha.Captcha-hideBadge .grecaptcha-badge {
  display: none !important;
}

.grecaptcha-badge {
  display: none;
}

.Message.error {
  color: #ff6f7f;
}
.Message.error .icon {
  margin-right: 5px;
}

.ListGroupExpansionItem .body-visible {
  display: block;
}
.ListGroupExpansionItem .body-hidden {
  display: none;
}

.Select {
  position: relative;
  width: 100%;
  cursor: pointer;
}
.Select .Select-selectedItem {
  font-size: 12px;
  width: 100%;
  border: 1px solid #C4CCD2;
  border-radius: 5px;
  padding: 10px;
}
.Select .Select-selectedItem:focus {
  border: 1px solid #2542C7;
  border-width: 1px;
}
.Select .Select-selectedItem:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: gray transparent transparent transparent;
  margin-top: -3px;
  transform-origin: 50% 3px;
  transition: transform 0.25s;
}
.Select .Select-options {
  display: none;
  position: absolute;
  width: 100%;
  border-top: transparent;
  border-left: 1px solid #C4CCD2;
  border-right: 1px solid #C4CCD2;
  border-bottom: 1px solid #C4CCD2;
  border-radius: 0 0 5px 5px;
  font-size: 12px;
  color: #888888;
  top: 90%;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: white;
  padding-bottom: 10px;
}
.Select .Select-item {
  width: 100%;
  padding: 5px 10px;
}
.Select .Select-item:hover {
  background-color: #f3f3f3;
}
.Select.Select-open .Select-selectedItem:after {
  transform: rotate(-180deg);
}
.Select.Select-open .Select-options {
  display: block;
}

.LoadingIndicator {
  width: 70px;
  text-align: center;
  margin: 0 auto;
}
.LoadingIndicator-indigo > div {
  background-color: #2542C7;
}
.LoadingIndicator-white > div {
  background-color: #FFFFFF;
}
.LoadingIndicator > div {
  width: 18px;
  height: 18px;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: localListingResult-loading-bouncedelay 1.4s infinite ease-in-out both;
  animation: localListingResult-loading-bouncedelay 1.4s infinite ease-in-out both;
}
.LoadingIndicator-dot.one {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.LoadingIndicator-dot.two {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes localListingResult-loading-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes localListingResult-loading-bouncedelay {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.Note {
  display: inline-block;
  cursor: pointer;
  padding: 0 5px;
  position: relative;
}
.Note .Dropdown {
  background-color: #f3f3f3;
  position: absolute;
  max-width: 300px;
}
.Note .Dropdown.Dropdown-showArrow:after {
  border-bottom-color: #f3f3f3;
}
.Note .Dropdown.Dropdown-white {
  background-color: #FFFFFF;
}
.Note .Dropdown.Dropdown-right {
  right: 100%;
}
.Note .Note-content {
  padding: 16px;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.3em;
  text-align: left;
  color: #4a4a4a;
}
.Note .Note-title {
  margin-bottom: 20px;
}

.Tabs {
  display: flex;
  justify-content: center;
}

.Tab {
  cursor: pointer;
  margin: 0 0.5em;
  padding: 0.5em 0;
  box-sizing: border-box;
}
.Tab:hover {
  border-bottom: 2px solid #2542C7;
}
.Tab-active {
  border-bottom: 2px solid #2542C7;
}

.footer-bottom {
  border-top: 1px solid #e1e1e1;
  padding: 25px 0px;
  background-color: #f3f3f3;
  font-size: 11px;
  text-align: center;
  font-weight: 300;
}
.footer-bottom a, .footer-bottom a:visited {
  color: inherit;
}

.footer-bottomCopyright,
.footer-bottomLegal {
  display: inline-block;
}

.footer-bottomCopyright {
  margin-right: 20px;
}

@media (max-width: 576px) {
  .footer-bottomCopyright,
.footer-bottomLegal {
    display: block;
  }

  .footer-bottomCopyright {
    margin: 0px;
  }
}
.PageTakeover {
  position: fixed;
  z-index: 10000;
  top: 72px;
  width: 100%;
  bottom: 0;
  background-color: #FFFFFF;
  display: flex;
  justify-content: stretch;
  flex-direction: column;
}
@media (max-width: 1280px) {
  .PageTakeover {
    top: 50px;
  }
}
.PageTakeover-backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  overflow: hidden;
}
.PageTakeover-LeftClose .PageTakeover-close {
  left: 0;
  right: auto;
}
.PageTakeover-close {
  font-size: 30px;
  line-height: 30px;
  padding: 23px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10001;
}
.PageTakeover .PageTakeover-Header {
  border-bottom: 1px solid #E1E1E1;
  height: 76px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #4a4a4a;
  font-size: 18px;
  font-weight: 500;
  padding: 18px;
  flex: 0 0 76px;
  z-index: 20;
}
.PageTakeover .PageTakeover-content {
  flex: 1 1 100%;
  position: relative;
  z-index: 10;
  overflow: auto;
}
.PageTakeover .PageTakeover-HeaderButton {
  position: absolute;
  right: 0;
  padding: 14px;
}
.PageTakeover.PageTakeover-HeaderTakeover {
  top: 0;
  z-index: 100000;
}

.Flow {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: white;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}
.Flow-previous {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 30px;
  line-height: 1.875rem;
  padding: 25px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10001;
}
.Flow .Flow-Tracker {
  flex: 0 0 auto;
  text-align: center;
}
.Flow .Flow-Tracker-Bar {
  width: 100%;
  height: 4px;
  background-color: #d8d8d8;
  position: relative;
  margin-bottom: 18px;
}
.Flow .Flow-Tracker-BarHightlight {
  height: 100%;
  position: aboslute;
  top: 0;
  left: 0;
  background-color: #2542c7;
  transition: 0.5s width ease-out;
}
.Flow .Flow-Tracker-Step {
  font-size: 12px;
}
.Flow .Flow-Tab {
  display: flex;
  justify-content: space-between;
}
.Flow .Flow-TabTracker {
  display: flex;
  justify-content: center;
  padding-top: 17px;
  margin-bottom: 30px;
  flex: 1 1 auto;
}
.Flow .Flow-TabTracker-Item,
.Flow .Flow-TabTracker-Tab {
  padding: 17px 0;
  font-size: 15px;
  font-weight: 500;
  margin: 0 30px;
}
.Flow .Flow-TabTracker-Tab-Hightlight {
  border-bottom: 3px solid #2542c7;
}
.Flow .Flow-TabTracker-Tab-Completed {
  cursor: pointer;
}
.Flow .Flow-TabTracker-Tab-Completed .DSMIcon {
  color: #63BF71;
  margin-right: 4px;
}
.Flow .Flow-TabTracker-Back, .Flow .Flow-TabTracker-Next {
  flex: 0 0 auto;
  margin: auto;
  color: #808080;
}
.Flow .Flow-TabTracker-Back .DSMIcon, .Flow .Flow-TabTracker-Next .DSMIcon {
  font-size: 0.7em;
  margin: 0.4em;
  position: relative;
  top: -0.2em;
}
@media screen and (max-width: 768px) {
  .Flow .Flow-TabTracker-Back .DSMIcon-left, .Flow .Flow-TabTracker-Back .DSMIcon-right, .Flow .Flow-TabTracker-Next .DSMIcon-left, .Flow .Flow-TabTracker-Next .DSMIcon-right {
    font-size: 20px;
  }
}
.Flow .Flow-TabTracker-Back-Enabled, .Flow .Flow-TabTracker-Next-Enabled {
  color: #000;
  cursor: pointer;
}
.Flow .Flow-Container {
  position: relative;
  height: 100%;
}
.Flow .Flow-Step {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow-y: auto;
  overflow-x: hidden;
}
.Flow .Flow-Step.Flow-Step-current {
  transform: translateX(0%);
}
.Flow .Flow-Step.Flow-Step-before {
  transform: translateX(-100%);
  visibility: hidden;
}
.Flow .Flow-Step.Flow-Step-after {
  transform: translateX(100%);
  visibility: hidden;
}
.Flow .Flow-Step.Flow-Step-Animating.Flow-Step-Animating {
  transition: 0.5s transform ease-out;
  visibility: visible;
}
.Flow .Flow-Step-Title {
  color: #4a4a4a;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.Flow .Flow-Step-SubTitle {
  color: #67748B;
  text-align: center;
  margin-bottom: 10px;
}
.Flow .Flow-Step-Description {
  padding: 0 20px;
  max-width: 720px;
  font-size: 14px;
  font-weight: 300;
  color: #9B9B9B;
  margin: 0 auto;
  text-align: center;
}

@media screen and (min-width: 601px) {
  .Flow-Step-Title {
    font-size: 36px;
  }

  .Flow-Step-SubTitle {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .Flow-Step-Title {
    font-size: 24px;
    margin-left: 16px;
    margin-right: 16px;
  }

  .Flow-Step-SubTitle {
    font-size: 14px;
  }
}
.title.no-mb {
  margin-bottom: 0;
}
.title.no-bold {
  font-weight: normal;
}
.title.title-left {
  text-align: left;
}
.title.title-right {
  text-align: right;
}
.title.title-center {
  text-align: center;
}

.subtitle.subtitle-left {
  text-align: left;
}
.subtitle.subtitle-right {
  text-align: right;
}
.subtitle.subtitle-center {
  text-align: center;
}

.ProgressBar {
  width: 100%;
  padding: 0 2.5%;
  height: 1em;
  position: relative;
}
.ProgressBar-Animated .ProgressBar-Bar-Filled {
  transition: width 2s ease-in-out;
}
.ProgressBar-Animated.ProgressBar-Completed .ProgressBar-Text-Finish {
  transition: color 0s ease-in 2s;
}
.ProgressBar-Animated.ProgressBar-Completed .ProgressBar-Bar-FinishCircle {
  transition: background-color 0s ease-in 2s;
}
.ProgressBar-Completed .ProgressBar-Bar::after {
  background-color: #203CCF;
}
.ProgressBar-Bar {
  position: relative;
  top: 0.4em;
}
.ProgressBar-Bar-Empty {
  width: 100%;
  height: 0.25em;
  background-color: #D4D4D4;
  border-radius: 32px;
}
.ProgressBar-Bar-Filled {
  max-width: 100%;
  float: left;
  height: 0.25em;
  z-index: 5;
  border-radius: 32px;
}

.ProgressBar-Text {
  margin-top: 0.4em;
  display: flex;
  justify-content: space-between;
}
.ProgressBar-Text-Start {
  color: #203CCF;
}
.ProgressBar-Text-Finish {
  color: #D4D4D4;
}

.ProgressBar-Completed .ProgressBar-Text-Finish {
  color: #203CCF;
}

.ProgressBar-Circle .ProgressBar-Bar {
  padding: 0 0.9em;
}
.ProgressBar-Circle .ProgressBar-Bar::before {
  position: absolute;
  content: "";
  top: -0.4em;
  left: 0;
  height: 1em;
  width: 1em;
  border-radius: 50%;
  background-color: #203CCF;
}
.ProgressBar-Circle .ProgressBar-Bar-Empty, .ProgressBar-Circle .ProgressBar-Bar-Filled {
  border-radius: 0;
}

.ProgressBar-Bar-FinishCircle {
  position: absolute;
  content: "";
  top: -0.4em;
  right: 0;
  height: 1em;
  width: 1em;
  border-radius: 50%;
  background-color: #D4D4D4;
}

.ProgressBar-FillColor {
  background-color: #203CCF;
  color: #203CCF;
}

.CardContainer {
  box-shadow: 0 0 1px 0 rgba(10, 31, 68, 0.08), 0 3px 4px 0 rgba(10, 31, 68, 0.1);
  border-radius: 10px;
}

.card-item {
  text-align: center;
  padding: 2em 3em 3em;
  cursor: pointer;
}
.card-item .card-item-media {
  height: 8.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.card-item .card-item-media img {
  align-self: flex-start;
  max-height: 100%;
}
.card-item .card-item-header {
  font-weight: 700;
  margin: 10% 0;
}
.card-item .card-item-body {
  font-size: 0.875em;
  color: #6B6C6F;
}

.DSMDropdown {
  position: relative;
  z-index: 1000;
}
.DSMDropdown .DSMDropdown-Dropdown {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  z-index: 1000;
  border-radius: 4px;
  border: 1px solid #2542c7;
  background-color: #ffffff;
  overflow: auto;
  max-height: 250px;
}

.DSMIcon {
  display: inline-block;
  line-height: 1;
}

@font-face {
  font-family: "UI Element Icons";
  src: url("https://s3.amazonaws.com/presales.lumcs.com/nrp/font/icons/ui-elements-icon-07e42ca1f09feb94aac753c03abbf6d0.eot");
  /* IE9 Compat Modes */
  src: url("https://s3.amazonaws.com/presales.lumcs.com/nrp/font/icons/ui-elements-icon-07e42ca1f09feb94aac753c03abbf6d0.eot?#iefix") format("embedded-opentype"), url("https://s3.amazonaws.com/presales.lumcs.com/nrp/font/icons/ui-elements-icon-07e42ca1f09feb94aac753c03abbf6d0.woff2") format("woff2"), url("https://s3.amazonaws.com/presales.lumcs.com/nrp/font/icons/ui-elements-icon-07e42ca1f09feb94aac753c03abbf6d0.woff") format("woff"), url("https://s3.amazonaws.com/presales.lumcs.com/nrp/font/icons/ui-elements-icon-07e42ca1f09feb94aac753c03abbf6d0.ttf") format("truetype"), url("https://s3.amazonaws.com/presales.lumcs.com/nrp/font/icons/ui-elements-icon-07e42ca1f09feb94aac753c03abbf6d0.svg#") format("svg");
  /* Legacy iOS */
}
.DSMIcon {
  line-height: 1em;
}

.DSMIcon:before {
  font-family: UI Element Icons;
  font-style: normal;
  font-weight: normal !important;
  line-height: 1em;
  vertical-align: top;
}

.DSMIcon:after {
  font-family: UI Element Icons;
  font-style: normal;
  font-weight: normal !important;
  line-height: 1em;
  vertical-align: top;
}

.DSMIcon.DSMIcon-add:before {
  content: "";
}

.DSMIcon.DSMIcon-archive:before {
  content: "";
}

.DSMIcon.DSMIcon-attach:before {
  content: "";
}

.DSMIcon.DSMIcon-bookmark:before {
  content: "";
}

.DSMIcon.DSMIcon-box_tick:before {
  content: "";
}

.DSMIcon.DSMIcon-chat:before {
  content: "";
}

.DSMIcon.DSMIcon-close:before {
  content: "";
}

.DSMIcon.DSMIcon-copy:before {
  content: "";
}

.DSMIcon.DSMIcon-delete:before {
  content: "";
}

.DSMIcon.DSMIcon-download:before {
  content: "";
}

.DSMIcon.DSMIcon-drag:before {
  content: "";
}

.DSMIcon.DSMIcon-edit_pencil:before {
  content: "";
}

.DSMIcon.DSMIcon-edit:before {
  content: "";
}

.DSMIcon.DSMIcon-email:before {
  content: "";
}

.DSMIcon.DSMIcon-filter:before {
  content: "";
}

.DSMIcon.DSMIcon-flag:before {
  content: "";
}

.DSMIcon.DSMIcon-heart:before {
  content: "";
}

.DSMIcon.DSMIcon-like:before {
  content: "";
}

.DSMIcon.DSMIcon-link:before {
  content: "";
}

.DSMIcon.DSMIcon-location:before {
  content: "";
}

.DSMIcon.DSMIcon-lock:before {
  content: "";
}

.DSMIcon.DSMIcon-login:before {
  content: "";
}

.DSMIcon.DSMIcon-logout:before {
  content: "";
}

.DSMIcon.DSMIcon-pin_map:before {
  content: "";
}

.DSMIcon.DSMIcon-play_round:before {
  content: "";
}

.DSMIcon.DSMIcon-play:before {
  content: "";
}

.DSMIcon.DSMIcon-recommend:before {
  content: "";
}

.DSMIcon.DSMIcon-refresh:before {
  content: "";
}

.DSMIcon.DSMIcon-reload:before {
  content: "";
}

.DSMIcon.DSMIcon-remove:before {
  content: "";
}

.DSMIcon.DSMIcon-reply:before {
  content: "";
}

.DSMIcon.DSMIcon-sms:before {
  content: "";
}

.DSMIcon.DSMIcon-save:before {
  content: "";
}

.DSMIcon.DSMIcon-scan:before {
  content: "";
}

.DSMIcon.DSMIcon-search:before {
  content: "";
}

.DSMIcon.DSMIcon-send_receive:before {
  content: "";
}

.DSMIcon.DSMIcon-send:before {
  content: "";
}

.DSMIcon.DSMIcon-share:before {
  content: "";
}

.DSMIcon.DSMIcon-star:before {
  content: "";
}

.DSMIcon.DSMIcon-tag:before {
  content: "";
}

.DSMIcon.DSMIcon-tick:before {
  content: "";
}

.DSMIcon.DSMIcon-unlike:before {
  content: "";
}

.DSMIcon.DSMIcon-unlock:before {
  content: "";
}

.DSMIcon.DSMIcon-upload:before {
  content: "";
}

.DSMIcon.DSMIcon-zoom_in:before {
  content: "";
}

.DSMIcon.DSMIcon-zoom_out:before {
  content: "";
}

.DSMIcon.DSMIcon-export:before {
  content: "";
}

.DSMIcon.DSMIcon-import_file:before {
  content: "";
}

.DSMIcon.DSMIcon-amazon:before {
  content: "";
}

.DSMIcon.DSMIcon-android:before {
  content: "";
}

.DSMIcon.DSMIcon-app_store:before {
  content: "";
}

.DSMIcon.DSMIcon-apple:before {
  content: "";
}

.DSMIcon.DSMIcon-bing:before {
  content: "";
}

.DSMIcon.DSMIcon-clover:before {
  content: "";
}

.DSMIcon.DSMIcon-google_play:before {
  content: "";
}

.DSMIcon.DSMIcon-google:before {
  content: "";
}

.DSMIcon.DSMIcon-paypal:before {
  content: "";
}

.DSMIcon.DSMIcon-square:before {
  content: "";
}

.DSMIcon.DSMIcon-windows_store:before {
  content: "";
}

.DSMIcon.DSMIcon-wordpress:before {
  content: "";
}

.DSMIcon.DSMIcon-category:before {
  content: "";
}

.DSMIcon.DSMIcon-events:before {
  content: "";
}

.DSMIcon.DSMIcon-barber:before {
  content: "";
}

.DSMIcon.DSMIcon-camera:before {
  content: "";
}

.DSMIcon.DSMIcon-color_fill:before {
  content: "";
}

.DSMIcon.DSMIcon-directions:before {
  content: "";
}

.DSMIcon.DSMIcon-drop_parachute:before {
  content: "";
}

.DSMIcon.DSMIcon-file_caution:before {
  content: "";
}

.DSMIcon.DSMIcon-file_search:before {
  content: "";
}

.DSMIcon.DSMIcon-file_ticked:before {
  content: "";
}

.DSMIcon.DSMIcon-file_unknown:before {
  content: "";
}

.DSMIcon.DSMIcon-file:before {
  content: "";
}

.DSMIcon.DSMIcon-folder:before {
  content: "";
}

.DSMIcon.DSMIcon-food_service:before {
  content: "";
}

.DSMIcon.DSMIcon-gps:before {
  content: "";
}

.DSMIcon.DSMIcon-gift:before {
  content: "";
}

.DSMIcon.DSMIcon-hotspot:before {
  content: "";
}

.DSMIcon.DSMIcon-key:before {
  content: "";
}

.DSMIcon.DSMIcon-map:before {
  content: "";
}

.DSMIcon.DSMIcon-misc:before {
  content: "";
}

.DSMIcon.DSMIcon-mobile:before {
  content: "";
}

.DSMIcon.DSMIcon-monitor:before {
  content: "";
}

.DSMIcon.DSMIcon-mouse:before {
  content: "";
}

.DSMIcon.DSMIcon-no_gps:before {
  content: "";
}

.DSMIcon.DSMIcon-pos:before {
  content: "";
}

.DSMIcon.DSMIcon-palette:before {
  content: "";
}

.DSMIcon.DSMIcon-photo:before {
  content: "";
}

.DSMIcon.DSMIcon-printer:before {
  content: "";
}

.DSMIcon.DSMIcon-processor:before {
  content: "";
}

.DSMIcon.DSMIcon-radio:before {
  content: "";
}

.DSMIcon.DSMIcon-real_estate:before {
  content: "";
}

.DSMIcon.DSMIcon-salon:before {
  content: "";
}

.DSMIcon.DSMIcon-screencast:before {
  content: "";
}

.DSMIcon.DSMIcon-server:before {
  content: "";
}

.DSMIcon.DSMIcon-tack:before {
  content: "";
}

.DSMIcon.DSMIcon-time:before {
  content: "";
}

.DSMIcon.DSMIcon-bar_graph2:before {
  content: "";
}

.DSMIcon.DSMIcon-broken_image:before {
  content: "";
}

.DSMIcon.DSMIcon-invoice:before {
  content: "";
}

.DSMIcon.DSMIcon-numbermask:before {
  content: "";
}

.DSMIcon.DSMIcon-na:before {
  content: "";
}

.DSMIcon.DSMIcon-announcements:before {
  content: "";
}

.DSMIcon.DSMIcon-bar_graph:before {
  content: "";
}

.DSMIcon.DSMIcon-briefcase:before {
  content: "";
}

.DSMIcon.DSMIcon-calendar:before {
  content: "";
}

.DSMIcon.DSMIcon-call:before {
  content: "";
}

.DSMIcon.DSMIcon-cart:before {
  content: "";
}

.DSMIcon.DSMIcon-close_round:before {
  content: "";
}

.DSMIcon.DSMIcon-controls:before {
  content: "";
}

.DSMIcon.DSMIcon-credit_card:before {
  content: "";
}

.DSMIcon.DSMIcon-currency_bitcoin:before {
  content: "";
}

.DSMIcon.DSMIcon-currency_euro:before {
  content: "";
}

.DSMIcon.DSMIcon-currency_usd:before {
  content: "";
}

.DSMIcon.DSMIcon-currency_yen:before {
  content: "";
}

.DSMIcon.DSMIcon-dashboard:before {
  content: "";
}

.DSMIcon.DSMIcon-down_arrow_round:before {
  content: "";
}

.DSMIcon.DSMIcon-down_arrow:before {
  content: "";
}

.DSMIcon.DSMIcon-down:before {
  content: "";
}

.DSMIcon.DSMIcon-enlarge:before {
  content: "";
}

.DSMIcon.DSMIcon-external:before {
  content: "";
}

.DSMIcon.DSMIcon-globe:before {
  content: "";
}

.DSMIcon.DSMIcon-history:before {
  content: "";
}

.DSMIcon.DSMIcon-home:before {
  content: "";
}

.DSMIcon.DSMIcon-horizontal_scroll:before {
  content: "";
}

.DSMIcon.DSMIcon-inbox:before {
  content: "";
}

.DSMIcon.DSMIcon-left_up_arrow:before {
  content: "";
}

.DSMIcon.DSMIcon-left_arrow_round:before {
  content: "";
}

.DSMIcon.DSMIcon-left_arrow:before {
  content: "";
}

.DSMIcon.DSMIcon-left:before {
  content: "";
}

.DSMIcon.DSMIcon-lifesaver:before {
  content: "";
}

.DSMIcon.DSMIcon-line_chart:before {
  content: "";
}

.DSMIcon.DSMIcon-medal_ssl:before {
  content: "";
}

.DSMIcon.DSMIcon-medal_ticked:before {
  content: "";
}

.DSMIcon.DSMIcon-medal_unsecured:before {
  content: "";
}

.DSMIcon.DSMIcon-medal:before {
  content: "";
}

.DSMIcon.DSMIcon-menu:before {
  content: "";
}

.DSMIcon.DSMIcon-notifications:before {
  content: "";
}

.DSMIcon.DSMIcon-options_vertical:before {
  content: "";
}

.DSMIcon.DSMIcon-options:before {
  content: "";
}

.DSMIcon.DSMIcon-page_caution:before {
  content: "";
}

.DSMIcon.DSMIcon-page_error:before {
  content: "";
}

.DSMIcon.DSMIcon-page_locked:before {
  content: "";
}

.DSMIcon.DSMIcon-page_ssl:before {
  content: "";
}

.DSMIcon.DSMIcon-page_shield:before {
  content: "";
}

.DSMIcon.DSMIcon-page_starred:before {
  content: "";
}

.DSMIcon.DSMIcon-page_ticked:before {
  content: "";
}

.DSMIcon.DSMIcon-page_unlocked:before {
  content: "";
}

.DSMIcon.DSMIcon-page:before {
  content: "";
}

.DSMIcon.DSMIcon-pie_chart:before {
  content: "";
}

.DSMIcon.DSMIcon-receipt:before {
  content: "";
}

.DSMIcon.DSMIcon-right_up_arrow:before {
  content: "";
}

.DSMIcon.DSMIcon-right_arrow_round:before {
  content: "";
}

.DSMIcon.DSMIcon-right_arrow:before {
  content: "";
}

.DSMIcon.DSMIcon-right:before {
  content: "";
}

.DSMIcon.DSMIcon-safe:before {
  content: "";
}

.DSMIcon.DSMIcon-settings:before {
  content: "";
}

.DSMIcon.DSMIcon-shield_caution:before {
  content: "";
}

.DSMIcon.DSMIcon-shield_locked:before {
  content: "";
}

.DSMIcon.DSMIcon-shield_ssl:before {
  content: "";
}

.DSMIcon.DSMIcon-shield_ticked:before {
  content: "";
}

.DSMIcon.DSMIcon-shield_unlocked:before {
  content: "";
}

.DSMIcon.DSMIcon-shield_unsecure:before {
  content: "";
}

.DSMIcon.DSMIcon-shopping_basket:before {
  content: "";
}

.DSMIcon.DSMIcon-shrink:before {
  content: "";
}

.DSMIcon.DSMIcon-site_caution:before {
  content: "";
}

.DSMIcon.DSMIcon-site_error:before {
  content: "";
}

.DSMIcon.DSMIcon-site_locked:before {
  content: "";
}

.DSMIcon.DSMIcon-site_loved:before {
  content: "";
}

.DSMIcon.DSMIcon-site_ssl:before {
  content: "";
}

.DSMIcon.DSMIcon-site_shield:before {
  content: "";
}

.DSMIcon.DSMIcon-site_starred:before {
  content: "";
}

.DSMIcon.DSMIcon-site_ticked:before {
  content: "";
}

.DSMIcon.DSMIcon-site_unlocked:before {
  content: "";
}

.DSMIcon.DSMIcon-site:before {
  content: "";
}

.DSMIcon.DSMIcon-store:before {
  content: "";
}

.DSMIcon.DSMIcon-support:before {
  content: "";
}

.DSMIcon.DSMIcon-up_arrow_round:before {
  content: "";
}

.DSMIcon.DSMIcon-up_arrow:before {
  content: "";
}

.DSMIcon.DSMIcon-up:before {
  content: "";
}

.DSMIcon.DSMIcon-user:before {
  content: "";
}

.DSMIcon.DSMIcon-vertical_scroll:before {
  content: "";
}

.DSMIcon.DSMIcon-wallet:before {
  content: "";
}

.DSMIcon.DSMIcon-add_round:before {
  content: "";
}

.DSMIcon.DSMIcon-alert_round:before {
  content: "";
}

.DSMIcon.DSMIcon-alert_triangle:before {
  content: "";
}

.DSMIcon.DSMIcon-blocked:before {
  content: "";
}

.DSMIcon.DSMIcon-error_round:before {
  content: "";
}

.DSMIcon.DSMIcon-hide:before {
  content: "";
}

.DSMIcon.DSMIcon-info:before {
  content: "";
}

.DSMIcon.DSMIcon-remove_round:before {
  content: "";
}

.DSMIcon.DSMIcon-show:before {
  content: "";
}

.DSMIcon.DSMIcon-tick_round:before {
  content: "";
}

.DSMIcon.DSMIcon-alert_round_filled:before {
  content: "";
}

.DSMIcon.DSMIcon-info_filled:before {
  content: "";
}

.DSMIcon.DSMIcon-blogger:before {
  content: "";
}

.DSMIcon.DSMIcon-fb_messenger:before {
  content: "";
}

.DSMIcon.DSMIcon-facebook:before {
  content: "";
}

.DSMIcon.DSMIcon-flickr:before {
  content: "";
}

.DSMIcon.DSMIcon-foursquare:before {
  content: "";
}

.DSMIcon.DSMIcon-instagram:before {
  content: "";
}

.DSMIcon.DSMIcon-linkedin:before {
  content: "";
}

.DSMIcon.DSMIcon-pinterest:before {
  content: "";
}

.DSMIcon.DSMIcon-reddit:before {
  content: "";
}

.DSMIcon.DSMIcon-skype:before {
  content: "";
}

.DSMIcon.DSMIcon-snapchat:before {
  content: "";
}

.DSMIcon.DSMIcon-tumblr:before {
  content: "";
}

.DSMIcon.DSMIcon-twitch:before {
  content: "";
}

.DSMIcon.DSMIcon-twitter:before {
  content: "";
}

.DSMIcon.DSMIcon-viber:before {
  content: "";
}

.DSMIcon.DSMIcon-vimeo:before {
  content: "";
}

.DSMIcon.DSMIcon-whatsapp:before {
  content: "";
}

.DSMIcon.DSMIcon-yelp:before {
  content: "";
}

.DSMIcon.DSMIcon-youtube:before {
  content: "";
}

.DSMIcon.DSMIcon-cash:before {
  content: "";
}

.DSMIcon.DSMIcon-collapsed:before {
  content: "";
}

.DSMIcon.DSMIcon-currency_usd_filled:before {
  content: "";
}

.DSMIcon.DSMIcon-early_adoptor:before {
  content: "";
}

.DSMIcon.DSMIcon-example:before {
  content: "";
}

.DSMIcon.DSMIcon-expanded_round:before {
  content: "";
}

.DSMIcon.DSMIcon-full_refund:before {
  content: "";
}

.DSMIcon.DSMIcon-high_level_concept:before {
  content: "";
}

.DSMIcon.DSMIcon-ios_logo:before {
  content: "";
}

.DSMIcon.DSMIcon-list:before {
  content: "";
}

.DSMIcon.DSMIcon-not_included_filled:before {
  content: "";
}

.DSMIcon.DSMIcon-open_in_new:before {
  content: "";
}

.DSMIcon.DSMIcon-round_left_arrow:before {
  content: "";
}

.DSMIcon.DSMIcon-round_right_arrow:before {
  content: "";
}

.DSMIcon.DSMIcon-shoppingbags:before {
  content: "";
}

.DSMIcon.DSMIcon-tax_icon:before {
  content: "";
}

.DSMIcon.DSMIcon-tick_round_filled:before {
  content: "";
}

.DSMIcon.DSMIcon-upload_cloud:before {
  content: "";
}

.DSMIcon.DSMIcon-partial_refund {
  position: relative;
  display: inline-block;
  height: 1em;
  padding-left: 1em;
}

.DSMIcon.DSMIcon-partial_refund__arrow:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
}

.DSMIcon.DSMIcon-partial_refund__circle:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
}

/** Hacks to fix current icon issues */
/** TODO: Add existence test */
.DSMIcon.DSMIcon-close {
  transform: rotate(45deg);
}

.DSMIcon.DSMIcon-down_arrow_round {
  transform: rotate(90deg);
}

.DSMIcon.DSMIcon-down_arrow {
  transform: rotate(90deg);
}

.DSMIcon.DSMIcon-left_arrow_round {
  transform: rotate(180deg);
}

.DSMIcon.DSMIcon-left_arrow {
  transform: rotate(180deg);
}

.DSMIcon.DSMIcon-left_up_arrow {
  transform: rotate(225deg);
}

.DSMIcon.DSMIcon-up_arrow_round {
  transform: rotate(-90deg);
}

.DSMIcon.DSMIcon-up_arrow {
  transform: rotate(-90deg);
}

.DSMIcon.DSMIcon-right_up_arrow {
  transform: rotate(-45deg);
}

.DSMIcon.DSMIcon-partial_refund__arrow {
  color: #FF8900;
}

.DSMIcon.DSMIcon-partial_refund__arrow:before {
  transform: scale(0.44, 0.44) translate(58%, 41%);
}

.DSMIconLink-container {
  display: inline-flex;
  line-height: 1;
  justify-content: center;
  align-items: center;
  height: 48px;
  width: 48px;
  position: relative;
}
.DSMIconLink-container .DSMIcon {
  font-size: 2rem;
  padding: 8px;
}
.DSMIconLink-container:hover, .DSMIconLink-container:focus {
  background-color: #e1e4e8;
  border-radius: 50%;
  cursor: pointer;
}
.DSMIconLink-container a {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

@font-face {
  font-family: "UI Element Icons";
  src: url("https://s3.amazonaws.com/presales.lumcs.com/nrp/font/icons/ui-elements-icon-07e42ca1f09feb94aac753c03abbf6d0.eot");
  /* IE9 Compat Modes */
  src: url("https://s3.amazonaws.com/presales.lumcs.com/nrp/font/icons/ui-elements-icon-07e42ca1f09feb94aac753c03abbf6d0.eot?#iefix") format("embedded-opentype"), url("https://s3.amazonaws.com/presales.lumcs.com/nrp/font/icons/ui-elements-icon-07e42ca1f09feb94aac753c03abbf6d0.woff2") format("woff2"), url("https://s3.amazonaws.com/presales.lumcs.com/nrp/font/icons/ui-elements-icon-07e42ca1f09feb94aac753c03abbf6d0.woff") format("woff"), url("https://s3.amazonaws.com/presales.lumcs.com/nrp/font/icons/ui-elements-icon-07e42ca1f09feb94aac753c03abbf6d0.ttf") format("truetype"), url("https://s3.amazonaws.com/presales.lumcs.com/nrp/font/icons/ui-elements-icon-07e42ca1f09feb94aac753c03abbf6d0.svg#") format("svg");
  /* Legacy iOS */
}
.DSMIcon {
  line-height: 1em;
}

.DSMIcon:before {
  font-family: UI Element Icons;
  font-style: normal;
  font-weight: normal !important;
  line-height: 1em;
  vertical-align: top;
}

.DSMIcon:after {
  font-family: UI Element Icons;
  font-style: normal;
  font-weight: normal !important;
  line-height: 1em;
  vertical-align: top;
}

.DSMIcon.DSMIcon-add:before {
  content: "";
}

.DSMIcon.DSMIcon-archive:before {
  content: "";
}

.DSMIcon.DSMIcon-attach:before {
  content: "";
}

.DSMIcon.DSMIcon-bookmark:before {
  content: "";
}

.DSMIcon.DSMIcon-box_tick:before {
  content: "";
}

.DSMIcon.DSMIcon-chat:before {
  content: "";
}

.DSMIcon.DSMIcon-close:before {
  content: "";
}

.DSMIcon.DSMIcon-copy:before {
  content: "";
}

.DSMIcon.DSMIcon-delete:before {
  content: "";
}

.DSMIcon.DSMIcon-download:before {
  content: "";
}

.DSMIcon.DSMIcon-drag:before {
  content: "";
}

.DSMIcon.DSMIcon-edit_pencil:before {
  content: "";
}

.DSMIcon.DSMIcon-edit:before {
  content: "";
}

.DSMIcon.DSMIcon-email:before {
  content: "";
}

.DSMIcon.DSMIcon-filter:before {
  content: "";
}

.DSMIcon.DSMIcon-flag:before {
  content: "";
}

.DSMIcon.DSMIcon-heart:before {
  content: "";
}

.DSMIcon.DSMIcon-like:before {
  content: "";
}

.DSMIcon.DSMIcon-link:before {
  content: "";
}

.DSMIcon.DSMIcon-location:before {
  content: "";
}

.DSMIcon.DSMIcon-lock:before {
  content: "";
}

.DSMIcon.DSMIcon-login:before {
  content: "";
}

.DSMIcon.DSMIcon-logout:before {
  content: "";
}

.DSMIcon.DSMIcon-pin_map:before {
  content: "";
}

.DSMIcon.DSMIcon-play_round:before {
  content: "";
}

.DSMIcon.DSMIcon-play:before {
  content: "";
}

.DSMIcon.DSMIcon-recommend:before {
  content: "";
}

.DSMIcon.DSMIcon-refresh:before {
  content: "";
}

.DSMIcon.DSMIcon-reload:before {
  content: "";
}

.DSMIcon.DSMIcon-remove:before {
  content: "";
}

.DSMIcon.DSMIcon-reply:before {
  content: "";
}

.DSMIcon.DSMIcon-sms:before {
  content: "";
}

.DSMIcon.DSMIcon-save:before {
  content: "";
}

.DSMIcon.DSMIcon-scan:before {
  content: "";
}

.DSMIcon.DSMIcon-search:before {
  content: "";
}

.DSMIcon.DSMIcon-send_receive:before {
  content: "";
}

.DSMIcon.DSMIcon-send:before {
  content: "";
}

.DSMIcon.DSMIcon-share:before {
  content: "";
}

.DSMIcon.DSMIcon-star:before {
  content: "";
}

.DSMIcon.DSMIcon-tag:before {
  content: "";
}

.DSMIcon.DSMIcon-tick:before {
  content: "";
}

.DSMIcon.DSMIcon-unlike:before {
  content: "";
}

.DSMIcon.DSMIcon-unlock:before {
  content: "";
}

.DSMIcon.DSMIcon-upload:before {
  content: "";
}

.DSMIcon.DSMIcon-zoom_in:before {
  content: "";
}

.DSMIcon.DSMIcon-zoom_out:before {
  content: "";
}

.DSMIcon.DSMIcon-export:before {
  content: "";
}

.DSMIcon.DSMIcon-import_file:before {
  content: "";
}

.DSMIcon.DSMIcon-amazon:before {
  content: "";
}

.DSMIcon.DSMIcon-android:before {
  content: "";
}

.DSMIcon.DSMIcon-app_store:before {
  content: "";
}

.DSMIcon.DSMIcon-apple:before {
  content: "";
}

.DSMIcon.DSMIcon-bing:before {
  content: "";
}

.DSMIcon.DSMIcon-clover:before {
  content: "";
}

.DSMIcon.DSMIcon-google_play:before {
  content: "";
}

.DSMIcon.DSMIcon-google:before {
  content: "";
}

.DSMIcon.DSMIcon-paypal:before {
  content: "";
}

.DSMIcon.DSMIcon-square:before {
  content: "";
}

.DSMIcon.DSMIcon-windows_store:before {
  content: "";
}

.DSMIcon.DSMIcon-wordpress:before {
  content: "";
}

.DSMIcon.DSMIcon-category:before {
  content: "";
}

.DSMIcon.DSMIcon-events:before {
  content: "";
}

.DSMIcon.DSMIcon-barber:before {
  content: "";
}

.DSMIcon.DSMIcon-camera:before {
  content: "";
}

.DSMIcon.DSMIcon-color_fill:before {
  content: "";
}

.DSMIcon.DSMIcon-directions:before {
  content: "";
}

.DSMIcon.DSMIcon-drop_parachute:before {
  content: "";
}

.DSMIcon.DSMIcon-file_caution:before {
  content: "";
}

.DSMIcon.DSMIcon-file_search:before {
  content: "";
}

.DSMIcon.DSMIcon-file_ticked:before {
  content: "";
}

.DSMIcon.DSMIcon-file_unknown:before {
  content: "";
}

.DSMIcon.DSMIcon-file:before {
  content: "";
}

.DSMIcon.DSMIcon-folder:before {
  content: "";
}

.DSMIcon.DSMIcon-food_service:before {
  content: "";
}

.DSMIcon.DSMIcon-gps:before {
  content: "";
}

.DSMIcon.DSMIcon-gift:before {
  content: "";
}

.DSMIcon.DSMIcon-hotspot:before {
  content: "";
}

.DSMIcon.DSMIcon-key:before {
  content: "";
}

.DSMIcon.DSMIcon-map:before {
  content: "";
}

.DSMIcon.DSMIcon-misc:before {
  content: "";
}

.DSMIcon.DSMIcon-mobile:before {
  content: "";
}

.DSMIcon.DSMIcon-monitor:before {
  content: "";
}

.DSMIcon.DSMIcon-mouse:before {
  content: "";
}

.DSMIcon.DSMIcon-no_gps:before {
  content: "";
}

.DSMIcon.DSMIcon-pos:before {
  content: "";
}

.DSMIcon.DSMIcon-palette:before {
  content: "";
}

.DSMIcon.DSMIcon-photo:before {
  content: "";
}

.DSMIcon.DSMIcon-printer:before {
  content: "";
}

.DSMIcon.DSMIcon-processor:before {
  content: "";
}

.DSMIcon.DSMIcon-radio:before {
  content: "";
}

.DSMIcon.DSMIcon-real_estate:before {
  content: "";
}

.DSMIcon.DSMIcon-salon:before {
  content: "";
}

.DSMIcon.DSMIcon-screencast:before {
  content: "";
}

.DSMIcon.DSMIcon-server:before {
  content: "";
}

.DSMIcon.DSMIcon-tack:before {
  content: "";
}

.DSMIcon.DSMIcon-time:before {
  content: "";
}

.DSMIcon.DSMIcon-bar_graph2:before {
  content: "";
}

.DSMIcon.DSMIcon-broken_image:before {
  content: "";
}

.DSMIcon.DSMIcon-invoice:before {
  content: "";
}

.DSMIcon.DSMIcon-numbermask:before {
  content: "";
}

.DSMIcon.DSMIcon-na:before {
  content: "";
}

.DSMIcon.DSMIcon-announcements:before {
  content: "";
}

.DSMIcon.DSMIcon-bar_graph:before {
  content: "";
}

.DSMIcon.DSMIcon-briefcase:before {
  content: "";
}

.DSMIcon.DSMIcon-calendar:before {
  content: "";
}

.DSMIcon.DSMIcon-call:before {
  content: "";
}

.DSMIcon.DSMIcon-cart:before {
  content: "";
}

.DSMIcon.DSMIcon-close_round:before {
  content: "";
}

.DSMIcon.DSMIcon-controls:before {
  content: "";
}

.DSMIcon.DSMIcon-credit_card:before {
  content: "";
}

.DSMIcon.DSMIcon-currency_bitcoin:before {
  content: "";
}

.DSMIcon.DSMIcon-currency_euro:before {
  content: "";
}

.DSMIcon.DSMIcon-currency_usd:before {
  content: "";
}

.DSMIcon.DSMIcon-currency_yen:before {
  content: "";
}

.DSMIcon.DSMIcon-dashboard:before {
  content: "";
}

.DSMIcon.DSMIcon-down_arrow_round:before {
  content: "";
}

.DSMIcon.DSMIcon-down_arrow:before {
  content: "";
}

.DSMIcon.DSMIcon-down:before {
  content: "";
}

.DSMIcon.DSMIcon-enlarge:before {
  content: "";
}

.DSMIcon.DSMIcon-external:before {
  content: "";
}

.DSMIcon.DSMIcon-globe:before {
  content: "";
}

.DSMIcon.DSMIcon-history:before {
  content: "";
}

.DSMIcon.DSMIcon-home:before {
  content: "";
}

.DSMIcon.DSMIcon-horizontal_scroll:before {
  content: "";
}

.DSMIcon.DSMIcon-inbox:before {
  content: "";
}

.DSMIcon.DSMIcon-left_up_arrow:before {
  content: "";
}

.DSMIcon.DSMIcon-left_arrow_round:before {
  content: "";
}

.DSMIcon.DSMIcon-left_arrow:before {
  content: "";
}

.DSMIcon.DSMIcon-left:before {
  content: "";
}

.DSMIcon.DSMIcon-lifesaver:before {
  content: "";
}

.DSMIcon.DSMIcon-line_chart:before {
  content: "";
}

.DSMIcon.DSMIcon-medal_ssl:before {
  content: "";
}

.DSMIcon.DSMIcon-medal_ticked:before {
  content: "";
}

.DSMIcon.DSMIcon-medal_unsecured:before {
  content: "";
}

.DSMIcon.DSMIcon-medal:before {
  content: "";
}

.DSMIcon.DSMIcon-menu:before {
  content: "";
}

.DSMIcon.DSMIcon-notifications:before {
  content: "";
}

.DSMIcon.DSMIcon-options_vertical:before {
  content: "";
}

.DSMIcon.DSMIcon-options:before {
  content: "";
}

.DSMIcon.DSMIcon-page_caution:before {
  content: "";
}

.DSMIcon.DSMIcon-page_error:before {
  content: "";
}

.DSMIcon.DSMIcon-page_locked:before {
  content: "";
}

.DSMIcon.DSMIcon-page_ssl:before {
  content: "";
}

.DSMIcon.DSMIcon-page_shield:before {
  content: "";
}

.DSMIcon.DSMIcon-page_starred:before {
  content: "";
}

.DSMIcon.DSMIcon-page_ticked:before {
  content: "";
}

.DSMIcon.DSMIcon-page_unlocked:before {
  content: "";
}

.DSMIcon.DSMIcon-page:before {
  content: "";
}

.DSMIcon.DSMIcon-pie_chart:before {
  content: "";
}

.DSMIcon.DSMIcon-receipt:before {
  content: "";
}

.DSMIcon.DSMIcon-right_up_arrow:before {
  content: "";
}

.DSMIcon.DSMIcon-right_arrow_round:before {
  content: "";
}

.DSMIcon.DSMIcon-right_arrow:before {
  content: "";
}

.DSMIcon.DSMIcon-right:before {
  content: "";
}

.DSMIcon.DSMIcon-safe:before {
  content: "";
}

.DSMIcon.DSMIcon-settings:before {
  content: "";
}

.DSMIcon.DSMIcon-shield_caution:before {
  content: "";
}

.DSMIcon.DSMIcon-shield_locked:before {
  content: "";
}

.DSMIcon.DSMIcon-shield_ssl:before {
  content: "";
}

.DSMIcon.DSMIcon-shield_ticked:before {
  content: "";
}

.DSMIcon.DSMIcon-shield_unlocked:before {
  content: "";
}

.DSMIcon.DSMIcon-shield_unsecure:before {
  content: "";
}

.DSMIcon.DSMIcon-shopping_basket:before {
  content: "";
}

.DSMIcon.DSMIcon-shrink:before {
  content: "";
}

.DSMIcon.DSMIcon-site_caution:before {
  content: "";
}

.DSMIcon.DSMIcon-site_error:before {
  content: "";
}

.DSMIcon.DSMIcon-site_locked:before {
  content: "";
}

.DSMIcon.DSMIcon-site_loved:before {
  content: "";
}

.DSMIcon.DSMIcon-site_ssl:before {
  content: "";
}

.DSMIcon.DSMIcon-site_shield:before {
  content: "";
}

.DSMIcon.DSMIcon-site_starred:before {
  content: "";
}

.DSMIcon.DSMIcon-site_ticked:before {
  content: "";
}

.DSMIcon.DSMIcon-site_unlocked:before {
  content: "";
}

.DSMIcon.DSMIcon-site:before {
  content: "";
}

.DSMIcon.DSMIcon-store:before {
  content: "";
}

.DSMIcon.DSMIcon-support:before {
  content: "";
}

.DSMIcon.DSMIcon-up_arrow_round:before {
  content: "";
}

.DSMIcon.DSMIcon-up_arrow:before {
  content: "";
}

.DSMIcon.DSMIcon-up:before {
  content: "";
}

.DSMIcon.DSMIcon-user:before {
  content: "";
}

.DSMIcon.DSMIcon-vertical_scroll:before {
  content: "";
}

.DSMIcon.DSMIcon-wallet:before {
  content: "";
}

.DSMIcon.DSMIcon-add_round:before {
  content: "";
}

.DSMIcon.DSMIcon-alert_round:before {
  content: "";
}

.DSMIcon.DSMIcon-alert_triangle:before {
  content: "";
}

.DSMIcon.DSMIcon-blocked:before {
  content: "";
}

.DSMIcon.DSMIcon-error_round:before {
  content: "";
}

.DSMIcon.DSMIcon-hide:before {
  content: "";
}

.DSMIcon.DSMIcon-info:before {
  content: "";
}

.DSMIcon.DSMIcon-remove_round:before {
  content: "";
}

.DSMIcon.DSMIcon-show:before {
  content: "";
}

.DSMIcon.DSMIcon-tick_round:before {
  content: "";
}

.DSMIcon.DSMIcon-alert_round_filled:before {
  content: "";
}

.DSMIcon.DSMIcon-info_filled:before {
  content: "";
}

.DSMIcon.DSMIcon-blogger:before {
  content: "";
}

.DSMIcon.DSMIcon-fb_messenger:before {
  content: "";
}

.DSMIcon.DSMIcon-facebook:before {
  content: "";
}

.DSMIcon.DSMIcon-flickr:before {
  content: "";
}

.DSMIcon.DSMIcon-foursquare:before {
  content: "";
}

.DSMIcon.DSMIcon-instagram:before {
  content: "";
}

.DSMIcon.DSMIcon-linkedin:before {
  content: "";
}

.DSMIcon.DSMIcon-pinterest:before {
  content: "";
}

.DSMIcon.DSMIcon-reddit:before {
  content: "";
}

.DSMIcon.DSMIcon-skype:before {
  content: "";
}

.DSMIcon.DSMIcon-snapchat:before {
  content: "";
}

.DSMIcon.DSMIcon-tumblr:before {
  content: "";
}

.DSMIcon.DSMIcon-twitch:before {
  content: "";
}

.DSMIcon.DSMIcon-twitter:before {
  content: "";
}

.DSMIcon.DSMIcon-viber:before {
  content: "";
}

.DSMIcon.DSMIcon-vimeo:before {
  content: "";
}

.DSMIcon.DSMIcon-whatsapp:before {
  content: "";
}

.DSMIcon.DSMIcon-yelp:before {
  content: "";
}

.DSMIcon.DSMIcon-youtube:before {
  content: "";
}

.DSMIcon.DSMIcon-cash:before {
  content: "";
}

.DSMIcon.DSMIcon-collapsed:before {
  content: "";
}

.DSMIcon.DSMIcon-currency_usd_filled:before {
  content: "";
}

.DSMIcon.DSMIcon-early_adoptor:before {
  content: "";
}

.DSMIcon.DSMIcon-example:before {
  content: "";
}

.DSMIcon.DSMIcon-expanded_round:before {
  content: "";
}

.DSMIcon.DSMIcon-full_refund:before {
  content: "";
}

.DSMIcon.DSMIcon-high_level_concept:before {
  content: "";
}

.DSMIcon.DSMIcon-ios_logo:before {
  content: "";
}

.DSMIcon.DSMIcon-list:before {
  content: "";
}

.DSMIcon.DSMIcon-not_included_filled:before {
  content: "";
}

.DSMIcon.DSMIcon-open_in_new:before {
  content: "";
}

.DSMIcon.DSMIcon-round_left_arrow:before {
  content: "";
}

.DSMIcon.DSMIcon-round_right_arrow:before {
  content: "";
}

.DSMIcon.DSMIcon-shoppingbags:before {
  content: "";
}

.DSMIcon.DSMIcon-tax_icon:before {
  content: "";
}

.DSMIcon.DSMIcon-tick_round_filled:before {
  content: "";
}

.DSMIcon.DSMIcon-upload_cloud:before {
  content: "";
}

.DSMIcon.DSMIcon-partial_refund {
  position: relative;
  display: inline-block;
  height: 1em;
  padding-left: 1em;
}

.DSMIcon.DSMIcon-partial_refund__arrow:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
}

.DSMIcon.DSMIcon-partial_refund__circle:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
}

/** Hacks to fix current icon issues */
/** TODO: Add existence test */
.DSMIcon.DSMIcon-close {
  transform: rotate(45deg);
}

.DSMIcon.DSMIcon-down_arrow_round {
  transform: rotate(90deg);
}

.DSMIcon.DSMIcon-down_arrow {
  transform: rotate(90deg);
}

.DSMIcon.DSMIcon-left_arrow_round {
  transform: rotate(180deg);
}

.DSMIcon.DSMIcon-left_arrow {
  transform: rotate(180deg);
}

.DSMIcon.DSMIcon-left_up_arrow {
  transform: rotate(225deg);
}

.DSMIcon.DSMIcon-up_arrow_round {
  transform: rotate(-90deg);
}

.DSMIcon.DSMIcon-up_arrow {
  transform: rotate(-90deg);
}

.DSMIcon.DSMIcon-right_up_arrow {
  transform: rotate(-45deg);
}

.DSMIcon.DSMIcon-partial_refund__arrow {
  color: #FF8900;
}

.DSMIcon.DSMIcon-partial_refund__arrow:before {
  transform: scale(0.44, 0.44) translate(58%, 41%);
}

.InputBox {
  margin-bottom: 18px;
}
.InputBox-Container {
  border: 1px solid #8b96a0;
  border-radius: 4px;
  position: relative;
  display: flex;
  background-color: #ffffff;
}
.InputBox-Container-Input {
  flex: 1 1 auto;
}
.InputBox-Container-Help {
  height: 100%;
  display: flex;
  align-items: center;
}
.InputBox.InputBox-hasFocus .InputBox-Container {
  border: 1px solid #2542c7;
}
.InputBox.InputBox-hasSuccess .InputBox-Container {
  border-color: #22c993;
}
.InputBox.InputBox-hasError .InputBox-Container {
  border-color: #fe4709;
}
.InputBox.InputBox-hasDescription {
  margin-bottom: 0.5em;
}

.InputBox-Description {
  font-size: 12px;
  margin: 0.2em 0 18px 0;
  color: #4a4a4a;
  opacity: 60%;
}

.InputMessage {
  transition: height 0.25s;
  overflow: hidden;
  position: relative;
}
.InputMessage .InputMessage-Text {
  padding-top: 7px;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 11px;
}
.InputMessage.InputMessage-Success .InputMessage-Text {
  color: #22c993;
}
.InputMessage.InputMessage-Error .InputMessage-Text {
  color: #fe4709;
}

.DSMText-Wrapper {
  position: relative;
  padding: 15px;
}
.DSMText-Placeholder {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  padding: 15px;
  transition: all 0.25s;
  font-size: 14px;
  color: #a6aebc;
}
.DSMText input {
  text-align: left;
  font-size: 14px;
  line-height: 26px;
  background-color: transparent;
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  outline: 0;
  border: none;
  z-index: 100;
}
.DSMText.DSMText-HasPlaceholder .DSMText-Wrapper {
  padding: 23px 15px 7px;
}
.DSMText.DSMText-HasPlaceholder.InputBox-hasFocus .DSMText-Placeholder, .DSMText.DSMText-HasPlaceholder.InputBox-hasValue .DSMText-Placeholder {
  font-size: 12px;
  transform: translateY(-5px);
}

.DSMTextArea-Wrapper {
  position: relative;
  padding: 15px;
}
.DSMTextArea .InputBox-Container {
  height: auto;
}
.DSMTextArea-Placeholder {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  padding: 15px;
  transition: all 0.25s;
  font-size: 14px;
  color: #a6aebc;
}
.DSMTextArea textarea {
  text-align: left;
  font-size: 14px;
  background-color: transparent;
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  outline: 0;
  border: none;
  z-index: 100;
  resize: none;
}
.DSMTextArea.DSMTextArea-HasPlaceholder .DSMTextArea-Wrapper {
  padding: 26px 15px 4px;
}
.DSMTextArea.DSMTextArea-HasPlaceholder .Note-icon.Note-icon {
  transition: font-size 0.25s;
}
@media screen and (min-width: 768px) {
  .DSMTextArea.DSMTextArea-HasPlaceholder .DSMTextArea-Wrapper-longText {
    padding: 26px 15px 4px;
  }
}
@media screen and (max-width: 767px) {
  .DSMTextArea.DSMTextArea-HasPlaceholder .DSMTextArea-Wrapper-longText {
    padding: 42px 15px 4px;
  }
}
.DSMTextArea.DSMTextArea-HasPlaceholder.InputBox-hasFocus .DSMTextArea-Placeholder, .DSMTextArea.DSMTextArea-HasPlaceholder.InputBox-hasValue .DSMTextArea-Placeholder {
  font-size: 12px;
  transform: translateY(-5px);
}
.DSMTextArea.DSMTextArea-HasPlaceholder.InputBox-hasFocus .DSMTextArea-Placeholder .DSMTextArea-HelpIcon .Note-icon.Note-icon, .DSMTextArea.DSMTextArea-HasPlaceholder.InputBox-hasValue .DSMTextArea-Placeholder .DSMTextArea-HelpIcon .Note-icon.Note-icon {
  font-size: 16px;
}

.DSMSelect {
  cursor: pointer;
  position: relative;
  overflow: visible;
}
.DSMSelect-Wrapper {
  word-break: break-word;
}
.DSMSelect-SelectedValue, .DSMSelect-Placeholder, .DSMSelect-Option {
  padding: 15px;
  font-size: 14px;
  line-height: 24px;
}
.DSMSelect-Option:hover {
  background-color: #EDEEF9;
}
.DSMSelect-SelectedValue, .DSMSelect-Placeholder {
  transition: all 0.25s;
  position: relative;
  z-index: 1;
}
.DSMSelect-Option-Placeholder, .DSMSelect-Placeholder {
  color: #a6aebc;
}
.DSMSelect .InputBox-hasValue .DSMSelect-Placeholder + .DSMSelect-SelectedValue {
  padding: 23px 15px 9px;
}
.DSMSelect .InputBox-hasValue .DSMSelect-Placeholder {
  padding: 5px 15px;
  top: 0;
  position: absolute;
  font-size: 12px;
}
.DSMSelect .DSMSelect-ProxyDropdown {
  display: none;
  border-radius: 4px;
  background-color: white;
  box-shadow: 0 0 1px 0 rgba(10, 31, 68, 0.08), 0 3px 4px 0 rgba(10, 31, 68, 0.1);
  position: absolute;
  width: 100%;
  z-index: 10000;
  top: 0;
  max-height: 270px;
}
.DSMSelect .DSMSelect-ProxyDropdown.DSMSelect-ProxyDropdown-Show {
  display: block;
  overflow-y: auto;
  overflow-x: hidden;
}
.DSMSelect-Arrow {
  position: absolute;
  top: 50%;
  right: 1em;
  margin-top: -0.5em;
  font-size: 8px;
  color: #212529;
}

.DSMRadio-Item {
  display: flex;
  align-items: center;
}
.DSMRadio-Item.DSMRadio-Item-Selected .DSMRadio-Circle:after {
  border: 2px solid #2542c7;
}
.DSMRadio-Item.DSMRadio-Item-Selected .DSMRadio-Circle:before {
  opacity: 1;
}
.DSMRadio-Item.DSMRadio-Item-Disabled .DSMRadio-Circle:after {
  background-color: #f1f2f4;
}
.DSMRadio-Circle {
  position: relative;
  height: 18px;
  width: 18px;
  flex: 0 0 18px;
}
.DSMRadio-Circle:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 36px;
  border: 1px solid #e1e4e8;
  z-index: 1;
  transition: border 0.25s;
}
.DSMRadio-Circle:before {
  content: "";
  display: block;
  position: absolute;
  border-radius: 36px;
  background-color: #2542c7;
  height: calc(100% - 8px);
  width: calc(100% - 8px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.25s;
}
.DSMRadio-Circle .DSMRadio-Input {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: 100;
}
.DSMRadio-Text {
  line-height: 1em;
  padding-left: 12px;
}

.DSMCheckbox-Item {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}
.DSMCheckbox-Item.DSMCheckbox-Item-Selected .DSMCheckbox-Box:after {
  border-color: #2542c7;
  background-color: #2542c7;
}
.DSMCheckbox-Item.DSMCheckbox-Item-Selected .DSMCheckbox-Box .DSMCheckbox-Icon {
  opacity: 1;
}
.DSMCheckbox-Item.DSMCheckbox-Item-Disabled .DSMCheckbox-Box:after {
  background-color: #f1f2f4;
  border: 1px solid #e1e4e8;
}
.DSMCheckbox-Item.DSMCheckbox-Item-Disabled .DSMCheckbox-Box .DSMCheckbox-Icon {
  color: #e1e4e8;
}
.DSMCheckbox-Box {
  position: relative;
  height: 18px;
  width: 18px;
  flex: 0 0 18px;
  font-size: 16px;
}
.DSMCheckbox-Box:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 2px solid #e1e4e8;
  z-index: 1;
  transition: border 0.25s, background-color 0.25s;
  border-radius: 3px;
}
.DSMCheckbox-Box input {
  cursor: pointer;
}
.DSMCheckbox-Box .DSMCheckbox-Icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 18px;
  opacity: 0;
  color: #FFFFFF;
  transition: opacity 0.25s;
  z-index: 2;
}
.DSMCheckbox-Box .DSMCheckbox-Icon .icon {
  top: 0;
}
.DSMCheckbox-Box .DSMCheckbox-Input {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: 100;
}
.DSMCheckbox-Text {
  line-height: 1.2em;
  padding-left: 12px;
}
.DSMCheckbox-Error {
  color: #fe4709;
}
.DSMCheckbox-Error-Box {
  width: 100%;
  height: 100%;
  border-style: solid;
  border-width: 4px;
}
.DSMCheckbox-Error-Text {
  margin: 0.5em 0 0.5em 0;
}

.DSMAutocomplete .DSMAutocomplete-Options {
  padding: 8px;
}
.DSMAutocomplete .DSMAutocomplete-Option {
  padding: 13px 15px;
  line-height: 1em;
  font-size: 14px;
  font-weight: 300;
}
.DSMAutocomplete .DSMAutocomplete-Option.DSMAutocomplete-Option-Selected {
  background-color: #EDEEF9;
}

.DSMPassword {
  position: relative;
}
.DSMPassword .icon {
  font-size: 24px;
  position: absolute;
  top: 10px;
  right: 18px;
  cursor: pointer;
  z-index: 1000000;
}

.DSMPhoneIntl-Wrapper {
  position: relative;
  padding: 15px;
  display: flex;
}
.DSMPhoneIntl-Wrapper .flag {
  width: 20px;
  height: 12px;
  max-height: 15px;
  box-shadow: 0 0 1px 0 #888;
  background-image: url(https://sep.yimg.com/yf/idm/img/3fa34ac2.flags.png);
  background-repeat: no-repeat;
  background-color: #888;
}
.DSMPhoneIntl-Wrapper .flag.ac {
  height: 10px;
  background-position: 0px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ad {
  height: 14px;
  background-position: -22px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ae {
  height: 10px;
  background-position: -44px 0px;
}
.DSMPhoneIntl-Wrapper .flag.af {
  height: 14px;
  background-position: -66px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ag {
  height: 14px;
  background-position: -88px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ai {
  height: 10px;
  background-position: -110px 0px;
}
.DSMPhoneIntl-Wrapper .flag.al {
  height: 15px;
  background-position: -132px 0px;
}
.DSMPhoneIntl-Wrapper .flag.am {
  height: 10px;
  background-position: -154px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ao {
  height: 14px;
  background-position: -176px 0px;
}
.DSMPhoneIntl-Wrapper .flag.aq {
  height: 14px;
  background-position: -198px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ar {
  height: 13px;
  background-position: -220px 0px;
}
.DSMPhoneIntl-Wrapper .flag.as {
  height: 10px;
  background-position: -242px 0px;
}
.DSMPhoneIntl-Wrapper .flag.at {
  height: 14px;
  background-position: -264px 0px;
}
.DSMPhoneIntl-Wrapper .flag.au {
  height: 10px;
  background-position: -286px 0px;
}
.DSMPhoneIntl-Wrapper .flag.aw {
  height: 14px;
  background-position: -308px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ax {
  height: 13px;
  background-position: -330px 0px;
}
.DSMPhoneIntl-Wrapper .flag.az {
  height: 10px;
  background-position: -352px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ba {
  height: 10px;
  background-position: -374px 0px;
}
.DSMPhoneIntl-Wrapper .flag.bb {
  height: 14px;
  background-position: -396px 0px;
}
.DSMPhoneIntl-Wrapper .flag.bd {
  height: 12px;
  background-position: -418px 0px;
}
.DSMPhoneIntl-Wrapper .flag.be {
  height: 15px;
  background-position: -440px 0px;
}
.DSMPhoneIntl-Wrapper .flag.bf {
  height: 14px;
  background-position: -460px 0px;
}
.DSMPhoneIntl-Wrapper .flag.bg {
  height: 12px;
  background-position: -482px 0px;
}
.DSMPhoneIntl-Wrapper .flag.bh {
  height: 12px;
  background-position: -504px 0px;
}
.DSMPhoneIntl-Wrapper .flag.bi {
  height: 12px;
  background-position: -526px 0px;
}
.DSMPhoneIntl-Wrapper .flag.bj {
  height: 14px;
  background-position: -548px 0px;
}
.DSMPhoneIntl-Wrapper .flag.bl {
  height: 14px;
  background-position: -570px 0px;
}
.DSMPhoneIntl-Wrapper .flag.bm {
  height: 10px;
  background-position: -592px 0px;
}
.DSMPhoneIntl-Wrapper .flag.bn {
  height: 10px;
  background-position: -614px 0px;
}
.DSMPhoneIntl-Wrapper .flag.bo {
  height: 14px;
  background-position: -636px 0px;
}
.DSMPhoneIntl-Wrapper .flag.bq {
  height: 14px;
  background-position: -658px 0px;
}
.DSMPhoneIntl-Wrapper .flag.br {
  height: 14px;
  background-position: -680px 0px;
}
.DSMPhoneIntl-Wrapper .flag.bs {
  height: 10px;
  background-position: -702px 0px;
}
.DSMPhoneIntl-Wrapper .flag.bt {
  height: 14px;
  background-position: -724px 0px;
}
.DSMPhoneIntl-Wrapper .flag.bv {
  height: 15px;
  background-position: -746px 0px;
}
.DSMPhoneIntl-Wrapper .flag.bw {
  height: 14px;
  background-position: -768px 0px;
}
.DSMPhoneIntl-Wrapper .flag.by {
  height: 10px;
  background-position: -790px 0px;
}
.DSMPhoneIntl-Wrapper .flag.bz {
  height: 14px;
  background-position: -812px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ca {
  height: 10px;
  background-position: -834px 0px;
}
.DSMPhoneIntl-Wrapper .flag.cc {
  height: 10px;
  background-position: -856px 0px;
}
.DSMPhoneIntl-Wrapper .flag.cd {
  height: 15px;
  background-position: -878px 0px;
}
.DSMPhoneIntl-Wrapper .flag.cf {
  height: 14px;
  background-position: -900px 0px;
}
.DSMPhoneIntl-Wrapper .flag.cg {
  height: 14px;
  background-position: -922px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ch {
  height: 15px;
  background-position: -944px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ci {
  height: 14px;
  background-position: -961px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ck {
  height: 10px;
  background-position: -983px 0px;
}
.DSMPhoneIntl-Wrapper .flag.cl {
  height: 14px;
  background-position: -1005px 0px;
}
.DSMPhoneIntl-Wrapper .flag.cm {
  height: 14px;
  background-position: -1027px 0px;
}
.DSMPhoneIntl-Wrapper .flag.cn {
  height: 14px;
  background-position: -1049px 0px;
}
.DSMPhoneIntl-Wrapper .flag.co {
  height: 14px;
  background-position: -1071px 0px;
}
.DSMPhoneIntl-Wrapper .flag.cp {
  height: 14px;
  background-position: -1093px 0px;
}
.DSMPhoneIntl-Wrapper .flag.cr {
  height: 12px;
  background-position: -1115px 0px;
}
.DSMPhoneIntl-Wrapper .flag.cu {
  height: 10px;
  background-position: -1137px 0px;
}
.DSMPhoneIntl-Wrapper .flag.cv {
  height: 12px;
  background-position: -1159px 0px;
}
.DSMPhoneIntl-Wrapper .flag.cw {
  height: 14px;
  background-position: -1181px 0px;
}
.DSMPhoneIntl-Wrapper .flag.cx {
  height: 10px;
  background-position: -1203px 0px;
}
.DSMPhoneIntl-Wrapper .flag.cy {
  height: 13px;
  background-position: -1225px 0px;
}
.DSMPhoneIntl-Wrapper .flag.cz {
  height: 14px;
  background-position: -1247px 0px;
}
.DSMPhoneIntl-Wrapper .flag.de {
  height: 12px;
  background-position: -1269px 0px;
}
.DSMPhoneIntl-Wrapper .flag.dg {
  height: 10px;
  background-position: -1291px 0px;
}
.DSMPhoneIntl-Wrapper .flag.dj {
  height: 14px;
  background-position: -1313px 0px;
}
.DSMPhoneIntl-Wrapper .flag.dk {
  height: 15px;
  background-position: -1335px 0px;
}
.DSMPhoneIntl-Wrapper .flag.dm {
  height: 10px;
  background-position: -1357px 0px;
}
.DSMPhoneIntl-Wrapper .flag.do {
  height: 13px;
  background-position: -1379px 0px;
}
.DSMPhoneIntl-Wrapper .flag.dz {
  height: 14px;
  background-position: -1401px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ea {
  height: 14px;
  background-position: -1423px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ec {
  height: 14px;
  background-position: -1445px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ee {
  height: 13px;
  background-position: -1467px 0px;
}
.DSMPhoneIntl-Wrapper .flag.eg {
  height: 14px;
  background-position: -1489px 0px;
}
.DSMPhoneIntl-Wrapper .flag.eh {
  height: 10px;
  background-position: -1511px 0px;
}
.DSMPhoneIntl-Wrapper .flag.er {
  height: 10px;
  background-position: -1533px 0px;
}
.DSMPhoneIntl-Wrapper .flag.es {
  height: 14px;
  background-position: -1555px 0px;
}
.DSMPhoneIntl-Wrapper .flag.et {
  height: 10px;
  background-position: -1577px 0px;
}
.DSMPhoneIntl-Wrapper .flag.eu {
  height: 14px;
  background-position: -1599px 0px;
}
.DSMPhoneIntl-Wrapper .flag.fi {
  height: 12px;
  background-position: -1621px 0px;
}
.DSMPhoneIntl-Wrapper .flag.fj {
  height: 10px;
  background-position: -1643px 0px;
}
.DSMPhoneIntl-Wrapper .flag.fk {
  height: 10px;
  background-position: -1665px 0px;
}
.DSMPhoneIntl-Wrapper .flag.fm {
  height: 11px;
  background-position: -1687px 0px;
}
.DSMPhoneIntl-Wrapper .flag.fo {
  height: 15px;
  background-position: -1709px 0px;
}
.DSMPhoneIntl-Wrapper .flag.fr {
  height: 14px;
  background-position: -1731px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ga {
  height: 15px;
  background-position: -1753px 0px;
}
.DSMPhoneIntl-Wrapper .flag.gb {
  height: 10px;
  background-position: -1775px 0px;
}
.DSMPhoneIntl-Wrapper .flag.gd {
  height: 12px;
  background-position: -1797px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ge {
  height: 14px;
  background-position: -1819px 0px;
}
.DSMPhoneIntl-Wrapper .flag.gf {
  height: 14px;
  background-position: -1841px 0px;
}
.DSMPhoneIntl-Wrapper .flag.gg {
  height: 14px;
  background-position: -1863px 0px;
}
.DSMPhoneIntl-Wrapper .flag.gh {
  height: 14px;
  background-position: -1885px 0px;
}
.DSMPhoneIntl-Wrapper .flag.gi {
  height: 10px;
  background-position: -1907px 0px;
}
.DSMPhoneIntl-Wrapper .flag.gl {
  height: 14px;
  background-position: -1929px 0px;
}
.DSMPhoneIntl-Wrapper .flag.gm {
  height: 14px;
  background-position: -1951px 0px;
}
.DSMPhoneIntl-Wrapper .flag.gn {
  height: 14px;
  background-position: -1973px 0px;
}
.DSMPhoneIntl-Wrapper .flag.gp {
  height: 14px;
  background-position: -1995px 0px;
}
.DSMPhoneIntl-Wrapper .flag.gq {
  height: 14px;
  background-position: -2017px 0px;
}
.DSMPhoneIntl-Wrapper .flag.gr {
  height: 14px;
  background-position: -2039px 0px;
}
.DSMPhoneIntl-Wrapper .flag.gs {
  height: 10px;
  background-position: -2061px 0px;
}
.DSMPhoneIntl-Wrapper .flag.gt {
  height: 13px;
  background-position: -2083px 0px;
}
.DSMPhoneIntl-Wrapper .flag.gu {
  height: 11px;
  background-position: -2105px 0px;
}
.DSMPhoneIntl-Wrapper .flag.gw {
  height: 10px;
  background-position: -2127px 0px;
}
.DSMPhoneIntl-Wrapper .flag.gy {
  height: 12px;
  background-position: -2149px 0px;
}
.DSMPhoneIntl-Wrapper .flag.hk {
  height: 14px;
  background-position: -2171px 0px;
}
.DSMPhoneIntl-Wrapper .flag.hm {
  height: 10px;
  background-position: -2193px 0px;
}
.DSMPhoneIntl-Wrapper .flag.hn {
  height: 10px;
  background-position: -2215px 0px;
}
.DSMPhoneIntl-Wrapper .flag.hr {
  height: 10px;
  background-position: -2237px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ht {
  height: 12px;
  background-position: -2259px 0px;
}
.DSMPhoneIntl-Wrapper .flag.hu {
  height: 10px;
  background-position: -2281px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ic {
  height: 14px;
  background-position: -2303px 0px;
}
.DSMPhoneIntl-Wrapper .flag.id {
  height: 14px;
  background-position: -2325px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ie {
  height: 10px;
  background-position: -2347px 0px;
}
.DSMPhoneIntl-Wrapper .flag.il {
  height: 15px;
  background-position: -2369px 0px;
}
.DSMPhoneIntl-Wrapper .flag.im {
  height: 10px;
  background-position: -2391px 0px;
}
.DSMPhoneIntl-Wrapper .flag.in {
  height: 14px;
  background-position: -2413px 0px;
}
.DSMPhoneIntl-Wrapper .flag.io {
  height: 10px;
  background-position: -2435px 0px;
}
.DSMPhoneIntl-Wrapper .flag.iq {
  height: 14px;
  background-position: -2457px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ir {
  height: 12px;
  background-position: -2479px 0px;
}
.DSMPhoneIntl-Wrapper .flag.is {
  height: 15px;
  background-position: -2501px 0px;
}
.DSMPhoneIntl-Wrapper .flag.it {
  height: 14px;
  background-position: -2523px 0px;
}
.DSMPhoneIntl-Wrapper .flag.je {
  height: 12px;
  background-position: -2545px 0px;
}
.DSMPhoneIntl-Wrapper .flag.jm {
  height: 10px;
  background-position: -2567px 0px;
}
.DSMPhoneIntl-Wrapper .flag.jo {
  height: 10px;
  background-position: -2589px 0px;
}
.DSMPhoneIntl-Wrapper .flag.jp {
  height: 14px;
  background-position: -2611px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ke {
  height: 14px;
  background-position: -2633px 0px;
}
.DSMPhoneIntl-Wrapper .flag.kg {
  height: 12px;
  background-position: -2655px 0px;
}
.DSMPhoneIntl-Wrapper .flag.kh {
  height: 13px;
  background-position: -2677px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ki {
  height: 10px;
  background-position: -2699px 0px;
}
.DSMPhoneIntl-Wrapper .flag.km {
  height: 12px;
  background-position: -2721px 0px;
}
.DSMPhoneIntl-Wrapper .flag.kn {
  height: 14px;
  background-position: -2743px 0px;
}
.DSMPhoneIntl-Wrapper .flag.kp {
  height: 10px;
  background-position: -2765px 0px;
}
.DSMPhoneIntl-Wrapper .flag.kr {
  height: 14px;
  background-position: -2787px 0px;
}
.DSMPhoneIntl-Wrapper .flag.kw {
  height: 10px;
  background-position: -2809px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ky {
  height: 10px;
  background-position: -2831px 0px;
}
.DSMPhoneIntl-Wrapper .flag.kz {
  height: 10px;
  background-position: -2853px 0px;
}
.DSMPhoneIntl-Wrapper .flag.la {
  height: 14px;
  background-position: -2875px 0px;
}
.DSMPhoneIntl-Wrapper .flag.lb {
  height: 14px;
  background-position: -2897px 0px;
}
.DSMPhoneIntl-Wrapper .flag.lc {
  height: 10px;
  background-position: -2919px 0px;
}
.DSMPhoneIntl-Wrapper .flag.li {
  height: 12px;
  background-position: -2941px 0px;
}
.DSMPhoneIntl-Wrapper .flag.lk {
  height: 10px;
  background-position: -2963px 0px;
}
.DSMPhoneIntl-Wrapper .flag.lr {
  height: 11px;
  background-position: -2985px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ls {
  height: 14px;
  background-position: -3007px 0px;
}
.DSMPhoneIntl-Wrapper .flag.lt {
  height: 12px;
  background-position: -3029px 0px;
}
.DSMPhoneIntl-Wrapper .flag.lu {
  height: 12px;
  background-position: -3051px 0px;
}
.DSMPhoneIntl-Wrapper .flag.lv {
  height: 10px;
  background-position: -3073px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ly {
  height: 10px;
  background-position: -3095px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ma {
  height: 14px;
  background-position: -3117px 0px;
}
.DSMPhoneIntl-Wrapper .flag.mc {
  height: 15px;
  background-position: -3139px 0px;
}
.DSMPhoneIntl-Wrapper .flag.md {
  height: 10px;
  background-position: -3160px 0px;
}
.DSMPhoneIntl-Wrapper .flag.me {
  height: 10px;
  background-position: -3182px 0px;
}
.DSMPhoneIntl-Wrapper .flag.mf {
  height: 14px;
  background-position: -3204px 0px;
}
.DSMPhoneIntl-Wrapper .flag.mg {
  height: 14px;
  background-position: -3226px 0px;
}
.DSMPhoneIntl-Wrapper .flag.mh {
  height: 11px;
  background-position: -3248px 0px;
}
.DSMPhoneIntl-Wrapper .flag.mk {
  height: 10px;
  background-position: -3270px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ml {
  height: 14px;
  background-position: -3292px 0px;
}
.DSMPhoneIntl-Wrapper .flag.mm {
  height: 14px;
  background-position: -3314px 0px;
}
.DSMPhoneIntl-Wrapper .flag.mn {
  height: 10px;
  background-position: -3336px 0px;
}
.DSMPhoneIntl-Wrapper .flag.mo {
  height: 14px;
  background-position: -3358px 0px;
}
.DSMPhoneIntl-Wrapper .flag.mp {
  height: 10px;
  background-position: -3380px 0px;
}
.DSMPhoneIntl-Wrapper .flag.mq {
  height: 14px;
  background-position: -3402px 0px;
}
.DSMPhoneIntl-Wrapper .flag.mr {
  height: 14px;
  background-position: -3424px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ms {
  height: 10px;
  background-position: -3446px 0px;
}
.DSMPhoneIntl-Wrapper .flag.mt {
  height: 14px;
  background-position: -3468px 0px;
}
.DSMPhoneIntl-Wrapper .flag.mu {
  height: 14px;
  background-position: -3490px 0px;
}
.DSMPhoneIntl-Wrapper .flag.mv {
  height: 14px;
  background-position: -3512px 0px;
}
.DSMPhoneIntl-Wrapper .flag.mw {
  height: 14px;
  background-position: -3534px 0px;
}
.DSMPhoneIntl-Wrapper .flag.mx {
  height: 12px;
  background-position: -3556px 0px;
}
.DSMPhoneIntl-Wrapper .flag.my {
  height: 10px;
  background-position: -3578px 0px;
}
.DSMPhoneIntl-Wrapper .flag.mz {
  height: 14px;
  background-position: -3600px 0px;
}
.DSMPhoneIntl-Wrapper .flag.na {
  height: 14px;
  background-position: -3622px 0px;
}
.DSMPhoneIntl-Wrapper .flag.nc {
  height: 10px;
  background-position: -3644px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ne {
  height: 15px;
  background-position: -3666px 0px;
}
.DSMPhoneIntl-Wrapper .flag.nf {
  height: 10px;
  background-position: -3686px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ng {
  height: 10px;
  background-position: -3708px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ni {
  height: 12px;
  background-position: -3730px 0px;
}
.DSMPhoneIntl-Wrapper .flag.nl {
  height: 14px;
  background-position: -3752px 0px;
}
.DSMPhoneIntl-Wrapper .flag.no {
  height: 15px;
  background-position: -3774px 0px;
}
.DSMPhoneIntl-Wrapper .flag.np {
  height: 15px;
  background-position: -3796px 0px;
}
.DSMPhoneIntl-Wrapper .flag.nr {
  height: 10px;
  background-position: -3811px 0px;
}
.DSMPhoneIntl-Wrapper .flag.nu {
  height: 10px;
  background-position: -3833px 0px;
}
.DSMPhoneIntl-Wrapper .flag.nz {
  height: 10px;
  background-position: -3855px 0px;
}
.DSMPhoneIntl-Wrapper .flag.om {
  height: 10px;
  background-position: -3877px 0px;
}
.DSMPhoneIntl-Wrapper .flag.pa {
  height: 14px;
  background-position: -3899px 0px;
}
.DSMPhoneIntl-Wrapper .flag.pe {
  height: 14px;
  background-position: -3921px 0px;
}
.DSMPhoneIntl-Wrapper .flag.pf {
  height: 14px;
  background-position: -3943px 0px;
}
.DSMPhoneIntl-Wrapper .flag.pg {
  height: 15px;
  background-position: -3965px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ph {
  height: 10px;
  background-position: -3987px 0px;
}
.DSMPhoneIntl-Wrapper .flag.pk {
  height: 14px;
  background-position: -4009px 0px;
}
.DSMPhoneIntl-Wrapper .flag.pl {
  height: 13px;
  background-position: -4031px 0px;
}
.DSMPhoneIntl-Wrapper .flag.pm {
  height: 14px;
  background-position: -4053px 0px;
}
.DSMPhoneIntl-Wrapper .flag.pn {
  height: 10px;
  background-position: -4075px 0px;
}
.DSMPhoneIntl-Wrapper .flag.pr {
  height: 14px;
  background-position: -4097px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ps {
  height: 10px;
  background-position: -4119px 0px;
}
.DSMPhoneIntl-Wrapper .flag.pt {
  height: 14px;
  background-position: -4141px 0px;
}
.DSMPhoneIntl-Wrapper .flag.pw {
  height: 13px;
  background-position: -4163px 0px;
}
.DSMPhoneIntl-Wrapper .flag.py {
  height: 11px;
  background-position: -4185px 0px;
}
.DSMPhoneIntl-Wrapper .flag.qa {
  height: 8px;
  background-position: -4207px 0px;
}
.DSMPhoneIntl-Wrapper .flag.re {
  height: 14px;
  background-position: -4229px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ro {
  height: 14px;
  background-position: -4251px 0px;
}
.DSMPhoneIntl-Wrapper .flag.rs {
  height: 14px;
  background-position: -4273px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ru {
  height: 14px;
  background-position: -4295px 0px;
}
.DSMPhoneIntl-Wrapper .flag.rw {
  height: 14px;
  background-position: -4317px 0px;
}
.DSMPhoneIntl-Wrapper .flag.sa {
  height: 14px;
  background-position: -4339px 0px;
}
.DSMPhoneIntl-Wrapper .flag.sb {
  height: 10px;
  background-position: -4361px 0px;
}
.DSMPhoneIntl-Wrapper .flag.sc {
  height: 10px;
  background-position: -4383px 0px;
}
.DSMPhoneIntl-Wrapper .flag.sd {
  height: 10px;
  background-position: -4405px 0px;
}
.DSMPhoneIntl-Wrapper .flag.se {
  height: 13px;
  background-position: -4427px 0px;
}
.DSMPhoneIntl-Wrapper .flag.sg {
  height: 14px;
  background-position: -4449px 0px;
}
.DSMPhoneIntl-Wrapper .flag.sh {
  height: 10px;
  background-position: -4471px 0px;
}
.DSMPhoneIntl-Wrapper .flag.si {
  height: 10px;
  background-position: -4493px 0px;
}
.DSMPhoneIntl-Wrapper .flag.sj {
  height: 15px;
  background-position: -4515px 0px;
}
.DSMPhoneIntl-Wrapper .flag.sk {
  height: 14px;
  background-position: -4537px 0px;
}
.DSMPhoneIntl-Wrapper .flag.sl {
  height: 14px;
  background-position: -4559px 0px;
}
.DSMPhoneIntl-Wrapper .flag.sm {
  height: 15px;
  background-position: -4581px 0px;
}
.DSMPhoneIntl-Wrapper .flag.sn {
  height: 14px;
  background-position: -4603px 0px;
}
.DSMPhoneIntl-Wrapper .flag.so {
  height: 14px;
  background-position: -4625px 0px;
}
.DSMPhoneIntl-Wrapper .flag.sr {
  height: 14px;
  background-position: -4647px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ss {
  height: 10px;
  background-position: -4669px 0px;
}
.DSMPhoneIntl-Wrapper .flag.st {
  height: 10px;
  background-position: -4691px 0px;
}
.DSMPhoneIntl-Wrapper .flag.sv {
  height: 12px;
  background-position: -4713px 0px;
}
.DSMPhoneIntl-Wrapper .flag.sx {
  height: 14px;
  background-position: -4735px 0px;
}
.DSMPhoneIntl-Wrapper .flag.sy {
  height: 14px;
  background-position: -4757px 0px;
}
.DSMPhoneIntl-Wrapper .flag.sz {
  height: 14px;
  background-position: -4779px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ta {
  height: 10px;
  background-position: -4801px 0px;
}
.DSMPhoneIntl-Wrapper .flag.tc {
  height: 10px;
  background-position: -4823px 0px;
}
.DSMPhoneIntl-Wrapper .flag.td {
  height: 14px;
  background-position: -4845px 0px;
}
.DSMPhoneIntl-Wrapper .flag.tf {
  height: 14px;
  background-position: -4867px 0px;
}
.DSMPhoneIntl-Wrapper .flag.tg {
  height: 13px;
  background-position: -4889px 0px;
}
.DSMPhoneIntl-Wrapper .flag.th {
  height: 14px;
  background-position: -4911px 0px;
}
.DSMPhoneIntl-Wrapper .flag.tj {
  height: 10px;
  background-position: -4933px 0px;
}
.DSMPhoneIntl-Wrapper .flag.tk {
  height: 10px;
  background-position: -4955px 0px;
}
.DSMPhoneIntl-Wrapper .flag.tl {
  height: 10px;
  background-position: -4977px 0px;
}
.DSMPhoneIntl-Wrapper .flag.tm {
  height: 14px;
  background-position: -4999px 0px;
}
.DSMPhoneIntl-Wrapper .flag.tn {
  height: 14px;
  background-position: -5021px 0px;
}
.DSMPhoneIntl-Wrapper .flag.to {
  height: 10px;
  background-position: -5043px 0px;
}
.DSMPhoneIntl-Wrapper .flag.tr {
  height: 14px;
  background-position: -5065px 0px;
}
.DSMPhoneIntl-Wrapper .flag.tt {
  height: 12px;
  background-position: -5087px 0px;
}
.DSMPhoneIntl-Wrapper .flag.tv {
  height: 10px;
  background-position: -5109px 0px;
}
.DSMPhoneIntl-Wrapper .flag.tw {
  height: 14px;
  background-position: -5131px 0px;
}
.DSMPhoneIntl-Wrapper .flag.tz {
  height: 14px;
  background-position: -5153px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ua {
  height: 14px;
  background-position: -5175px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ug {
  height: 14px;
  background-position: -5197px 0px;
}
.DSMPhoneIntl-Wrapper .flag.um {
  height: 11px;
  background-position: -5219px 0px;
}
.DSMPhoneIntl-Wrapper .flag.us {
  height: 11px;
  background-position: -5241px 0px;
}
.DSMPhoneIntl-Wrapper .flag.uy {
  height: 14px;
  background-position: -5263px 0px;
}
.DSMPhoneIntl-Wrapper .flag.uz {
  height: 10px;
  background-position: -5285px 0px;
}
.DSMPhoneIntl-Wrapper .flag.va {
  height: 15px;
  background-position: -5307px 0px;
}
.DSMPhoneIntl-Wrapper .flag.vc {
  height: 14px;
  background-position: -5324px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ve {
  height: 14px;
  background-position: -5346px 0px;
}
.DSMPhoneIntl-Wrapper .flag.vg {
  height: 10px;
  background-position: -5368px 0px;
}
.DSMPhoneIntl-Wrapper .flag.vi {
  height: 14px;
  background-position: -5390px 0px;
}
.DSMPhoneIntl-Wrapper .flag.vn {
  height: 14px;
  background-position: -5412px 0px;
}
.DSMPhoneIntl-Wrapper .flag.vu {
  height: 12px;
  background-position: -5434px 0px;
}
.DSMPhoneIntl-Wrapper .flag.wf {
  height: 14px;
  background-position: -5456px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ws {
  height: 10px;
  background-position: -5478px 0px;
}
.DSMPhoneIntl-Wrapper .flag.xk {
  height: 15px;
  background-position: -5500px 0px;
}
.DSMPhoneIntl-Wrapper .flag.ye {
  height: 14px;
  background-position: -5522px 0px;
}
.DSMPhoneIntl-Wrapper .flag.yt {
  height: 14px;
  background-position: -5544px 0px;
}
.DSMPhoneIntl-Wrapper .flag.za {
  height: 14px;
  background-position: -5566px 0px;
}
.DSMPhoneIntl-Wrapper .flag.zm {
  height: 14px;
  background-position: -5588px 0px;
}
.DSMPhoneIntl-Wrapper .flag.zw {
  height: 10px;
  background-position: -5610px 0px;
}
.DSMPhoneIntl-Wrapper .OutsideClickAlerter {
  display: flex;
}
.DSMPhoneIntl-Placeholder {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  padding: 15px;
  transition: all 0.25s;
  color: #a6aebc;
  font-size: 14px;
  font-size: 0.875rem;
}
.DSMPhoneIntl-CountryCode {
  margin-left: 5px;
  margin-right: 5px;
  /* Basically keeping this same as input element */
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 26px;
  line-height: 1.625rem;
}
.DSMPhoneIntl input {
  text-align: left;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 26px;
  line-height: 1.625rem;
  background-color: transparent;
  position: relative;
  width: 75%;
  padding: 0;
  margin: 0;
  outline: 0;
  border: none;
  z-index: 100;
}
.DSMPhoneIntl.input-code-2 input {
  width: 66%;
}
.DSMPhoneIntl.input-code-3 input {
  width: 60%;
}
.DSMPhoneIntl.input-code-4 input {
  width: 55%;
}
.DSMPhoneIntl.input-code-5 input {
  width: 50%;
}
.DSMPhoneIntl-CountrySelectorBtn {
  width: 40px;
  min-width: 40px;
  display: flex;
  z-index: 101;
  border-radius: 4px 0 0 4px;
}
.DSMPhoneIntl-CountrySelectorBtn.disabled {
  background-color: #fafafa;
}
.DSMPhoneIntl-CountrySelectorBtn.disabled:hover {
  cursor: default;
}
.DSMPhoneIntl-CountrySelectorBtn:hover {
  background-color: #fafafa;
  cursor: pointer;
}
.DSMPhoneIntl-CountrySelectorBtn .flagSelector {
  position: relative;
  top: 8px;
  left: 6px;
}
.DSMPhoneIntl-CountrySelectorBtn .arrow {
  position: relative;
  top: 8px;
  right: -12px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #555;
}
.DSMPhoneIntl.DSMPhoneIntl-HasPlaceholder .DSMPhoneIntl-Wrapper {
  padding: 23px 15px 7px;
}
.DSMPhoneIntl.DSMPhoneIntl-HasPlaceholder .DSMPhoneIntl-CountryCode {
  display: none;
}
.DSMPhoneIntl.DSMPhoneIntl-HasPlaceholder .DSMPhoneIntl-CountrySelectorBtn {
  display: none;
}
.DSMPhoneIntl.DSMPhoneIntl-HasPlaceholder.InputBox-hasFocus .DSMPhoneIntl-Placeholder, .DSMPhoneIntl.DSMPhoneIntl-HasPlaceholder.InputBox-hasValue .DSMPhoneIntl-Placeholder {
  font-size: 12px;
  transform: translateY(-5px);
}
.DSMPhoneIntl.DSMPhoneIntl-HasPlaceholder.InputBox-hasFocus .DSMPhoneIntl-CountryCode, .DSMPhoneIntl.DSMPhoneIntl-HasPlaceholder.InputBox-hasValue .DSMPhoneIntl-CountryCode {
  display: block;
}
.DSMPhoneIntl.DSMPhoneIntl-HasPlaceholder.InputBox-hasFocus .DSMPhoneIntl-CountrySelectorBtn, .DSMPhoneIntl.DSMPhoneIntl-HasPlaceholder.InputBox-hasValue .DSMPhoneIntl-CountrySelectorBtn {
  display: flex;
}
.DSMPhoneIntl-CountrySelectorDropDown {
  position: absolute;
  top: 46px;
  z-index: 103;
  overflow: scroll;
  max-height: 200px;
  width: 95%;
  background-color: #fff;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  font-size: 0.875rem;
}
.DSMPhoneIntl-CountrySelectorDropDown-List {
  list-style: none;
  margin: 0;
  padding-left: 0;
  border: 1px solid #C4CCD2;
  border-top: 0;
}
.DSMPhoneIntl-CountrySelectorDropDown-List-Item {
  padding: 5px;
  display: flex;
  align-items: center;
}
.DSMPhoneIntl-CountrySelectorDropDown-List-Item:hover {
  background-color: #fafafa;
}
.DSMPhoneIntl-CountrySelectorDropDown-List-Item .flagContainer {
  padding: 4px 8px 4px 4px;
}
.DSMPhoneIntl-CountrySelectorDropDown-List-Item .countryName {
  margin-right: 8px;
}
.DSMPhoneIntl-CountrySelectorDropDown-List-Item .countryCodeNum {
  color: #777;
}

.DSMConsent .DSMCheckbox-Text {
  font-size: 12px;
  padding-top: 3px;
}

.DSMTags-Wrapper {
  position: relative;
  padding: 15px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: -7px;
}
.DSMTags-Placeholder {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  padding: 15px;
  transition: all 0.25s;
  font-size: 14px;
  color: #a6aebc;
}
.DSMTags input {
  text-align: left;
  font-size: 14px;
  line-height: 24px;
  background-color: transparent;
  position: relative;
  width: 100%;
  height: 30px;
  padding: 0;
  margin: 0 0 7px 0;
  outline: 0;
  border: none;
  z-index: 100;
  max-width: 100%;
}
.DSMTags .InputBox-Container {
  height: auto;
}
.DSMTags-InputMeasure {
  position: fixed;
  bottom: 100%;
  right: 100%;
}
.DSMTags.DSMTags-HasPlaceholder .DSMTags-Wrapper {
  padding: 23px 15px 7px;
  transition: padding-top 0.2s;
}
.DSMTags.DSMTags-HasPlaceholder.InputBox-hasFocus .DSMTags-Wrapper, .DSMTags.DSMTags-HasPlaceholder.InputBox-hasValue .DSMTags-Wrapper {
  padding-top: 30px;
}
.DSMTags.DSMTags-HasPlaceholder.InputBox-hasFocus .DSMTags-Placeholder, .DSMTags.DSMTags-HasPlaceholder.InputBox-hasValue .DSMTags-Placeholder {
  font-size: 12px;
  height: auto;
  transform: translateY(-5px);
}
.DSMTags .DSMTags-Tag {
  display: flex;
  flex: 0 0 auto;
  font-size: 14px;
  padding: 2px 2px 2px 8px;
  background-color: #eee;
  line-height: 13px;
  margin-right: 10px;
  margin-bottom: 7px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid #000;
  transition: color 0.1s, background-color 0.1s;
}
.DSMTags .DSMTags-Tag-Remove {
  cursor: pointer;
  padding-left: 4px;
}
.DSMTags .DSMTags-Tag.DSMTags-Tag-Selected {
  background-color: #2542C7;
  color: #FFFFFF;
  border: 1px solid #2542C7;
}

.DSMCarousel-Container {
  padding: 0 1.5rem;
  margin: 0 1.5rem;
  position: relative;
}
.DSMCarousel-Container .slick-slider {
  position: static;
}
.DSMCarousel-Container .DSMIcon:before {
  color: #2542c7;
  font-size: 24px;
}
.DSMCarousel-Container .slick-prev,
.DSMCarousel-Container .slick-next {
  font-size: 24px;
  height: 28px;
  width: 28px;
}
.DSMCarousel-Container .slick-prev {
  left: -1.5rem;
}
.DSMCarousel-Container .slick-next {
  right: -1.5rem;
}
.DSMCarousel-Container .slick-prev.slick-disabled:before,
.DSMCarousel-Container .slick-next.slick-disabled:before {
  color: #E1E1E1;
}
.DSMCarousel-Container .dsm-carousel-card {
  padding: 0 4px 4px;
}
.DSMCarousel-Container .dsm-carousel-item {
  box-sizing: border-box;
  width: 100%;
  border: 0.5px solid rgba(162, 162, 162, 0.25);
  border-radius: 8px;
  background-color: #FFFFFF;
  box-shadow: 0 1px 0 0 rgba(10, 31, 68, 0.1), 0 3px 4px 0 rgba(10, 31, 68, 0.12);
  margin: 0 auto;
  text-align: center;
  padding: 1rem;
  border: 2px solid #ffffff00;
}
.DSMCarousel-Container .dsm-carousel-item:hover {
  border: 2px solid #2541C7;
  cursor: pointer;
}
.DSMCarousel-Container.move-left .slick-track {
  margin-left: 0;
}

.MobileSlide {
  position: absolute;
  width: 100%;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  left: 0;
}

.LeadGenerationPopUp-Image {
  text-align: center;
}
.LeadGenerationPopUp-Illustration {
  margin: 10px 0px 0px 0px;
  height: 53px;
  width: 53px;
}
@media (min-width: 1024px) {
  .LeadGenerationPopUp-Container {
    height: 254px;
    width: 300px;
    border-radius: 8px;
    background: #FFFFFF;
    box-shadow: 0 1px 15px -5px rgba(10, 31, 68, 0.2), 0 1px 15px -5px rgba(10, 31, 68, 0.2);
  }
}
.LeadGenerationPopUp-Header {
  color: #2541C7;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.LeadGenerationPopUp-Text {
  color: #0a1f44;
  font-size: 12px;
  font-weight: 300;
  text-align: center;
}
.LeadGenerationPopUp-Close {
  text-align: right;
  margin: 0px 10px 0px 0px;
  cursor: pointer;
}
.LeadGenerationPopUp-Button {
  text-align: center;
}
.LeadGenerationPopUp-Mobile-Illustration {
  margin: 10px 40px 10px 10px;
  height: 25px;
  width: 25px;
}
.LeadGenerationPopUp-Mobile-Header {
  color: #2541C7;
  font-weight: 500;
  line-height: 15ems;
}

.LeadGenerationForm-Title {
  color: #0a1f44;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.LeadGenerationForm-Text {
  color: #5E6870;
  font-size: 14px;
  font-weight: 300;
  margin: 8px 0px 12px 0px;
}
.LeadGenerationForm-Cta {
  text-align: right;
}
.LeadGenerationForm-Confirm-Image {
  text-align: center;
}
.LeadGenerationForm-Confirm-Illustration {
  height: 150px;
  width: 150px;
}
.LeadGenerationForm-Confirm-Header {
  color: #0a1f44;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-align: center;
}
.LeadGenerationForm-Confirm-Text {
  color: #5E6870;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  text-align: center;
}
.LeadGenerationForm .Button-text {
  -webkit-transform: translate3d(0, 0, 0);
}

.AnimatedIcon-Plan {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 82%;
}
.AnimatedIcon-Plan .background {
  position: absolute;
  width: 81%;
  top: 0;
  left: 7%;
}
.AnimatedIcon-Plan .stick {
  position: absolute;
  top: 13%;
  width: 100%;
  left: 0;
}
.AnimatedIcon-Plan .left-hand {
  position: absolute;
  width: 38%;
  top: 32%;
  left: 19.8%;
  z-index: 10;
  transform-origin: center right;
}
.AnimatedIcon-Plan .right-hand {
  position: absolute;
  width: 38%;
  top: 17%;
  left: 42.3%;
  z-index: 10;
  transform-origin: center left;
}
.AnimatedIcon-Plan.animate .left-hand {
  animation: animated-icon-plan-shake 0.8s linear 0.5s;
  -webkit-animation: animated-icon-plan-shake 0.8s linear 0.5s;
}
.AnimatedIcon-Plan.animate .right-hand {
  animation: animated-icon-plan-shake 0.8s linear;
  -webkit-animation: animated-icon-plan-shake 0.8s linear;
}

@-webkit-keyframes animated-icon-plan-shake {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-12deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes animated-icon-plan-shake {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-12deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.AnimatedIcon-Website {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 61%;
}
.AnimatedIcon-Website .background {
  position: absolute;
  width: 90%;
  top: 0;
  left: 0;
}
.AnimatedIcon-Website .web-page {
  position: absolute;
  width: 58%;
  top: 23%;
  left: 14%;
  z-index: 9;
}
.AnimatedIcon-Website .overlay {
  position: absolute;
  width: 33%;
  top: 41.7%;
  left: 15%;
  z-index: 10;
}
.AnimatedIcon-Website.animate .overlay {
  animation: animated-icon-website-slide-up 0.5s ease;
  -webkit-animation: animated-icon-website-slide-up 0.5s ease;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}

@-webkit-keyframes animated-icon-website-slide-up {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-7%, -13%);
  }
}

@keyframes animated-icon-website-slide-up {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-7%, -13%);
  }
}
.AnimatedIcon-Email {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 88%;
}
.AnimatedIcon-Email .phone {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.AnimatedIcon-Email .overlay-email {
  position: absolute;
  top: 33.7%;
  left: 43.5%;
  width: 42%;
  z-index: 100;
}
.AnimatedIcon-Email .trash-can {
  position: absolute;
  top: 36.7%;
  left: 79%;
  width: 6%;
}
.AnimatedIcon-Email.animate .overlay-email {
  animation: animated-icon-email-slide 1.5s;
  -webkit-animation: animated-icon-email-slide 1.5s;
}

@-webkit-keyframes animated-icon-email-slide {
  0% {
    left: 43.5%;
  }
  50% {
    left: 38.5%;
  }
  100% {
    left: 43.5%;
  }
}

@keyframes animated-icon-email-slide {
  0% {
    left: 43.5%;
  }
  50% {
    left: 38.5%;
  }
  100% {
    left: 43.5%;
  }
}
.AnimatedIcon-Localworks {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 92.3%;
}
.AnimatedIcon-Localworks .page {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.AnimatedIcon-Localworks .pin {
  position: absolute;
  top: 6%;
  left: 41.5%;
  width: 10%;
  transition: all 0.1s;
}
.AnimatedIcon-Localworks.animate .pin {
  animation: animated-icon-localworks-identifier linear 1s;
  -webkit-animation: animated-icon-localworks-identifier linear 1s;
}

@-webkit-keyframes animated-icon-localworks-identifier {
  0% {
    transform: rotate3d(0, 2, 0, 0deg) scale(1, 1);
  }
  10% {
    transform: rotate3d(0, 2, 0, 90deg) scale(1.05, 1.05);
  }
  50% {
    transform: rotate3d(0, 2, 0, 900deg) scale(1.2, 1.2);
  }
  90% {
    transform: rotate3d(0, 2, 0, 1710deg) scale(1.05, 1.05);
  }
  100% {
    transform: rotate3d(0, 2, 0, 1800deg) scale(1, 1);
  }
}

@keyframes animated-icon-localworks-identifier {
  0% {
    transform: rotate3d(0, 2, 0, 0deg) scale(1, 1);
  }
  10% {
    transform: rotate3d(0, 2, 0, 90deg) scale(1.05, 1.05);
  }
  50% {
    transform: rotate3d(0, 2, 0, 900deg) scale(1.2, 1.2);
  }
  90% {
    transform: rotate3d(0, 2, 0, 1710deg) scale(1.05, 1.05);
  }
  100% {
    transform: rotate3d(0, 2, 0, 1800deg) scale(1, 1);
  }
}
.AnimatedIcon-Grow {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 77%;
}
.AnimatedIcon-Grow .graph {
  position: absolute;
  width: 100%;
  top: 12%;
  left: 0;
}
.AnimatedIcon-Grow .points {
  position: absolute;
  left: 23%;
  width: 54.5%;
  left: 23%;
  top: 0;
}
.AnimatedIcon-Grow.animate .points {
  animation: animated-icon-grow-jiggle 0.5s;
  -webkit-animation: animated-icon-grow-jiggle 0.5s;
}

@-webkit-keyframes animated-icon-grow-jiggle {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(-5deg);
  }
  20% {
    transform: rotate(5deg);
  }
  30% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
  60% {
    transform: rotate(0deg);
  }
  70% {
    transform: rotate(-5deg);
  }
  80% {
    transform: rotate(5deg);
  }
  90% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}

@keyframes animated-icon-grow-jiggle {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(-5deg);
  }
  20% {
    transform: rotate(5deg);
  }
  30% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
  60% {
    transform: rotate(0deg);
  }
  70% {
    transform: rotate(-5deg);
  }
  80% {
    transform: rotate(5deg);
  }
  90% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}
.AnimatedIcon-Online {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 107%;
}
.AnimatedIcon-Online .computer {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.AnimatedIcon-Online .ladder {
  position: absolute;
  top: 56%;
  left: 29.5%;
  width: 12.4%;
  z-index: 10;
}
.AnimatedIcon-Online .screen {
  position: absolute;
  top: 36%;
  left: 35.5%;
  width: 52.3%;
  z-index: 9;
}
.AnimatedIcon-Online.animate .screen {
  animation: animated-icon-online-scroll 1s ease;
  -webkit-animation: animated-icon-online-scroll 1s ease;
}

@-webkit-keyframes animated-icon-online-scroll {
  0% {
    transform: translateY(0%);
  }
  25% {
    transform: translateY(-25%);
  }
  75% {
    transform: translateY(18%);
  }
  100% {
    transform: translateY(0%);
  }
}

@keyframes animated-icon-online-scroll {
  0% {
    transform: translateY(0%);
  }
  25% {
    transform: translateY(-25%);
  }
  75% {
    transform: translateY(18%);
  }
  100% {
    transform: translateY(0%);
  }
}
.AnimatedIcon-Manage {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 96%;
}
.AnimatedIcon-Manage .background {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.AnimatedIcon-Manage .folder {
  position: absolute;
  width: 70%;
  top: 30%;
  left: 16%;
  z-index: 10;
}
.AnimatedIcon-Manage .left-file {
  position: absolute;
  width: 32%;
  top: 13%;
  left: 20%;
  z-index: 9;
}
.AnimatedIcon-Manage .middle-file {
  position: absolute;
  width: 38%;
  top: 3.5%;
  left: 35%;
  z-index: 8;
}
.AnimatedIcon-Manage .right-file {
  position: absolute;
  width: 33%;
  top: 15%;
  left: 51%;
  z-index: 7;
}
.AnimatedIcon-Manage.animate .left-file {
  animation: animated-icon-manage-left 1s forwards ease;
  -webkit-animation: animated-icon-manage-left 1s forwards ease;
}
.AnimatedIcon-Manage.animate .middle-file {
  animation: animated-icon-manage-middle 1s forwards ease;
  -webkit-animation: animated-icon-manage-middle 1s forwards ease;
}
.AnimatedIcon-Manage.animate .right-file {
  animation: animated-icon-manage-right 1s forwards ease;
  -webkit-animation: animated-icon-manage-right 1s forwards ease;
}

@-webkit-keyframes animated-icon-manage-left {
  33% {
    top: 25%;
  }
  100% {
    top: 25%;
  }
}

@keyframes animated-icon-manage-left {
  33% {
    top: 25%;
  }
  100% {
    top: 25%;
  }
}
@-webkit-keyframes animated-icon-manage-middle {
  33% {
    top: 3.5%;
  }
  66% {
    top: 25%;
  }
  100% {
    top: 25%;
  }
}
@keyframes animated-icon-manage-middle {
  33% {
    top: 3.5%;
  }
  66% {
    top: 25%;
  }
  100% {
    top: 25%;
  }
}
@-webkit-keyframes animated-icon-manage-right {
  33% {
    top: 15%;
    left: 51%;
  }
  66% {
    top: 15%;
    left: 51%;
  }
  100% {
    top: 28.7%;
    left: 44.5%;
  }
}
@keyframes animated-icon-manage-right {
  33% {
    top: 15%;
    left: 51%;
  }
  66% {
    top: 15%;
    left: 51%;
  }
  100% {
    top: 28.7%;
    left: 44.5%;
  }
}
.AnimatedIcon-Start {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 94%;
}
.AnimatedIcon-Start .background {
  position: absolute;
  top: 12%;
  left: 0;
  width: 95%;
}
.AnimatedIcon-Start .computer {
  position: absolute;
  width: 76%;
  top: 26%;
  left: 21%;
  z-index: 10;
}
.AnimatedIcon-Start .balloon-container {
  position: absolute;
  width: 18%;
  z-index: 9;
  top: 12%;
  left: 75%;
  transition: all 0.1s;
}
.AnimatedIcon-Start .balloon {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  transition: all 0.1s;
}
.AnimatedIcon-Start.animate .balloon-container {
  animation: animated-icon-start-balloon-xAxis 1s forwards ease-in-out;
  -webkit-animation: animated-icon-start-balloon-xAxis 1s forwards ease-in-out;
}
.AnimatedIcon-Start.animate .balloon {
  animation: animated-icon-start-balloon-yAxis 1s forwards ease-in-out;
  -webkit-animation: animated-icon-start-balloon-yAxis 1s forwards ease-in-out;
}

@-webkit-keyframes animated-icon-start-balloon-xAxis {
  0% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(-30%);
  }
  100% {
    transform: translateX(40%);
  }
}

@keyframes animated-icon-start-balloon-xAxis {
  0% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(-30%);
  }
  100% {
    transform: translateX(40%);
  }
}
@-webkit-keyframes animated-icon-start-balloon-yAxis {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-60%);
  }
}
@keyframes animated-icon-start-balloon-yAxis {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-60%);
  }
}
.BIBIcon {
  display: inline-block;
  width: 100%;
  padding-top: 100%;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  content: "";
}
.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #FFFFFF;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }

  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
.modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1280px) {
  .modal-xl {
    max-width: 1140px;
  }
}
/* Colors {{{*/
/* gray between gray-3 & gray-4 */
/* }}} */
/* Button variables {{{*/
/* }}} */
/* Guide background colors {{{*/
/* }}} */
/* Section Padding {{{ */
/* TODO: change this to a map */
/* }}} */
/* csdasda */
/* Font styles {{{*/
/* @import "mixins/font"; */
@font-face {
  font-family: "HCo Gotham SSm";
  src: url("https://ysbadvisor.com/resource-center/wp-includes/assets/fonts/GothamSSm-Light_Web.woff2") format("woff2"), url("https://ysbadvisor.com/resource-center/wp-includes/assets/fonts/GothamSSm-Light_Web.woff") format("woff");
  font-weight: 300;
  font-display: fallback;
  font-style: normal;
}
@font-face {
  font-family: "HCo Gotham SSm";
  src: url("https://ysbadvisor.com/resource-center/wp-includes/assets/fonts/GothamSSm-Book_Web.woff2") format("woff2"), url("https://ysbadvisor.com/resource-center/wp-includes/assets/fonts/GothamSSm-Book_Web.woff") format("woff");
  font-weight: 400;
  font-display: fallback;
  font-style: normal;
}
@font-face {
  font-family: "HCo Gotham SSm";
  src: url("https://ysbadvisor.com/resource-center/wp-includes/assets/fonts/GothamSSm-Medium_Web.woff2") format("woff2"), url("https://ysbadvisor.com/resource-center/wordpress/wp-includes/assets/fonts/GothamSSm-Medium_Web.woff") format("woff");
  font-weight: 500;
  font-display: fallback;
  font-style: normal;
}
@font-face {
  font-family: "HCo Gotham SSm";
  src: url("https://ysbadvisor.com/resource-center/wp-includes/assets/fonts/GothamSSm-Bold_Web.woff2") format("woff2"), url("https://ysbadvisor.com/resource-center/wp-includes/assets/fonts/GothamSSm-Bold_Web.woff") format("woff");
  font-weight: 700;
  font-display: fallback;
  font-style: normal;
}
h2, .h2 {
  /* TBD */
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 36px;
  line-height: 2.25rem;
  font-weight: 700;
}

h3, .h3 {
  /* TBD */
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 28px;
  line-height: 1.75rem;
  font-weight: 400;
}

h4, .h4 {
  /* TBD */
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 24px;
  line-height: 1.5rem;
  font-weight: 400;
}

.author {
  /* TBD */
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 16px;
  line-height: 1rem;
  font-weight: 300;
}

/* }}} */
html {
  font-size: 14px;
}
@media (min-width: 576px) {
  html {
    font-size: 16px;
  }
}

@-webkit-keyframes slide-in {
  0% {
    -webkit-transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}

@keyframes slide-in {
  0% {
    -webkit-transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
@-webkit-keyframes slide-out {
  0% {
    -webkit-transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
  }
}
@keyframes slide-out {
  0% {
    -webkit-transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
  }
}
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
/* @import 'button'; */
/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* @import "base/base"; */
/* STYLES begin */
html.overlay-active {
  overflow: hidden;
}
html.overlay-active body {
  overflow: hidden;
}

body {
  max-width: 1280px;
  margin: auto;
  background-color: white;
  color: #262626;
}

.text-light {
  opacity: 0.5 !important;
  color: inherit !important;
}

/*
  between sections: 50px
  between header & content: 20px
*/
section {
  padding: 0 15px;
}
section.Section-pb {
  padding-bottom: 20px;
}
section:not(:first-child) {
  padding-top: 20px;
}
@media (min-width: 768px) {
  section {
    padding: 0 25px;
  }
  section.Section-pb {
    padding-bottom: 30px;
  }
  section:not(:first-child) {
    padding-top: 30px;
  }
}
@media (min-width: 992px) {
  section {
    padding: 0 100px;
  }
  section.Section-pb {
    padding-bottom: 50px;
  }
  section:not(:first-child) {
    padding-top: 50px;
  }
}
section .Section-Header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
section .Section-Header .title {
  flex-grow: 1;
  margin-bottom: 0;
}

.section {
  padding: 0 15px;
}
@media (min-width: 768px) {
  .section {
    padding: 0 25px;
  }
}
@media (min-width: 992px) {
  .section {
    padding: 0 100px;
  }
}

@media (min-width: 1280px) {
  .row-nowrap {
    flex-wrap: nowrap;
    overflow: hidden;
  }
}

@media (min-width: 1280px) {
  .col-lg-6-padded:nth-child(even) {
    padding-left: 45px;
  }
  .col-lg-6-padded:nth-child(odd) {
    padding-right: 45px;
  }
}

.spinner {
  margin: 20px auto 0;
  width: 70px;
  text-align: center;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.spinner.small {
  display: inline-block;
  margin: 0;
}

.spinner.small div {
  height: 8px;
  width: 8px;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #2542C7;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

/* Typography
--------------------------------------------- */
/* Elements
--------------------------------------------- */
/* @import "elements/body";
@import "elements/hr";
@import "elements/lists";
@import "elements/media";
@import "elements/tables";
 */
/* Links
--------------------------------------------- */
/* Forms
--------------------------------------------- */
/* footer {
  height: 200px;
} */
.Featured-Carousel {
  position: relative;
}
.Featured-main {
  height: 270px;
}
@media (min-width: 768px) {
  .Featured-main {
    height: 450px;
  }
}
@media (min-width: 992px) {
  .Featured-main {
    height: 320px;
  }
}
.Featured .Featured-List-wrapper {
  /* padding-left: 45px; */
  display: flex;
  flex-direction: column;
}
.Featured .Featured-List-wrapper .Featured-List {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.Featured .Featured-List-wrapper .Featured-List .Featured-List-item {
  margin: 25px 0;
}

.Post-thumbnail-mod {
  margin-bottom: 5px;
}
.Post-thumbnail-mod img {
  width: 100%;
  max-width: 370px;
  max-height: 140px;
  height: 140px;
}

.Post-News .Post-thumbnail {
  border: 1px solid #B7B7B7;
}

.Post-Tools .Post-thumbnail {
  text-align: center;
}
.Post-Tools .Post-thumbnail img {
  width: 150px;
  height: 150px;
}

.Testimonials {
  background-color: #FBFBFB;
}
.Testimonials .Testimonial-Wrapper .Testimonial-image {
  width: 100%;
  height: 270px;
  padding: 10px;
  border: 1px solid #969696;
  margin-bottom: 10px;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.1);
}
.Testimonials .Testimonial-Wrapper .Testimonial-image .Testimonial-bg-1 {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position-y: -60px;
  background-image: url("http://marycherry.corp.gq1.yahoo.com:6080/mocks/assets/images/testimonials1.jpeg");
}
.Testimonials .Testimonial-Wrapper .Testimonial-image .Testimonial-bg-2 {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position-y: -60px;
  background-image: url("http://marycherry.corp.gq1.yahoo.com:6080/mocks/assets/images/testimonials2.jpeg");
}
.Testimonials .Testimonial-Wrapper .Testimonial-image .Testimonial-bg-3 {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position-y: -60px;
  background-image: url("http://marycherry.corp.gq1.yahoo.com:6080/mocks/assets/images/testimonials3.jpeg");
}
.Testimonials .Testimonial-Wrapper .Testimonial-title {
  margin-bottom: 5px;
}
article .entry-header {
  margin-top: 20px;
}
@media (min-width: 768px) {
  article .entry-header {
    margin-top: 0;
  }
}
article .entry-header .entry-title {
  font-size: 32px;
  line-height: 38px;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
header .Header-Container {
  display: flex;
  align-items: center;
  /* overflow: hidden; */
  /* TBD */
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 16px;
  line-height: 1rem;
  font-weight: 500;
}
header .Header-Container .Header-List {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  /*TODO: revisit link styles*/
}
header .Header-Container .Header-List .menu-item {
  margin: 0 15px;
  /* @include clickable(); */
}
header .Header-Container .Header-List .menu-item a {
  color: #666666;
  display: block;
  padding: 10px 0;
  white-space: nowrap;
}
header .Header-Container .Header-List .menu-item a:visited {
  color: #666666;
}
header .Header-Container .Header-List .menu-item a.Link-cta {
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid #666666;
}
header .Header-Container .Header-List .menu-item .inverseText {
  color: #FFFFFF;
}
header .Header-Container .Header-List .menu-item .inverseText a.Link-cta {
  border-bottom-color: #FFFFFF;
}
header .Header-Container .Header-List .menu-item .inverseText a:visited {
  color: #FFFFFF;
}
header .Header-Primary {
  height: 76px;
  padding-top: 20px;
  padding-bottom: 10px;
  box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.1);
  justify-content: space-between;
}
header .Header-Primary .logo {
  margin-right: 32px;
}
header .Header-Primary .logo img {
  height: 36px;
  width: 132px;
}
header .Header-Primary-List {
  flex: 1;
}
header .Header-Primary-List .menu-item-has-children {
  position: relative;
}
header .Header-Primary-List .menu-item-has-children > a::after {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 8px;
}
header .Header-Primary-List .menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  padding: 20px 31px 16px 16px;
  background-color: white;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  list-style: none;
  z-index: 10;
  left: -15px;
}
header .Header-Primary-List .menu-item-has-children .sub-menu .menu-item:first-child a {
  padding-top: 0;
}
header .Header-Primary-List .menu-item-has-children.active > a::after {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 8px;
}
header .Header-Primary-List .menu-item-has-children.active .sub-menu {
  display: block;
}
header .Header-Primary-List .menu-item-has-children.active .sub-menu::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  height: 25px;
  background-color: #FFFFFF;
}
header .Header-Primary-Right-List .menu-item.contact-info a {
  color: #2542C7;
  padding-bottom: 0;
}
header .Header-Primary-Right-List .menu-item.contact-info::after {
  content: "Contact us 24/7";
  display: block;
  text-align: center;
  /* TBD */
  font-size: 8.5px;
  font-size: 0.53125rem;
  line-height: 13px;
  line-height: 0.8125rem;
  font-weight: 300;
}
header .Header-Primary .Header-Mobile-Menu-icon {
  font-size: 30px;
  color: #2542C7;
  cursor: pointer;
}
@media (min-width: 1280px) {
  header .Header-Primary {
    justify-content: unset;
  }
}
header .Header-Secondary {
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
  padding-top: 10px;
  padding-bottom: 10px;
  height: 64px;
  justify-content: space-between;
}
header .Header-Mobile-Menu-Container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: #FFFFFF;
}
header .Header-Mobile-Menu-Container .Header-Mobile-Menu-Main {
  background-color: #2542C7;
  color: #FFFFFF;
  padding-top: 20px;
  padding-bottom: 20px;
}
header .Header-Mobile-Menu-Container .Header-Mobile-Menu-Secondary {
  padding-top: 0;
}
header .Header-Mobile-Menu-Container .close-container {
  /* TBD */
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 28px;
  line-height: 1.75rem;
  font-weight: 400;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
header .Header-Mobile-Menu-Container .close-container .close, header .Header-Mobile-Menu-Container .close-container .back {
  cursor: pointer;
}
header .Header-Mobile-Menu-Container .SearchBox-Container {
  max-width: unset;
}
header .Header-Mobile-Menu-Container .Social-Row-Container {
  border-bottom: 1px solid #DBD4D4;
  margin-bottom: 20px;
}
header .Header-Mobile-Menu-Container .Header-List {
  list-style: none;
  padding-left: 0;
}
header .Header-Mobile-Menu-Container .Header-List a {
  color: inherit;
}
header .Header-Mobile-Menu-Container .Header-List .menu-item {
  margin-bottom: 20px;
}
header .Header-Mobile-Menu-Container .Header-List.Header-Primary-List {
  padding: 30px 0 10px 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.3);
}
header .Header-Mobile-Menu-Container .Header-List.Header-Sub-Menu-List {
  padding-top: 30px;
}
header .Header-Mobile-Menu-Container .Header-List.Header-Primary-Right-List .menu-item.contact-info::after {
  text-align: left;
  /* TBD */
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 16px;
  line-height: 1rem;
  font-weight: 300;
}

/*
footer {
  @include font-style("footer");

  .Footer-Menus {
    display: flex;
    justify-content: space-around;

    .Footer-Menu-Container {
      &-hd {
        margin-bottom: 16px;
        @include font-style("footer");
        @include font-weight("bold");
      }

      .Footer-Menu-List {
        list-style: none;
        padding-left: 0;

        li {
          padding-bottom: 1rem;
        }
      }
    }
  }
}
*/
footer {
  padding-top: 50px;
}

.footer-bottom {
  border-top: 1px solid #e1e1e1;
  padding: 20px 0;
  background-color: #f3f3f3;
  font-size: 11px;
  font-weight: 300;
}

.footer-bottom .copyrights {
  text-align: right;
  line-height: 30px;
}

.footer-bottom ul, .footer-bottom li {
  display: inline-block;
}

.footer-bottom a, .footer-bottom a:visited {
  color: #000;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #2542c7;
}

.footer-bottom .terms-menu {
  line-height: 30px;
}

.footer-bottom .terms-menu li:not(:last-child):after {
  content: " | ";
}

footer {
  /* TBD */
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 16px;
  line-height: 1rem;
  font-weight: 300;
}
footer .Footer-Menus {
  display: flex;
  justify-content: space-around;
}
footer .Footer-Menus .Footer-Menu-Container-hd {
  margin-bottom: 16px;
  /* TBD */
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 16px;
  line-height: 1rem;
  font-weight: 300;
  font-weight: 700;
}
footer .Footer-Menus .Footer-Menu-Container .Footer-Menu-List {
  list-style: none;
  padding-left: 0;
}
footer .Footer-Menus .Footer-Menu-Container .Footer-Menu-List li {
  padding-bottom: 1rem;
}
footer .Footer-Menus .Footer-Menu-Container .Footer-Menu-List li a, footer .Footer-Menus .Footer-Menu-Container .Footer-Menu-List li a:visited {
  text-decoration: none;
  color: #262626;
}
footer .Footer-Top {
  overflow: hidden;
  width: 100%;
  background-color: #2542C7;
  padding: 20px 0;
  margin-bottom: 40px;
  text-align: center;
  color: #fff;
}
footer .Footer-Top-helpText {
  display: inline-block;
  font-weight: 500;
}
footer .Footer-Top-callUs {
  display: inline-block;
  padding-left: 10px;
  font-weight: 300;
}
footer .Footer-Top-telNumber {
  display: inline-block;
  font-weight: 500;
  padding-left: 10px;
}
footer .Footer-Top-telNumber a {
  color: #fff;
  text-decoration: underline;
}
footer .Footer-Top-telNumber a:hover {
  color: #fff;
}

.SearchBox-Container {
  display: flex;
  max-width: 270px;
  /** Addition styling in header.scss for mobile **/
  flex-grow: 1;
}
.SearchBox-Container form {
  flex: 1;
  position: relative;
}
.SearchBox-Container form .form-control {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  height: unset;
  flex: 1;
}
.SearchBox-Container form .SearchBox-icon {
  position: absolute;
  top: 8px;
  right: 2px;
  font-size: 1.75rem;
  display: inline;
  border: none;
  background: none;
}
.SearchBox-Container form .SearchBox-icon::before {
  content: "";
  font-family: "UI Element Icons";
  font-style: normal;
  font-weight: 400 !important;
  line-height: 1em;
  vertical-align: top;
}

/*TEST
a {
  color: $base-color;
  display: inline-block;
}

a:visited {
  color: $base-color;
}
*/
a.Link-cta {
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid #262626;
}

.Linka, .Link a {
  color: #262626;
  display: inline-block;
}
.Linka:visited, .Link a:visited {
  color: #262626;
}
.Linka:hover, .Link a:hover {
  color: #2542C7;
}
.Link .Link-content,
.Link a.Link-content {
  color: #262626;
}
.Link .Link-content:hover,
.Link a.Link-content:hover {
  color: #2542C7;
}
.Link .Link-content.Link-navigation,
.Link a.Link-content.Link-navigation {
  color: #262626;
}
.Link .Link-content.Link-navigation:visited,
.Link a.Link-content.Link-navigation:visited {
  color: #262626;
}
.Link .Link-content.Link-navigation:hover,
.Link a.Link-content.Link-navigation:hover {
  color: #2542C7;
}
.Link .Link-content.Link-navigation.Link-navigation-active,
.Link a.Link-content.Link-navigation.Link-navigation-active {
  color: #262626;
}
.Link .Link-content.Link-navigation.Link-navigation-active:visited,
.Link a.Link-content.Link-navigation.Link-navigation-active:visited {
  color: #262626;
}
.Link .Link-content.Link-navigation.Link-navigation-active:hover,
.Link a.Link-content.Link-navigation.Link-navigation-active:hover {
  color: #2542C7;
}
.Link .Link-content:visited,
.Link a.Link-content:visited {
  color: #262626;
}

/* .inverseText {
  color: $white;

  a.Link-cta {
    border-bottom-color: $white;
  }

  a:visited {
    color: $white;
  }
} */
.tags-container {
  border-top: 1px solid #D1D1D1;
  border-bottom: 1px solid #D1D1D1;
  padding: 24px 0 24px 0;
  margin-bottom: 40px;
  margin-top: 20px;
}

.tags-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
}
.tags-list .Link a.Link-content:hover,
.tags-list .Link .Link-content:hover {
  color: #262626;
}

.tags-item {
  background: #F5F5F5;
  border: 1px solid #AAAAAA;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 10px 20px;
  margin-right: 16px;
  margin-top: 5px;
  list-style: none;
  /* TBD */
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 16px;
  line-height: 1rem;
  font-weight: 400;
}

.Page-Header {
  margin-top: 20px;
}
.Page-Header .title .subtext {
  /* TBD */
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 16px;
  line-height: 1rem;
  font-weight: 500;
}

.sidebar {
  margin-top: 20px;
}
@media (min-width: 1280px) {
  .sidebar {
    margin-top: 0;
  }
}

.Author-wrapper {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.Author-wrapper .author-icon {
  width: 32px;
  height: 32px;
  margin-right: 10px;
  border-radius: 50%;
}
.Author-wrapper .author-icon.default {
  background-color: #2542C7;
}
.Author-wrapper .author {
  margin-bottom: 0;
  flex-grow: 1;
}
.Author-wrapper .next-icon-container {
  font-size: 18px;
}
.Author-wrapper .next-icon-container a, .Author-wrapper .next-icon-container a:hover, .Author-wrapper .next-icon-container a:visited {
  color: inherit;
}
.Author-wrapper .subtext {
  /* TBD */
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 16px;
  line-height: 1rem;
  font-weight: 300;
  margin-bottom: 0;
}
.Author-wrapper .rt-age-container {
  margin-bottom: 0;
  color: rgba(0, 0, 0, 0.5);
  /* TBD */
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 16px;
  line-height: 1rem;
  font-weight: 300;
}

.Post-Wrapper {
  display: flex;
  margin-bottom: 20px;
  /* This is reqd to remove the gap between title & author block */
}
.Post-Wrapper .tag {
  color: #666666;
  margin-top: 10px;
  margin-bottom: 10px;
  /* TBD */
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 16px;
  line-height: 1rem;
  font-weight: 300;
}
.Post-Wrapper .excerpt {
  opacity: 0.5 !important;
  color: inherit !important;
  margin-top: 5px;
  /* TBD */
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 16px;
  line-height: 1rem;
  font-weight: 400;
}
.Post-Wrapper .Post-thumbnail {
  margin-bottom: 5px;
  display: flex;
}
.Post-Wrapper .Post-thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}
.Post-Wrapper .Post-thumbnail img.default {
  -o-object-position: center;
     object-position: center;
}
.Post-Wrapper .Post-thumbnail-lg img {
  width: 100%;
  height: 240px;
}
.Post-Wrapper .Post-thumbnail-md img {
  width: 100%;
  height: 180px;
}
.Post-Wrapper .Post-subtext {
  /* TBD */
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 16px;
  line-height: 1rem;
  font-weight: 300;
}
.Post-Wrapper-row {
  flex-direction: column;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .Post-Wrapper-row {
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .Post-Wrapper-row {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .Post-Wrapper-row.Post-Wrapper-row-md-reverse {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
  .Post-Wrapper-row.Post-Wrapper-row-md-reverse .Post-bottom-container {
    flex-grow: 1;
  }
}
@media (min-width: 1280px) {
  .Post-Wrapper-row.Post-Wrapper-row-md-reverse {
    flex-direction: row;
    justify-content: unset;
  }
  .Post-Wrapper-row.Post-Wrapper-row-md-reverse .Post-bottom-container {
    flex-grow: unset;
  }
}
.Post-Wrapper-row .Post-container {
  margin-right: 10px;
}
.Post-Wrapper-row .Post-thumbnail img {
  width: 100%;
  height: 180px;
}
@media (min-width: 768px) {
  .Post-Wrapper-row .Post-thumbnail img {
    width: 270px;
    height: 136px;
  }
}
@media (min-width: 992px) {
  .Post-Wrapper-row .Post-thumbnail img {
    width: 270px;
    height: 136px;
  }
}
.Post-Wrapper-col {
  flex-direction: column;
  justify-content: space-between;
}
.Post-Wrapper.Post-Featured {
  /* This is reqd to remove the gap between title & author block */
}
.Post-Wrapper.Post-Featured .Post-thumbnail img {
  height: 320px;
}
.Post-Wrapper.Post-Featured.Post-Wrapper-row .Post-Container {
  width: 100%;
}
.Post-Wrapper.Post-Featured .Post-thumbnail-link-container .Link-content {
  width: 100%;
}
.Post-Wrapper.Post-Featured .Author-wrapper {
  margin-top: 0;
}
.Post-Wrapper.Post-Featured .excerpt {
  margin-bottom: 0;
}
.Post-Wrapper .Author-wrapper {
  margin-top: 0;
}
.Post-Wrapper .Post-thumbnail-link-container {
  display: flex;
  justify-content: center;
}

.Post-Latest-Container .Author-wrapper {
  display: none;
}

.Post-Webinar-live .Post-thumbnail {
  border-bottom: 2px solid #FF4014;
}
.Post-Webinar-live .Post-thumbnail img {
  height: 238px;
}
.Post-Webinar-live .tag {
  color: #FF4014;
}
.Post-Webinar-live .tag::after {
  content: "LIVE";
}
.Post-Webinar-live .Post-thumbnail, .Post-Webinar-archived .Post-thumbnail {
  position: relative;
}
.Post-Webinar-live .Post-thumbnail .fa-play-circle, .Post-Webinar-archived .Post-thumbnail .fa-play-circle {
  position: absolute;
  bottom: 5px;
  left: 5px;
  font-size: 40px;
  color: #FFFFFF;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
}

.Post-Guide {
  /* 
  @for $i from 1 through 4 {
    &.Post-Guide-# {$i} {
      .Post-thumbnail {
        background-color: list.nth($guide-bg, $i);
      }
    }
  }
  */
}
.Post-Guide .Post-thumbnail {
  padding: 10px;
}
.Post-Guide .Post-thumbnail-lg img {
  height: 220px;
}
.Post-Guide .Post-thumbnail-md img {
  height: 160px;
}

.Post-Guide-Container {
  /* @for $i from 1 through 4 {
    .Post-Guide:nth-child(4n + # {$i}) {
      .Post-thumbnail {
        background-color: list.nth($guide-bg, $i) !important;
      }
    }
  } */
}
.Post-Guide-Container .Post-thumbnail-link-container {
  background-color: #f3f3f3;
  padding: 10px 0;
}
@media (min-width: 1280px) {
  .Post-Guide-Container .Post-thumbnail-link-container {
    background-color: unset;
    padding: 0;
  }
}
.Post-Guide-Container .Post-thumbnail-container .Post-thumbnail {
  padding: 10px 10px 65px 10px;
  width: 230px;
  margin: auto;
}
.Post-Guide-Container .Post-thumbnail-container .Post-thumbnail img {
  height: 265px;
  max-height: 265px;
}
@media (min-width: 1280px) {
  .Post-Guide-Container .Post-thumbnail-container .Post-thumbnail {
    width: unset;
    padding-bottom: 85px;
  }
}

.Post-Detail-Container .post-thumbnail {
  margin-bottom: 20px;
}
.Post-Detail-Container .post-thumbnail img {
  width: 100%;
  height: 260px;
}
@media (min-width: 768px) {
  .Post-Detail-Container .post-thumbnail img {
    height: 375px;
  }
}
@media (min-width: 992px) {
  .Post-Detail-Container .post-thumbnail img {
    height: 410px;
  }
}

.Post-Detail-Guide .Button-Container {
  margin-bottom: 20px;
}
.Post-Detail-Guide .Button-Container .Button:first-child {
  margin-right: 20px;
}
.Post-Detail-Guide .Featured-Image-Container {
  padding: 30px 20px 150px 20px;
}
.Post-Detail-Guide .Featured-Image-Container img {
  width: 100%;
}
.Post-Detail-Guide .pdf-viewer-trigger {
  display: none;
}
@media (min-width: 1280px) {
  .Post-Detail-Guide .pdf-viewer-trigger {
    display: inline-flex;
  }
}
.Post-Detail-Guide .pdf-viewer-modal .modal-content {
  background-color: transparent;
  border: none;
}
.Post-Detail-Guide .pdf-viewer-modal .modal-content .modal-body {
  padding: 0;
}
.Post-Detail-Guide .pdf-viewer-modal .modal-content .modal-body .Button-container {
  margin: 10px 0;
}

.entry-content {
  display: flex;
  position: relative;
}
.entry-content a {
  color: #2542C7;
}
.entry-content a:visited, .entry-content a:hover {
  color: #2542C7;
}
.entry-content .entry-share-container {
  position: absolute;
  display: flex;
  align-items: flex-start;
  width: 100%;
  height: 100%;
}
@media (min-width: 1280px) {
  .entry-content .entry-share-container {
    margin-left: -65px;
    margin-right: 25px;
    position: unset;
    width: auto;
    height: auto;
  }
}
.entry-content .entry-share-container .entry-share-content {
  position: -webkit-sticky;
  position: sticky;
  z-index: 999;
  background-color: #FFFFFF;
  /* top: calc(100% - 60px); */
  bottom: 0px;
  padding: 5px 0;
  align-self: flex-end;
  flex: 1;
  display: flex;
  align-items: center;
}
.entry-content .entry-share-container .entry-share-content .text {
  margin-bottom: 0;
  margin-right: 30px;
  /* TBD */
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 28px;
  line-height: 1.75rem;
  font-weight: 400;
}
.entry-content .entry-share-container .entry-share-content .addtoany_list a:not(:first-child) {
  margin-left: 20px;
}
@media (min-width: 1280px) {
  .entry-content .entry-share-container .entry-share-content {
    top: 20px;
    align-self: flex-start;
  }
  .entry-content .entry-share-container .entry-share-content .text {
    display: none;
  }
  .entry-content .entry-share-container .entry-share-content .addtoany_list a:not(:first-child) {
    margin-left: 0;
  }
}
.entry-content .entry-content-container {
  padding-bottom: 40px;
}
@media (min-width: 1280px) {
  .entry-content .entry-content-container {
    padding-bottom: 0;
  }
}
.entry-content .entry-content-container .article-meta {
  display: none;
}

@media (min-width: 1280px) {
  .single #primary {
    padding-right: 50px;
  }
}

.Hero-row .Hero-image {
  width: 320px;
  height: 160px;
}
@media (min-width: 768px) {
  .Hero-row .Hero-image {
    width: 320px;
    height: 320px;
  }
}
@media (min-width: 992px) {
  .Hero-row .Hero-image {
    width: 570px;
    height: 320px;
  }
}
.Hero-row .Hero-image img {
  width: 100%;
  height: 100%;
}
.Hero-row .Hero-cta {
  margin-top: 20px;
}
.Hero-row .Hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .Hero-row .Hero-content {
    margin-top: 0;
  }
}

.Social-Row {
  display: flex;
  margin-top: 20px;
  margin-bottom: 20px;
  align-items: center;
  /* TODO: refer partials TODO */
}
.Social-Row-center {
  justify-content: center;
}
.Social-Row-right {
  justify-content: flex-end;
}
.Social-Row .Social-text {
  line-height: 25px;
}
.Social-Row .social {
  color: #979797;
  text-align: center;
}
.Social-Row .social .social-icon {
  margin: 0 0.5rem;
}
.Social-Row .social .social-icon-facebook {
  width: 27px;
  height: 27px;
}
.Social-Row .social .social-icon-twitter {
  width: 25px;
  height: 20px;
}
.Social-Row .social .social-icon-instagram {
  width: 36px;
  height: 36px;
}
.Social-Row .social .social-icon-linkedin {
  width: 23px;
  height: 23px;
}
.Social-Row .social .social-icon-pinterest {
  width: 33px;
  height: 33px;
}
.Social-Row .social .social-icon-youtube {
  width: 23px;
  height: 23px;
}

.Carousel-Container .Carousel-Indicators {
  list-style: none;
  display: flex;
  padding: 0;
}
.Carousel-Container .Carousel-Indicators .Carousel-Indicator {
  height: 7px;
  width: 7px;
  margin-right: 7px;
  border-radius: 50%;
  cursor: pointer;
  background-color: #E3E3E3;
}
.Carousel-Container .Carousel-Indicators .Carousel-Indicator.active {
  background-color: #2542C7;
}
.Carousel-Container .Carousel-Items {
  overflow: hidden;
  position: relative;
}
.Carousel-Container .Carousel-Items .Carousel-Item {
  position: absolute;
  width: 100%;
}
.Carousel-Container .Carousel-Items .Carousel-Item:not(.active) {
  transform: translateX(100%);
}
.Carousel-Container .Carousel-Items .Carousel-Item.inactive {
  -webkit-animation: slide-out 0.5s ease-out;
          animation: slide-out 0.5s ease-out;
}
.Carousel-Container .Carousel-Items .Carousel-Item.active {
  -webkit-animation: slide-in 0.5s ease-in;
          animation: slide-in 0.5s ease-in;
}
.Carousel-Container .pagination-prev,
.Carousel-Container .pagination-next {
  display: none;
}
@media (min-width: 992px) {
  .Carousel-Container .pagination-prev,
.Carousel-Container .pagination-next {
    display: block;
    position: absolute;
    top: 210px;
  }
}
@media (min-width: 992px) {
  .Carousel-Container .pagination-prev {
    left: 50px;
  }
}
@media (min-width: 992px) {
  .Carousel-Container .pagination-next {
    right: 50px;
  }
}

.pagination-button {
  /***
    * available content area: 28 x 28
    * content area of arrow rectangle: 12 - ( 3 + 3 ) = 6
    * position absolute of top left corner to center of circle: 14px ( 28 / 2 )
    * move up 3px (border) + 3px (half of content area) => top = 8px
    * similarly left = 8px
    * for next: 
    *   after rotation, need to translate center by (0.5) * diagonal
    *   and then again <result> * ~(0.5) to account for rotation
    *   => left =  ~ ( 8px - 3√2 ) ~ 5px
    * for prev:
    *   similarly left = ~ ( 8px + 3√2 ) ~ 11px
  ***/
  border: 1px solid #666666;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  position: relative;
  cursor: pointer;
}
.pagination-button .arrow {
  border: 3px solid #2542C7;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 13px;
}
.pagination-button.pagination-prev .arrow {
  left: 15.1213203436px;
  border-top-color: transparent;
  border-right-color: transparent;
  transform: rotate(45deg);
}
.pagination-button.pagination-next .arrow {
  left: 10.8786796564px;
  border-bottom-color: transparent;
  border-left-color: transparent;
  transform: rotate(45deg);
}

.pagination-views-container {
  overflow: hidden;
}
.pagination-views-container .pagination-views {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.pagination-views-container .pagination-views .pagination-view {
  flex: 0 0 100%;
  margin-right: 0;
  margin-left: 0;
  /* &:not(.active) {
    transform: translateX(100%);
  } */
  /* &.inactive {
    animation: slide-out 0.5s ease-out;
  }

  &.active {
    animation: slide-in 0.5s ease-in;
  } */
}

.pagination-pages {
  display: flex;
  justify-content: space-around;
  /* TBD */
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 16px;
  line-height: 1rem;
  font-weight: 300;
}
.pagination-pages .screen-reader-text {
  display: none;
}
.pagination-pages .nav-links {
  display: flex;
}
.pagination-pages .nav-links .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #666666;
  border-radius: 50%;
  color: #2542C7;
  height: 40px;
  min-width: 40px;
  margin-left: 10px;
}
.pagination-pages .nav-links .page-numbers.prev, .pagination-pages .nav-links .page-numbers.next {
  min-width: 60px;
  border-radius: 10em;
}
.pagination-pages .nav-links .page-numbers.dots {
  border: 0;
}
.pagination-pages .nav-links .page-numbers.current {
  border: 0;
  background-color: #2542C7;
  color: #FFFFFF;
}

.pdf-viewer-modal {
  max-width: 1180px;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget-header .title {
  font-weight: 500;
}

.featured-offerings-container {
  margin-top: 30px;
}
.featured-offerings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.featured-offerings-header .title {
  margin-bottom: 0;
}
.featured-offerings-list {
  list-style: none;
  padding-left: 0;
  margin-top: 30px;
}
.featured-offerings-list > .featured-offerings-item img {
  width: 125px;
  height: 125px;
  margin-bottom: 20px;
}
.featured-offerings-list > .featured-offerings-item .subtext {
  /* TBD */
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 16px;
  line-height: 1rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5);
}
.featured-offerings-list > .featured-offerings-item .Link {
  width: 100%;
}
.featured-offerings-list > .featured-offerings-item .Link .Link-content {
  width: 100%;
}
.featured-offerings-list > .featured-offerings-item:not(:first-child) {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .featured-offerings-list > .featured-offerings-item:not(:first-child) {
    margin-top: 0;
  }
}
.featured-offerings-homepage-container .featured-offerings-item {
  text-align: center;
}
.featured-offerings-homepage-container .featured-offerings-item .subtext {
  /* TBD */
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 16px;
  line-height: 1rem;
  font-weight: 400;
}

@media (min-width: 768px) and (max-width: 1279px) {
  .featured-products {
    padding-left: 50px;
  }
}
.featured-products-list {
  list-style: none;
  padding-left: 0;
}
.featured-products-item {
  display: flex;
  justify-content: space-between;
}
.featured-products-item:not(:last-child) {
  margin-bottom: 10px;
}

.related-articles-container {
  margin-bottom: 20px;
}
@media (min-width: 1280px) {
  .related-articles-container {
    margin-bottom: 50px;
  }
}
.related-articles-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.related-articles-header .title {
  margin-bottom: 0;
}
.related-articles-list {
  list-style: none;
  padding-left: 0;
  margin-top: 30px;
}
.related-articles-item {
  margin-bottom: 10px;
}

.news-letter-subscription-container {
  margin-top: 20px;
}
@media (min-width: 1280px) {
  .news-letter-subscription-container {
    margin-top: 50px;
  }
}
.news-letter-subscription-content {
  border: 1px solid #969696;
  border-radius: 5px;
  padding: 35px 15px;
}
@media (min-width: 768px) {
  .news-letter-subscription-content {
    padding: 40px;
    padding-right: 30%;
  }
}
@media (min-width: 1280px) {
  .news-letter-subscription-content {
    padding: 35px 20px;
  }
}
.news-letter-subscription-content .disclaimer {
  margin-top: 20px;
  /* TBD */
  font-size: 8.5px;
  font-size: 0.53125rem;
  line-height: 13px;
  line-height: 0.8125rem;
  font-weight: 300;
}
.news-letter-subscription-content .disclaimer a {
  color: #2542C7;
}
.news-letter-subscription-content .disclaimer a:hover, .news-letter-subscription-content .disclaimer a:visited {
  color: #2542C7;
}
.news-letter-subscription-header {
  margin-bottom: 10px;
}
.news-letter-subscription-header .title {
  margin-bottom: 0;
}

/* START: MARKETO NEWSLETTER FORM STYLES */
/* TODO: post-release remove styling in marketo and make this the source */
#mktoForm_31,
#mktoForm_loader {
  width: unset !important;
  min-height: 120px;
  padding: 0;
}
#mktoForm_31 .mktoButtonRow,
#mktoForm_loader .mktoButtonRow {
  width: 100%;
  text-align: right;
}
@media (min-width: 768px) {
  #mktoForm_31 .mktoButtonRow,
#mktoForm_loader .mktoButtonRow {
    text-align: left;
  }
}
@media (min-width: 1280px) {
  #mktoForm_31 .mktoButtonRow,
#mktoForm_loader .mktoButtonRow {
    text-align: center;
  }
}
#mktoForm_31 .mktoButtonRow .mktoButton[type=submit],
#mktoForm_loader .mktoButtonRow .mktoButton[type=submit] {
  min-height: 33px;
  padding-top: 12px;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  #mktoForm_31 .mktoButtonRow .mktoButton[type=submit],
#mktoForm_loader .mktoButtonRow .mktoButton[type=submit] {
    min-height: 40px;
  }
}
@media (min-width: 1280px) {
  #mktoForm_31 .mktoButtonRow .mktoButton[type=submit],
#mktoForm_loader .mktoButtonRow .mktoButton[type=submit] {
    min-height: 43px;
  }
}
#mktoForm_31 input[type=email],
#mktoForm_loader input[type=email] {
  border: 1px solid rgba(33, 37, 41, 0.3);
  /* TBD */
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 16px;
  line-height: 1rem;
  font-weight: 400;
  height: 40px;
}

/* END: MARKETO NEWSLETTER FORM STYLES */
/*--------------------------------------------------------------
# Misc
--------------------------------------------------------------*/
.entry-content {
  margin-top: 30px;
}
.entry-content-container img {
  width: 100%;
  height: auto;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Jetpack infinite scroll
--------------------------------------------- */
/* @import "plugins/jetpack/infinite-scroll"; */
/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* @import "utilities/accessibility"; */
/* Alignments
--------------------------------------------- */
/* @import "utilities/alignments"; */
