@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Open+Sans&display=swap";
@import "https://fonts.googleapis.com/css2?family=Poppins&display=swap";
@import "https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700;900&display=swap";

/* node_modules/ol/ol.css */
:root,
:host {
  --ol-background-color: white;
  --ol-accent-background-color: #F5F5F5;
  --ol-subtle-background-color: rgba(128, 128, 128, 0.25);
  --ol-partial-background-color: rgba(255, 255, 255, 0.75);
  --ol-foreground-color: #333333;
  --ol-subtle-foreground-color: #666666;
  --ol-brand-color: #00AAFF;
}
.ol-box {
  box-sizing: border-box;
  border-radius: 2px;
  border: 1.5px solid var(--ol-background-color);
  background-color: var(--ol-partial-background-color);
}
.ol-mouse-position {
  top: 8px;
  right: 8px;
  position: absolute;
}
.ol-scale-line {
  background: var(--ol-partial-background-color);
  border-radius: 4px;
  bottom: 8px;
  left: 8px;
  padding: 2px;
  position: absolute;
}
.ol-scale-line-inner {
  border: 1px solid var(--ol-subtle-foreground-color);
  border-top: none;
  color: var(--ol-foreground-color);
  font-size: 10px;
  text-align: center;
  margin: 1px;
  will-change: contents, width;
  transition: all 0.25s;
}
.ol-scale-bar {
  position: absolute;
  bottom: 8px;
  left: 8px;
}
.ol-scale-bar-inner {
  display: flex;
}
.ol-scale-step-marker {
  width: 1px;
  height: 15px;
  background-color: var(--ol-foreground-color);
  float: right;
  z-index: 10;
}
.ol-scale-step-text {
  position: absolute;
  bottom: -5px;
  font-size: 10px;
  z-index: 11;
  color: var(--ol-foreground-color);
  text-shadow:
    -1.5px 0 var(--ol-partial-background-color),
    0 1.5px var(--ol-partial-background-color),
    1.5px 0 var(--ol-partial-background-color),
    0 -1.5px var(--ol-partial-background-color);
}
.ol-scale-text {
  position: absolute;
  font-size: 12px;
  text-align: center;
  bottom: 25px;
  color: var(--ol-foreground-color);
  text-shadow:
    -1.5px 0 var(--ol-partial-background-color),
    0 1.5px var(--ol-partial-background-color),
    1.5px 0 var(--ol-partial-background-color),
    0 -1.5px var(--ol-partial-background-color);
}
.ol-scale-singlebar {
  position: relative;
  height: 10px;
  z-index: 9;
  box-sizing: border-box;
  border: 1px solid var(--ol-foreground-color);
}
.ol-scale-singlebar-even {
  background-color: var(--ol-subtle-foreground-color);
}
.ol-scale-singlebar-odd {
  background-color: var(--ol-background-color);
}
.ol-unsupported {
  display: none;
}
.ol-viewport,
.ol-unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.ol-viewport canvas {
  all: unset;
  overflow: hidden;
}
.ol-viewport {
  touch-action: pan-x pan-y;
}
.ol-selectable {
  -webkit-touch-callout: default;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}
.ol-grabbing {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}
.ol-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}
.ol-control {
  position: absolute;
  background-color: var(--ol-subtle-background-color);
  border-radius: 4px;
}
.ol-zoom {
  top: .5em;
  left: .5em;
}
.ol-rotate {
  top: .5em;
  right: .5em;
  transition: opacity .25s linear, visibility 0s linear;
}
.ol-rotate.ol-hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s linear, visibility 0s linear .25s;
}
.ol-zoom-extent {
  top: 4.643em;
  left: .5em;
}
.ol-full-screen {
  right: .5em;
  top: .5em;
}
.ol-control button {
  display: block;
  margin: 1px;
  padding: 0;
  color: var(--ol-subtle-foreground-color);
  font-weight: bold;
  text-decoration: none;
  font-size: inherit;
  text-align: center;
  height: 1.375em;
  width: 1.375em;
  line-height: .4em;
  background-color: var(--ol-background-color);
  border: none;
  border-radius: 2px;
}
.ol-control button::-moz-focus-inner {
  border: none;
  padding: 0;
}
.ol-zoom-extent button {
  line-height: 1.4em;
}
.ol-compass {
  display: block;
  font-weight: normal;
  will-change: transform;
}
.ol-touch .ol-control button {
  font-size: 1.5em;
}
.ol-touch .ol-zoom-extent {
  top: 5.5em;
}
.ol-control button:hover,
.ol-control button:focus {
  text-decoration: none;
  outline: 1px solid var(--ol-subtle-foreground-color);
  color: var(--ol-foreground-color);
}
.ol-zoom .ol-zoom-in {
  border-radius: 2px 2px 0 0;
}
.ol-zoom .ol-zoom-out {
  border-radius: 0 0 2px 2px;
}
.ol-attribution {
  text-align: right;
  bottom: .5em;
  right: .5em;
  max-width: calc(100% - 1.3em);
  display: flex;
  flex-flow: row-reverse;
  align-items: center;
}
.ol-attribution a {
  color: var(--ol-subtle-foreground-color);
  text-decoration: none;
}
.ol-attribution ul {
  margin: 0;
  padding: 1px .5em;
  color: var(--ol-foreground-color);
  text-shadow: 0 0 2px var(--ol-background-color);
  font-size: 12px;
}
.ol-attribution li {
  display: inline;
  list-style: none;
}
.ol-attribution li:not(:last-child):after {
  content: " ";
}
.ol-attribution img {
  max-height: 2em;
  max-width: inherit;
  vertical-align: middle;
}
.ol-attribution button {
  flex-shrink: 0;
}
.ol-attribution.ol-collapsed ul {
  display: none;
}
.ol-attribution:not(.ol-collapsed) {
  background: var(--ol-partial-background-color);
}
.ol-attribution.ol-uncollapsible {
  bottom: 0;
  right: 0;
  border-radius: 4px 0 0;
}
.ol-attribution.ol-uncollapsible img {
  margin-top: -.2em;
  max-height: 1.6em;
}
.ol-attribution.ol-uncollapsible button {
  display: none;
}
.ol-zoomslider {
  top: 4.5em;
  left: .5em;
  height: 200px;
}
.ol-zoomslider button {
  position: relative;
  height: 10px;
}
.ol-touch .ol-zoomslider {
  top: 5.5em;
}
.ol-overviewmap {
  left: 0.5em;
  bottom: 0.5em;
}
.ol-overviewmap.ol-uncollapsible {
  bottom: 0;
  left: 0;
  border-radius: 0 4px 0 0;
}
.ol-overviewmap .ol-overviewmap-map,
.ol-overviewmap button {
  display: block;
}
.ol-overviewmap .ol-overviewmap-map {
  border: 1px solid var(--ol-subtle-foreground-color);
  height: 150px;
  width: 150px;
}
.ol-overviewmap:not(.ol-collapsed) button {
  bottom: 0;
  left: 0;
  position: absolute;
}
.ol-overviewmap.ol-collapsed .ol-overviewmap-map,
.ol-overviewmap.ol-uncollapsible button {
  display: none;
}
.ol-overviewmap:not(.ol-collapsed) {
  background: var(--ol-subtle-background-color);
}
.ol-overviewmap-box {
  border: 1.5px dotted var(--ol-subtle-foreground-color);
}
.ol-overviewmap .ol-overviewmap-box:hover {
  cursor: move;
}

/* node_modules/ngx-ui-switch/ui-switch.component.css */
.switch.switch-small {
  min-width: 33px;
}
.switch.switch-medium {
  min-width: 50px;
}
.switch.switch-large {
  min-width: 60px;
}
.switch.switch-small > .switch-pane > span {
  font-size: 9px;
}
.switch.switch-medium > .switch-pane > span {
  font-size: 16px;
}
.switch.switch-large > .switch-pane > span {
  font-size: 16px;
}
.switch {
  border: 1px solid #dfdfdf;
  position: relative;
  display: inline-block;
  box-sizing: content-box;
  padding: 0;
  margin: 0;
  cursor: pointer;
  box-shadow: rgb(223, 223, 223) 0 0 0 0 inset;
  transition: 0.3s ease-out all;
  -webkit-transition: 0.3s ease-out all;
  white-space: nowrap;
}
.switch small {
  border-radius: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  right: calc(100% - 30px);
  transition: 0.3s ease-out all;
  -webkit-transition: 0.3s ease-out all;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.switch.switch-small {
  height: 20px;
  border-radius: 20px;
}
.switch.switch-small small {
  width: 20px;
  height: 20px;
  right: calc(100% - 20px);
}
.switch.switch-small > .switch-pane > span {
  line-height: 20px;
}
.switch.switch-small > .switch-pane .switch-label-checked {
  padding-right: 25px;
  padding-left: 10px;
}
.switch.switch-small > .switch-pane .switch-label-unchecked {
  padding-left: 25px;
  padding-right: 10px;
}
.switch.switch-medium {
  height: 30px;
  border-radius: 30px;
}
.switch.switch-medium small {
  width: 30px;
  height: 30px;
  right: calc(100% - 30px);
}
.switch.switch-medium > .switch-pane > span {
  line-height: 30px;
}
.switch.switch-medium > .switch-pane .switch-label-checked {
  padding-right: 35px;
  padding-left: 15px;
}
.switch.switch-medium > .switch-pane .switch-label-unchecked {
  padding-left: 35px;
  padding-right: 15px;
}
.switch.switch-large {
  height: 40px;
  border-radius: 40px;
}
.switch.switch-large small {
  width: 40px;
  height: 40px;
  right: calc(100% - 40px);
}
.switch.switch-large > .switch-pane > span {
  line-height: 40px;
}
.switch.switch-large > .switch-pane .switch-label-checked {
  padding-right: 45px;
  padding-left: 20px;
}
.switch.switch-large > .switch-pane .switch-label-unchecked {
  padding-left: 45px;
  padding-right: 20px;
}
.switch.checked {
  background: rgb(100, 189, 99);
}
.switch.checked small {
  right: 0;
  left: auto;
}
.switch.checked .switch-pane {
  top: 0;
}
.switch.checked .switch-pane .switch-label-checked {
  display: block;
}
.switch.checked .switch-pane .switch-label-unchecked {
  display: none;
}
.switch.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.switch .switch-pane {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  justify-content: flex-start;
  align-items: center;
  top: 0;
  position: relative;
  pointer-events: none;
}
.switch .switch-pane > span {
  display: block;
  min-height: 100%;
}
.switch .switch-pane .switch-label {
  color: black;
}
.switch .switch-pane .switch-label-checked {
  display: none;
}
.switch .switch-pane .switch-label-unchecked {
  display: block;
}
.switch.loading {
  background-color: #f1f1f1;
}
.switch.loading small {
  background-color: transparent;
  border: none;
  box-shadow: none;
  right: 50%;
  transform: translateX(50%);
}

/* src/assets/common/bootstrap/bootstrap.css */
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2017 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*!
 * Generated using the Bootstrap Customizer (https://getbootstrap.com/docs/3.3/customize/?id=62ffa78004c2415ce40ad7b1e0ec0599)
 * Config saved to config.json and https://gist.github.com/62ffa78004c2415ce40ad7b1e0ec0599
 */
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}
input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .navbar {
    display: none;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family:
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
  background-color: #ffffff;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #337ab7;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive,
.thumbnail > img,
.thumbnail a > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
[role=button] {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777777;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
  font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
  font-size: 75%;
}
h1,
.h1 {
  font-size: 36px;
}
h2,
.h2 {
  font-size: 30px;
}
h3,
.h3 {
  font-size: 24px;
}
h4,
.h4 {
  font-size: 18px;
}
h5,
.h5 {
  font-size: 14px;
}
h6,
.h6 {
  font-size: 12px;
}
p {
  margin: 0 0 10px;
}
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}
small,
.small {
  font-size: 85%;
}
mark,
.mark {
  background-color: #fcf8e3;
  padding: .2em;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-muted {
  color: #777777;
}
.text-primary {
  color: #337ab7;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #286090;
}
.text-success {
  color: #3c763d;
}
a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}
.text-info {
  color: #31708f;
}
a.text-info:hover,
a.text-info:focus {
  color: #245269;
}
.text-warning {
  color: #8a6d3b;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}
.text-danger {
  color: #a94442;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}
.bg-primary {
  color: #fff;
  background-color: #337ab7;
}
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090;
}
.bg-success {
  background-color: #dff0d8;
}
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}
.bg-info {
  background-color: #d9edf7;
}
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}
.bg-warning {
  background-color: #fcf8e3;
}
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}
.bg-danger {
  background-color: #f2dede;
}
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
dl {
  margin-top: 0;
  margin-bottom: 20px;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: "\2014\a0";
}
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: "";
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: "\a0\2014";
}
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}
code,
kbd,
pre,
samp {
  font-family:
    Menlo,
    Monaco,
    Consolas,
    "Courier New",
    monospace;
}
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #ffffff;
  background-color: #333333;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  -webkit-box-shadow: none;
  box-shadow: none;
}
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #cccccc;
  border-radius: 4px;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
table {
  background-color: transparent;
}
caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777777;
  text-align: left;
}
th {
  text-align: left;
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #dddddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #dddddd;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #dddddd;
}
.table .table {
  background-color: #ffffff;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}
.table-bordered {
  border: 1px solid #dddddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #dddddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}
table col[class*=col-] {
  position: static;
  float: none;
  display: table-column;
}
table td[class*=col-],
table th[class*=col-] {
  position: static;
  float: none;
  display: table-cell;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}
.table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
}
@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #dddddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}
input[type=search] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
input[type=radio],
input[type=checkbox] {
  margin: 4px 0 0;
  margin-top: 1px \	;
  line-height: normal;
}
input[type=file] {
  display: block;
}
input[type=range] {
  display: block;
  width: 100%;
}
select[multiple],
select[size] {
  height: auto;
}
input[type=file]:focus,
input[type=radio]:focus,
input[type=checkbox]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control::-moz-placeholder {
  color: #999999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999999;
}
.form-control::-webkit-input-placeholder {
  color: #999999;
}
.form-control::-ms-expand {
  border: 0;
  background-color: transparent;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eeeeee;
  opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}
textarea.form-control {
  height: auto;
}
input[type=search] {
  -webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type=date].form-control,
  input[type=time].form-control,
  input[type=datetime-local].form-control,
  input[type=month].form-control {
    line-height: 34px;
  }
  input[type=date].input-sm,
  input[type=time].input-sm,
  input[type=datetime-local].input-sm,
  input[type=month].input-sm,
  .input-group-sm input[type=date],
  .input-group-sm input[type=time],
  .input-group-sm input[type=datetime-local],
  .input-group-sm input[type=month] {
    line-height: 30px;
  }
  input[type=date].input-lg,
  input[type=time].input-lg,
  input[type=datetime-local].input-lg,
  input[type=month].input-lg,
  .input-group-lg input[type=date],
  .input-group-lg input[type=time],
  .input-group-lg input[type=datetime-local],
  .input-group-lg input[type=month] {
    line-height: 46px;
  }
}
.form-group {
  margin-bottom: 15px;
}
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.radio input[type=radio],
.radio-inline input[type=radio],
.checkbox input[type=checkbox],
.checkbox-inline input[type=checkbox] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \	;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
input[type=radio][disabled],
input[type=checkbox][disabled],
input[type=radio].disabled,
input[type=checkbox].disabled,
fieldset[disabled] input[type=radio],
fieldset[disabled] input[type=checkbox] {
  cursor: not-allowed;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}
.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  min-height: 34px;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-left: 0;
  padding-right: 0;
}
.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-sm {
  height: 30px;
  line-height: 30px;
}
textarea.input-sm,
select[multiple].input-sm {
  height: auto;
}
.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-lg {
  height: 46px;
  line-height: 46px;
}
textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}
.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 42.5px;
}
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8;
}
.has-success .form-control-feedback {
  color: #3c763d;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}
.has-warning .form-control-feedback {
  color: #8a6d3b;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede;
}
.has-error .form-control-feedback {
  color: #a94442;
}
.has-feedback label ~ .form-control-feedback {
  top: 25px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type=radio],
  .form-inline .checkbox input[type=checkbox] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}
.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
  color: #333333;
  text-decoration: none;
}
.btn:active,
.btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}
a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}
.btn-default {
  color: #333333;
  background-color: #ffffff;
  border-color: #cccccc;
}
.btn-default:focus,
.btn-default.focus {
  color: #333333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.btn-default:hover {
  color: #333333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #333333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
  background-color: #ffffff;
  border-color: #cccccc;
}
.btn-default .badge {
  color: #ffffff;
  background-color: #333333;
}
.btn-primary {
  color: #ffffff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff;
  background-color: #286090;
  border-color: #122b40;
}
.btn-primary:hover {
  color: #ffffff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #ffffff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #ffffff;
  background-color: #204d74;
  border-color: #122b40;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary .badge {
  color: #337ab7;
  background-color: #ffffff;
}
.btn-success {
  color: #ffffff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success:focus,
.btn-success.focus {
  color: #ffffff;
  background-color: #449d44;
  border-color: #255625;
}
.btn-success:hover {
  color: #ffffff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #ffffff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
  color: #ffffff;
  background-color: #398439;
  border-color: #255625;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  background-image: none;
}
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success .badge {
  color: #5cb85c;
  background-color: #ffffff;
}
.btn-info {
  color: #ffffff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info:focus,
.btn-info.focus {
  color: #ffffff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}
.btn-info:hover {
  color: #ffffff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #ffffff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
  color: #ffffff;
  background-color: #269abc;
  border-color: #1b6d85;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  background-image: none;
}
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #ffffff;
}
.btn-warning {
  color: #ffffff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff;
  background-color: #ec971f;
  border-color: #985f0d;
}
.btn-warning:hover {
  color: #ffffff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #ffffff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
  color: #ffffff;
  background-color: #d58512;
  border-color: #985f0d;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  background-image: none;
}
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #ffffff;
}
.btn-danger {
  color: #ffffff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff;
  background-color: #c9302c;
  border-color: #761c19;
}
.btn-danger:hover {
  color: #ffffff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #ffffff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
  color: #ffffff;
  background-color: #ac2925;
  border-color: #761c19;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  background-image: none;
}
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #ffffff;
}
.btn-link {
  color: #337ab7;
  font-weight: normal;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.show {
  display: block !important;
}
.collapse {
  display: none !important;
}
.collapse.in {
  display: block;
}
tr.collapse.in {
  display: table-row;
}
tbody.collapse.in {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  -o-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \	;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.dropup,
.dropdown {
  position: relative;
}
.dropdown-toggle:focus {
  outline: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #ffffff;
  text-decoration: none;
  outline: 0;
  background-color: #337ab7;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777777;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  cursor: not-allowed;
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-menu-right {
  left: auto;
  right: 0;
}
.dropdown-menu-left {
  left: 0;
  right: auto;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777777;
  white-space: nowrap;
}
.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \	;
  content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    left: auto;
    right: 0;
  }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-toolbar {
  margin-left: -5px;
}
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}
.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}
[data-toggle=buttons] > .btn input[type=radio],
[data-toggle=buttons] > .btn-group > .btn input[type=radio],
[data-toggle=buttons] > .btn input[type=checkbox],
[data-toggle=buttons] > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*=col-] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group .form-control:focus {
  z-index: 3;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #cccccc;
  border-radius: 4px;
}
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}
.input-group-addon input[type=radio],
.input-group-addon input[type=checkbox] {
  margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}
.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.nav > li.disabled > a {
  color: #777777;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #337ab7;
}
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}
.nav-tabs {
  border-bottom: 1px solid #dddddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #dddddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555555;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-bottom-color: transparent;
  cursor: default;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #dddddd;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #dddddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #ffffff;
  }
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 4px;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #ffffff;
  background-color: #337ab7;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
.nav-justified {
  width: 100%;
}
.nav-justified > li {
  float: none;
}
.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #dddddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #dddddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #ffffff;
  }
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
@media (min-width: 768px) {
  .navbar {
    border-radius: 4px;
  }
}
@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}
.navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .container > .navbar-header,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}
.navbar-brand {
  float: left;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
  height: 50px;
}
.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}
.navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.navbar-toggle:focus {
  outline: 0;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-nav {
  margin: 7.5px -15px;
}
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .navbar-form .form-control-static {
    display: inline-block;
  }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  .navbar-form .radio input[type=radio],
  .navbar-form .checkbox input[type=checkbox] {
    position: relative;
    margin-left: 0;
  }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}
.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}
.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}
.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
  color: #777777;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}
.navbar-default .navbar-text {
  color: #777777;
}
.navbar-default .navbar-nav > li > a {
  color: #777777;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #333333;
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #555555;
  background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #cccccc;
  background-color: transparent;
}
.navbar-default .navbar-toggle {
  border-color: #dddddd;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #dddddd;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  background-color: #e7e7e7;
  color: #555555;
}
@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777777;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333333;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555555;
    background-color: #e7e7e7;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #cccccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-link {
  color: #777777;
}
.navbar-default .navbar-link:hover {
  color: #333333;
}
.navbar-default .btn-link {
  color: #777777;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
  color: #333333;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #cccccc;
}
.navbar-inverse {
  background-color: #222222;
  border-color: #080808;
}
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #ffffff;
  background-color: transparent;
}
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #ffffff;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #ffffff;
  background-color: #080808;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444444;
  background-color: transparent;
}
.navbar-inverse .navbar-toggle {
  border-color: #333333;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #333333;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #ffffff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  background-color: #080808;
  color: #ffffff;
}
@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #ffffff;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #ffffff;
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-link {
  color: #9d9d9d;
}
.navbar-inverse .navbar-link:hover {
  color: #ffffff;
}
.navbar-inverse .btn-link {
  color: #9d9d9d;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
  color: #ffffff;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444444;
}
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li + li:before {
  content: "/\a0";
  padding: 0 5px;
  color: #cccccc;
}
.breadcrumb > .active {
  color: #777777;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.42857143;
  text-decoration: none;
  color: #337ab7;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  margin-left: -1px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 2;
  color: #23527c;
  background-color: #eeeeee;
  border-color: #dddddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 3;
  color: #ffffff;
  background-color: #337ab7;
  border-color: #337ab7;
  cursor: default;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777777;
  background-color: #ffffff;
  border-color: #dddddd;
  cursor: not-allowed;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
.pager {
  padding-left: 0;
  margin: 20px 0;
  list-style: none;
  text-align: center;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777777;
  background-color: #ffffff;
  cursor: not-allowed;
}
.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}
a.label:hover,
a.label:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}
.label-default {
  background-color: #777777;
}
.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #5e5e5e;
}
.label-primary {
  background-color: #337ab7;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #286090;
}
.label-success {
  background-color: #5cb85c;
}
.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #449d44;
}
.label-info {
  background-color: #5bc0de;
}
.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #31b0d5;
}
.label-warning {
  background-color: #f0ad4e;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #ec971f;
}
.label-danger {
  background-color: #d9534f;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #c9302c;
}
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #777777;
  border-radius: 10px;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-xs .badge,
.btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #ffffff;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
.nav-pills > li > a > .badge {
  margin-left: 3px;
}
.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee;
}
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}
.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}
.jumbotron > hr {
  border-top-color: #d5d5d5;
}
.container .jumbotron,
.container-fluid .jumbotron {
  border-radius: 6px;
  padding-left: 15px;
  padding-right: 15px;
}
.jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .container .jumbotron,
  .container-fluid .jumbotron {
    padding-left: 60px;
    padding-right: 60px;
  }
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 63px;
  }
}
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  -webkit-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
  margin-left: auto;
  margin-right: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #337ab7;
}
.thumbnail .caption {
  padding: 9px;
  color: #333333;
}
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-o-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  overflow: hidden;
  height: 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.progress-bar {
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #ffffff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image:
    linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.15) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0.15) 75%,
      transparent 75%,
      transparent);
  -webkit-background-size: 40px 40px;
  background-size: 40px 40px;
}
.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
  background-color: #5cb85c;
}
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image:
    linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.15) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0.15) 75%,
      transparent 75%,
      transparent);
}
.progress-bar-info {
  background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image:
    linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.15) 25%,
      trprogressansparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0.15) 75%,
      transparent 75%,
      transparent);
}
.progress-bar-warning {
  background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image:
    linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.15) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0.15) 75%,
      transparent 75%,
      transparent);
}
.progress-bar-danger {
  background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image:
    linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.15) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0.15) 75%,
      transparent 75%,
      transparent);
}
.media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}
.media,
.media-body {
  zoom: 1;
  overflow: hidden;
}
.media-body {
  width: 10000px;
}
.media-object {
  display: block;
}
.media-object.img-thumbnail {
  max-width: none;
}
.media-right,
.media > .pull-right {
  padding-left: 10px;
}
.media-left,
.media > .pull-left {
  padding-right: 10px;
}
.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}
.media-middle {
  vertical-align: middle;
}
.media-bottom {
  vertical-align: bottom;
}
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.media-list {
  padding-left: 0;
  list-style: none;
}
.list-group {
  margin-bottom: 20px;
  padding-left: 0;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
}
.list-group-item:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
a.list-group-item,
button.list-group-item {
  color: #555555;
}
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333333;
}
a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
  text-decoration: none;
  color: #555555;
  background-color: #f5f5f5;
}
button.list-group-item {
  width: 100%;
  text-align: left;
}
.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
  background-color: #eeeeee;
  color: #777777;
  cursor: not-allowed;
}
.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
  color: #777777;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  z-index: 2;
  color: #ffffff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}
.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
  color: #c7ddef;
}
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}
a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}
a.list-group-item-success:hover,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}
a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}
a.list-group-item-info:hover,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}
a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
a.list-group-item-warning:hover,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}
a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442;
}
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
a.list-group-item-danger:hover,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}
a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
.panel {
  background-color: #ffffff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.panel-body {
  padding: 15px;
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #dddddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.list-group + .panel-footer {
  border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-left: 15px;
  padding-right: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #dddddd;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  border: 0;
  margin-bottom: 0;
}
.panel-group {
  margin-bottom: 20px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #dddddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #dddddd;
}
.panel-default {
  border-color: #dddddd;
}
.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #dddddd;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #dddddd;
}
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333333;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #dddddd;
}
.panel-primary {
  border-color: #337ab7;
}
.panel-primary > .panel-heading {
  color: #ffffff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}
.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #ffffff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}
.panel-success {
  border-color: #d6e9c6;
}
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}
.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}
.panel-info {
  border-color: #bce8f1;
}
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}
.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}
.panel-warning {
  border-color: #faebcc;
}
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}
.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}
.panel-danger {
  border-color: #ebccd1;
}
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
  padding-bottom: 75%;
}
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}
.well-lg {
  padding: 24px;
  border-radius: 6px;
}
.well-sm {
  padding: 9px;
  border-radius: 3px;
}
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000000;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.close:hover,
.close:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}
.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family:
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 12px;
  opacity: 0;
  filter: alpha(opacity=0);
}
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #ffffff;
  text-align: center;
  background-color: #000000;
  border-radius: 4px;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000000;
}
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family:
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 14px;
  background-color: #ffffff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}
.popover-content {
  padding: 9px 14px;
}
.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover > .arrow {
  border-width: 11px;
}
.popover > .arrow:after {
  border-width: 10px;
  content: "";
}
.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}
.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #ffffff;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #ffffff;
}
.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}
.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #ffffff;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #ffffff;
  bottom: -10px;
}
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0);
}
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  background-image:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#80000000", endColorstr="#00000000", GradientType=1);
}
.carousel-control.right {
  left: auto;
  right: 0;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  background-image:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.0001) 0%,
      rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#80000000", GradientType=1);
}
.carousel-control:hover,
.carousel-control:focus {
  outline: 0;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  z-index: 5;
  display: inline-block;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  line-height: 1;
  font-family: serif;
}
.carousel-control .icon-prev:before {
  content: "\2039";
}
.carousel-control .icon-next:before {
  content: "\203a";
}
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  border: 1px solid #ffffff;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000 \	;
  background-color: rgba(0, 0, 0, 0);
}
.carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #ffffff;
}
.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px;
  }
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  content: " ";
  display: table;
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-header:after,
.modal-footer:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}

/* src/assets/common/pr1/css/pr-public.css */
.photo-wrapper {
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: right;
  background-attachment: fixed;
}
.photo-wrapper.home {
  background-image: url(/assets/common/pr1/img/background1.jpg);
}
.photo-wrapper .navbar {
  background: transparent;
  margin-bottom: 0;
  border-color: transparent;
}
.navbar-default .navbar-nav > li > a.btn {
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, .3);
  box-shadow: none;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .045em;
  font-weight: 500;
  font-size: 12px;
}
.jumbotron {
  background-color: transparent;
  color: #fff;
  margin-bottom: 0;
}
.jumbotron h1 {
  font-size: 44px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 auto 10px;
  max-width: 90%;
}
.jumbotron h3 {
  font-size: 17px;
  font-weight: 400;
  opacity: .6;
  margin: 0 auto 30px;
  max-width: 80%;
}
.jumbotron .form-inline .form-control {
  margin-top: -1px;
  height: 50px;
  font-size: 17px;
}
.jumbotron .select-wrap select {
  margin-top: 6px;
}
.search-wrapper {
  background: rgba(255, 255, 255, .4);
  padding: 20px 30px 25px;
  box-shadow: 0px 9px 18px rgba(0, 0, 0, .22);
  display: inline-block;
}
.search-wrapper.progressor {
  width: 100%;
}
.search-wrapper.progressor .use {
  margin: -10px 0 -13px -15px;
}
.search-wrapper.progressor .content-box {
  padding: 0;
}
.search-wrapper.progressor .content-box .progress {
  margin-bottom: 0;
}
.form-wrapper {
  display: block;
}
.form-wrapper.phone .form-control {
  font-size: 28px;
}
.search-wrapper p {
  font-size: 15px;
  font-weight: 400;
  opacity: .8;
  text-align: left;
}
.search-wrapper button {
  padding: 14px 30px;
  font-size: 14px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  box-shadow: none;
}
.search-wrapper .form-control:focus {
  border-color: #4851c0;
  border-width: 3px;
}
.search-wrapper button,
.search-wrapper .form-group {
  box-shadow: 0.25rem 0.25rem 0.625rem rgba(0, 0, 0, 0.4);
}
.seals {
  padding: 5px 20px 0;
  text-align: right;
  margin-bottom: -20px;
}
.seals .seal img {
  height: 30px;
}
.seals .seal.mcafree img {
  height: 25px;
}
.search-counter {
  height: 55px;
  color: white;
  opacity: 0.7;
  text-align: center;
  padding: 10px;
  margin-top: -10px;
  background-color: #442b2b;
}
.search-counter .count {
  font-size: 24px;
  font-weight: bold;
  margin-right: 5px;
}
.navbar .logos img {
  width: 53px;
  margin-top: 12px;
  margin-right: 7px;
  background: rgba(255, 255, 255, .9);
  padding: 2px 3px 1px;
}
.form-wrapper.phone {
  display: inline-block;
}
.jumbotron.phone .form-inline .form-control {
  height: 60px;
  font-size: 30px;
}
.search-wrapper.phone button {
  padding: 19px 30px;
}
.phone-results.content-box {
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
}
.phone-results .dl-large {
  font-size: 16px;
}
.phone-results .dl-large dd {
  margin-bottom: 8px;
}
.phone-results-lower {
  margin-top: 30px;
}
.phone-results-lower ul {
  padding: 0 0 0 15px;
}
.featured-on,
.customers-saying {
  padding-top: 5em;
  padding-bottom: 3em;
  background: #f9f9f9;
}
.featured-on h2,
.customers-saying h2 {
  opacity: .7;
  font-size: 20px;
  margin-top: 5px;
  margin-bottom: 40px;
}
.featured-on img {
  max-height: 30px;
  opacity: .4;
  margin: 0 10px 30px;
  vertical-align: middle;
}
.customers-saying {
  background: #464dac;
  box-shadow: inset 0px 110px 160px rgba(105, 31, 116, .3);
}
.customers-saying h2 {
  color: #ffffff;
  opacity: .7;
}
blockquote {
  border: 0;
}
blockquote p {
  background: #9fa4eb;
  position: relative;
  font-size: 15px;
  padding: 20px;
  color: #ffffff;
  text-align: center;
}
blockquote p img {
  width: 30px;
  position: absolute;
  top: -7px;
  left: -20px;
  opacity: .8;
}
blockquote p:after {
  top: 100%;
  left: 27px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(244, 244, 244, 0);
  border-top-color: #9fa4eb;
  border-width: 8px;
  margin-left: -8px;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: none;
}
blockquote footer,
blockquote small,
blockquote .small {
  padding-top: 6px;
  padding-left: 10px;
  color: #ffffff;
  opacity: .4;
}
.footer {
  padding-top: 5em;
  padding-bottom: 7em;
  transition: all 0.5s ease;
  opacity: .5;
  border-top: 1px solid #e1e1e1;
}
.footer:hover {
  opacity: 1;
}
.footer ul {
  list-style-type: none;
  padding: 0;
}
.footer ul li {
  margin-bottom: 10px;
}
.footer .secure-logos {
  margin: 20px 0;
}
.footer .secure-logos img {
  max-width: 80px;
  margin-right: 20px;
}
.content-wrapper {
  background: #f9f9f9;
  padding-bottom: 40px;
}
.content-box {
  background: #fff;
  border: 1px solid #dddddd;
  padding: 0;
  padding-bottom: 70px;
  box-shadow: 0px 5px 12px rgba(0, 0, 0, .04);
}
.content-box.padded {
  padding: 30px;
}
.loader-header {
  margin-top: 20px;
  margin-bottom: 20px;
}
.loader-header h1 {
  margin-top: 0;
  font-size: 30px;
}
.loader-header h1 span.glyphicons {
  margin-top: -6px;
  margin-right: -8px;
  color: #76b509;
}
.loader-header p {
  color: #727272;
  font-weight: 400;
  font-size: 16px;
}
.loader-header p span.billing-details-mobile a {
  font-size: 90%;
  color: #727272;
  text-decoration: underline;
  cursor: pointer;
}
.phone-no-wrap {
  white-space: nowrap;
}
.loader-content .left-col {
  padding-left: 30px;
}
.content-box h4 {
  font-size: 21px;
  padding: 0 30px;
  margin: 20px auto 18px;
  max-width: 500px;
}
.content-box .progress {
  border-radius: 0;
  height: 35px;
  margin-bottom: 35px;
}
.content-box .progress-bar {
  background-color: #76b509;
  padding: 9px 0px 0 0;
  font-size: 16px;
  font-weight: 700;
  text-align: right;
}
.content-box .loader-content {
  margin: 0 15px;
}
.content-box .loader-content .tags {
  padding: 0 20px 0 0;
}
.content-box .loader-content .tags li {
  background: #fff;
  padding: 4px 8px 1px 2px;
  font-size: 13px;
  display: inline-block;
  border-radius: 5px;
  border: 1px solid #dddddd;
  margin: 0 0px 5px;
  color: #727272;
}
.content-box .loader-content .tags li span {
  margin-top: -4px;
}
.content-box .loader-content .loader-list {
  margin: 0 0 10px;
  padding: 0;
}
.content-box .loader-content .loader-list li {
  display: inline-block;
  width: 48%;
  vertical-align: top;
}
.content-box .loader-content .checkbox {
  margin-top: 0;
  margin-bottom: 6px;
}
.content-box .loader-content .checkbox span {
  color: #dcb103;
  margin-top: -4px;
  margin-left: -8px;
  margin-right: -8px;
}
.remove-my-info {
  margin-bottom: 20px;
}
.remove-my-info .form-control {
  margin-right: -5px;
  width: 120px;
  height: 38px;
  vertical-align: top;
}
.search-results .header {
  padding: 20px 30px 0;
}
.search-results .header h1 {
  font-size: 30px;
}
.search-results .header h4 {
  color: #727272;
  font-weight: 400;
  font-size: 16px;
}
.signup .content-box {
  padding: 20px;
}
.signup form h6 {
  text-transform: uppercase;
  color: #727272;
  letter-spacing: .025em;
}
.signup .form-control {
  -webkit-appearance: none;
  box-shadow: 0.25rem 0.25rem 0.625rem rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0.25rem 0.25rem 0.625rem rgba(0, 0, 0, 0.4);
}
.signup .form-control:focus {
  border-color: #4851c0;
  border-width: 3px;
}
.signup .checkbox label {
  font-size: 12px;
  color: #727272;
}
.signup .side-column {
  padding: 10px 30px;
}
.signup select option:first-child {
  display: none;
}
.signup select.empty {
  color: #999999;
}
.signup .side-column .blurry-person {
  text-align: center;
  margin-bottom: 29px;
  background: #fff;
  padding: 10px 10px 2px;
  border-radius: 10px;
}
.signup .side-column .blurry-person img {
  height: 60px;
  width: 60px;
}
.signup .side-column h4 {
  margin-bottom: 20px;
  color: #666;
}
.signup .side-column h5 {
  color: #818181;
  margin-bottom: 3px;
  font-size: 13px;
}
.signup .side-column h5 span.glyphicons {
  margin: -8px -5px 0 -10px;
  font-size: 16px;
}
.signup .side-column p,
.signup .side-column ul {
  color: #818181;
  margin-bottom: 20px;
  font-size: 13px;
}
.signup .side-column ul {
  padding-left: 15px;
}
.blank {
  max-width: 100px;
  display: inline-block;
}
.blank img {
  height: 17px;
}
#login {
  background: #f9f9f9;
}
#login h1 {
  margin-top: 50px;
}
#login .content-box {
  padding: 20px;
}
#login .checkbox {
  margin-top: 0;
}
#login .checkbox label {
  font-size: 13px;
  color: #727272;
}
#login .navbar-brand {
  width: 100%;
  margin: 0 !important;
}
#login .navbar-brand img {
  margin: 0 auto;
}
#login .btn {
  width: 100%;
}
#login p a {
  font-size: 13px;
  color: #727272;
  text-decoration: underline;
}
.report-mockup {
  position: relative;
}
.report-mockup .scrolling-report {
  background-size: cover;
  height: 512px;
  bottom: -20px;
  left: 0;
  box-shadow: 0 1px 3px 0 rgba(64, 70, 77, 0.3);
  animation: scrolling-report 90s infinite 3s forwards;
  border: 1px solid #e8e8e8;
}
.report-mockup .scrolling-report.mobile {
  background-image: url(/assets/common/pr1/img/mobile-large.jpg);
}
.report-mockup .scrolling-report.desktop {
  background-image: url(/assets/common/pr1/img/desktop-large.jpg);
}
#sup .content-box.reviews {
  min-height: 250px;
}
@keyframes scrolling-report {
  0% {
    background-position-y: 0;
  }
  5% {
    background-position-y: 5%;
  }
  10% {
    background-position-y: 10%;
  }
  15% {
    background-position-y: 15%;
  }
  20% {
    background-position-y: 20%;
  }
  25% {
    background-position-y: 25%;
  }
  30% {
    background-position-y: 30%;
  }
  35% {
    background-position-y: 35%;
  }
  40% {
    background-position-y: 40%;
  }
  45% {
    background-position-y: 45%;
  }
  50% {
    background-position-y: 50%;
  }
  55% {
    background-position-y: 55%;
  }
  60% {
    background-position-y: 60%;
  }
  65% {
    background-position-y: 65%;
  }
  70% {
    background-position-y: 70%;
  }
  75% {
    background-position-y: 75%;
  }
  80% {
    background-position-y: 80%;
  }
  85% {
    background-position-y: 85%;
  }
  90% {
    background-position-y: 90%;
  }
  95% {
    background-position-y: 0;
  }
  100% {
    background-position-y: 0;
  }
}
.sample-report-description {
  text-align: left;
  margin-bottom: 30px;
  margin-top: 50px;
}
.sample-report-description h2 {
  opacity: .7;
  font-size: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
}
.sample-report-description p {
  margin-bottom: 20px;
}
.sample-report-description ul {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .photo-wrapper .navbar {
    padding: 20px 10px 0;
  }
  .photo-wrapper .navbar .navbar-brand > img {
    width: 190px;
  }
  .jumbotron {
    padding-top: 10em;
    padding-bottom: 14em;
  }
  .sidebar {
    padding-left: 30px;
    padding-right: 0px;
  }
}
@media (max-width: 767px) {
  .photo-wrapper .navbar {
    background: transparent;
  }
  .photo-wrapper {
    background-size: auto 100%;
    background-position-x: right;
    background-attachment: inherit;
  }
  .photo-wrapper .navbar-nav {
    margin: 15px 5px 0;
    opacity: 0.6;
  }
  .photo-wrapper .navbar-brand {
    padding: 5px 5px 0;
    margin-left: -10px;
  }
  .jumbotron h1 {
    font-size: 24px;
    max-width: 95%;
  }
  .jumbotron h3 {
    font-size: 15px;
    max-width: 95%;
  }
  .search-wrapper p {
    font-size: 13px;
  }
  .search-results .header {
    padding: 14px 20px 0;
  }
  .loader-header {
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .search-results .header h1,
  .loader-header h1,
  #login h1 {
    font-size: 19px;
    margin-top: 10px;
  }
  .search-results .header h4 {
    font-size: 14px;
  }
  .signup .form-group button {
    width: 100%;
  }
  .phone-results .dl-large {
    text-align: center;
  }
  .phone-results .map {
    margin-top: 20px;
  }
  .remove-my-info .form-control {
    width: 100%;
  }
  .remove-my-info .form-group {
    width: 100%;
    margin-bottom: -2px;
  }
  .remove-my-info .btn {
    width: 100%;
  }
  .content-box .loader-content .btn-primary {
    font-size: 12px;
    padding: 10px 8px;
  }
}
@media (max-width: 991px) {
  .form-wrapper {
    box-shadow: 0px 9px 18px rgba(0, 0, 0, .22);
  }
  .search-wrapper button {
    display: block;
    width: 100%;
    border-bottom-left-radius: 2px;
    border-top-right-radius: 0;
    box-shadow: 0.25rem 0.25rem 0.625rem rgba(0, 0, 0, 0.4);
  }
  .search-wrapper .form-group {
    width: 100%;
    margin-bottom: 8px;
    box-shadow: 0.25rem 0.25rem 0.625rem rgba(0, 0, 0, 0.4);
  }
  .search-wrapper .form-control {
    width: 100% !important;
    display: block !important;
  }
  .footer {
    text-align: center;
  }
}
@media (min-width: 991px) {
  .form-wrapper.phone {
    display: inline-block;
  }
}

/* src/assets/common/pr1/css/pr-members.css */
.navbar-nav {
  margin: 0;
}
.navbar-default .navbar-nav > li > a,
.navbar-default .navbar-nav > li > a:focus {
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .035em;
}
.navbar-default .navbar-nav > li > a:hover {
  background-color: rgba(0, 0, 0, .1);
  color: #fff;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: rgba(0, 0, 0, .3);
}
.navbar-default .navbar-toggle {
  border: 0;
  margin-right: 5px;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: transparent;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #fff;
  border-radius: 0;
  width: 28px;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border: 0;
  padding: 0;
  text-align: right;
}
.navsearch-toggle {
  background: transparent;
  border: 0;
  position: absolute;
  right: 51px;
  top: 7px;
}
.navsearch-toggle span {
  color: #fff;
  font-size: 20px;
}
.navsearch-collapse {
  background: #fff;
  padding: 10px 15px 30px;
  border-bottom: 1px solid #dddddd;
}
.navsearch-collapse .form-group {
  margin-bottom: -2px;
  vertical-align: top;
}
.navsearch-collapse .btn {
  width: 100%;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.dropdown-menu {
  border-radius: 0;
}
.member-wrapper {
  padding-top: 20px;
  padding-bottom: 40px;
}
.member-wrapper .container {
  padding: 0;
}
.member-header {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 5px;
}
.member-header .no-padd {
  padding-right: 0;
}
.member-header .header-menu button {
  border: none;
  background: transparent;
  font-size: 22px;
  padding: 0;
  font-weight: 500;
}
.member-header .header-menu .add {
  border-top: 1px solid #dddddd;
  margin-top: 5px;
}
.member-header .header-menu .add span {
  margin: -4px -1px 0 -8px;
}
.member-header .header-menu .dropdown-menu li a {
  padding: 7px 20px;
}
.member-header .header-menu .dropdown-menu li .badge {
  color: #666;
  background: #dddddd;
}
.member-content ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.member-content .btn-sm {
  box-shadow: 0px 1px 5px rgba(0, 0, 0, .1);
}
.member-content .btn-group-sm .btn-default {
  box-shadow: 0px 1px 5px rgba(0, 0, 0, .1);
  color: #727272;
}
.member-content .btn-group-sm .btn-default:hover {
  color: #fff;
}
.member-content .member-reports {
  padding: 15px;
  border-bottom: 1px solid #dddddd;
}
.member-content .member-reports:last-of-type {
  border-bottom: 0;
}
.member-reports li {
  border: 1px solid #dddddd;
  padding: 25px 20px 15px;
  background: #fff;
  margin-bottom: 8px;
}
.member-reports li h3 {
  font-size: 19px;
  margin-top: 0;
  margin-bottom: 5px;
}
.member-reports li h3 a {
  color: #272727;
}
.member-reports li h4 {
  margin-top: 0;
  font-size: 14px;
  color: #666;
}
.member-reports li .btn-group {
  margin-bottom: 10px;
}
.member-reports li.also {
  background: transparent;
  text-align: left;
  border: 0;
  color: #666;
  padding: 0;
}
.member-reports .archive {
  margin-top: 10px;
}
.member-content {
  box-shadow: 0px 5px 12px rgba(0, 0, 0, .04);
  border-bottom: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
}
.member-content .main {
  padding: 0;
  border-right: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  background: #f8f8f8;
}
.member-content .loadmore {
  padding-bottom: 30px;
}
.member-search-header {
  border-bottom: 1px solid #dddddd;
  padding: 0;
}
.member-search-header h1 {
  font-size: 30px;
  margin-top: 5px;
}
.account-wrapper {
  padding-top: 20px;
  background: #f9f9f9;
  padding-bottom: 40px;
}
.account-content .main {
  padding-top: 25px;
  padding-bottom: 30px;
  background: #fff;
}
.account-header {
  padding: 0;
}
.account-header h1 {
  font-size: 24px;
  margin: 0 0 5px 14px;
}
.account-content {
  border: 1px solid #dddddd;
  border-top: 0;
  box-shadow: 0px 5px 12px rgba(0, 0, 0, .04);
}
.account-content .progress {
  border-radius: 0;
}
.account-content .progress-bar {
  background-color: #76b509;
  padding: 0 5px 0 0;
  box-shadow: none;
  text-align: right;
}
.account-header .nav-tabs {
  background: transparent;
  padding: 5px 0 0 5px;
  border-bottom: 1px solid #dddddd;
}
.account-header .nav-tabs > li > a {
  border-radius: 0;
  padding: 10px;
  color: #666;
  border: 0;
}
.account-header .nav-tabs > li > a:hover {
  border-color: transparent;
  background: #fff;
  color: #272727;
}
.account-header .nav-tabs > li.active > a {
  color: #272727;
  background: transparent;
  border-bottom: 2px solid #4851c0;
}
.account-header .nav-tabs > li.active > a:hover,
.account-header .nav-tabs > li.active > a:focus {
  color: #272727;
  background: transparent;
  border: 0;
  border-bottom: 2px solid #4851c0;
}
.secondary {
  padding: 20px;
}
.secondary h4 {
  margin-bottom: 20px;
  color: #666;
}
.secondary h5 {
  color: #818181;
  margin-bottom: 3px;
  font-size: 13px;
}
.secondary span.glyphicons {
  margin: -8px -5px 0 -10px;
  font-size: 16px;
}
.secondary p,
.secondary ul {
  color: #818181;
  margin-bottom: 20px;
  font-size: 13px;
}
.secondary ul {
  padding-left: 15px;
}
.secondary ul.account-options {
  padding-left: 0;
}
.secondary ul.account-options li {
  margin-bottom: 20px;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 15px;
}
.secondary ul.account-options li p {
  margin-bottom: 0;
}
.account-content .package {
  list-style-type: none;
  border: 1px solid #dddddd;
  padding: 10px 15px 15px;
  margin: 0 0 20px;
  font-size: 13px;
  background: #f9f9f9;
}
.account-content .package ul {
  list-style-type: none;
  border: 0;
  padding: 0 0 0 40px;
  margin: 0;
}
.account-content .package h3 {
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: 5px;
}
.account-content .package h3 .price {
  font-size: 12px;
  color: #727272;
  font-weight: 700;
  margin-left: 5px;
}
.account-content .package dl {
  margin: 0;
}
.account-content .package .package-features {
  margin: 0 0 10px;
  list-style-type: disc;
  padding: 0 0 0 15px;
  font-size: 12px;
}
.account-content .main h2 {
  font-size: 18px;
  color: #76b509;
  margin-top: 0;
  margin-left: -14px;
}
.account-content .main h2 span {
  margin: -6px -4px 0 0;
}
.report-wrapper {
  padding: 0;
}
.report-wrapper .report-header h1 {
  font-size: 24px;
  margin-bottom: 20px;
}
.report-content .also {
  margin-top: 40px;
  font-size: 12px;
  color: #666;
}
.report-content .also a {
  color: #666;
}
.report-content .also ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.report-content .also h5 {
  font-size: 12px;
  color: #727272;
  margin-bottom: 15px;
}
.report-content .also .nopadd {
  padding: 0;
}
.report-content .also .glyphicons {
  margin: -4px 0 0 -5px;
}
.report-data .panel {
  border-radius: 0;
}
.report-data .panel-body {
  padding: 20px;
}
.report-data h2 {
  text-transform: uppercase;
  color: #666;
  letter-spacing: .025em;
  font-size: 12px;
  margin: 10px 0 20px;
}
.report-data h2 .glyphicons {
  color: #76b509;
  font-size: 18px;
  margin: -9px -4px 0 -7px;
}
.report-data dl dt {
  font-size: 12px;
  color: #727272;
  font-weight: 400;
}
.report-data dl dd {
  font-size: 18px;
  font-weight: 500;
}
.report-data dl img {
  max-width: 100px;
  max-height: 18px;
}
.report-data h6 {
  color: #727272;
  font-weight: 400;
}
.report-data .photos {
  padding: 0;
  list-style-type: none;
  margin-top: 10px;
}
.report-data .photos li {
  display: inline-block;
  margin: 0 0 10px 0;
}
.report-data .photos li a.service,
.report-data .photos li a.service:hover {
  border: none;
}
.report-data .photos li a.photo {
  border: 1px solid #dddddd;
  height: 200px;
  width: 200px;
  overflow: hidden;
  display: block;
  opacity: .7;
}
.report-data .photos li a:hover {
  border: 1px solid #4851c0;
  opacity: 1;
}
.report-data .photos li a img {
  max-width: none;
  max-height: none;
  width: 200px;
}
.report-data .relatives {
  list-style-type: none;
  margin: 0 0 20px 0;
  padding: 0;
}
.report-data .relatives li {
  display: inline-block;
  border: 1px solid #dddddd;
  margin: 0px 0px -2px 0;
  padding: 10px 0;
  background: #f9f9f9;
  width: 49.2%;
  height: 180px;
  overflow-y: hidden;
}
.report-data .relatives li.odd {
  background: #e0e0e0;
}
.report-data .relatives li .relative {
  height: 50px;
  width: 50px;
  display: block;
  text-align: center;
  padding-top: 16px;
  border-radius: 50%;
  border: 1px solid #e8e8e8;
  margin: 0 auto;
  background-size: 50px 50px !important;
}
.relatives li .relative {
  background-image: url(/assets/common/pr1/img/icon-person.png) !important;
}
.report-data .relatives li h6 {
  color: #272727;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  margin: 10px 0 3px 5px;
}
.report-data .relatives li p {
  font-size: 13px;
  text-align: center;
  color: #666;
  margin: 0 0 5px 6px;
}
.report-data .mapouter {
  margin-bottom: 20px;
}
.report-data .pics img {
  margin-bottom: 20px;
}
.report-data .pics span.logo {
  position: absolute;
  height: 20px;
  width: 20px;
  top: -9px;
  right: 5px;
}
.report-comments h6 {
  margin-bottom: 5px;
}
.report-comments h6 a {
  color: #666;
  text-decoration: none;
}
.report-comments .panel-body {
  padding-bottom: 0;
}
.report-comments .panel-body p {
  font-size: 12px;
  color: #727272;
}
.report-comments .panel-body p.by {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 15px;
}
.report-comments .panel-body .btn {
  box-shadow: none;
  margin-top: 8px;
}
.report-comments .panel-footer {
  margin: 0 -20px;
  padding: 15px 21px;
  border-top: 1px solid #e8e8e8;
}
.report-comments .panel-footer h6 {
  font-weight: 500;
  font-size: 12px;
  margin-bottom: 10px;
}
.report-comments .panel-footer .badge {
  color: #727272;
  vertical-align: baseline;
  background-color: #e4e4e4;
  margin-left: 3px;
}
.report-comments textarea {
  font-size: 12px;
}
.report-data .upsell {
  list-style-type: none;
  padding: 10px 15px 0px;
  margin: 0;
  font-size: 13px;
}
.report-data .upsell p {
  font-size: 12px;
}
.report-data .upsell ul {
  list-style-type: none;
  border: 0;
  padding: 0 0 0 40px;
  margin: 0;
}
.report-data .upsell h3 {
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: 5px;
}
.report-data .upsell dl {
  margin: 0;
}
.report-data .upsell .upsell-features {
  margin: 0 0 10px;
  list-style-type: disc;
  padding: 0 0 0 15px;
  font-size: 12px;
}
.report-data .bottom-border {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 20px;
}
.report-nav {
  list-style-type: none;
  padding: 0;
  margin: 10px 0 0;
}
.report-nav li {
  border-bottom: 1px solid #dddddd;
}
.report-nav li:last-of-type {
  border-bottom: 0;
}
.report-nav li a {
  color: #666;
  padding: 6px 0;
  display: block;
  font-size: 13px;
}
.report-nav li a:hover {
  color: #4851c0;
  text-decoration: none;
  padding-left: 2px;
  background: #fff;
}
.report-nav li.active a {
  font-weight: 500;
  color: #272727;
}
.backtotop {
  position: fixed;
  bottom: 4px;
  right: 4px;
}
.backtotop a {
  font-size: 22px;
  color: #4851c0;
}
.backtotop a:hover {
  color: #76b509;
}
@media (max-width: 768px) {
  .navsearch-collapse {
    margin: 10px 0 0;
    padding-bottom: 0;
  }
  .navsearch-collapse .form-inline {
    margin-bottom: 30px;
  }
  .member-search-header h1 {
    font-size: 19px;
    margin-top: 10px;
  }
  .account-header .nav-tabs > li > a {
    font-size: 12px;
    padding: 5px;
  }
  .account-header h1 {
    margin-left: 8px;
  }
  .account-content .form-group button {
    width: 100%;
  }
  .account-content .package .btn {
    width: 100%;
  }
  .account-wrapper .secondary {
    border-top: 1px solid #dddddd;
  }
  .report-nav li {
    display: none;
  }
  .report-nav.select-wrap {
    padding: 10px 13px 10px;
    background: #fff;
    margin: 0 0 10px;
    border: 1px solid #dddddd;
  }
  .report-data dl dd {
    font-size: 14px;
  }
  .report-data .photos {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .navsearch-toggle {
    display: none;
  }
  .navsearch-collapse {
    padding: 10px 15px;
  }
  .navsearch-collapse.in {
    overflow-y: auto;
    overflow-y: visible;
  }
  .navsearch-collapse.collapse {
    display: block !important;
    height: auto !important;
    overflow: visible !important;
  }
  .navsearch-collapse .form-control {
    width: 157px;
    height: 38px;
    margin-right: -5px;
  }
  .navsearch-collapse .btn {
    width: 114px;
    height: 38px;
    margin-right: -5px;
    margin-left: 5px;
  }
  .navsearch-collapse .btn {
    border-top-left-radius: 0;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 0;
  }
  .account-content .main {
    border-right: 1px solid #dddddd;
    padding: 30px 40px;
  }
  ul.report-nav select {
    display: none;
  }
}

/* src/assets/common/pr1/css/pr-shared.css */
body {
  font-family:
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  color: #404040;
  background: #f9f9f9;
}
a {
  color: #4851c0;
  transition: color 0.5s ease;
}
*:focus {
  outline: none;
}
textarea:focus,
input:focus {
  outline: none;
}
.tooltip-inner {
  border-radius: 0;
}
.btn-default:hover {
  color: #fff;
  background-color: #474dad;
  border-color: #474dad;
}
.btn-lg,
.btn-group-lg > .btn {
  border-radius: 0;
}
.btn-primary {
  font-size: 16px;
  padding: 10px 20px 8px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 700;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, .2);
  border-color: transparent;
  transition: all 0.5s ease;
  background: #76b509;
  color: #fff;
}
.modify-search .btn-primary {
  font-size: 13px;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, .5);
  border-color: transparent;
  outline: none;
}
.btn-primary:focus,
.btn-primary:active:focus,
.btn-primary.active:focus,
.btn-primary.focus,
.btn-primary:active.focus,
.btn-primary.active.focus {
  border-color: transparent;
  outline: none;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
  background: #76b509;
  color: #fff;
  border-color: transparent;
}
.btn-default {
  padding: 10px 20px 8px;
  border-radius: 2px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, .2);
  transition: all 0.5s ease;
}
.btn-success {
  font-size: 13px;
  padding: 10px 20px 8px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 700;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, .2);
  border-color: transparent;
  transition: all 0.5s ease;
  background: #474dad;
  color: #fff;
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success:active:focus {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, .5);
  background: #474dad;
  border-color: transparent;
  outline: none;
}
.btn-link {
  color: #4851c0;
}
.btn span.glyphicons {
  margin: -4px -14px -4px -6px;
}
img {
  max-width: 100%;
}
.well {
  background-color: #f9f9f9;
  border-radius: 0;
}
label {
  font-weight: 500;
}
.has-error .form-control {
  border-color: red;
}
span.has-error {
  color: red;
  font-size: 12px;
}
textarea.has-error {
  color: red;
  font-size: 12px;
  border-color: red;
}
.has-error .checkbox label {
  color: red !important;
}
.has-success .form-control {
  border-color: #76b509;
}
.has-feedback label ~ .form-control-feedback {
  top: 28px;
}
.mobile-credit-cards {
  width: 135px;
}
input.form-control.card.allcards,
input.form-control.card.visa,
input.form-control.card.mastercard,
input.form-control.card.amex,
input.form-control.card.discover {
  background-repeat: no-repeat;
  background-size: 48px auto;
  background-position: right center;
}
input.form-control.card.allcards {
  background-size: 150px auto;
  background-image: url(/assets/common/pr1/img/creditcards.svg);
}
input.form-control.card.visa {
  background-image: url(/assets/common/pr1/img/visa.svg);
}
input.form-control.card.mastercard {
  background-image: url(/assets/common/pr1/img/mastercard.svg);
}
input.form-control.card.amex {
  background-image: url(/assets/common/pr1/img/amex.svg);
}
input.form-control.card.discover {
  background-image: url(/assets/common/pr1/img/discover.svg);
}
label span.glyphicons {
  margin: -4px 0 -3px -8px;
  cursor: pointer;
  font-size: 11px;
}
textarea {
  resize: vertical;
}
.navbar {
  background: #474dad;
  margin-bottom: 0;
  border: 0;
}
.navbar.navbar-footer {
  overflow: hidden;
  border-radius: 0px;
}
.navbar-header {
  margin-left: 0 !important;
}
.navbar-brand {
  margin-top: 0 !important;
  padding-top: 0;
}
.navbar-brand > img {
  width: 170px;
}
.navbar-nav {
  margin: 12px 3px 0;
}
.select-wrap select {
  border: 0;
  background: url(/assets/common/pr1/img/down-arrow.svg) no-repeat right center;
  background-color: #fff;
  background-size: 14px auto;
  width: 100%;
  display: block;
  -webkit-appearance: none;
  padding: 0;
  margin-top: 2px;
}
.select-wrap select:focus {
  outline: none;
}
.form-control {
  border-radius: 0;
  box-sizing: border-box;
  border: 2px solid transparent;
  -webkit-appearance: none;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}
.form-control:focus {
  border: 3px solid rgb(73, 83, 188) !important;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.dropdown-menu {
  border-radius: 0;
}
.tools {
  padding: 5px 0 3px;
}
.tools .text-right {
  padding: 0;
}
.tools .dropdown.modify-search .dropdown-menu {
  width: 170px;
  padding: 10px;
}
.tools .dropdown.modify-search .dropdown-menu .form-group {
  margin-bottom: -1px;
}
.tools .dropdown.modify-search .dropdown-menu .select-wrap {
  padding: 7px 13px 0;
  margin-bottom: 10px;
}
.tools .dropdown.modify-search .dropdown-menu .btn {
  width: 100%;
}
.results-list ul {
  margin: 0;
  padding: 0;
}
.results-list ul li {
  list-style-type: none;
  margin-bottom: 8px;
}
.results-list ul li a.result {
  display: inline-block;
  background: #fff;
  border: 1px solid #dddddd;
  padding: 20px 0 16px;
  color: #404040;
  cursor: pointer;
}
.results-list ul li a.result:hover {
  background: #f4f5ff;
  text-decoration: none;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, .1);
}
.results-list ul li a.result.highlight {
  background: #feffed;
}
.results-list ul li a.result.highlight:hover {
  background: #f4f5ff;
}
.results-list ul li a.result p {
  color: #666;
  font-size: 13px;
}
.results-list .person img {
  border-radius: 50%;
  border: 1px solid #ccc;
  width: 50px;
  height: 50px;
  min-width: 50px;
}
.results-list li h3 {
  font-size: 21px;
  margin-bottom: 4px;
  margin-top: 0;
}
.results-list li h4 {
  font-size: 16px;
  font-weight: 400;
  color: #727272;
  margin: 0 0 10px 0;
}
.results-list li h5 {
  font-size: 13px;
  font-weight: 400;
  color: #666;
  margin: 10px 0 10px;
  line-height: inherit;
}
.results-list li .verified img {
  width: 80px;
}
#search-result #loadMore a {
  width: 300px;
  margin: 20px 0;
  padding: 15px 0;
  font-size: 18px;
  font-weight: bold;
}
.dropdown .btn-default,
.dropdown .btn-default:hover,
.dropdown .btn-default:focus,
.dropdown .btn-default:active {
  border-color: transparent !important;
  background: transparent !important;
  outline: none;
  box-shadow: none;
  color: #666;
  border: none;
}
.open > .dropdown-toggle.btn-default {
  background-image: none;
  background: transparent;
  border: transparent;
}
.form-group .help-block {
  font-size: 12px;
  color: #727272;
}
.alert {
  border-radius: 0;
}
.alert .glyphicons {
  display: block;
  text-align: center;
  font-size: 24px;
  margin-top: -5px;
}
.alert-success {
  background: #e0efc8;
  color: #527e06;
}
.alert-success a {
  color: #527e06;
  text-decoration: underline;
}
.modal-content {
  border-radius: 0;
}
.modal-header {
  background: #efefef;
}
.modal.offer .modal-content {
  padding-top: 20px;
}
.modal.offer h1 {
  margin-top: 0;
}
.modal.offer h4 {
  color: #666;
  line-height: 1.5em;
}
.modal.offer h1 span {
  color: #474dad;
}
.modal.offer .btn {
  margin: 15px 0 40px;
}
.has-feedback .form-control {
  padding-right: 0;
}
@media (max-width: 767px) {
  .navbar-brand > img {
    width: 155px;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #fff;
  }
  .navbar-brand {
    padding: 1px 5px;
  }
  .results-list li .verified img {
    width: 80px;
  }
  .dropdown .btn-default {
    padding-left: 0px;
    padding-right: 12px;
    font-size: 12px;
  }
  label {
    font-size: 10px;
  }
  input.form-control.card.visa,
  input.form-control.card.mastercard,
  input.form-control.card.amex,
  input.form-control.card.discover,
  input.form-control.card.allcards {
    background-image: none;
  }
}
#report-review.v2 .progress {
  border-radius: 0;
  height: 35px;
}
#report-review.v2 .progress-bar {
  background-color: #76b509;
  padding: 9px 5px 0 0;
  font-size: 16px;
  font-weight: 700;
  text-align: right;
}
#report-review.v2 .content-box {
  min-height: 330px;
}
#report-review.v2 .loader-header {
  margin-top: 0;
}
#report-review.v2 .content-box .loader-content .well {
  border: none;
  background-color: inherit;
}
#report-review.v2 .steps {
  text-align: center;
  margin-top: 0;
}
#report-review.v2 .steps .circle {
  height: 10px;
  width: 10px;
  display: inline-block;
  border-radius: 50%;
  margin: 5px;
  background: #ccc;
}
#report-review.v2 .steps .circle.active {
  background: #76b509;
}
#report-review.v2 .steps hr {
  margin-top: -15px;
  margin-bottom: 10px;
  border: 0;
  border-top: 1px solid #ccc;
  width: 40px;
}
#report-review.v2 .loader-header p {
  color: #727272;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: .05em;
}
#report-review.v2 .loader-header h1 {
  font-weight: 300;
}
#report-review.v2 .loader-content h2 {
  font-size: 12px;
  margin-bottom: 20px;
  font-weight: 300;
  color: #727272;
}
#report-review.v2 .loader-content h3 {
  font-size: 16px;
  font-weight: 300;
  margin-top: 4px;
}
#report-review.v2 .loader-content p {
  font-size: 12px;
  line-height: 1.8em;
}
#report-review.v2 .loader-content img {
  max-width: 60px;
  float: right;
  margin-right: -10px;
}
#report-review.v2 .loader-content ul {
  margin: 0;
  list-style-type: none;
  padding: 0;
}
#report-review.v2 .loader-content ul li {
  font-size: 12px;
  color: #666;
  display: inline-block;
}
#report-review.v2 .loader-content ul li .glyphicons {
  color: #727272;
  margin: -4px -5px 4px -3px;
}
#report-review.v2 .loader-content ul li .glyphicons.success {
  color: #76b509;
}
.icon-social {
  background-image: url(/assets/common/pr1/img/icons/social-icons-28x28.svg) !important;
  background-position: -392px 0px !important;
  width: 56px;
  height: 56px;
  background-size: 2576px 168px !important;
}
.icon-social.linkedin {
  background-position: -0px 0px !important;
}
.icon-social.twitter {
  background-position: -56px 0px !important;
}
.icon-social.facebook {
  background-position: -112px 0px !important;
}
.icon-social.angellist {
  background-position: -168px 0px !important;
}
.icon-social.flickr {
  background-position: -224px 0px !important;
}
.icon-social.google {
  background-position: -280px 0px !important;
}
.icon-social.pinterest {
  background-position: -336px 0px !important;
}
.icon-social.link {
  background-position: -392px 0px !important;
}
.icon-social.job {
  background-position: -448px 0px !important;
}
.icon-social.location {
  background-position: -504px 0px !important;
}
.icon-social.aboutme {
  background-position: -560px 0px !important;
}
.icon-social.quora {
  background-position: -616px 0px !important;
}
.icon-social.yelp {
  background-position: -672px 0px !important;
}
.icon-social.youtube {
  background-position: -728px 0px !important;
}
.icon-social.instagram {
  background-position: -784px 0px !important;
}
.icon-social.github {
  background-position: -840px 0px !important;
}
.icon-social.behance {
  background-position: -896px 0px !important;
}
.icon-social.vimeo {
  background-position: -952px 0px !important;
}
.icon-social.skype {
  background-position: -1008px 0px !important;
}
.icon-social.klout {
  background-position: -1064px 0px !important;
}
.icon-social.dribbble {
  background-position: -1120px 0px !important;
}
.icon-social.goodreads {
  background-position: -1176px 0px !important;
}
.icon-social.reddit {
  background-position: -1232px 0px !important;
}
.icon-social.foursquare {
  background-position: -1288px 0px !important;
}
.icon-social.tumblr {
  background-position: -1344px 0px !important;
}
.icon-social.soundcloud {
  background-position: -1400px 0px !important;
}
.icon-social.name {
  background-position: -1456px 0px !important;
}
.icon-social.crunchbase {
  background-position: -1512px 0px !important;
}
.icon-social.phone {
  background-position: -1568px 0px !important;
}
.icon-social.note {
  background-position: -1624px 0px !important;
}
.icon-social.mail {
  background-position: -1680px 0px !important;
}
.icon-social.birthday {
  background-position: -1736px 0px !important;
}
.icon-social.page {
  background-position: -1792px 0px !important;
}
.icon-social.heart {
  background-position: -1848px 0px !important;
}
.icon-social.conversation {
  background-position: -1904px 0px !important;
}
.icon-social.yahoo {
  background-position: -1960px 0px !important;
}
.icon-social.hangouts {
  background-position: -2016px 0px !important;
}
.icon-social.calendar {
  background-position: -2072px 0px !important;
}
.icon-social.xing {
  background-position: -2128px 0px !important;
}
.icon-social.gravatar {
  background-position: -2184px 0px !important;
}
.icon-social.picasa {
  background-position: -2240px 0px !important;
}
.icon-social.qq {
  background-position: -2296px 0px !important;
}
.icon-social.medium {
  background-position: -2352px 0px !important;
}
.icon-social.hackernews {
  background-position: -2408px 0px !important;
}
.icon-social.keybase {
  background-position: -2464px 0px !important;
}
.icon-social.owler {
  background-position: -2520px 0px !important;
}

/* src/assets/common/pr1/css/animate.css */
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  animation-duration: 1.5s;
  animation-fill-mode: none;
}
.animated.infinite {
  animation-iteration-count: infinite;
}
.animated.hinge {
  animation-duration: 2s;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, .95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}
@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }
  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(.9, .9, .9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(.97, .97, .97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(.9, .9, .9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(.95, .95, .95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }
  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }
  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }
  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }
  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }
  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }
  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

/* src/assets/common/pr1/css/style.css */
.mpi-3ds-container {
  position: fixed;
  z-index: 101;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: white;
}
.snackbars {
  position: fixed;
  z-index: 100;
  text-align: center;
}
#snackbars-top {
  top: 70px;
  margin-left: 10%;
  width: 80%;
}
#snackbars-bottom {
  bottom: 30px;
  margin-left: 30%;
  width: 40%;
}
.snackbar {
  min-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  transition: all ease;
}
.snackbar.ready {
  opacity: 0;
}
.snackbar.show {
  opacity: 1;
}
.snackbar.done {
  opacity: 0;
}
.snackbar-top {
}
.snackbar-bottom {
}
.snackbar-top.ready {
  margin-top: -62px;
  margin-bottom: 10px;
}
.snackbar-top.show,
.snackbar-top.done {
  margin-top: 0px;
  margin-bottom: 10px;
}
.snackbar-bottom.ready {
  margin-bottom: -62px;
  margin-top: 10px;
}
.snackbar-bottom.show,
.snackbar-bottom.done {
  margin-bottom: 0px;
  margin-top: 10px;
}
.snackbar a {
  color: #4be3ff;
}
#report-review .loader-content[_ngcontent-c3] .well[_ngcontent-c3] {
  min-height: 250px;
}
#report-review .content-box {
  padding-bottom: 0px;
}
#report-review .featured-on,
.customers-saying {
  padding-top: 0em;
}
.content-box .loader-content .tags {
  padding: 0 0px 0 0;
}
.content-box .loader-content .tags .animated {
  color: red;
}
.steps-form {
  display: table;
  width: 100%;
  position: relative;
}
.steps-form .steps-row {
  display: table-row;
}
.steps-form .steps-row:before {
  top: 14px;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 100%;
  height: 1px;
  background-color: #ccc;
}
.steps-form .steps-row .steps-step {
  display: table-cell;
  text-align: center;
  position: relative;
}
.steps-form .steps-row .steps-step p {
  margin-top: 5px;
}
.steps-form .steps-row .steps-step .btn-disabled {
  opacity: 1 !important;
  filter: alpha(opacity=100) !important;
  background-color: #666;
}
.steps-form .steps-row .steps-step .btn-circle {
  width: 30px;
  height: 30px;
  text-align: center;
  padding: 6px 0;
  font-size: 12px;
  line-height: 1.428571429;
  border-radius: 15px;
  margin-top: 0;
}
.steps-form .steps-row .steps-step .btn {
  color: #fff !important;
}
.steps-form .steps-row .steps-step .btn-active {
  background-color: #474dad;
}
.steps-form .steps-row .steps-step .btn-done {
  background-color: #76b509;
  opacity: 1;
}
.nopadding {
  padding: 0 !important;
  margin: 0 !important;
}
.glyphicons.fast-right-spinner {
  -webkit-animation: glyphicons-spin-r 1s infinite linear;
  animation: glyphicons-spin-r 1s infinite linear;
}
.glyphicons.normal-right-spinner {
  -webkit-animation: glyphicons-spin-r 2s infinite linear;
  animation: glyphicons-spin-r 2s infinite linear;
}
.glyphicons.slow-right-spinner {
  -webkit-animation: glyphicons-spin-r 3s infinite linear;
  animation: glyphicons-spin-r 3s infinite linear;
}
.glyphicons.fast-left-spinner {
  -webkit-animation: glyphicons-spin-l 1s infinite linear;
  animation: glyphicons-spin-l 1s infinite linear;
}
.glyphicons.normal-left-spinner {
  -webkit-animation: glyphicons-spin-l 2s infinite linear;
  animation: glyphicons-spin-l 2s infinite linear;
}
.glyphicons.slow-left-spinner {
  -webkit-animation: glyphicons-spin-l 3s infinite linear;
  animation: glyphicons-spin-l 3s infinite linear;
}
@-webkit-keyframes glyphicons-spin-r {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes glyphicons-spin-r {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-webkit-keyframes glyphicons-spin-l {
  0% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes glyphicons-spin-l {
  0% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
#landing-lightbox .modal-header {
  background: #464dac;
}
#landing-lightbox .modal-title {
  color: #fff;
}
.search-results .dropdown-toggle.btn {
  font-size: 16px;
  font-weight: bold;
}
#bottomModifySearch {
  margin: 10px -30px 10px -30px;
  background: #feffed;
  border: 1px solid #dddddd;
  padding: 15px 0 0 0;
}
#bottomModifySearch .select-wrap select {
  margin-top: 0;
}
#bottomModifySearch button {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #bottomModifySearch button {
    margin-bottom: 15px;
  }
}
span.search.target.name {
  color: #76b509;
}
#signup input[type=checkbox] {
  width: 16px;
  height: 16px;
}
.modal-footer {
  text-align: center;
}

/* src/app/themes/legacy/base.component.scss */
.theme- .navbar-brand,
.theme-legacy .navbar-brand,
.theme-default .navbar-brand,
.theme-default_1_2 .navbar-brand,
.theme-default_1_3 .navbar-brand,
.theme-particle_1 .navbar-brand {
  padding-bottom: 0;
  display: flex;
  align-items: center;
}
.theme- .navbar-brand img,
.theme-legacy .navbar-brand img,
.theme-default .navbar-brand img,
.theme-default_1_2 .navbar-brand img,
.theme-default_1_3 .navbar-brand img,
.theme-particle_1 .navbar-brand img {
  max-height: 100%;
}
.theme- .image-checkbox,
.theme-legacy .image-checkbox,
.theme-default .image-checkbox,
.theme-default_1_2 .image-checkbox,
.theme-default_1_3 .image-checkbox,
.theme-particle_1 .image-checkbox {
  position: absolute;
  left: 100%;
  visibility: hidden;
}
.theme- .image-checkbox-label,
.theme-legacy .image-checkbox-label,
.theme-default .image-checkbox-label,
.theme-default_1_2 .image-checkbox-label,
.theme-default_1_3 .image-checkbox-label,
.theme-particle_1 .image-checkbox-label {
  height: 12px;
  position: relative;
}
.theme- .image-checkbox-label::before,
.theme-legacy .image-checkbox-label::before,
.theme-default .image-checkbox-label::before,
.theme-default_1_2 .image-checkbox-label::before,
.theme-default_1_3 .image-checkbox-label::before,
.theme-particle_1 .image-checkbox-label::before {
  content: "";
  position: absolute;
  border: 2px solid #767676;
  top: 0;
  left: 0;
  height: 12px;
  width: 12px;
}
.theme- .image-checkbox:checked + .image-checkbox-label::after,
.theme-legacy .image-checkbox:checked + .image-checkbox-label::after,
.theme-default .image-checkbox:checked + .image-checkbox-label::after,
.theme-default_1_2 .image-checkbox:checked + .image-checkbox-label::after,
.theme-default_1_3 .image-checkbox:checked + .image-checkbox-label::after,
.theme-particle_1 .image-checkbox:checked + .image-checkbox-label::after {
  content: "\2713  ";
  position: absolute;
  top: 1px;
  left: 2px;
  font-size: 10px;
  line-height: 10px;
  color: #767676;
  transition: all 0.2s;
  font-weight: 900;
  font-family:
    "Lucida Sans Unicode",
    "Arial Unicode MS",
    Arial;
}
.theme- .ux1-checkbox label,
.theme-legacy .ux1-checkbox label,
.theme-default .ux1-checkbox label,
.theme-default_1_2 .ux1-checkbox label,
.theme-default_1_3 .ux1-checkbox label,
.theme-particle_1 .ux1-checkbox label {
  padding-left: 16px;
  line-height: 12px;
  font-weight: 400 !important;
}
.theme- .collapse.in,
.theme-legacy .collapse.in,
.theme-default .collapse.in,
.theme-default_1_2 .collapse.in,
.theme-default_1_3 .collapse.in,
.theme-particle_1 .collapse.in {
  display: block !important;
}
.theme- #sup label,
.theme-legacy #sup label,
.theme-default #sup label,
.theme-default_1_2 #sup label,
.theme-default_1_3 #sup label,
.theme-particle_1 #sup label {
  color: #171717;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #search-result.sales.name-search #bottomModifySearch button {
    vertical-align: top;
    margin-top: -2px;
  }
}

/* src/app/themes/ux.2.0/base.component.scss */
html {
  height: 100%;
  font-family: sans-serif;
}
body {
  margin: 0;
  min-height: 100%;
  background-color: #fff;
  font-size: 14px;
  line-height: 20px;
  color: #333;
}
body {
  background-color: #f8fafe;
}
.modal {
  display: none;
}
.modal.in {
  display: block;
}
.fast-right-spinner {
  -webkit-animation: glyphicons-spin-r 1s infinite linear;
  animation: glyphicons-spin-r 1s infinite linear;
}
.normal-right-spinner {
  -webkit-animation: glyphicons-spin-r 2s infinite linear;
  animation: glyphicons-spin-r 2s infinite linear;
}
.slow-right-spinner {
  -webkit-animation: glyphicons-spin-r 3s infinite linear;
  animation: glyphicons-spin-r 3s infinite linear;
}
.fast-left-spinner {
  -webkit-animation: glyphicons-spin-l 1s infinite linear;
  animation: glyphicons-spin-l 1s infinite linear;
}
.normal-left-spinner {
  -webkit-animation: glyphicons-spin-l 2s infinite linear;
  animation: glyphicons-spin-l 2s infinite linear;
}
.slow-left-spinner {
  -webkit-animation: glyphicons-spin-l 3s infinite linear;
  animation: glyphicons-spin-l 3s infinite linear;
}
@-webkit-keyframes glyphicons-spin-r {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes glyphicons-spin-r {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-webkit-keyframes glyphicons-spin-l {
  0% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes glyphicons-spin-l {
  0% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-image: url(/assets/d2cfd051a545683285889fd5db921caf/images/checkmark.svg) !important;
}
.theme-ux_2_0 {
}
.theme-ux_2_0 audio,
.theme-ux_2_0 canvas,
.theme-ux_2_0 progress,
.theme-ux_2_0 video {
  display: inline-block;
  vertical-align: baseline;
}
.theme-ux_2_0 audio:not([controls]) {
  display: none;
  height: 0;
}
.theme-ux_2_0 [hidden],
.theme-ux_2_0 template {
  display: none;
}
.theme-ux_2_0 a {
  background-color: transparent;
}
.theme-ux_2_0 a:active,
.theme-ux_2_0 a:hover {
  outline: 0;
}
.theme-ux_2_0 abbr[title] {
  border-bottom: 1px dotted;
}
.theme-ux_2_0 b,
.theme-ux_2_0 strong {
  font-weight: bold;
}
.theme-ux_2_0 dfn {
  font-style: italic;
}
.theme-ux_2_0 h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
.theme-ux_2_0 mark {
  background: #ff0;
  color: #000;
}
.theme-ux_2_0 small {
  font-size: 80%;
}
.theme-ux_2_0 sub,
.theme-ux_2_0 sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.theme-ux_2_0 sup {
  top: -0.5em;
}
.theme-ux_2_0 sub {
  bottom: -0.25em;
}
.theme-ux_2_0 img {
  border: 0;
}
.theme-ux_2_0 svg:not(:root) {
  overflow: hidden;
}
.theme-ux_2_0 figure {
  margin: 1em 40px;
}
.theme-ux_2_0 hr {
  box-sizing: content-box;
  height: 0;
}
.theme-ux_2_0 pre {
  overflow: auto;
}
.theme-ux_2_0 code,
.theme-ux_2_0 kbd,
.theme-ux_2_0 pre,
.theme-ux_2_0 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
.theme-ux_2_0 button,
.theme-ux_2_0 input,
.theme-ux_2_0 optgroup,
.theme-ux_2_0 select,
.theme-ux_2_0 textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
.theme-ux_2_0 button {
  overflow: visible;
}
.theme-ux_2_0 button,
.theme-ux_2_0 select {
  text-transform: none;
}
.theme-ux_2_0 button,
.theme-ux_2_0 html input[type=button],
.theme-ux_2_0 input[type=reset] {
  -webkit-appearance: button;
  cursor: pointer;
}
.theme-ux_2_0 button[disabled],
.theme-ux_2_0 html input[disabled] {
  cursor: default;
}
.theme-ux_2_0 button::-moz-focus-inner,
.theme-ux_2_0 input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.theme-ux_2_0 input {
  line-height: normal;
}
.theme-ux_2_0 input[type=checkbox],
.theme-ux_2_0 input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}
.theme-ux_2_0 input[type=number]::-webkit-inner-spin-button,
.theme-ux_2_0 input[type=number]::-webkit-outer-spin-button {
  height: auto;
}
.theme-ux_2_0 input[type=search] {
  -webkit-appearance: none;
}
.theme-ux_2_0 input[type=search]::-webkit-search-cancel-button,
.theme-ux_2_0 input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
.theme-ux_2_0 fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
.theme-ux_2_0 legend {
  border: 0;
  padding: 0;
}
.theme-ux_2_0 textarea {
  overflow: auto;
}
.theme-ux_2_0 optgroup {
  font-weight: bold;
}
.theme-ux_2_0 table {
  border-collapse: collapse;
  border-spacing: 0;
}
.theme-ux_2_0 td,
.theme-ux_2_0 th {
  padding: 0;
}
@font-face {
  font-family: "webflow-icons";
  src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBiUAAAC8AAAAYGNtYXDpP+a4AAABHAAAAFxnYXNwAAAAEAAAAXgAAAAIZ2x5ZmhS2XEAAAGAAAADHGhlYWQTFw3HAAAEnAAAADZoaGVhCXYFgQAABNQAAAAkaG10eCe4A1oAAAT4AAAAMGxvY2EDtALGAAAFKAAAABptYXhwABAAPgAABUQAAAAgbmFtZSoCsMsAAAVkAAABznBvc3QAAwAAAAAHNAAAACAAAwP4AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAQAAAAAwACAACAAQAAQAg5gPpA//9//8AAAAAACDmAOkA//3//wAB/+MaBBcIAAMAAQAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEBIAAAAyADgAAFAAAJAQcJARcDIP5AQAGA/oBAAcABwED+gP6AQAABAOAAAALgA4AABQAAEwEXCQEH4AHAQP6AAYBAAcABwED+gP6AQAAAAwDAAOADQALAAA8AHwAvAAABISIGHQEUFjMhMjY9ATQmByEiBh0BFBYzITI2PQE0JgchIgYdARQWMyEyNj0BNCYDIP3ADRMTDQJADRMTDf3ADRMTDQJADRMTDf3ADRMTDQJADRMTAsATDSANExMNIA0TwBMNIA0TEw0gDRPAEw0gDRMTDSANEwAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFVz+fAGEAAAAAAL//f+9BAMDwwAEAAkAABcBJwEXAwE3AQdpA5ps/GZsbAOabPxmbEMDmmz8ZmwDmvxmbAOabAAAAgAA/8AEAAPAAB0AOwAABSInLgEnJjU0Nz4BNzYzMTIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjMSIHDgEHBhUUFx4BFxYzAgBqXV6LKCgoKIteXWpqXV6LKCgoKIteXWpVSktvICEhIG9LSlVVSktvICEhIG9LSlVAKCiLXl1qal1eiygoKCiLXl1qal1eiygoZiEgb0tKVVVKS28gISEgb0tKVVVKS28gIQABAAABwAIAA8AAEgAAEzQ3PgE3NjMxFSIHDgEHBhUxIwAoKIteXWpVSktvICFmAcBqXV6LKChmISBvS0pVAAAAAgAA/8AFtgPAADIAOgAAARYXHgEXFhUUBw4BBwYHIxUhIicuAScmNTQ3PgE3NjMxOAExNDc+ATc2MzIXHgEXFhcVATMJATMVMzUEjD83NlAXFxYXTjU1PQL8kz01Nk8XFxcXTzY1PSIjd1BQWlJJSXInJw3+mdv+2/7c25MCUQYcHFg5OUA/ODlXHBwIAhcXTzY1PTw1Nk8XF1tQUHcjIhwcYUNDTgL+3QFt/pOTkwABAAAAAQAAmM7nP18PPPUACwQAAAAAANciZKUAAAAA1yJkpf/9/70FtgPDAAAACAACAAAAAAAAAAEAAAPA/8AAAAW3//3//QW2AAEAAAAAAAAAAAAAAAAAAAAMBAAAAAAAAAAAAAAAAgAAAAQAASAEAADgBAAAwAQAAJ0EAP/9BAAAAAQAAAAFtwAAAAAAAAAKABQAHgAyAEYAjACiAL4BFgE2AY4AAAABAAAADAA8AAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADQAAAAEAAAAAAAIABwCWAAEAAAAAAAMADQBIAAEAAAAAAAQADQCrAAEAAAAAAAUACwAnAAEAAAAAAAYADQBvAAEAAAAAAAoAGgDSAAMAAQQJAAEAGgANAAMAAQQJAAIADgCdAAMAAQQJAAMAGgBVAAMAAQQJAAQAGgC4AAMAAQQJAAUAFgAyAAMAAQQJAAYAGgB8AAMAAQQJAAoANADsd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("truetype");
  font-weight: normal;
  font-style: normal;
}
.theme-ux_2_0 [class^=w-icon-],
.theme-ux_2_0 [class*=" w-icon-"] {
  font-family: "webflow-icons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.theme-ux_2_0 .w-icon-slider-right:before {
  content: "\e600";
}
.theme-ux_2_0 .w-icon-slider-left:before {
  content: "\e601";
}
.theme-ux_2_0 .w-icon-nav-menu:before {
  content: "\e602";
}
.theme-ux_2_0 .w-icon-arrow-down:before,
.theme-ux_2_0 .w-icon-dropdown-toggle:before {
  content: "\e603";
}
.theme-ux_2_0 .w-icon-file-upload-remove:before {
  content: "\e900";
}
.theme-ux_2_0 .w-icon-file-upload-icon:before {
  content: "\e903";
}
.theme-ux_2_0 * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.theme-ux_2_0 html {
  height: 100%;
}
.theme-ux_2_0 body {
  margin: 0;
  min-height: 100%;
  background-color: #fff;
  font-size: 14px;
  line-height: 20px;
  color: #333;
}
.theme-ux_2_0 img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}
.theme-ux_2_0 html.w-mod-touch * {
  background-attachment: scroll !important;
}
.theme-ux_2_0 .w-block {
  display: block;
}
.theme-ux_2_0 .w-inline-block {
  max-width: 100%;
  display: inline-block;
}
.theme-ux_2_0 .w-clearfix:before,
.theme-ux_2_0 .w-clearfix:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.theme-ux_2_0 .w-clearfix:after {
  clear: both;
}
.theme-ux_2_0 .w-hidden {
  display: none;
}
.theme-ux_2_0 .w-button {
  display: inline-block;
  padding: 9px 15px;
  background-color: #3898EC;
  color: white;
  border: 0;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
}
.theme-ux_2_0 input.w-button {
  -webkit-appearance: button;
}
.theme-ux_2_0 html[data-w-dynpage] [data-w-cloak] {
  color: transparent !important;
}
.theme-ux_2_0 .w-webflow-badge,
.theme-ux_2_0 .w-webflow-badge * {
  position: static;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  z-index: auto;
  display: block;
  visibility: visible;
  overflow: visible;
  overflow-x: visible;
  overflow-y: visible;
  box-sizing: border-box;
  width: auto;
  height: auto;
  max-height: none;
  max-width: none;
  min-height: 0;
  min-width: 0;
  margin: 0;
  padding: 0;
  float: none;
  clear: none;
  border: 0 none transparent;
  border-radius: 0;
  background: none;
  background-image: none;
  background-position: 0% 0%;
  background-size: auto auto;
  background-repeat: repeat;
  background-origin: padding-box;
  background-clip: border-box;
  background-attachment: scroll;
  background-color: transparent;
  box-shadow: none;
  opacity: 1;
  transform: none;
  transition: none;
  direction: ltr;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-style: inherit;
  font-variant: inherit;
  text-align: inherit;
  letter-spacing: inherit;
  text-decoration: inherit;
  text-indent: 0;
  text-transform: inherit;
  list-style-type: disc;
  text-shadow: none;
  font-smoothing: auto;
  vertical-align: baseline;
  cursor: inherit;
  white-space: inherit;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
}
.theme-ux_2_0 .w-webflow-badge {
  position: fixed !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 2147483647 !important;
  top: auto !important;
  right: 12px !important;
  bottom: 12px !important;
  left: auto !important;
  color: #AAADB0 !important;
  background-color: #fff !important;
  border-radius: 3px !important;
  padding: 6px 8px 6px 6px !important;
  font-size: 12px !important;
  opacity: 1 !important;
  line-height: 14px !important;
  text-decoration: none !important;
  transform: none !important;
  margin: 0 !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.theme-ux_2_0 .w-webflow-badge > img {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  vertical-align: middle !important;
}
.theme-ux_2_0 h1,
.theme-ux_2_0 h2,
.theme-ux_2_0 h3,
.theme-ux_2_0 h4,
.theme-ux_2_0 h5,
.theme-ux_2_0 h6 {
  font-weight: bold;
  margin-bottom: 10px;
}
.theme-ux_2_0 h1 {
  font-size: 38px;
  line-height: 44px;
  margin-top: 20px;
}
.theme-ux_2_0 h2 {
  font-size: 32px;
  line-height: 36px;
  margin-top: 20px;
}
.theme-ux_2_0 h3 {
  font-size: 24px;
  line-height: 30px;
  margin-top: 20px;
}
.theme-ux_2_0 h4 {
  font-size: 18px;
  line-height: 24px;
  margin-top: 10px;
}
.theme-ux_2_0 h5 {
  font-size: 14px;
  line-height: 20px;
  margin-top: 10px;
}
.theme-ux_2_0 h6 {
  font-size: 12px;
  line-height: 18px;
  margin-top: 10px;
}
.theme-ux_2_0 p {
  margin-top: 0;
  margin-bottom: 10px;
}
.theme-ux_2_0 blockquote {
  margin: 0 0 10px 0;
  padding: 10px 20px;
  border-left: 5px solid #E2E2E2;
  font-size: 18px;
  line-height: 22px;
}
.theme-ux_2_0 figure {
  margin: 0;
  margin-bottom: 10px;
}
.theme-ux_2_0 figcaption {
  margin-top: 5px;
  text-align: center;
}
.theme-ux_2_0 ul,
.theme-ux_2_0 ol {
  margin-top: 0px;
  margin-bottom: 10px;
}
.theme-ux_2_0 .w-list-unstyled {
  padding-left: 0;
  list-style: none;
}
.theme-ux_2_0 .w-embed:before,
.theme-ux_2_0 .w-embed:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.theme-ux_2_0 .w-embed:after {
  clear: both;
}
.theme-ux_2_0 .w-video {
  width: 100%;
  position: relative;
  padding: 0;
}
.theme-ux_2_0 .w-video iframe,
.theme-ux_2_0 .w-video object,
.theme-ux_2_0 .w-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.theme-ux_2_0 fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}
.theme-ux_2_0 button,
.theme-ux_2_0 html input[type=button],
.theme-ux_2_0 input[type=reset] {
  border: 0;
  cursor: pointer;
  -webkit-appearance: button;
}
.theme-ux_2_0 .w-form {
  margin: 0 0 15px;
}
.theme-ux_2_0 .w-form-done {
  display: none;
  padding: 20px;
  text-align: center;
  background-color: #dddddd;
}
.theme-ux_2_0 .w-form-fail {
  display: none;
  margin-top: 10px;
  padding: 10px;
  background-color: #ffdede;
}
.theme-ux_2_0 label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.theme-ux_2_0 .w-input,
.theme-ux_2_0 .w-select {
  display: block;
  width: 100%;
  height: 38px;
  padding: 8px 12px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #333333;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #cccccc;
}
.theme-ux_2_0 .w-input:-moz-placeholder,
.theme-ux_2_0 .w-select:-moz-placeholder {
  color: #999;
}
.theme-ux_2_0 .w-input::-moz-placeholder,
.theme-ux_2_0 .w-select::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.theme-ux_2_0 .w-input:-ms-input-placeholder,
.theme-ux_2_0 .w-select:-ms-input-placeholder {
  color: #999;
}
.theme-ux_2_0 .w-input::-webkit-input-placeholder,
.theme-ux_2_0 .w-select::-webkit-input-placeholder {
  color: #999;
}
.theme-ux_2_0 .w-input:focus,
.theme-ux_2_0 .w-select:focus {
  border-color: #3898EC;
  outline: 0;
}
.theme-ux_2_0 .w-input[disabled],
.theme-ux_2_0 .w-select[disabled],
.theme-ux_2_0 .w-input[readonly],
.theme-ux_2_0 .w-select[readonly],
.theme-ux_2_0 fieldset[disabled] .w-input,
.theme-ux_2_0 fieldset[disabled] .w-select {
  cursor: not-allowed;
  background-color: #eeeeee;
}
.theme-ux_2_0 textarea.w-input,
.theme-ux_2_0 textarea.w-select {
  height: auto;
}
.theme-ux_2_0 .w-select {
  background-color: #f3f3f3;
}
.theme-ux_2_0 .w-select[multiple] {
  height: auto;
}
.theme-ux_2_0 .w-form-label {
  display: inline-block;
  cursor: pointer;
  font-weight: normal;
  margin-bottom: 0px;
}
.theme-ux_2_0 .w-radio {
  display: block;
  margin-bottom: 5px;
  padding-left: 20px;
}
.theme-ux_2_0 .w-radio:before,
.theme-ux_2_0 .w-radio:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.theme-ux_2_0 .w-radio:after {
  clear: both;
}
.theme-ux_2_0 .w-radio-input {
  margin: 4px 0 0;
  margin-top: 1px \	;
  line-height: normal;
  float: left;
  margin-left: -20px;
}
.theme-ux_2_0 .w-radio-input {
  margin-top: 3px;
}
.theme-ux_2_0 .w-file-upload {
  display: block;
  margin-bottom: 10px;
}
.theme-ux_2_0 .w-file-upload-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -100;
}
.theme-ux_2_0 .w-file-upload-default,
.theme-ux_2_0 .w-file-upload-uploading,
.theme-ux_2_0 .w-file-upload-success {
  display: inline-block;
  color: #333333;
}
.theme-ux_2_0 .w-file-upload-error {
  display: block;
  margin-top: 10px;
}
.theme-ux_2_0 .w-file-upload-default.w-hidden,
.theme-ux_2_0 .w-file-upload-uploading.w-hidden,
.theme-ux_2_0 .w-file-upload-error.w-hidden,
.theme-ux_2_0 .w-file-upload-success.w-hidden {
  display: none;
}
.theme-ux_2_0 .w-file-upload-uploading-btn {
  display: flex;
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid #cccccc;
  background-color: #fafafa;
}
.theme-ux_2_0 .w-file-upload-file {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  margin: 0;
  padding: 8px 9px 8px 11px;
  border: 1px solid #cccccc;
  background-color: #fafafa;
}
.theme-ux_2_0 .w-file-upload-file-name {
  font-size: 14px;
  font-weight: normal;
  display: block;
}
.theme-ux_2_0 .w-file-remove-link {
  margin-top: 3px;
  margin-left: 10px;
  width: auto;
  height: auto;
  padding: 3px;
  display: block;
  cursor: pointer;
}
.theme-ux_2_0 .w-icon-file-upload-remove {
  margin: auto;
  font-size: 10px;
}
.theme-ux_2_0 .w-file-upload-error-msg {
  display: inline-block;
  color: #ea384c;
  padding: 2px 0;
}
.theme-ux_2_0 .w-file-upload-info {
  display: inline-block;
  line-height: 38px;
  padding: 0 12px;
}
.theme-ux_2_0 .w-file-upload-label {
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid #cccccc;
  background-color: #fafafa;
}
.theme-ux_2_0 .w-icon-file-upload-icon,
.theme-ux_2_0 .w-icon-file-upload-uploading {
  display: inline-block;
  margin-right: 8px;
  width: 20px;
}
.theme-ux_2_0 .w-icon-file-upload-uploading {
  height: 20px;
}
.theme-ux_2_0 .w-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 940px;
}
.theme-ux_2_0 .w-container:before,
.theme-ux_2_0 .w-container:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.theme-ux_2_0 .w-container:after {
  clear: both;
}
.theme-ux_2_0 .w-container .w-row {
  margin-left: -10px;
  margin-right: -10px;
}
.theme-ux_2_0 .w-row:before,
.theme-ux_2_0 .w-row:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.theme-ux_2_0 .w-row:after {
  clear: both;
}
.theme-ux_2_0 .w-row .w-row {
  margin-left: 0;
  margin-right: 0;
}
.theme-ux_2_0 .w-col {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.theme-ux_2_0 .w-col .w-col {
  padding-left: 0;
  padding-right: 0;
}
.theme-ux_2_0 .w-col-1 {
  width: 8.33333333%;
}
.theme-ux_2_0 .w-col-2 {
  width: 16.66666667%;
}
.theme-ux_2_0 .w-col-3 {
  width: 25%;
}
.theme-ux_2_0 .w-col-4 {
  width: 33.33333333%;
}
.theme-ux_2_0 .w-col-5 {
  width: 41.66666667%;
}
.theme-ux_2_0 .w-col-6 {
  width: 50%;
}
.theme-ux_2_0 .w-col-7 {
  width: 58.33333333%;
}
.theme-ux_2_0 .w-col-8 {
  width: 66.66666667%;
}
.theme-ux_2_0 .w-col-9 {
  width: 75%;
}
.theme-ux_2_0 .w-col-10 {
  width: 83.33333333%;
}
.theme-ux_2_0 .w-col-11 {
  width: 91.66666667%;
}
.theme-ux_2_0 .w-col-12 {
  width: 100%;
}
.theme-ux_2_0 .w-hidden-main {
  display: none !important;
}
@media screen and (max-width: 991px) {
  .theme-ux_2_0 .w-container {
    max-width: 728px;
  }
  .theme-ux_2_0 .w-hidden-main {
    display: inherit !important;
  }
  .theme-ux_2_0 .w-hidden-medium {
    display: none !important;
  }
  .theme-ux_2_0 .w-col-medium-1 {
    width: 8.33333333%;
  }
  .theme-ux_2_0 .w-col-medium-2 {
    width: 16.66666667%;
  }
  .theme-ux_2_0 .w-col-medium-3 {
    width: 25%;
  }
  .theme-ux_2_0 .w-col-medium-4 {
    width: 33.33333333%;
  }
  .theme-ux_2_0 .w-col-medium-5 {
    width: 41.66666667%;
  }
  .theme-ux_2_0 .w-col-medium-6 {
    width: 50%;
  }
  .theme-ux_2_0 .w-col-medium-7 {
    width: 58.33333333%;
  }
  .theme-ux_2_0 .w-col-medium-8 {
    width: 66.66666667%;
  }
  .theme-ux_2_0 .w-col-medium-9 {
    width: 75%;
  }
  .theme-ux_2_0 .w-col-medium-10 {
    width: 83.33333333%;
  }
  .theme-ux_2_0 .w-col-medium-11 {
    width: 91.66666667%;
  }
  .theme-ux_2_0 .w-col-medium-12 {
    width: 100%;
  }
  .theme-ux_2_0 .w-col-stack {
    width: 100%;
    left: auto;
    right: auto;
  }
}
@media screen and (max-width: 767px) {
  .theme-ux_2_0 .w-hidden-main {
    display: inherit !important;
  }
  .theme-ux_2_0 .w-hidden-medium {
    display: inherit !important;
  }
  .theme-ux_2_0 .w-hidden-small {
    display: none !important;
  }
  .theme-ux_2_0 .w-row,
  .theme-ux_2_0 .w-container .w-row {
    margin-left: 0;
    margin-right: 0;
  }
  .theme-ux_2_0 .w-col {
    width: 100%;
    left: auto;
    right: auto;
  }
  .theme-ux_2_0 .w-col-small-1 {
    width: 8.33333333%;
  }
  .theme-ux_2_0 .w-col-small-2 {
    width: 16.66666667%;
  }
  .theme-ux_2_0 .w-col-small-3 {
    width: 25%;
  }
  .theme-ux_2_0 .w-col-small-4 {
    width: 33.33333333%;
  }
  .theme-ux_2_0 .w-col-small-5 {
    width: 41.66666667%;
  }
  .theme-ux_2_0 .w-col-small-6 {
    width: 50%;
  }
  .theme-ux_2_0 .w-col-small-7 {
    width: 58.33333333%;
  }
  .theme-ux_2_0 .w-col-small-8 {
    width: 66.66666667%;
  }
  .theme-ux_2_0 .w-col-small-9 {
    width: 75%;
  }
  .theme-ux_2_0 .w-col-small-10 {
    width: 83.33333333%;
  }
  .theme-ux_2_0 .w-col-small-11 {
    width: 91.66666667%;
  }
  .theme-ux_2_0 .w-col-small-12 {
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  .theme-ux_2_0 .w-container {
    max-width: none;
  }
  .theme-ux_2_0 .w-hidden-main {
    display: inherit !important;
  }
  .theme-ux_2_0 .w-hidden-medium {
    display: inherit !important;
  }
  .theme-ux_2_0 .w-hidden-small {
    display: inherit !important;
  }
  .theme-ux_2_0 .w-hidden-tiny {
    display: none !important;
  }
  .theme-ux_2_0 .w-col {
    width: 100%;
  }
  .theme-ux_2_0 .w-col-tiny-1 {
    width: 8.33333333%;
  }
  .theme-ux_2_0 .w-col-tiny-2 {
    width: 16.66666667%;
  }
  .theme-ux_2_0 .w-col-tiny-3 {
    width: 25%;
  }
  .theme-ux_2_0 .w-col-tiny-4 {
    width: 33.33333333%;
  }
  .theme-ux_2_0 .w-col-tiny-5 {
    width: 41.66666667%;
  }
  .theme-ux_2_0 .w-col-tiny-6 {
    width: 50%;
  }
  .theme-ux_2_0 .w-col-tiny-7 {
    width: 58.33333333%;
  }
  .theme-ux_2_0 .w-col-tiny-8 {
    width: 66.66666667%;
  }
  .theme-ux_2_0 .w-col-tiny-9 {
    width: 75%;
  }
  .theme-ux_2_0 .w-col-tiny-10 {
    width: 83.33333333%;
  }
  .theme-ux_2_0 .w-col-tiny-11 {
    width: 91.66666667%;
  }
  .theme-ux_2_0 .w-col-tiny-12 {
    width: 100%;
  }
}
.theme-ux_2_0 .w-widget {
  position: relative;
}
.theme-ux_2_0 .w-widget-map {
  width: 100%;
  height: 400px;
}
.theme-ux_2_0 .w-widget-map label {
  width: auto;
  display: inline;
}
.theme-ux_2_0 .w-widget-map img {
  max-width: inherit;
}
.theme-ux_2_0 .w-widget-map .gm-style-iw {
  text-align: center;
}
.theme-ux_2_0 .w-widget-map .gm-style-iw > button {
  display: none !important;
}
.theme-ux_2_0 .w-widget-twitter {
  overflow: hidden;
}
.theme-ux_2_0 .w-widget-twitter-count-shim {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 28px;
  height: 20px;
  text-align: center;
  background: white;
  border: #758696 solid 1px;
  border-radius: 3px;
}
.theme-ux_2_0 .w-widget-twitter-count-shim * {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.theme-ux_2_0 .w-widget-twitter-count-shim .w-widget-twitter-count-inner {
  position: relative;
  font-size: 15px;
  line-height: 12px;
  text-align: center;
  color: #999;
  font-family: serif;
}
.theme-ux_2_0 .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
  position: relative;
  display: block;
}
.theme-ux_2_0 .w-widget-twitter-count-shim.w--large {
  width: 36px;
  height: 28px;
}
.theme-ux_2_0 .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 18px;
}
.theme-ux_2_0 .w-widget-twitter-count-shim:not(.w--vertical) {
  margin-left: 5px;
  margin-right: 8px;
}
.theme-ux_2_0 .w-widget-twitter-count-shim:not(.w--vertical).w--large {
  margin-left: 6px;
}
.theme-ux_2_0 .w-widget-twitter-count-shim:not(.w--vertical):before,
.theme-ux_2_0 .w-widget-twitter-count-shim:not(.w--vertical):after {
  top: 50%;
  left: 0;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.theme-ux_2_0 .w-widget-twitter-count-shim:not(.w--vertical):before {
  border-color: rgba(117, 134, 150, 0);
  border-right-color: #5d6c7b;
  border-width: 4px;
  margin-left: -9px;
  margin-top: -4px;
}
.theme-ux_2_0 .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
  border-width: 5px;
  margin-left: -10px;
  margin-top: -5px;
}
.theme-ux_2_0 .w-widget-twitter-count-shim:not(.w--vertical):after {
  border-color: rgba(255, 255, 255, 0);
  border-right-color: white;
  border-width: 4px;
  margin-left: -8px;
  margin-top: -4px;
}
.theme-ux_2_0 .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
  border-width: 5px;
  margin-left: -9px;
  margin-top: -5px;
}
.theme-ux_2_0 .w-widget-twitter-count-shim.w--vertical {
  width: 61px;
  height: 33px;
  margin-bottom: 8px;
}
.theme-ux_2_0 .w-widget-twitter-count-shim.w--vertical:before,
.theme-ux_2_0 .w-widget-twitter-count-shim.w--vertical:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.theme-ux_2_0 .w-widget-twitter-count-shim.w--vertical:before {
  border-color: rgba(117, 134, 150, 0);
  border-top-color: #5d6c7b;
  border-width: 5px;
  margin-left: -5px;
}
.theme-ux_2_0 .w-widget-twitter-count-shim.w--vertical:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-color: white;
  border-width: 4px;
  margin-left: -4px;
}
.theme-ux_2_0 .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 22px;
}
.theme-ux_2_0 .w-widget-twitter-count-shim.w--vertical.w--large {
  width: 76px;
}
.theme-ux_2_0 .w-widget-gplus {
  overflow: hidden;
}
.theme-ux_2_0 .w-background-video {
  position: relative;
  overflow: hidden;
  height: 500px;
  color: white;
}
.theme-ux_2_0 .w-background-video > video {
  background-size: cover;
  background-position: 50% 50%;
  position: absolute;
  margin: auto;
  width: 100%;
  height: 100%;
  right: -100%;
  bottom: -100%;
  top: -100%;
  left: -100%;
  object-fit: cover;
  z-index: -100;
}
.theme-ux_2_0 .w-background-video > video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}
.theme-ux_2_0 .w-slider {
  position: relative;
  height: 300px;
  text-align: center;
  background: #dddddd;
  clear: both;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}
.theme-ux_2_0 .w-slider-mask {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
  left: 0;
  right: 0;
  height: 100%;
  white-space: nowrap;
}
.theme-ux_2_0 .w-slide {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: 100%;
  white-space: normal;
  text-align: left;
}
.theme-ux_2_0 .w-slider-nav {
  position: absolute;
  z-index: 2;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  padding-top: 10px;
  height: 40px;
  text-align: center;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}
.theme-ux_2_0 .w-slider-nav.w-round > div {
  border-radius: 100%;
}
.theme-ux_2_0 .w-slider-nav.w-num > div {
  width: auto;
  height: auto;
  padding: 0.2em 0.5em;
  font-size: inherit;
  line-height: inherit;
}
.theme-ux_2_0 .w-slider-nav.w-shadow > div {
  box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
}
.theme-ux_2_0 .w-slider-nav-invert {
  color: #fff;
}
.theme-ux_2_0 .w-slider-nav-invert > div {
  background-color: rgba(34, 34, 34, 0.4);
}
.theme-ux_2_0 .w-slider-nav-invert > div.w-active {
  background-color: #222;
}
.theme-ux_2_0 .w-slider-dot {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  margin: 0 3px 0.5em;
  transition: background-color 100ms, color 100ms;
}
.theme-ux_2_0 .w-slider-dot.w-active {
  background-color: #fff;
}
.theme-ux_2_0 .w-slider-dot:focus {
  outline: none;
  box-shadow: 0px 0px 0px 2px #fff;
}
.theme-ux_2_0 .w-slider-dot:focus.w-active {
  box-shadow: none;
}
.theme-ux_2_0 .w-slider-arrow-left,
.theme-ux_2_0 .w-slider-arrow-right {
  position: absolute;
  width: 80px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  cursor: pointer;
  overflow: hidden;
  color: white;
  font-size: 40px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.theme-ux_2_0 .w-slider-arrow-left [class^=w-icon-],
.theme-ux_2_0 .w-slider-arrow-right [class^=w-icon-],
.theme-ux_2_0 .w-slider-arrow-left [class*=" w-icon-"],
.theme-ux_2_0 .w-slider-arrow-right [class*=" w-icon-"] {
  position: absolute;
}
.theme-ux_2_0 .w-slider-arrow-left:focus,
.theme-ux_2_0 .w-slider-arrow-right:focus {
  outline: 0;
}
.theme-ux_2_0 .w-slider-arrow-left {
  z-index: 3;
  right: auto;
}
.theme-ux_2_0 .w-slider-arrow-right {
  z-index: 4;
  left: auto;
}
.theme-ux_2_0 .w-icon-slider-left,
.theme-ux_2_0 .w-icon-slider-right {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1em;
  height: 1em;
}
.theme-ux_2_0 .w-slider-aria-label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.theme-ux_2_0 .w-dropdown {
  display: inline-block;
  position: relative;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  z-index: 900;
}
.theme-ux_2_0 .w-dropdown-btn,
.theme-ux_2_0 .w-dropdown-toggle,
.theme-ux_2_0 .w-dropdown-link {
  position: relative;
  vertical-align: top;
  text-decoration: none;
  color: #222222;
  padding: 20px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}
.theme-ux_2_0 .w-dropdown-toggle {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: inline-block;
  cursor: pointer;
  padding-right: 40px;
}
.theme-ux_2_0 .w-dropdown-toggle:focus {
  outline: 0;
}
.theme-ux_2_0 .w-icon-dropdown-toggle {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  margin-right: 20px;
  width: 1em;
  height: 1em;
}
.theme-ux_2_0 .w-dropdown-list {
  position: absolute;
  background: #dddddd;
  display: none;
  min-width: 100%;
}
.theme-ux_2_0 .w-dropdown-list.w--open {
  display: block;
}
.theme-ux_2_0 .w-dropdown-link {
  padding: 10px 20px;
  display: block;
  color: #222222;
}
.theme-ux_2_0 .w-dropdown-link.w--current {
  color: #0082f3;
}
.theme-ux_2_0 .w-dropdown-link:focus {
  outline: 0;
}
@media screen and (max-width: 767px) {
  .theme-ux_2_0 .w-nav-brand {
    padding-left: 10px;
  }
}
.theme-ux_2_0 .w-lightbox-backdrop {
  color: #000;
  cursor: auto;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-height: normal;
  list-style: disc;
  text-align: start;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: #fff;
  font-family:
    "Helvetica Neue",
    Helvetica,
    Ubuntu,
    "Segoe UI",
    Verdana,
    sans-serif;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 300;
  text-align: center;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  outline: 0;
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-transform: translate(0, 0);
}
.theme-ux_2_0 .w-lightbox-backdrop,
.theme-ux_2_0 .w-lightbox-container {
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.theme-ux_2_0 .w-lightbox-content {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.theme-ux_2_0 .w-lightbox-view {
  position: absolute;
  width: 100vw;
  height: 100vh;
  opacity: 0;
}
.theme-ux_2_0 .w-lightbox-view:before {
  content: "";
  height: 100vh;
}
.theme-ux_2_0 .w-lightbox-group,
.theme-ux_2_0 .w-lightbox-group .w-lightbox-view,
.theme-ux_2_0 .w-lightbox-group .w-lightbox-view:before {
  height: 86vh;
}
.theme-ux_2_0 .w-lightbox-frame,
.theme-ux_2_0 .w-lightbox-view:before {
  display: inline-block;
  vertical-align: middle;
}
.theme-ux_2_0 .w-lightbox-figure {
  position: relative;
  margin: 0;
}
.theme-ux_2_0 .w-lightbox-group .w-lightbox-figure {
  cursor: pointer;
}
.theme-ux_2_0 .w-lightbox-img {
  width: auto;
  height: auto;
  max-width: none;
}
.theme-ux_2_0 .w-lightbox-image {
  display: block;
  float: none;
  max-width: 100vw;
  max-height: 100vh;
}
.theme-ux_2_0 .w-lightbox-group .w-lightbox-image {
  max-height: 86vh;
}
.theme-ux_2_0 .w-lightbox-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.5em 1em;
  background: rgba(0, 0, 0, 0.4);
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.theme-ux_2_0 .w-lightbox-embed {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.theme-ux_2_0 .w-lightbox-control {
  position: absolute;
  top: 0;
  width: 4em;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.theme-ux_2_0 .w-lightbox-left {
  display: none;
  bottom: 0;
  left: 0;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==);
}
.theme-ux_2_0 .w-lightbox-right {
  display: none;
  right: 0;
  bottom: 0;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+);
}
.theme-ux_2_0 .w-lightbox-close {
  right: 0;
  height: 2.6em;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=);
  background-size: 18px;
}
.theme-ux_2_0 .w-lightbox-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 1vh;
  line-height: 0;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}
.theme-ux_2_0 .w-lightbox-item {
  display: inline-block;
  width: 10vh;
  padding: 2vh 1vh;
  box-sizing: content-box;
  cursor: pointer;
  -webkit-transform: translate3d(0, 0, 0);
}
.theme-ux_2_0 .w-lightbox-active {
  opacity: 0.3;
}
.theme-ux_2_0 .w-lightbox-thumbnail {
  position: relative;
  height: 10vh;
  background: #222;
  overflow: hidden;
}
.theme-ux_2_0 .w-lightbox-thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
}
.theme-ux_2_0 .w-lightbox-thumbnail .w-lightbox-tall {
  top: 50%;
  width: 100%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.theme-ux_2_0 .w-lightbox-thumbnail .w-lightbox-wide {
  left: 50%;
  height: 100%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.theme-ux_2_0 .w-lightbox-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  border: 5px solid rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  -webkit-animation: spin 0.8s infinite linear;
  animation: spin 0.8s infinite linear;
}
.theme-ux_2_0 .w-lightbox-spinner:after {
  content: "";
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  border: 3px solid transparent;
  border-bottom-color: #fff;
  border-radius: 50%;
}
.theme-ux_2_0 .w-lightbox-hide {
  display: none;
}
.theme-ux_2_0 .w-lightbox-noscroll {
  overflow: hidden;
}
@media (min-width: 768px) {
  .theme-ux_2_0 {
  }
  .theme-ux_2_0 .w-lightbox-content {
    height: 96vh;
    margin-top: 2vh;
  }
  .theme-ux_2_0 .w-lightbox-view,
  .theme-ux_2_0 .w-lightbox-view:before {
    height: 96vh;
  }
  .theme-ux_2_0 .w-lightbox-group,
  .theme-ux_2_0 .w-lightbox-group .w-lightbox-view,
  .theme-ux_2_0 .w-lightbox-group .w-lightbox-view:before {
    height: 84vh;
  }
  .theme-ux_2_0 .w-lightbox-image {
    max-width: 96vw;
    max-height: 96vh;
  }
  .theme-ux_2_0 .w-lightbox-group .w-lightbox-image {
    max-width: 82.3vw;
    max-height: 84vh;
  }
  .theme-ux_2_0 .w-lightbox-left,
  .theme-ux_2_0 .w-lightbox-right {
    display: block;
    opacity: 0.5;
  }
  .theme-ux_2_0 .w-lightbox-close {
    opacity: 0.8;
  }
  .theme-ux_2_0 .w-lightbox-control:hover {
    opacity: 1;
  }
}
.theme-ux_2_0 .w-lightbox-inactive,
.theme-ux_2_0 .w-lightbox-inactive:hover {
  opacity: 0;
}
.theme-ux_2_0 .w-richtext:before,
.theme-ux_2_0 .w-richtext:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.theme-ux_2_0 .w-richtext:after {
  clear: both;
}
.theme-ux_2_0 .w-richtext[contenteditable=true]:before,
.theme-ux_2_0 .w-richtext[contenteditable=true]:after {
  white-space: initial;
}
.theme-ux_2_0 .w-richtext ol,
.theme-ux_2_0 .w-richtext ul {
  overflow: hidden;
}
.theme-ux_2_0 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:after,
.theme-ux_2_0 .w-richtext .w-richtext-figure-selected[data-rt-type=video] div:after {
  outline: 2px solid #2895f7;
}
.theme-ux_2_0 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div,
.theme-ux_2_0 .w-richtext .w-richtext-figure-selected[data-rt-type=image] div {
  outline: 2px solid #2895f7;
}
.theme-ux_2_0 .w-richtext figure.w-richtext-figure-type-video > div:after,
.theme-ux_2_0 .w-richtext figure[data-rt-type=video] > div:after {
  content: "";
  position: absolute;
  display: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.theme-ux_2_0 .w-richtext figure {
  position: relative;
  max-width: 60%;
}
.theme-ux_2_0 .w-richtext figure > div:before {
  cursor: default !important;
}
.theme-ux_2_0 .w-richtext figure img {
  width: 100%;
}
.theme-ux_2_0 .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
  opacity: 0.6;
}
.theme-ux_2_0 .w-richtext figure div {
  font-size: 0px;
  color: transparent;
}
.theme-ux_2_0 .w-richtext figure.w-richtext-figure-type-image,
.theme-ux_2_0 .w-richtext figure[data-rt-type=image] {
  display: table;
}
.theme-ux_2_0 .w-richtext figure.w-richtext-figure-type-image > div,
.theme-ux_2_0 .w-richtext figure[data-rt-type=image] > div {
  display: inline-block;
}
.theme-ux_2_0 .w-richtext figure.w-richtext-figure-type-image > figcaption,
.theme-ux_2_0 .w-richtext figure[data-rt-type=image] > figcaption {
  display: table-caption;
  caption-side: bottom;
}
.theme-ux_2_0 .w-richtext figure.w-richtext-figure-type-video,
.theme-ux_2_0 .w-richtext figure[data-rt-type=video] {
  width: 60%;
  height: 0;
}
.theme-ux_2_0 .w-richtext figure.w-richtext-figure-type-video iframe,
.theme-ux_2_0 .w-richtext figure[data-rt-type=video] iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.theme-ux_2_0 .w-richtext figure.w-richtext-figure-type-video > div,
.theme-ux_2_0 .w-richtext figure[data-rt-type=video] > div {
  width: 100%;
}
.theme-ux_2_0 .w-richtext figure.w-richtext-align-center {
  margin-right: auto;
  margin-left: auto;
  clear: both;
}
.theme-ux_2_0 .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div,
.theme-ux_2_0 .w-richtext figure.w-richtext-align-center[data-rt-type=image] > div {
  max-width: 100%;
}
.theme-ux_2_0 .w-richtext figure.w-richtext-align-normal {
  clear: both;
}
.theme-ux_2_0 .w-richtext figure.w-richtext-align-fullwidth {
  width: 100%;
  max-width: 100%;
  text-align: center;
  clear: both;
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.theme-ux_2_0 .w-richtext figure.w-richtext-align-fullwidth > div {
  display: inline-block;
  padding-bottom: inherit;
}
.theme-ux_2_0 .w-richtext figure.w-richtext-align-fullwidth > figcaption {
  display: block;
}
.theme-ux_2_0 .w-richtext figure.w-richtext-align-floatleft {
  float: left;
  margin-right: 15px;
  clear: none;
}
.theme-ux_2_0 .w-richtext figure.w-richtext-align-floatright {
  float: right;
  margin-left: 15px;
  clear: none;
}
.theme-ux_2_0 .w-nav {
  position: relative;
  background: #dddddd;
  z-index: 1000;
}
.theme-ux_2_0 .w-nav:before,
.theme-ux_2_0 .w-nav:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.theme-ux_2_0 .w-nav:after {
  clear: both;
}
.theme-ux_2_0 .w-nav-brand {
  position: relative;
  float: left;
  text-decoration: none;
  color: #333333;
}
.theme-ux_2_0 .w-nav-link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  color: #222222;
  padding: 20px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}
.theme-ux_2_0 .w-nav-link.w--current {
  color: #0082f3;
}
.theme-ux_2_0 .w-nav-menu {
  position: relative;
  float: right;
}
.theme-ux_2_0 [data-nav-menu-open] {
  display: block !important;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #C8C8C8;
  text-align: center;
  overflow: visible;
  min-width: 200px;
}
.theme-ux_2_0 .w--nav-link-open {
  display: block;
  position: relative;
}
.theme-ux_2_0 .w-nav-overlay {
  position: absolute;
  overflow: hidden;
  display: none;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
}
.theme-ux_2_0 .w-nav-overlay [data-nav-menu-open] {
  top: 0;
}
.theme-ux_2_0 .w-nav[data-animation=over-left] .w-nav-overlay {
  width: auto;
}
.theme-ux_2_0 .w-nav[data-animation=over-left] .w-nav-overlay,
.theme-ux_2_0 .w-nav[data-animation=over-left] [data-nav-menu-open] {
  right: auto;
  z-index: 1;
  top: 0;
}
.theme-ux_2_0 .w-nav[data-animation=over-right] .w-nav-overlay {
  width: auto;
}
.theme-ux_2_0 .w-nav[data-animation=over-right] .w-nav-overlay,
.theme-ux_2_0 .w-nav[data-animation=over-right] [data-nav-menu-open] {
  left: auto;
  z-index: 1;
  top: 0;
}
.theme-ux_2_0 .w-nav-button {
  position: relative;
  float: right;
  padding: 18px;
  font-size: 24px;
  display: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.theme-ux_2_0 .w-nav-button:focus {
  outline: 0;
}
.theme-ux_2_0 .w-nav-button.w--open {
  background-color: #C8C8C8;
  color: white;
}
.theme-ux_2_0 .w-nav[data-collapse=all] .w-nav-menu {
  display: none;
}
.theme-ux_2_0 .w-nav[data-collapse=all] .w-nav-button {
  display: block;
}
.theme-ux_2_0 .w--nav-dropdown-open {
  display: block;
}
.theme-ux_2_0 .w--nav-dropdown-toggle-open {
  display: block;
}
.theme-ux_2_0 .w--nav-dropdown-list-open {
  position: static;
}
@media screen and (max-width: 991px) {
  .theme-ux_2_0 .w-nav[data-collapse=medium] .w-nav-menu {
    display: none;
  }
  .theme-ux_2_0 .w-nav[data-collapse=medium] .w-nav-button {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .theme-ux_2_0 .w-nav[data-collapse=small] .w-nav-menu {
    display: none;
  }
  .theme-ux_2_0 .w-nav[data-collapse=small] .w-nav-button {
    display: block;
  }
  .theme-ux_2_0 .w-nav-brand {
    padding-left: 10px;
  }
}
@media screen and (max-width: 479px) {
  .theme-ux_2_0 .w-nav[data-collapse=tiny] .w-nav-menu {
    display: none;
  }
  .theme-ux_2_0 .w-nav[data-collapse=tiny] .w-nav-button {
    display: block;
  }
}
.theme-ux_2_0 .w-tabs {
  position: relative;
}
.theme-ux_2_0 .w-tabs:before,
.theme-ux_2_0 .w-tabs:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.theme-ux_2_0 .w-tabs:after {
  clear: both;
}
.theme-ux_2_0 .w-tab-menu {
  position: relative;
}
.theme-ux_2_0 .w-tab-link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  padding: 9px 30px;
  text-align: left;
  cursor: pointer;
  color: #222222;
  background-color: #dddddd;
}
.theme-ux_2_0 .w-tab-link.w--current {
  background-color: #C8C8C8;
}
.theme-ux_2_0 .w-tab-link:focus {
  outline: 0;
}
.theme-ux_2_0 .w-tab-content {
  position: relative;
  display: block;
  overflow: hidden;
}
.theme-ux_2_0 .w-tab-pane {
  position: relative;
  display: none;
}
.theme-ux_2_0 .w--tab-active {
  display: block;
}
@media screen and (max-width: 479px) {
  .theme-ux_2_0 .w-tab-link {
    display: block;
  }
}
.theme-ux_2_0 .w-ix-emptyfix:after {
  content: "";
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.theme-ux_2_0 .w-dyn-empty {
  padding: 10px;
  background-color: #dddddd;
}
.theme-ux_2_0 .w-dyn-hide {
  display: none !important;
}
.theme-ux_2_0 .w-dyn-bind-empty {
  display: none !important;
}
.theme-ux_2_0 .w-condition-invisible {
  display: none !important;
}
.theme-ux_2_0 .w-layout-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}
.theme-ux_2_0 .w-checkbox {
  display: block;
  margin-bottom: 5px;
  padding-left: 20px;
}
.theme-ux_2_0 .w-checkbox::before {
  content: " ";
  display: table;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
}
.theme-ux_2_0 .w-checkbox::after {
  content: " ";
  display: table;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
  clear: both;
}
.theme-ux_2_0 .w-checkbox-input {
  float: left;
  margin-bottom: 0px;
  margin-left: -20px;
  margin-right: 0px;
  margin-top: 4px;
  line-height: normal;
}
.theme-ux_2_0 .w-checkbox-input--inputType-custom {
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-color: #ccc;
  border-bottom-color: #ccc;
  border-left-color: #ccc;
  border-right-color: #ccc;
  border-top-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-right-style: solid;
  width: 12px;
  height: 12px;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.theme-ux_2_0 .w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  border-top-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  border-right-color: #3898ec;
  background-image: url(https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.theme-ux_2_0 .w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0px 0px 3px 1px #3898ec;
}
.theme-ux_2_0 h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 40px;
  line-height: 56px;
  font-weight: 700;
}
.theme-ux_2_0 h2 {
  margin-top: 0px;
  margin-bottom: 10px;
  font-size: 32px;
  line-height: 36px;
  font-weight: 700;
  text-align: left;
}
.theme-ux_2_0 h4 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}
.theme-ux_2_0 p {
  margin-bottom: 10px;
  font-size: 16px;
}
.theme-ux_2_0 a {
  text-decoration: none;
}
.theme-ux_2_0 .primary {
  color: #276fcf;
}
.theme-ux_2_0 .header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  padding-right: 40px;
  padding-left: 40px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #276fcf;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.4);
}
.theme-ux_2_0 .main-content {
  position: static;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  margin-top: -120px;
  padding-top: 160px;
  padding-bottom: 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.theme-ux_2_0 .container {
  width: 100%;
  padding-right: 40px;
  padding-left: 40px;
}
.theme-ux_2_0 .rr-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(82, 82, 82, 0.75);
  border-radius: 6px;
  text-align: center;
}
.theme-ux_2_0 .text-center {
  text-align: center;
}
.theme-ux_2_0 .step-indicators {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.theme-ux_2_0 .step-indicators-container {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.theme-ux_2_0 .step-indicator {
  width: 16px;
  height: 16px;
  margin-right: 12px;
  margin-left: 12px;
  border-radius: 50%;
  background-color: #acacac;
}
.theme-ux_2_0 .step-indicator.active {
  background-color: #81b34c;
}
.theme-ux_2_0 .step-indicator-line {
  position: absolute;
  left: 12px;
  top: 50%;
  right: 12px;
  z-index: -1;
  height: 1px;
  background-color: #acacac;
}
.theme-ux_2_0 .current-step {
  margin-top: 7px;
  color: #acacac;
  font-size: 18px;
  line-height: 21px;
}
.theme-ux_2_0 .rr-divider {
  width: 100%;
  height: 0px;
  border: 1px solid #dcdcdc;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
}
.theme-ux_2_0 .download-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.theme-ux_2_0 .download-details.align-items-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.theme-ux_2_0 .download-details-left {
  width: 380px;
  margin-right: 100px;
  text-align: center;
}
.theme-ux_2_0 .download-details-heading {
  margin-bottom: 16px;
  color: #ff4b55;
}
.theme-ux_2_0 .image {
  margin-top: 40px;
}
.theme-ux_2_0 .download-details-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: left;
}
.theme-ux_2_0 .ft-18 {
  font-size: 18px;
  line-height: 21px;
}
.theme-ux_2_0 .download-status {
  width: 100%;
  padding: 32px 60px;
  text-align: center;
}
.theme-ux_2_0 .download-progress {
  margin-bottom: 15px;
  color: #acacac;
  font-size: 18px;
  line-height: 21px;
  font-weight: 900;
}
.theme-ux_2_0 .progress-bar {
  position: relative;
  width: 100%;
  height: 46px;
  margin-bottom: 15px;
  border: 2px solid #81b34c;
  border-radius: 30px;
}
.theme-ux_2_0 .progress-bar-position {
  position: absolute;
  left: -2px;
  top: -1px;
  bottom: -1px;
  width: 25%;
  border-radius: 30px;
  background-color: #81b34c;
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.25);
}
.theme-ux_2_0 .progress-bar-position._100 {
  right: -2px;
  width: auto;
}
.theme-ux_2_0 .progress-bar-position._10 {
  width: 10%;
}
.theme-ux_2_0 .progress-bar-position._50 {
  width: 50%;
}
.theme-ux_2_0 .progress-bar-position._75 {
  width: 75%;
}
.theme-ux_2_0 .progress-bar-position._0 {
  width: 45px;
}
.theme-ux_2_0 .progress-bar-position._25 {
  width: 25%;
}
.theme-ux_2_0 .strong {
  font-weight: 900;
}
.theme-ux_2_0 .footer {
  height: 60px;
  padding-right: 40px;
  padding-left: 40px;
  opacity: 1;
  padding-top: 0;
}
.theme-ux_2_0 .bold {
  font-weight: 700;
}
.theme-ux_2_0 .download-result-social-icon {
  margin-bottom: 7px;
}
.theme-ux_2_0 .grid-2 {
  padding-top: 20px;
  grid-column-gap: 90px;
  grid-row-gap: 24px;
  -ms-grid-columns: -webkit-min-content -webkit-min-content;
  -ms-grid-columns: min-content min-content;
  grid-template-columns: -webkit-min-content -webkit-min-content;
  grid-template-columns: min-content min-content;
}
.theme-ux_2_0 .grid-1 {
  margin-top: 30px;
  grid-column-gap: 90px;
  grid-row-gap: 24px;
  -ms-grid-columns: -webkit-min-content -webkit-min-content -webkit-min-content;
  -ms-grid-columns: min-content min-content min-content;
  grid-template-columns: -webkit-min-content -webkit-min-content -webkit-min-content;
  grid-template-columns: min-content min-content min-content;
}
.theme-ux_2_0 .result-grid-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 97px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.theme-ux_2_0 .link {
  margin-left: 95px;
  color: #525252;
  font-size: 16px;
  font-weight: 900;
}
.theme-ux_2_0 .image-3 {
  margin-top: 40px;
}
.theme-ux_2_0 .access-social-media {
  margin-bottom: -15px;
}
.theme-ux_2_0 .heading-2 {
  margin-top: 0px;
  color: #ff4b55;
  text-align: left;
}
.theme-ux_2_0 .checkbox-field {
  font-size: 18px;
  line-height: 21px;
  text-align: left;
}
.theme-ux_2_0 .grid-4 {
  margin-bottom: 36px;
}
.theme-ux_2_0 .text-left {
  text-align: left;
}
.theme-ux_2_0 .download-details-wrapper {
  width: 100%;
  padding: 32px 48px;
}
.theme-ux_2_0 .download-steps {
  width: 100%;
  padding: 32px 15px;
  text-align: center;
}
.theme-ux_2_0 .download-result-social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.theme-ux_2_0 .download-details-left1 {
  width: 380px;
  margin-right: 100px;
}
.theme-ux_2_0 .download-details-heading-lg {
  text-align: left;
}
.theme-ux_2_0 .landing-hero {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 640px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url(/assets/d2cfd051a545683285889fd5db921caf/images/Vector-21.png);
  background-position: 0px 0px;
  background-size: cover;
}
.theme-ux_2_0 .landing-hero-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.theme-ux_2_0 .landing-hero-paragraph {
  font-size: 18px;
  line-height: 21px;
}
.theme-ux_2_0 .div-block {
  width: 50%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.theme-ux_2_0 .text-block {
  margin-top: 50px;
  margin-bottom: 20px;
  color: #276fcf;
  font-size: 18px;
  line-height: 21px;
  font-weight: 900;
}
.theme-ux_2_0 .landing-search-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.theme-ux_2_0 .form-input-field {
  height: 44px;
  margin-right: 8px;
  margin-bottom: 0px;
  padding: 12px;
  border: 1px solid #dcdcdc;
  background-color: #fff;
  box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.25);
  color: #525252;
  font-size: 15px;
  line-height: 19px;
  font-weight: 700;
}
.theme-ux_2_0 .form-input-field::-webkit-input-placeholder {
  color: #acacac;
}
.theme-ux_2_0 .form-input-field:-ms-input-placeholder {
  color: #acacac;
}
.theme-ux_2_0 .form-input-field::-ms-input-placeholder {
  color: #acacac;
}
.theme-ux_2_0 .form-input-field::placeholder {
  color: #acacac;
}
.theme-ux_2_0 .landing-search-submit {
  margin-left: 17px;
  padding: 10px 40px;
  border-radius: 25px;
  background-color: #e89f10;
  box-shadow: 3px 3px 4px 2px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 20px;
  line-height: 23px;
}
.theme-ux_2_0 .landing-content {
  padding-top: 32px;
  padding-bottom: 32px;
  text-align: center;
}
.theme-ux_2_0 .text-block-2 {
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
}
.theme-ux_2_0 .landing-search-result {
  display: inline-block;
  margin-bottom: 64px;
  padding: 16px 60px;
  border: 3px solid #276fcf;
  border-radius: 5px;
  color: #276fcf;
  font-size: 36px;
  line-height: 42px;
}
.theme-ux_2_0 .landing-content-grid {
  margin-bottom: 80px;
  grid-column-gap: 20px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
.theme-ux_2_0 .landing-content-grid-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 50px 28px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #525252;
  border-radius: 6px;
}
.theme-ux_2_0 .landing-grid-icon {
  margin-bottom: 32px;
}
.theme-ux_2_0 .landing-grid-item-title {
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 28px;
  font-weight: 900;
}
.theme-ux_2_0 .list {
  margin-top: 6px;
  padding-left: 30px;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.theme-ux_2_0 .text-block-3 {
  margin-left: -5px;
  font-size: 16px;
  line-height: 19px;
  font-weight: 500;
  text-align: left;
}
.theme-ux_2_0 .landing-disclaimer {
  max-width: 80%;
  margin-right: auto;
  margin-left: auto;
  color: #acacac;
  font-size: 12px;
  line-height: 14px;
  text-align: left;
}
.theme-ux_2_0 .div-block-2 {
  position: absolute;
  left: 0%;
  right: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 8px;
  padding-left: 17px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.theme-ux_2_0 .div-block-3 {
  position: relative;
}
.theme-ux_2_0 .landing-grid-paragraph {
  text-align: left;
}
.theme-ux_2_0 .div-block-4 {
  width: 20%;
}
.theme-ux_2_0 .loader-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(82, 82, 82, 0.75);
  border-radius: 6px;
  text-align: center;
}
.theme-ux_2_0 .paragraph {
  color: red;
  font-weight: 700;
  text-align: center;
}
.theme-ux_2_0 .loader-results-wrapper {
  width: 100%;
  padding: 64px 60px 32px;
}
.theme-ux_2_0 .div-block-5 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.theme-ux_2_0 .div-block-6 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.theme-ux_2_0 .search-result-grid {
  margin-left: 40px;
  grid-auto-flow: column;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto auto auto auto;
  grid-template-rows: auto auto auto auto;
}
.theme-ux_2_0 .search-result-grid-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.theme-ux_2_0 .progress-circle {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.theme-ux_2_0 .search-results-header {
  width: 100%;
  padding: 32px 15px;
  text-align: center;
}
.theme-ux_2_0 .loader-modal {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgba(0, 0, 0, 0.5);
}
.theme-ux_2_0 .loader-modal-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 480px;
  height: 300px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 3px 3px 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.theme-ux_2_0 .loader-modal-header {
  padding: 30px 15px;
}
.theme-ux_2_0 .loader-modal-heading {
  margin-bottom: 0px;
  text-align: center;
  text-transform: uppercase;
}
.theme-ux_2_0 .loader-modal-divider {
  border-style: solid;
  border-width: 1px;
  border-color: #dcdcdc;
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
}
.theme-ux_2_0 .loader-modal-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 16px;
}
.theme-ux_2_0 .loader-modal-question {
  margin-bottom: 8px;
  font-weight: 900;
  text-align: center;
}
.theme-ux_2_0 .loader-modal-answer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  margin-bottom: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.theme-ux_2_0 .loader-modal-btn {
  margin-right: 4px;
  margin-left: 4px;
  padding: 5px 12px;
  border: 1px solid #276fcf;
  border-radius: 6px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #276fcf;
  font-size: 12px;
  line-height: 14px;
  text-decoration: none;
}
.theme-ux_2_0 .loader-modal-btn:hover {
  background-color: #276fcf;
  color: #fff;
}
.theme-ux_2_0 .loader-modal-dunno {
  color: #81b34c;
  text-decoration: underline;
}
.theme-ux_2_0 .srp-hero {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.theme-ux_2_0 .paragraph-2 {
  width: 400px;
}
.theme-ux_2_0 .search-results-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 80px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.theme-ux_2_0 .search-list-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.theme-ux_2_0 .search-filter {
  max-width: 315px;
  margin-left: 30px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  border: 1px solid #acacac;
  border-radius: 6px;
  background-color: #fff;
}
.theme-ux_2_0 .search-list {
  border: 1px solid #acacac;
  border-radius: 6px;
  background-color: #fff;
}
.theme-ux_2_0 .search-list-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 32px 20px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #dcdcdc;
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
}
.theme-ux_2_0 .search-list-result {
  font-size: 24px;
  line-height: 28px;
}
.theme-ux_2_0 .sort-by {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.theme-ux_2_0 .form-block-2 {
  margin-bottom: 0px;
}
.theme-ux_2_0 .select-field {
  height: 34px;
  margin-bottom: 0px;
  padding-top: 4px;
  padding-bottom: 4px;
  background-color: transparent;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.25);
  font-size: 16px;
  font-weight: 700;
}
.theme-ux_2_0 .paragraph-3 {
  margin-right: 8px;
  margin-bottom: 0px;
}
.theme-ux_2_0 .search-list-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 48px 20px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.theme-ux_2_0 .search-list-info {
  width: 24%;
  max-width: 24%;
  margin-right: 1%;
}
.theme-ux_2_0 .search-list-name {
  margin-bottom: 0px;
  color: #276fcf;
  font-size: 24px;
}
.theme-ux_2_0 .search-list-age {
  font-size: 18px;
  line-height: 21px;
  font-weight: 700;
}
.theme-ux_2_0 .search-possible-relatives {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 15px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.theme-ux_2_0 .possible-relatives-icon {
  margin-right: 8px;
}
.theme-ux_2_0 .possible-locations-state {
  max-width: 100px;
  font-size: 16px;
  line-height: 19px;
  font-weight: 500;
}
.theme-ux_2_0 .possible-relatives-more {
  color: #81b34c;
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  text-decoration: underline;
}
.theme-ux_2_0 .search-possible-locations {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.theme-ux_2_0 .possible-locations-icon {
  margin-right: 8px;
}
.theme-ux_2_0 .possible-locations-more {
  color: #81b34c;
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  text-decoration: underline;
}
.theme-ux_2_0 .search-view-report {
  padding: 10px 9px 10px 37px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  border-radius: 6px;
  background-color: #276fcf;
  background-image: url(/assets/d2cfd051a545683285889fd5db921caf/images/View_1View.png);
  background-position: 9px 11px;
  background-size: auto;
  background-repeat: no-repeat;
  box-shadow: 1px 1px 2px 2px rgba(0, 0, 0, 0.25);
  font-size: 12px;
  line-height: 14px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}
.theme-ux_2_0 .search-list-divider {
  margin-right: 48px;
  margin-left: 48px;
  border: 1px solid #dcdcdc;
}
.theme-ux_2_0 .search-filter-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 37px 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #dcdcdc;
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
}
.theme-ux_2_0 .search-filter-header-heading {
  font-size: 20px;
  line-height: 23px;
}
.theme-ux_2_0 .search-filter-body {
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
}
.theme-ux_2_0 .search-filter-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 25px 24px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.theme-ux_2_0 .search-filter-location {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #276fcf;
  font-size: 18px;
  line-height: 21px;
  font-weight: 700;
}
.theme-ux_2_0 .search-filter-count {
  margin-left: 16px;
  color: #525252;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
}
.theme-ux_2_0 .search-filter-divider {
  margin-right: 8px;
  margin-left: 8px;
  border: 1px solid #dcdcdc;
}
.theme-ux_2_0 .search-filter-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 15px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.theme-ux_2_0 .search-all-locations {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #276fcf;
  font-size: 20px;
  line-height: 23px;
}
.theme-ux_2_0 .image-4 {
  margin-left: 10px;
}
.theme-ux_2_0 .search-list-load-more {
  margin-top: 48px;
  padding: 16px 94px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 6px;
  background-color: #e89f10;
  box-shadow: 1px 1px 2px 2px rgba(0, 0, 0, 0.25);
  font-size: 20px;
  line-height: 23px;
  font-weight: 900;
  color: #fff;
}
.theme-ux_2_0 .refine-search {
  width: 80%;
  margin-right: auto;
  margin-bottom: 80px;
  margin-left: auto;
  padding: 80px;
  border: 1px solid #525252;
  border-radius: 6px;
}
.theme-ux_2_0 .refine-search-form {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  background-color: transparent;
  text-align: center;
}
.theme-ux_2_0 .div-block-7 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.theme-ux_2_0 .div-block-8 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 23px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.theme-ux_2_0 .heading-3 {
  margin-bottom: 24px;
  color: #276fcf;
  font-weight: 900;
}
.theme-ux_2_0 .text-block-4 {
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 21px;
  font-weight: 900;
}
.theme-ux_2_0 .list-2 {
  padding-left: 20px;
  font-weight: 500;
}
.theme-ux_2_0 .mb-0 {
  margin-bottom: 0px;
}
.theme-ux_2_0 .div-block-9 {
  max-width: 500px;
  margin-right: auto;
  margin-left: auto;
}
.theme-ux_2_0 .text-field {
  margin-bottom: 0px;
  border: 1px solid #dcdcdc;
  box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.25);
  font-size: 16px;
  line-height: 19px;
  font-weight: 900;
}
.theme-ux_2_0 .text-field::-webkit-input-placeholder {
  color: #acacac;
}
.theme-ux_2_0 .text-field:-ms-input-placeholder {
  color: #acacac;
}
.theme-ux_2_0 .text-field::-ms-input-placeholder {
  color: #acacac;
}
.theme-ux_2_0 .text-field::placeholder {
  color: #acacac;
}
.theme-ux_2_0 .grid-5 {
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
.theme-ux_2_0 .select-field-2 {
  margin-bottom: 0px;
  border: 1px solid #dcdcdc;
  background-color: #fff;
  box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.25);
  font-size: 16px;
}
.theme-ux_2_0 .btn-build-report {
  display: inline-block;
  margin-right: auto;
  margin-left: auto;
  padding: 10px 40px;
  border-radius: 25px;
  background-color: #e89f10;
  box-shadow: 3px 3px 4px 2px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 20px;
  line-height: 23px;
}
.theme-ux_2_0 .loader-caution {
  color: red;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
.theme-ux_2_0 .refine-search-phone {
  margin-bottom: 0px;
  padding-left: 47px;
  border: 1px solid #dcdcdc;
  background-image: url(/assets/d2cfd051a545683285889fd5db921caf/images/Flag_1Flag.png);
  background-position: 12px 50%;
  background-size: auto;
  background-repeat: no-repeat;
  box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.25);
  font-size: 16px;
  line-height: 19px;
  font-weight: 900;
}
.theme-ux_2_0 .refine-search-age {
  margin-bottom: 0px;
  border: 1px solid #dcdcdc;
  background-color: #fff;
  box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.25);
  color: #acacac;
  font-size: 16px;
}
.theme-ux_2_0 .form {
  text-align: center;
}
.theme-ux_2_0 .btn-search-again {
  position: static;
  right: 40px;
  bottom: 0px;
  display: inline-block;
  margin-top: 32px;
  margin-right: auto;
  margin-left: auto;
  padding: 10px 40px;
  border-radius: 25px;
  background-color: #e89f10;
  box-shadow: 3px 3px 4px 2px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 20px;
  line-height: 23px;
  font-weight: 900;
}
.theme-ux_2_0 .form-block-3 {
  margin-bottom: 0px;
}
.theme-ux_2_0 .refine-search-img {
  width: 30%;
}
.theme-ux_2_0 .div-block-10 {
  max-width: 500px;
}
.theme-ux_2_0 .refine-search-img-mobile {
  position: absolute;
  top: 0px;
  right: 0px;
  display: none;
}
.theme-ux_2_0 .div-block-11 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 59%;
  margin-right: 1%;
}
.theme-ux_2_0 .submit-button {
  display: none;
}
.theme-ux_2_0 .navbar-search {
  width: 380px;
  height: 42px;
  margin-bottom: 10px;
  padding-right: 40px;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.25);
  font-size: 16px;
  line-height: 19px;
  font-weight: 900;
}
.theme-ux_2_0 .form-block-4 {
  margin-bottom: 0px;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}
.theme-ux_2_0 .form-2 {
  position: relative;
  padding-top: 9px;
}
.theme-ux_2_0 .image-6 {
  position: absolute;
  top: 18px;
  right: 16px;
}
.theme-ux_2_0 .modal-container {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  background-color: rgba(0, 0, 0, 0.5);
}
.theme-ux_2_0 .notification-modal {
  width: 576px;
  margin-top: 120px;
  margin-right: auto;
  margin-left: auto;
}
.theme-ux_2_0 .notification-modal-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 24px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  background-color: #276fcf;
}
.theme-ux_2_0 .notification-modal-heading {
  margin-left: 8px;
  color: #fff;
  font-size: 24px;
  line-height: 28px;
  text-transform: uppercase;
}
.theme-ux_2_0 .notification-modal-body {
  padding: 24px 24px 40px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  background-color: #fff;
}
.theme-ux_2_0 .red {
  color: #ff4b55;
}
.theme-ux_2_0 .notification-modal-btn {
  display: block;
  width: 300px;
  margin-top: 24px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 7px;
  padding-bottom: 7px;
  border-radius: 25px;
  background-color: #e89f10;
  box-shadow: 3px 3px 4px 1px rgba(0, 0, 0, 0.25);
  font-size: 20px;
  line-height: 23px;
  font-weight: 900;
  text-align: center;
}
.theme-ux_2_0 .signup-container {
  max-width: 1120px;
  margin-right: auto;
  margin-bottom: 64px;
  margin-left: auto;
}
.theme-ux_2_0 .signup-hero {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.theme-ux_2_0 .signup-hero-heading {
  margin-top: 0px;
  margin-bottom: 32px;
}
.theme-ux_2_0 .signup-hero-subheading {
  font-size: 32px;
  line-height: 37px;
}
.theme-ux_2_0 .blue {
  color: #276fcf;
}
.theme-ux_2_0 .signup-hero-left {
  width: 430px;
}
.theme-ux_2_0 .heading-4 {
  margin-top: 0px;
  margin-bottom: 32px;
  line-height: 28px;
}
.theme-ux_2_0 .signup-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.theme-ux_2_0 .signup-left {
  margin-right: 25px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 745px;
  -ms-flex: 1 0 745px;
  flex: 1 0 745px;
}
.theme-ux_2_0 .signup-profile {
  margin-bottom: 45px;
  padding: 40px 16px;
  border: 1px solid #acacac;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 3px 3px 4px 4px rgba(0, 0, 0, 0.25);
}
.theme-ux_2_0 .signup-profile-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 32px;
  padding-right: 24px;
  padding-left: 24px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.theme-ux_2_0 .signup-profile-avatar {
  margin-right: 40px;
}
.theme-ux_2_0 .signup-profile-name {
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 28px;
  font-weight: 900;
}
.theme-ux_2_0 .signup-profile-label {
  margin-right: 4px;
  font-weight: 900;
}
.theme-ux_2_0 .div-block-12 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 14px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.theme-ux_2_0 .div-block-13 {
  padding: 32px 24px;
  border-radius: 5px;
  background-color: #e0ecf7;
}
.theme-ux_2_0 .div-block-14 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.theme-ux_2_0 .image-7 {
  margin-right: 20px;
}
.theme-ux_2_0 .div-block-15 {
  display: -ms-grid;
  display: grid;
  margin-bottom: 10px;
  margin-left: 80px;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 6px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}
.theme-ux_2_0 .div-block-16 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.theme-ux_2_0 .image-8 {
  margin-right: 8px;
}
.theme-ux_2_0 .checkout-container {
  position: relative;
  padding-top: 42px;
  padding-bottom: 32px;
  border: 1px solid #acacac;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  background-color: #fff;
  box-shadow: 3px 3px 4px 2px rgba(0, 0, 0, 0.25);
}
.theme-ux_2_0 .blue-bar {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  border: 5px solid #276fcf;
}
.theme-ux_2_0 .text-block-5 {
  margin-bottom: 32px;
  color: #276fcf;
  font-size: 16px;
  line-height: 19px;
  font-weight: 900;
  text-align: center;
}
.theme-ux_2_0 .checkout-banner {
  padding-top: 16px;
  padding-bottom: 32px;
  background-color: #e0ecf6;
  text-align: center;
}
.theme-ux_2_0 .checkout-banner-heading {
  margin-bottom: 0px;
  color: #ff4b55;
  line-height: 74px;
}
.theme-ux_2_0 .checkout-form-container {
  margin-top: 24px;
  padding-right: 70px;
  padding-left: 70px;
  background-color: transparent;
  text-align: center;
}
.theme-ux_2_0 .form-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: -16px;
  margin-bottom: 24px;
  margin-left: -16px;
  text-align: center;
}
.theme-ux_2_0 .form-col-6 {
  width: 50%;
  padding-right: 16px;
  padding-left: 16px;
}
.theme-ux_2_0 .form-label {
  margin-bottom: 4px;
  color: #979797;
  font-size: 16px;
  line-height: 19px;
  font-weight: 900;
}
.theme-ux_2_0 .form-input {
  height: 42px;
  margin-bottom: 0px;
  border: 1px solid #dcdcdc;
  box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.25);
  font-size: 16px;
  line-height: 19px;
}
.theme-ux_2_0 .form-input::-webkit-input-placeholder {
  color: #979797;
}
.theme-ux_2_0 .form-input:-ms-input-placeholder {
  color: #979797;
}
.theme-ux_2_0 .form-input::-ms-input-placeholder {
  color: #979797;
}
.theme-ux_2_0 .form-input::placeholder {
  color: #979797;
}
.theme-ux_2_0 .form-input.expiration-date {
  width: 140px;
}
.theme-ux_2_0 .form-input.expiration-year {
  width: 70px;
}
.theme-ux_2_0 .form-input.cvc {
  width: 121px;
  margin-right: 4px;
  border-color: #e54747;
}
.theme-ux_2_0 .form-col-12 {
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  background-color: rgba(224, 236, 246, 0);
}
.theme-ux_2_0 .form-card-number {
  position: relative;
  width: 100%;
}
.theme-ux_2_0 .credit-card-icons {
  position: absolute;
  top: 5px;
  right: 0px;
  bottom: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.theme-ux_2_0 .credit-card-icon {
  margin-right: 5px;
}
.theme-ux_2_0 .div-block-17 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.theme-ux_2_0 .div-block-18 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.theme-ux_2_0 .text-block-6 {
  margin-right: 4px;
  margin-left: 4px;
  font-size: 24px;
  line-height: 28px;
  font-weight: 900;
}
.theme-ux_2_0 .div-block-19 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.theme-ux_2_0 .div-block-20 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.theme-ux_2_0 .text-block-7 {
  color: #e54747;
  font-size: 16px;
  line-height: 19px;
}
.theme-ux_2_0 .checkout-terms {
  color: #acacac;
  font-size: 12px;
  line-height: 14px;
  text-align: left;
}
.theme-ux_2_0 .checkout-submit {
  margin: 8px auto 16px;
  border-radius: 25px;
  background-color: #e89f10;
  box-shadow: 3px 3px 4px 1px rgba(0, 0, 0, 0.25);
  font-size: 20px;
  line-height: 23px;
  font-weight: 900;
}
.theme-ux_2_0 .signup-right {
  padding: 40px 16px;
  border: 1px solid #525252;
  border-radius: 6px;
  text-align: center;
}
.theme-ux_2_0 .heading-5 {
  margin-bottom: 40px;
  text-align: center;
}
.theme-ux_2_0 .div-block-21 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
  padding: 10px 16px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #acacac;
  border-radius: 5px;
  box-shadow: 3px 3px 4px 1px rgba(0, 0, 0, 0.25);
  color: #276fcf;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}
.theme-ux_2_0 .image-9 {
  margin-right: 16px;
}
.theme-ux_2_0 .much-more {
  display: inline-block;
  margin-bottom: 32px;
  color: #525252;
  line-height: 16px;
  font-weight: 900;
}
.theme-ux_2_0 .signup-warning {
  margin-bottom: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
  border: 1px solid #acacac;
  border-radius: 5px;
  background-color: #fff;
  color: red;
  line-height: 16px;
}
.theme-ux_2_0 .text-block-8 {
  margin-bottom: 24px;
  color: #81b34c;
  font-weight: 900;
  text-align: left;
}
.theme-ux_2_0 .paragraph-5 {
  font-size: 12px;
  line-height: 14px;
  text-align: left;
}
.theme-ux_2_0 .testimonials {
  margin-bottom: 80px;
}
.theme-ux_2_0 .testimonials-heading {
  margin-bottom: 40px;
}
.theme-ux_2_0 .testimonials-container {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  grid-auto-columns: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
.theme-ux_2_0 .testimonial-wrapper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 32px 16px 16px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: 1px solid #acacac;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 3px 3px 10px 4px rgba(0, 0, 0, 0.69);
}
.theme-ux_2_0 .testimonial-quote {
  width: 58px;
  height: 40px;
  margin-right: 14px;
}
.theme-ux_2_0 .testimonial-feedback {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  color: #000;
}
.theme-ux_2_0 .create-account {
  border: 1px solid #acacac;
  border-radius: 6px;
  box-shadow: 3px 3px 4px 1px rgba(0, 0, 0, 0.25);
}
.theme-ux_2_0 .create-account-header {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 70px;
  background-color: #276fcf;
}
.theme-ux_2_0 .create-account-heading {
  margin-bottom: 0px;
  color: #fff;
  font-size: 24px;
  line-height: 28px;
}
.theme-ux_2_0 .create-account-body {
  padding-top: 32px;
  padding-bottom: 32px;
  background-color: #fff;
}
.theme-ux_2_0 .create-account-form-container {
  margin-top: 24px;
  padding-right: 70px;
  padding-left: 70px;
  background-color: transparent;
  text-align: center;
}
.theme-ux_2_0 .signup-right-copy {
  padding: 40px 16px;
  border: 1px solid #525252;
  border-radius: 6px;
  text-align: center;
}
.theme-ux_2_0 .signup-warning-copy {
  margin-bottom: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
  border: 1px solid #acacac;
  border-radius: 5px;
  background-color: #fff;
  color: red;
  line-height: 16px;
}
.theme-ux_2_0 .create-account-divider {
  border: 1px solid #dcdcdc;
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
}
.theme-ux_2_0 .checkout-heading {
  padding-top: 0px;
  color: #ff4b55;
  font-size: 24px;
  line-height: 28px;
  font-weight: 900;
  text-align: left;
}
.theme-ux_2_0 .triangle-with-shadow {
  position: absolute;
  left: 50px;
  bottom: -100px;
  overflow: hidden;
  width: 100px;
  height: 100px;
}
.theme-ux_2_0 .div-block-25 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 65px;
  margin-left: 60px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.theme-ux_2_0 .testimonial-avatar {
  margin-right: 16px;
}
.theme-ux_2_0 .testimonial-name {
  margin-bottom: 8px;
  color: #276fcf;
  font-size: 20px;
  line-height: 23px;
  font-weight: 700;
}
.theme-ux_2_0 .testimonial-stars {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.theme-ux_2_0 .div-block-26 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.theme-ux_2_0 .disclaimer {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  color: #acacac;
  font-size: 12px;
  line-height: 14px;
}
.theme-ux_2_0 .div-block-27 {
  max-width: 600px;
}
.theme-ux_2_0 .content {
  min-height: 100vh;
  background-color: #f8fafe;
  font-family: Roboto, sans-serif;
  color: #525252;
  font-size: 14px;
  line-height: 20px;
}
.theme-ux_2_0 .section {
  width: 17%;
}
.theme-ux_2_0 .div-block-29 {
  height: 136px;
  background-color: #e0ecf6;
}
@media screen and (min-width: 1280px) {
  .theme-ux_2_0 .landing-hero-wrapper {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .theme-ux_2_0 .div-block-4 {
    width: 30%;
  }
  .theme-ux_2_0 .search-list-header {
    padding-right: 40px;
    padding-left: 40px;
  }
  .theme-ux_2_0 .search-list-item {
    padding-right: 40px;
    padding-left: 40px;
  }
  .theme-ux_2_0 .div-block-9 {
    margin-right: 0px;
    margin-left: 0px;
  }
  .theme-ux_2_0 .btn-search-again {
    position: absolute;
    right: 50px;
  }
  .theme-ux_2_0 .refine-search-img {
    position: absolute;
    top: 0px;
    right: 0px;
  }
  .theme-ux_2_0 .refine-search-img-mobile {
    width: auto;
  }
}
@media screen and (min-width: 1920px) {
  .theme-ux_2_0 .landing-hero {
    height: 900px;
    background-size: cover;
  }
  .theme-ux_2_0 .div-block {
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }
  .theme-ux_2_0 .div-block-4 {
    text-align: right;
  }
  .theme-ux_2_0 .loader-modal {
    background-color: rgba(0, 0, 0, 0.25);
    background-image: none;
  }
}
@media screen and (max-width: 991px) {
  .theme-ux_2_0 h1 {
    font-size: 32px;
    line-height: 36px;
  }
  .theme-ux_2_0 .rr-container {
    width: 100%;
    max-width: 750px;
  }
  .theme-ux_2_0 .download-details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .theme-ux_2_0 .download-details-left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-right: 0px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .theme-ux_2_0 .image {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .theme-ux_2_0 .download-details-right {
    margin-top: 40px;
  }
  .theme-ux_2_0 .grid-1 {
    justify-items: center;
    grid-column-gap: 0px;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .theme-ux_2_0 .image-3 {
    width: 230px;
    margin-top: 0px;
  }
  .theme-ux_2_0 .access-social-media {
    width: 300px;
    margin-right: -40px;
  }
  .theme-ux_2_0 .grid-4 {
    padding-right: 60px;
    padding-left: 60px;
  }
  .theme-ux_2_0 .download-details-wrapper {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .theme-ux_2_0 .download-steps {
    width: 100%;
  }
  .theme-ux_2_0 .download-result-social {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .theme-ux_2_0 .download-details-left1 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 390px;
    margin-right: auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .theme-ux_2_0 .download-details-heading-lg {
    max-width: 390px;
    margin-bottom: 30px;
  }
  .theme-ux_2_0 .landing-hero {
    position: relative;
    height: 400px;
    margin-bottom: 60px;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .theme-ux_2_0 .div-block {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .theme-ux_2_0 .text-block-2 {
    font-size: 20px;
    line-height: 23px;
  }
  .theme-ux_2_0 .landing-search-result {
    margin-bottom: 48px;
    padding: 8px 48px;
    font-size: 32px;
    line-height: 37px;
  }
  .theme-ux_2_0 .landing-content-grid {
    grid-auto-rows: auto;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .theme-ux_2_0 .landing-content-grid-item {
    padding: 32px 24px;
  }
  .theme-ux_2_0 .landing-grid-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
  }
  .theme-ux_2_0 .landing-grid-item-title {
    font-size: 18px;
    line-height: 21px;
  }
  .theme-ux_2_0 .text-block-3 {
    font-size: 14px;
    line-height: 16px;
  }
  .theme-ux_2_0 .landing-disclaimer {
    max-width: 100%;
  }
  .theme-ux_2_0 .form-block {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: -24px;
  }
  .theme-ux_2_0 .landing-hero-image {
    height: 180px;
    margin-left: 40px;
  }
  .theme-ux_2_0 .div-block-2 {
    position: absolute;
    left: 0%;
    right: 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px;
    padding-left: 17px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .theme-ux_2_0 .div-block-3 {
    position: relative;
  }
  .theme-ux_2_0 .landing-grid-paragraph {
    font-size: 14px;
    line-height: 16px;
    font-weight: 300;
  }
  .theme-ux_2_0 .div-block-4 {
    width: 30%;
  }
  .theme-ux_2_0 .loader-container {
    width: 100%;
    max-width: 750px;
  }
  .theme-ux_2_0 .loader-results-wrapper {
    padding: 32px 24px;
  }
  .theme-ux_2_0 .div-block-6 {
    margin-left: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme-ux_2_0 .search-result-grid {
    margin-top: 7px;
    margin-left: 0px;
    grid-column-gap: 0px;
  }
  .theme-ux_2_0 .search-result-grid-item {
    font-size: 14px;
    text-align: left;
  }
  .theme-ux_2_0 .search-results-header {
    width: 100%;
    max-width: 500px;
  }
  .theme-ux_2_0 .search-result-avatar {
    width: 50px;
  }
  .theme-ux_2_0 .search-filter {
    max-width: 200px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .theme-ux_2_0 .search-list {
    background-color: #fff;
  }
  .theme-ux_2_0 .search-list-header {
    padding-right: 24px;
    padding-left: 24px;
  }
  .theme-ux_2_0 .search-list-result {
    width: 50%;
    margin-right: 1%;
    font-size: 16px;
    line-height: 19px;
  }
  .theme-ux_2_0 .paragraph-3 {
    white-space: nowrap;
  }
  .theme-ux_2_0 .search-list-item {
    padding: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .theme-ux_2_0 .search-list-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: none;
    margin-bottom: 16px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .theme-ux_2_0 .search-list-name {
    max-width: 50%;
    margin-right: 7px;
    font-size: 24px;
    line-height: 28px;
  }
  .theme-ux_2_0 .search-list-age {
    font-weight: 900;
  }
  .theme-ux_2_0 .search-possible-relatives {
    margin-right: 30px;
  }
  .theme-ux_2_0 .possible-locations-state {
    max-width: none;
  }
  .theme-ux_2_0 .search-view-report {
    margin-top: 20px;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
  .theme-ux_2_0 .search-filter-header {
    padding-top: 39px;
    padding-bottom: 39px;
  }
  .theme-ux_2_0 .search-filter-header-heading {
    white-space: nowrap;
  }
  .theme-ux_2_0 .search-filter-footer {
    padding-right: 14px;
    padding-left: 14px;
    font-size: 18px;
    line-height: 21px;
    white-space: nowrap;
  }
  .theme-ux_2_0 .search-all-locations {
    font-size: 18px;
    line-height: 21px;
  }
  .theme-ux_2_0 .image-4 {
    margin-left: 8px;
  }
  .theme-ux_2_0 .refine-search {
    width: 100%;
    margin-bottom: 48px;
    padding: 32px 24px 24px;
  }
  .theme-ux_2_0 .refine-search-form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme-ux_2_0 .div-block-7 {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .theme-ux_2_0 .div-block-8 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .theme-ux_2_0 .btn-build-report {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
  .theme-ux_2_0 .btn-search-again {
    position: static;
    display: block;
    margin-top: 24px;
    margin-right: auto;
    margin-left: auto;
  }
  .theme-ux_2_0 .refine-search-img {
    position: static;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .theme-ux_2_0 .div-block-10 {
    max-width: 331px;
    margin-right: 40px;
  }
  .theme-ux_2_0 .refine-search-img-mobile {
    position: static;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .theme-ux_2_0 .srp-hero-heading {
    text-align: left;
  }
  .theme-ux_2_0 .div-block-11 {
    width: 100%;
    margin-right: 0%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
  .theme-ux_2_0 .possible-relatives-heading {
    white-space: nowrap;
  }
  .theme-ux_2_0 .signup-hero {
    margin-bottom: 53px;
  }
  .theme-ux_2_0 .signup-hero-left {
    width: 400px;
  }
  .theme-ux_2_0 .signup-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme-ux_2_0 .signup-left {
    margin-right: 0px;
    margin-bottom: 32px;
  }
  .theme-ux_2_0 .div-block-15 {
    margin-left: 60px;
  }
  .theme-ux_2_0 .blue-bar {
    border-width: 5px;
  }
  .theme-ux_2_0 .checkout-banner-heading {
    font-size: 48px;
  }
  .theme-ux_2_0 .checkout-form-container {
    padding-right: 50px;
    padding-left: 50px;
  }
  .theme-ux_2_0 .div-block-19 {
    margin-right: 18px;
  }
  .theme-ux_2_0 .signup-right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-right: 60px;
    padding-left: 60px;
  }
  .theme-ux_2_0 .heading-5 {
    margin-top: 0px;
  }
  .theme-ux_2_0 .signup-warning {
    margin-bottom: 0px;
    padding-right: 13px;
    padding-left: 13px;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .theme-ux_2_0 .testimonials-container {
    grid-row-gap: 24px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .theme-ux_2_0 .signup-hero-img {
    width: 138px;
  }
  .theme-ux_2_0 .div-block-22 {
    width: 50%;
    min-width: 293px;
    margin-right: 40px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }
  .theme-ux_2_0 .div-block-23 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme-ux_2_0 .create-account-form-container {
    padding-right: 50px;
    padding-left: 50px;
  }
  .theme-ux_2_0 .signup-right-copy {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-right: 60px;
    padding-left: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme-ux_2_0 .div-block-24 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .theme-ux_2_0 .signup-warning-copy {
    margin-bottom: 0px;
    padding-right: 13px;
    padding-left: 13px;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    border-width: 0px;
    background-color: transparent;
  }
  .theme-ux_2_0 .div-block-23-copy {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 40px 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    border: 1px solid #acacac;
    border-radius: 5px;
    background-color: #fff;
  }
  .theme-ux_2_0 .div-block-25 {
    margin-top: 55px;
  }
  .theme-ux_2_0 .div-block-26 {
    width: 440px;
    margin-right: auto;
    margin-left: auto;
  }
  .theme-ux_2_0 .disclaimer {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .theme-ux_2_0 body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme-ux_2_0 h2 {
    font-size: 20px;
    line-height: 24px;
  }
  .theme-ux_2_0 p {
    font-size: 12px;
    line-height: 14px;
  }
  .theme-ux_2_0 .header {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .theme-ux_2_0 .main-content {
    margin-top: -60px;
    padding-right: 5px;
    padding-left: 5px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .theme-ux_2_0 .container {
    padding-right: 20px;
    padding-left: 20px;
  }
  .theme-ux_2_0 .rr-container {
    width: 100%;
  }
  .theme-ux_2_0 .download-details-left {
    position: relative;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .theme-ux_2_0 .download-details-heading {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    font-size: 16px;
    line-height: 19px;
  }
  .theme-ux_2_0 .download-details-right {
    margin-top: 30px;
  }
  .theme-ux_2_0 .ft-18 {
    font-size: 12px;
    line-height: 13px;
  }
  .theme-ux_2_0 .download-status {
    margin-top: 0px;
    padding: 16px;
  }
  .theme-ux_2_0 .download-progress {
    font-size: 12px;
    line-height: 14px;
  }
  .theme-ux_2_0 .footer {
    padding-right: 20px;
    padding-left: 20px;
  }
  .theme-ux_2_0 .download-result-social-icon {
    width: 40px;
  }
  .theme-ux_2_0 .grid-2 {
    grid-column-gap: 0px;
  }
  .theme-ux_2_0 .grid-1 {
    padding-right: 32px;
    padding-left: 32px;
    grid-column-gap: 24px;
  }
  .theme-ux_2_0 .link {
    margin-left: 35px;
    font-size: 12px;
    line-height: 14px;
  }
  .theme-ux_2_0 .image-3 {
    width: 150px;
  }
  .theme-ux_2_0 .access-social-media {
    width: 150px;
    margin-right: 0px;
    margin-bottom: 30px;
  }
  .theme-ux_2_0 .heading-2 {
    font-size: 14px;
    line-height: 16px;
  }
  .theme-ux_2_0 .checkbox-field {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .theme-ux_2_0 .grid-4 {
    padding-right: 40px;
    padding-left: 40px;
    grid-row-gap: 12px;
  }
  .theme-ux_2_0 .download-details-wrapper {
    padding: 16px;
  }
  .theme-ux_2_0 .download-steps {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .theme-ux_2_0 .checkbox-label {
    font-size: 12px;
    line-height: 14px;
  }
  .theme-ux_2_0 .checkbox {
    margin-top: 0px;
    margin-right: 8px;
    box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.25);
  }
  .theme-ux_2_0 .download-details-left1 {
    position: relative;
    max-width: 390px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .theme-ux_2_0 .download-details-heading-lg {
    font-size: 16px;
    line-height: 19px;
  }
  .theme-ux_2_0 .landing-hero {
    height: auto;
    margin-top: 60px;
    padding-top: 32px;
    background-image: none;
    background-size: auto;
    background-repeat: repeat;
  }
  .theme-ux_2_0 .landing-hero-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme-ux_2_0 .div-block {
    width: 100%;
  }
  .theme-ux_2_0 .landing-search-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme-ux_2_0 .form-input-field {
    height: 48px;
    margin-bottom: 16px;
  }
  .theme-ux_2_0 .landing-search-submit {
    margin-top: 8px;
    margin-left: 0px;
    padding-right: 80px;
    padding-left: 80px;
    font-size: 20px;
    line-height: 23px;
    font-weight: 900;
  }
  .theme-ux_2_0 .landing-content-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
  }
  .theme-ux_2_0 .list {
    padding-left: 20px;
  }
  .theme-ux_2_0 .form-block {
    position: static;
  }
  .theme-ux_2_0 .landing-hero-image {
    height: 180px;
    margin-left: 0px;
  }
  .theme-ux_2_0 .div-block-2 {
    position: static;
    padding-left: 0px;
  }
  .theme-ux_2_0 .div-block-4 {
    width: auto;
    margin-right: -20px;
    margin-left: -20px;
    padding-top: 50px;
    padding-bottom: 50px;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(39, 111, 207, 0)), color-stop(27.85%, rgba(39, 111, 207, 0.33)), color-stop(53%, rgba(39, 111, 207, 0.5)), color-stop(77%, rgba(39, 111, 207, 0.33)), to(rgba(39, 111, 207, 0)));
    background-image:
      linear-gradient(
        0deg,
        rgba(39, 111, 207, 0),
        rgba(39, 111, 207, 0.33) 27.85%,
        rgba(39, 111, 207, 0.5) 53%,
        rgba(39, 111, 207, 0.33) 77%,
        rgba(39, 111, 207, 0));
    text-align: center;
  }
  .theme-ux_2_0 .loader-container {
    width: 100%;
  }
  .theme-ux_2_0 .loader-results-wrapper {
    position: relative;
    padding: 16px;
  }
  .theme-ux_2_0 .div-block-5 {
    position: relative;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .theme-ux_2_0 .div-block-6 {
    margin-left: 0px;
    padding-top: 20px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .theme-ux_2_0 .search-result-grid {
    margin-top: 23px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .theme-ux_2_0 .search-results-header {
    max-width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .theme-ux_2_0 .search-result-avatar {
    position: absolute;
    left: 0px;
    top: 10px;
    width: 40px;
    height: 40px;
  }
  .theme-ux_2_0 .loader-modal-dialog {
    left: 50%;
    right: 0px;
    width: 400px;
    height: auto;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .theme-ux_2_0 .loader-modal-btn {
    font-weight: 900;
  }
  .theme-ux_2_0 .loader-modal-dunno {
    font-size: 12px;
    line-height: 14px;
  }
  .theme-ux_2_0 .srp-hero {
    position: relative;
  }
  .theme-ux_2_0 .paragraph-2 {
    width: auto;
  }
  .theme-ux_2_0 .search-results-container {
    margin-top: 40px;
    margin-bottom: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme-ux_2_0 .search-list-container {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }
  .theme-ux_2_0 .search-filter {
    display: none;
  }
  .theme-ux_2_0 .search-list-header {
    position: relative;
  }
  .theme-ux_2_0 .search-list-result {
    position: absolute;
    left: 0px;
    top: -32px;
    width: 100%;
    font-size: 20px;
    line-height: 23px;
  }
  .theme-ux_2_0 .paragraph-3 {
    font-size: 16px;
    line-height: 19px;
  }
  .theme-ux_2_0 .search-list-item {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .theme-ux_2_0 .search-list-info {
    margin-bottom: 24px;
  }
  .theme-ux_2_0 .search-list-name {
    max-width: 70%;
  }
  .theme-ux_2_0 .search-possible-locations {
    margin-top: 16px;
  }
  .theme-ux_2_0 .search-view-report {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    text-align: center;
  }
  .theme-ux_2_0 .search-list-divider {
    margin-right: 0px;
    margin-left: 0px;
    border-color: #525252;
  }
  .theme-ux_2_0 .refine-search {
    margin-bottom: 40px;
  }
  .theme-ux_2_0 .div-block-7 {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .theme-ux_2_0 .div-block-9 {
    width: 100%;
    max-width: 100%;
  }
  .theme-ux_2_0 .grid-5 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .theme-ux_2_0 .btn-build-report {
    padding-right: 80px;
    padding-left: 80px;
    font-size: 12px;
    line-height: 14px;
  }
  .theme-ux_2_0 .btn-search-again {
    padding-right: 80px;
    padding-left: 80px;
    font-size: 20px;
    line-height: 23px;
  }
  .theme-ux_2_0 .refine-search-img {
    display: none;
  }
  .theme-ux_2_0 .div-block-10 {
    max-width: 100%;
    margin-right: 0px;
  }
  .theme-ux_2_0 .refine-search-img-mobile {
    display: block;
    width: 185px;
    margin: 40px auto;
  }
  .theme-ux_2_0 .grid-6 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .theme-ux_2_0 .srp-hero-heading {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
  }
  .theme-ux_2_0 .div-block-11 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }
  .theme-ux_2_0 .image-5 {
    height: 100px;
  }
  .theme-ux_2_0 .navbar-search {
    width: 200px;
  }
  .theme-ux_2_0 .notification-modal {
    width: 335px;
  }
  .theme-ux_2_0 .notification-modal-heading {
    font-size: 18px;
    line-height: 21px;
  }
  .theme-ux_2_0 .signup-hero-heading {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 28px;
  }
  .theme-ux_2_0 .signup-hero-subheading {
    font-size: 18px;
    line-height: 21px;
  }
  .theme-ux_2_0 .signup-hero-left {
    width: auto;
  }
  .theme-ux_2_0 .heading-4 {
    font-size: 20px;
    line-height: 23px;
  }
  .theme-ux_2_0 .signup-profile-info {
    padding-right: 0px;
    padding-left: 0px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .theme-ux_2_0 .signup-profile-avatar {
    width: 64px;
    margin-right: 9px;
  }
  .theme-ux_2_0 .signup-profile-name {
    font-size: 20px;
    line-height: 23px;
  }
  .theme-ux_2_0 .div-block-12 {
    font-size: 12px;
    line-height: 14px;
  }
  .theme-ux_2_0 .div-block-13 {
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .theme-ux_2_0 .div-block-15 {
    grid-row-gap: 12px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .theme-ux_2_0 .checkout-banner {
    padding-bottom: 22px;
  }
  .theme-ux_2_0 .checkout-banner-heading {
    margin-top: 0px;
    font-size: 32px;
    line-height: 50px;
  }
  .theme-ux_2_0 .checkout-form-container {
    padding-right: 16px;
    padding-left: 16px;
  }
  .theme-ux_2_0 .form-row {
    margin-bottom: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme-ux_2_0 .form-col-6 {
    width: 100%;
    margin-bottom: 16px;
  }
  .theme-ux_2_0 .form-input.expiration-date {
    width: 228px;
  }
  .theme-ux_2_0 .form-input.cvc {
    width: 228px;
  }
  .theme-ux_2_0 .form-input.zipcode {
    width: 228px;
  }
  .theme-ux_2_0 .form-col-12 {
    margin-bottom: 16px;
  }
  .theme-ux_2_0 .credit-card-icons {
    top: -19px;
    bottom: auto;
  }
  .theme-ux_2_0 .credit-card-icon {
    height: 15px;
  }
  .theme-ux_2_0 .div-block-19 {
    margin-right: 24px;
  }
  .theme-ux_2_0 .signup-right {
    padding: 32px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme-ux_2_0 .signup-warning {
    margin-bottom: 32px;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
  .theme-ux_2_0 .testimonial-quote {
    width: 35px;
    height: 24px;
  }
  .theme-ux_2_0 .testimonial-feedback {
    font-size: 10px;
    line-height: 12px;
  }
  .theme-ux_2_0 .signup-hero-img {
    width: 90px;
  }
  .theme-ux_2_0 .div-block-22 {
    min-width: 100%;
    margin-right: 0px;
  }
  .theme-ux_2_0 .paragraph-6 {
    margin-bottom: 0px;
  }
  .theme-ux_2_0 .create-account-header {
    padding-right: 16px;
    padding-left: 16px;
  }
  .theme-ux_2_0 .create-account-heading {
    text-align: center;
  }
  .theme-ux_2_0 .create-account-form-container {
    padding-right: 16px;
    padding-left: 16px;
  }
  .theme-ux_2_0 .signup-right-copy {
    padding: 32px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme-ux_2_0 .div-block-24 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme-ux_2_0 .signup-warning-copy {
    margin-bottom: 0px;
    padding: 0px;
  }
  .theme-ux_2_0 .div-block-23-copy {
    margin-bottom: 32px;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
  .theme-ux_2_0 .div-block-25 {
    margin-left: 75px;
  }
  .theme-ux_2_0 .testimonial-avatar {
    width: 48px;
    height: 48px;
  }
  .theme-ux_2_0 .testimonial-name {
    font-size: 14px;
    line-height: 16px;
  }
  .theme-ux_2_0 .div-block-26 {
    width: 100%;
  }
  .theme-ux_2_0 .testimonial-star {
    width: 14px;
    height: 14px;
  }
  .theme-ux_2_0 .disclaimer {
    font-size: 8px;
    line-height: 9px;
  }
}
@media screen and (max-width: 479px) {
  .theme-ux_2_0 h1 {
    font-size: 24px;
    line-height: 28px;
  }
  .theme-ux_2_0 h2 {
    font-size: 20px;
    line-height: 24px;
  }
  .theme-ux_2_0 p {
    font-size: 12px;
    line-height: 14px;
  }
  .theme-ux_2_0 .header {
    padding-right: 20px;
    padding-left: 20px;
  }
  .theme-ux_2_0 .container {
    position: static;
    padding-right: 15px;
    padding-left: 15px;
  }
  .theme-ux_2_0 .download-details-left {
    padding-top: 20px;
  }
  .theme-ux_2_0 .image {
    max-width: 50%;
  }
  .theme-ux_2_0 .download-result-social-icon {
    width: 40px;
  }
  .theme-ux_2_0 .grid-2 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    grid-column-gap: 15px;
  }
  .theme-ux_2_0 .grid-1 {
    padding-right: 0px;
    padding-left: 0px;
    grid-column-gap: 0px;
  }
  .theme-ux_2_0 .result-grid-item {
    width: auto;
  }
  .theme-ux_2_0 .link {
    margin-left: 25px;
  }
  .theme-ux_2_0 .image-3 {
    max-width: 50%;
  }
  .theme-ux_2_0 .grid-4 {
    padding-right: 10px;
    padding-left: 10px;
  }
  .theme-ux_2_0 .result-grid-icon {
    width: 60px;
  }
  .theme-ux_2_0 .download-details-left1 {
    max-width: 200px;
  }
  .theme-ux_2_0 .download-details-heading-lg {
    max-width: 100%;
  }
  .theme-ux_2_0 .landing-hero {
    margin-top: 60px;
  }
  .theme-ux_2_0 .landing-search-form {
    position: static;
  }
  .theme-ux_2_0 .landing-search-submit {
    width: 100%;
  }
  .theme-ux_2_0 .div-block-3 {
    width: 100%;
  }
  .theme-ux_2_0 .div-block-4 {
    margin-right: -15px;
    margin-left: -15px;
  }
  .theme-ux_2_0 .loader-results-wrapper {
    padding-right: 10px;
    padding-left: 10px;
  }
  .theme-ux_2_0 .search-result-grid {
    grid-column-gap: 10px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto auto auto auto auto;
    grid-template-rows: auto auto auto auto auto auto;
  }
  .theme-ux_2_0 .loader-modal-dialog {
    left: 40px;
    right: 40px;
    width: auto;
    height: auto;
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
  }
  .theme-ux_2_0 .srp-hero {
    padding-top: 50px;
  }
  .theme-ux_2_0 .search-list-header {
    padding-left: 12px;
  }
  .theme-ux_2_0 .search-list-name {
    max-width: 60%;
  }
  .theme-ux_2_0 .search-list-load-more {
    white-space: nowrap;
  }
  .theme-ux_2_0 .btn-build-report {
    width: 80%;
    padding-right: 0px;
    padding-left: 0px;
  }
  .theme-ux_2_0 .btn-search-again {
    width: 80%;
    padding-right: 0px;
    padding-left: 0px;
    text-align: center;
  }
  .theme-ux_2_0 .srp-hero-heading {
    position: absolute;
    white-space: nowrap;
  }
  .theme-ux_2_0 .image-5 {
    height: 100px;
  }
  .theme-ux_2_0 .navbar-search {
    width: 164px;
  }
  .theme-ux_2_0 .modal-container {
    padding-right: 16px;
    padding-left: 16px;
  }
  .theme-ux_2_0 .notification-modal {
    width: 100%;
  }
  .theme-ux_2_0 .signup-left {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  .theme-ux_2_0 .div-block-15 {
    margin-left: 40px;
  }
  .theme-ux_2_0 .form-group {
    width: 100%;
  }
  .theme-ux_2_0 .form-label {
    font-size: 12px;
  }
  .theme-ux_2_0 .form-input.expiration-date {
    width: 100%;
  }
  .theme-ux_2_0 .form-input.cvc {
    width: 100%;
    margin-right: 0px;
  }
  .theme-ux_2_0 .form-input.zipcode {
    width: 100%;
  }
  .theme-ux_2_0 .div-block-17 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .theme-ux_2_0 .div-block-18 {
    width: 100%;
  }
  .theme-ux_2_0 .div-block-19 {
    width: 100%;
    margin-right: 0px;
  }
  .theme-ux_2_0 .div-block-20 {
    width: 100%;
  }
  .theme-ux_2_0 .checkout-submit {
    font-size: 17px;
  }
  .theme-ux_2_0 .create-account-header {
    padding-right: 16px;
    padding-left: 16px;
  }
  .theme-ux_2_0 .create-account-heading {
    text-align: left;
  }
}
.theme-ux_2_0 #w-node-68be1eaca878-bc4176df {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}
.theme-ux_2_0 #w-node-a5e887a58fd0-394176f8 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}
.theme-ux_2_0 #w-node-0eee2c91439f-ff4176f9 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}
.theme-ux_2_0 #w-node-3f9db1dd95f0-154176fa {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}
@media screen and (max-width: 991px) {
  .theme-ux_2_0 #w-node-ff31827a6800-bd4176d9 {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
  }
  .theme-ux_2_0 #w-node-ff31827a6800-774176f6 {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
  }
}
@media screen and (max-width: 767px) {
  .theme-ux_2_0 #w-node-ff31827a6800-bd4176d9 {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }
  .theme-ux_2_0 #w-node-ff31827a6800-774176f6 {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }
}
.theme-ux_2_0 .has-error {
  border-color: #e54747;
}
.theme-ux_2_0 .has-error.center {
  text-align: center !important;
}
.theme-ux_2_0 button {
  color: #fff;
  text-decoration: none;
}
.theme-ux_2_0 .footer a {
  color: #4851c0 !important;
}
.theme-ux_2_0 .progresscir {
  line-height: unset;
}
.theme-ux_2_0 .progresscir img {
  width: 66px;
  height: 66px;
  padding-top: 0;
}
.theme-ux_2_0 .progresscir::after {
  border: none !important;
}
.theme-ux_2_0 .download-details-heading h1 {
  font-size: 32px;
  margin: 0;
  line-height: inherit;
  margin-bottom: 32px;
}
.theme-ux_2_0 .download-details-heading h1 span {
  color: #ff4b55;
}
.theme-ux_2_0 .download-details-heading p {
  font-weight: 400;
  color: #333;
  line-height: 1.2;
}
.theme-ux_2_0 .download-details-right strong {
  color: #333;
}
.theme-ux_2_0 .download-details h3.title p {
  font-size: 32px;
  margin: 0;
  line-height: inherit;
  margin-bottom: 32px;
}
@media (min-width: 992px) {
  .theme-ux_2_0 .btn-build-report {
    position: absolute;
    right: 0;
    top: -100px;
  }
}
@media (max-width: 767px) {
  .theme-ux_2_0 .landing-hero {
    margin-top: 0 !important;
  }
}
@media (max-width: 767px) {
  .theme-ux_2_0 .main-content {
    margin-top: -120px !important;
  }
}
.theme-ux_2_0 .form-input.cvc {
  border: 1px solid #dcdcdc;
}
.theme-ux_2_0 .form-input::placeholder {
  color: #979797 !important;
}
.theme-ux_2_0 button.close {
  color: black;
  font-size: 32px;
}
@media (max-width: 479px) {
  .theme-ux_2_0 .div-block-19 {
    margin-bottom: 28px;
  }
}
@media (max-width: 479px) {
  .theme-ux_2_0 .srp-hero {
    padding-top: 0;
  }
}
.theme-ux_2_0 .has-error {
  color: #e54747;
  text-align: left;
}
.theme-ux_2_0 .form-label {
  text-align: left !important;
}
.theme-ux_2_0 .checkout-form .has-error {
  display: block;
}
.theme-ux_2_0 .landing-disclaimer {
  max-width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}
@media (min-width: 991px) {
  .theme-ux_2_0 .paragraph-2 {
    width: auto;
  }
  .theme-ux_2_0 .signup-hero-img {
    width: 160px;
  }
}
@media screen and (max-width: 767px) {
  .theme-ux_2_0 .header {
    position: relative;
    padding-right: 20px;
    padding-left: 20px;
  }
  .theme-ux_2_0 .checkout-submit {
    font-size: 16px;
  }
  .theme-ux_2_0 .signup-right {
    margin-bottom: 45px;
  }
}
.theme-ux_2_0 .mb-32 {
  margin-bottom: 32px;
}
.theme-ux_2_0 .rr-disclaimer {
  margin-top: 112px;
}
.theme-ux_2_0 .search-list-result {
  text-transform: uppercase;
}
.theme-ux_2_0 .checkout-terms {
  color: black;
}
.theme-ux_2_0 .checkout-terms a {
  color: #276FCF !important;
  cursor: pointer;
}
.theme-ux_2_0 .checkout-submit div {
  display: flex;
  align-items: center;
}
.theme-legacy.theme-ux_2_0 .header {
  margin-bottom: 20px;
}
.theme-legacy.theme-ux_2_0#addon .header {
  margin-bottom: 0;
}
.header a.bold {
  color: white !important;
}
.modal-content {
  border: 0;
}
body {
  font-family:
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  color: #404040;
  background: #f9f9f9;
}
.article-details ::ng-deep a {
  color: #81b34c !important;
}

/* src/app/themes/3842FF07E386F64F7AC9CD6AC71A737C/base.component.scss */
.red-text-placeholder::placeholder {
  color: #e41818;
}
html {
  height: 100%;
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  min-height: 100%;
  background-color: #fff;
  font-size: 14px;
  line-height: 20px;
  color: #333;
}
body {
  background-color: #f8fafe;
}
.modal {
  display: none;
}
.modal.in {
  display: block;
}
.fast-right-spinner {
  -webkit-animation: glyphicons-spin-r 1s infinite linear;
  animation: glyphicons-spin-r 1s infinite linear;
}
.normal-right-spinner {
  -webkit-animation: glyphicons-spin-r 2s infinite linear;
  animation: glyphicons-spin-r 2s infinite linear;
}
.slow-right-spinner {
  -webkit-animation: glyphicons-spin-r 3s infinite linear;
  animation: glyphicons-spin-r 3s infinite linear;
}
.fast-left-spinner {
  -webkit-animation: glyphicons-spin-l 1s infinite linear;
  animation: glyphicons-spin-l 1s infinite linear;
}
.normal-left-spinner {
  -webkit-animation: glyphicons-spin-l 2s infinite linear;
  animation: glyphicons-spin-l 2s infinite linear;
}
.slow-left-spinner {
  -webkit-animation: glyphicons-spin-l 3s infinite linear;
  animation: glyphicons-spin-l 3s infinite linear;
}
@-webkit-keyframes glyphicons-spin-r {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes glyphicons-spin-r {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-webkit-keyframes glyphicons-spin-l {
  0% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes glyphicons-spin-l {
  0% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.theme-ux_3_1 {
}
.theme-ux_3_1 article,
.theme-ux_3_1 aside,
.theme-ux_3_1 details,
.theme-ux_3_1 figcaption,
.theme-ux_3_1 figure,
.theme-ux_3_1 footer,
.theme-ux_3_1 header,
.theme-ux_3_1 hgroup,
.theme-ux_3_1 main,
.theme-ux_3_1 menu,
.theme-ux_3_1 nav,
.theme-ux_3_1 section,
.theme-ux_3_1 summary {
  display: block;
}
.theme-ux_3_1 audio,
.theme-ux_3_1 canvas,
.theme-ux_3_1 progress,
.theme-ux_3_1 video {
  display: inline-block;
  vertical-align: baseline;
}
.theme-ux_3_1 audio:not([controls]) {
  display: none;
  height: 0;
}
.theme-ux_3_1 [hidden],
.theme-ux_3_1 template {
  display: none;
}
.theme-ux_3_1 a {
  background-color: transparent;
}
.theme-ux_3_1 a:active,
.theme-ux_3_1 a:hover {
  outline: 0;
}
.theme-ux_3_1 abbr[title] {
  border-bottom: 1px dotted;
}
.theme-ux_3_1 b,
.theme-ux_3_1 strong {
  font-weight: bold;
}
.theme-ux_3_1 dfn {
  font-style: italic;
}
.theme-ux_3_1 h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
.theme-ux_3_1 mark {
  background: #ff0;
  color: #000;
}
.theme-ux_3_1 small {
  font-size: 80%;
}
.theme-ux_3_1 sub,
.theme-ux_3_1 sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.theme-ux_3_1 sup {
  top: -0.5em;
}
.theme-ux_3_1 sub {
  bottom: -0.25em;
}
.theme-ux_3_1 img {
  border: 0;
}
.theme-ux_3_1 svg:not(:root) {
  overflow: hidden;
}
.theme-ux_3_1 figure {
  margin: 1em 40px;
}
.theme-ux_3_1 hr {
  box-sizing: content-box;
  height: 0;
}
.theme-ux_3_1 pre {
  overflow: auto;
}
.theme-ux_3_1 code,
.theme-ux_3_1 kbd,
.theme-ux_3_1 pre,
.theme-ux_3_1 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
.theme-ux_3_1 button,
.theme-ux_3_1 input,
.theme-ux_3_1 optgroup,
.theme-ux_3_1 select,
.theme-ux_3_1 textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
.theme-ux_3_1 button {
  overflow: visible;
}
.theme-ux_3_1 button,
.theme-ux_3_1 select {
  text-transform: none;
}
.theme-ux_3_1 button,
.theme-ux_3_1 html input[type=button],
.theme-ux_3_1 input[type=reset] {
  -webkit-appearance: button;
  cursor: pointer;
}
.theme-ux_3_1 button[disabled],
.theme-ux_3_1 html input[disabled] {
  cursor: default;
}
.theme-ux_3_1 button::-moz-focus-inner,
.theme-ux_3_1 input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.theme-ux_3_1 input {
  line-height: normal;
}
.theme-ux_3_1 input[type=checkbox],
.theme-ux_3_1 input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}
.theme-ux_3_1 input[type=number]::-webkit-inner-spin-button,
.theme-ux_3_1 input[type=number]::-webkit-outer-spin-button {
  height: auto;
}
.theme-ux_3_1 input[type=search] {
  -webkit-appearance: none;
}
.theme-ux_3_1 input[type=search]::-webkit-search-cancel-button,
.theme-ux_3_1 input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
.theme-ux_3_1 fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
.theme-ux_3_1 legend {
  border: 0;
  padding: 0;
}
.theme-ux_3_1 textarea {
  overflow: auto;
}
.theme-ux_3_1 optgroup {
  font-weight: bold;
}
.theme-ux_3_1 table {
  border-collapse: collapse;
  border-spacing: 0;
}
.theme-ux_3_1 td,
.theme-ux_3_1 th {
  padding: 0;
}
@font-face {
  font-family: "webflow-icons";
  src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBiUAAAC8AAAAYGNtYXDpP+a4AAABHAAAAFxnYXNwAAAAEAAAAXgAAAAIZ2x5ZmhS2XEAAAGAAAADHGhlYWQTFw3HAAAEnAAAADZoaGVhCXYFgQAABNQAAAAkaG10eCe4A1oAAAT4AAAAMGxvY2EDtALGAAAFKAAAABptYXhwABAAPgAABUQAAAAgbmFtZSoCsMsAAAVkAAABznBvc3QAAwAAAAAHNAAAACAAAwP4AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAQAAAAAwACAACAAQAAQAg5gPpA//9//8AAAAAACDmAOkA//3//wAB/+MaBBcIAAMAAQAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEBIAAAAyADgAAFAAAJAQcJARcDIP5AQAGA/oBAAcABwED+gP6AQAABAOAAAALgA4AABQAAEwEXCQEH4AHAQP6AAYBAAcABwED+gP6AQAAAAwDAAOADQALAAA8AHwAvAAABISIGHQEUFjMhMjY9ATQmByEiBh0BFBYzITI2PQE0JgchIgYdARQWMyEyNj0BNCYDIP3ADRMTDQJADRMTDf3ADRMTDQJADRMTDf3ADRMTDQJADRMTAsATDSANExMNIA0TwBMNIA0TEw0gDRPAEw0gDRMTDSANEwAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFVz+fAGEAAAAAAL//f+9BAMDwwAEAAkAABcBJwEXAwE3AQdpA5ps/GZsbAOabPxmbEMDmmz8ZmwDmvxmbAOabAAAAgAA/8AEAAPAAB0AOwAABSInLgEnJjU0Nz4BNzYzMTIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjMSIHDgEHBhUUFx4BFxYzAgBqXV6LKCgoKIteXWpqXV6LKCgoKIteXWpVSktvICEhIG9LSlVVSktvICEhIG9LSlVAKCiLXl1qal1eiygoKCiLXl1qal1eiygoZiEgb0tKVVVKS28gISEgb0tKVVVKS28gIQABAAABwAIAA8AAEgAAEzQ3PgE3NjMxFSIHDgEHBhUxIwAoKIteXWpVSktvICFmAcBqXV6LKChmISBvS0pVAAAAAgAA/8AFtgPAADIAOgAAARYXHgEXFhUUBw4BBwYHIxUhIicuAScmNTQ3PgE3NjMxOAExNDc+ATc2MzIXHgEXFhcVATMJATMVMzUEjD83NlAXFxYXTjU1PQL8kz01Nk8XFxcXTzY1PSIjd1BQWlJJSXInJw3+mdv+2/7c25MCUQYcHFg5OUA/ODlXHBwIAhcXTzY1PTw1Nk8XF1tQUHcjIhwcYUNDTgL+3QFt/pOTkwABAAAAAQAAmM7nP18PPPUACwQAAAAAANciZKUAAAAA1yJkpf/9/70FtgPDAAAACAACAAAAAAAAAAEAAAPA/8AAAAW3//3//QW2AAEAAAAAAAAAAAAAAAAAAAAMBAAAAAAAAAAAAAAAAgAAAAQAASAEAADgBAAAwAQAAJ0EAP/9BAAAAAQAAAAFtwAAAAAAAAAKABQAHgAyAEYAjACiAL4BFgE2AY4AAAABAAAADAA8AAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADQAAAAEAAAAAAAIABwCWAAEAAAAAAAMADQBIAAEAAAAAAAQADQCrAAEAAAAAAAUACwAnAAEAAAAAAAYADQBvAAEAAAAAAAoAGgDSAAMAAQQJAAEAGgANAAMAAQQJAAIADgCdAAMAAQQJAAMAGgBVAAMAAQQJAAQAGgC4AAMAAQQJAAUAFgAyAAMAAQQJAAYAGgB8AAMAAQQJAAoANADsd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("truetype");
  font-weight: normal;
  font-style: normal;
}
.theme-ux_3_1 [class^=w-icon-],
.theme-ux_3_1 [class*=" w-icon-"] {
  font-family: "webflow-icons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.theme-ux_3_1 .w-icon-slider-right:before {
  content: "\e600";
}
.theme-ux_3_1 .w-icon-slider-left:before {
  content: "\e601";
}
.theme-ux_3_1 .w-icon-nav-menu:before {
  content: "\e602";
}
.theme-ux_3_1 .w-icon-arrow-down:before,
.theme-ux_3_1 .w-icon-dropdown-toggle:before {
  content: "\e603";
}
.theme-ux_3_1 .w-icon-file-upload-remove:before {
  content: "\e900";
}
.theme-ux_3_1 .w-icon-file-upload-icon:before {
  content: "\e903";
}
.theme-ux_3_1 * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.theme-ux_3_1 html {
  height: 100%;
}
.theme-ux_3_1 body {
  margin: 0;
  min-height: 100%;
  background-color: #fff;
  font-size: 14px;
  line-height: 20px;
  color: #333;
}
.theme-ux_3_1 img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}
.theme-ux_3_1 html.w-mod-touch * {
  background-attachment: scroll !important;
}
.theme-ux_3_1 .w-block {
  display: block;
}
.theme-ux_3_1 .w-inline-block {
  max-width: 100%;
  display: inline-block;
}
.theme-ux_3_1 .w-clearfix:before,
.theme-ux_3_1 .w-clearfix:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.theme-ux_3_1 .w-clearfix:after {
  clear: both;
}
.theme-ux_3_1 .w-hidden {
  display: none;
}
.theme-ux_3_1 .w-button {
  display: inline-block;
  padding: 9px 15px;
  background-color: #3898EC;
  color: white;
  border: 0;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
}
.theme-ux_3_1 input.w-button {
  -webkit-appearance: button;
}
.theme-ux_3_1 html[data-w-dynpage] [data-w-cloak] {
  color: transparent !important;
}
.theme-ux_3_1 .w-webflow-badge,
.theme-ux_3_1 .w-webflow-badge * {
  position: static;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  z-index: auto;
  display: block;
  visibility: visible;
  overflow: visible;
  overflow-x: visible;
  overflow-y: visible;
  box-sizing: border-box;
  width: auto;
  height: auto;
  max-height: none;
  max-width: none;
  min-height: 0;
  min-width: 0;
  margin: 0;
  padding: 0;
  float: none;
  clear: none;
  border: 0 none transparent;
  border-radius: 0;
  background: none;
  background-image: none;
  background-position: 0% 0%;
  background-size: auto auto;
  background-repeat: repeat;
  background-origin: padding-box;
  background-clip: border-box;
  background-attachment: scroll;
  background-color: transparent;
  box-shadow: none;
  opacity: 1;
  transform: none;
  transition: none;
  direction: ltr;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-style: inherit;
  font-variant: inherit;
  text-align: inherit;
  letter-spacing: inherit;
  text-decoration: inherit;
  text-indent: 0;
  text-transform: inherit;
  list-style-type: disc;
  text-shadow: none;
  font-smoothing: auto;
  vertical-align: baseline;
  cursor: inherit;
  white-space: inherit;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
}
.theme-ux_3_1 .w-webflow-badge {
  position: fixed !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 2147483647 !important;
  top: auto !important;
  right: 12px !important;
  bottom: 12px !important;
  left: auto !important;
  color: #AAADB0 !important;
  background-color: #fff !important;
  border-radius: 3px !important;
  padding: 6px 8px 6px 6px !important;
  font-size: 12px !important;
  opacity: 1 !important;
  line-height: 14px !important;
  text-decoration: none !important;
  transform: none !important;
  margin: 0 !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.theme-ux_3_1 .w-webflow-badge > img {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  vertical-align: middle !important;
}
.theme-ux_3_1 h1,
.theme-ux_3_1 h2,
.theme-ux_3_1 h3,
.theme-ux_3_1 h4,
.theme-ux_3_1 h5,
.theme-ux_3_1 h6 {
  font-weight: bold;
  margin-bottom: 10px;
}
.theme-ux_3_1 h1 {
  font-size: 38px;
  line-height: 44px;
  margin-top: 20px;
}
.theme-ux_3_1 h2 {
  font-size: 32px;
  line-height: 36px;
  margin-top: 20px;
}
.theme-ux_3_1 h3 {
  font-size: 24px;
  line-height: 30px;
  margin-top: 20px;
}
.theme-ux_3_1 h4 {
  font-size: 18px;
  line-height: 24px;
  margin-top: 10px;
}
.theme-ux_3_1 h5 {
  font-size: 14px;
  line-height: 20px;
  margin-top: 10px;
}
.theme-ux_3_1 h6 {
  font-size: 12px;
  line-height: 18px;
  margin-top: 10px;
}
.theme-ux_3_1 p {
  margin-top: 0;
  margin-bottom: 10px;
}
.theme-ux_3_1 blockquote {
  margin: 0 0 10px 0;
  padding: 10px 20px;
  border-left: 5px solid #E2E2E2;
  font-size: 18px;
  line-height: 22px;
}
.theme-ux_3_1 figure {
  margin: 0;
  margin-bottom: 10px;
}
.theme-ux_3_1 figcaption {
  margin-top: 5px;
  text-align: center;
}
.theme-ux_3_1 ul,
.theme-ux_3_1 ol {
  margin-top: 0px;
  margin-bottom: 10px;
}
.theme-ux_3_1 .w-list-unstyled {
  padding-left: 0;
  list-style: none;
}
.theme-ux_3_1 .w-embed:before,
.theme-ux_3_1 .w-embed:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.theme-ux_3_1 .w-embed:after {
  clear: both;
}
.theme-ux_3_1 .w-video {
  width: 100%;
  position: relative;
  padding: 0;
}
.theme-ux_3_1 .w-video iframe,
.theme-ux_3_1 .w-video object,
.theme-ux_3_1 .w-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.theme-ux_3_1 fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}
.theme-ux_3_1 button,
.theme-ux_3_1 html input[type=button],
.theme-ux_3_1 input[type=reset] {
  border: 0;
  cursor: pointer;
  -webkit-appearance: button;
}
.theme-ux_3_1 .w-form {
  margin: 0 0 15px;
}
.theme-ux_3_1 .w-form-done {
  display: none;
  padding: 20px;
  text-align: center;
  background-color: #dddddd;
}
.theme-ux_3_1 .w-form-fail {
  display: none;
  margin-top: 10px;
  padding: 10px;
  background-color: #ffdede;
}
.theme-ux_3_1 label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.theme-ux_3_1 .w-input,
.theme-ux_3_1 .w-select {
  display: block;
  width: 100%;
  height: 38px;
  padding: 8px 12px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #333333;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #cccccc;
}
.theme-ux_3_1 .w-input:-moz-placeholder,
.theme-ux_3_1 .w-select:-moz-placeholder {
  color: #999;
}
.theme-ux_3_1 .w-input::-moz-placeholder,
.theme-ux_3_1 .w-select::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.theme-ux_3_1 .w-input:-ms-input-placeholder,
.theme-ux_3_1 .w-select:-ms-input-placeholder {
  color: #999;
}
.theme-ux_3_1 .w-input::-webkit-input-placeholder,
.theme-ux_3_1 .w-select::-webkit-input-placeholder {
  color: #999;
}
.theme-ux_3_1 .w-input:focus,
.theme-ux_3_1 .w-select:focus {
  border-color: #3898EC;
  outline: 0;
}
.theme-ux_3_1 .w-input[disabled],
.theme-ux_3_1 .w-select[disabled],
.theme-ux_3_1 .w-input[readonly],
.theme-ux_3_1 .w-select[readonly],
.theme-ux_3_1 fieldset[disabled] .w-input,
.theme-ux_3_1 fieldset[disabled] .w-select {
  cursor: not-allowed;
  background-color: #eeeeee;
}
.theme-ux_3_1 textarea.w-input,
.theme-ux_3_1 textarea.w-select {
  height: auto;
}
.theme-ux_3_1 .w-select {
  background-color: #f3f3f3;
}
.theme-ux_3_1 .w-select[multiple] {
  height: auto;
}
.theme-ux_3_1 .w-form-label {
  display: inline-block;
  cursor: pointer;
  font-weight: normal;
  margin-bottom: 0px;
}
.theme-ux_3_1 .w-radio {
  display: block;
  margin-bottom: 5px;
  padding-left: 20px;
}
.theme-ux_3_1 .w-radio:before,
.theme-ux_3_1 .w-radio:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.theme-ux_3_1 .w-radio:after {
  clear: both;
}
.theme-ux_3_1 .w-radio-input {
  margin: 4px 0 0;
  margin-top: 1px \	;
  line-height: normal;
  float: left;
  margin-left: -20px;
}
.theme-ux_3_1 .w-radio-input {
  margin-top: 3px;
}
.theme-ux_3_1 .w-file-upload {
  display: block;
  margin-bottom: 10px;
}
.theme-ux_3_1 .w-file-upload-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -100;
}
.theme-ux_3_1 .w-file-upload-default,
.theme-ux_3_1 .w-file-upload-uploading,
.theme-ux_3_1 .w-file-upload-success {
  display: inline-block;
  color: #333333;
}
.theme-ux_3_1 .w-file-upload-error {
  display: block;
  margin-top: 10px;
}
.theme-ux_3_1 .w-file-upload-default.w-hidden,
.theme-ux_3_1 .w-file-upload-uploading.w-hidden,
.theme-ux_3_1 .w-file-upload-error.w-hidden,
.theme-ux_3_1 .w-file-upload-success.w-hidden {
  display: none;
}
.theme-ux_3_1 .w-file-upload-uploading-btn {
  display: flex;
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid #cccccc;
  background-color: #fafafa;
}
.theme-ux_3_1 .w-file-upload-file {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  margin: 0;
  padding: 8px 9px 8px 11px;
  border: 1px solid #cccccc;
  background-color: #fafafa;
}
.theme-ux_3_1 .w-file-upload-file-name {
  font-size: 14px;
  font-weight: normal;
  display: block;
}
.theme-ux_3_1 .w-file-remove-link {
  margin-top: 3px;
  margin-left: 10px;
  width: auto;
  height: auto;
  padding: 3px;
  display: block;
  cursor: pointer;
}
.theme-ux_3_1 .w-icon-file-upload-remove {
  margin: auto;
  font-size: 10px;
}
.theme-ux_3_1 .w-file-upload-error-msg {
  display: inline-block;
  color: #ea384c;
  padding: 2px 0;
}
.theme-ux_3_1 .w-file-upload-info {
  display: inline-block;
  line-height: 38px;
  padding: 0 12px;
}
.theme-ux_3_1 .w-file-upload-label {
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid #cccccc;
  background-color: #fafafa;
}
.theme-ux_3_1 .w-icon-file-upload-icon,
.theme-ux_3_1 .w-icon-file-upload-uploading {
  display: inline-block;
  margin-right: 8px;
  width: 20px;
}
.theme-ux_3_1 .w-icon-file-upload-uploading {
  height: 20px;
}
.theme-ux_3_1 .w-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 940px;
}
.theme-ux_3_1 .w-container:before,
.theme-ux_3_1 .w-container:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.theme-ux_3_1 .w-container:after {
  clear: both;
}
.theme-ux_3_1 .w-container .w-row {
  margin-left: -10px;
  margin-right: -10px;
}
.theme-ux_3_1 .w-row:before,
.theme-ux_3_1 .w-row:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.theme-ux_3_1 .w-row:after {
  clear: both;
}
.theme-ux_3_1 .w-row .w-row {
  margin-left: 0;
  margin-right: 0;
}
.theme-ux_3_1 .w-col {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.theme-ux_3_1 .w-col .w-col {
  padding-left: 0;
  padding-right: 0;
}
.theme-ux_3_1 .w-col-1 {
  width: 8.33333333%;
}
.theme-ux_3_1 .w-col-2 {
  width: 16.66666667%;
}
.theme-ux_3_1 .w-col-3 {
  width: 25%;
}
.theme-ux_3_1 .w-col-4 {
  width: 33.33333333%;
}
.theme-ux_3_1 .w-col-5 {
  width: 41.66666667%;
}
.theme-ux_3_1 .w-col-6 {
  width: 50%;
}
.theme-ux_3_1 .w-col-7 {
  width: 58.33333333%;
}
.theme-ux_3_1 .w-col-8 {
  width: 66.66666667%;
}
.theme-ux_3_1 .w-col-9 {
  width: 75%;
}
.theme-ux_3_1 .w-col-10 {
  width: 83.33333333%;
}
.theme-ux_3_1 .w-col-11 {
  width: 91.66666667%;
}
.theme-ux_3_1 .w-col-12 {
  width: 100%;
}
.theme-ux_3_1 .w-hidden-main {
  display: none !important;
}
.theme-ux_3_1 .signin-now {
  font-weight: 700;
  font-family:
    Verdana,
    Geneva,
    Tahoma,
    sans-serif;
}
.theme-ux_3_1 .disclaimer {
  padding-top: 10px;
  padding-bottom: 0px;
  font-family:
    Verdana,
    Geneva,
    Tahoma,
    sans-serif;
}
@media (max-width: 835px) {
  .theme-ux_3_1 .disclaimer {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.theme-ux_3_1 .footer {
  opacity: 1;
  border-top: none;
  padding: 0;
  padding-top: 24px;
  margin-top: 60px;
}
.theme-ux_3_1 .footer__disclaimer {
  margin-top: 18px;
}
.theme-ux_3_1 .footer__disclaimer br {
  display: none;
}
.theme-ux_3_1 .footer__links {
  list-style-type: none;
  text-align: center;
  padding-left: 0;
  margin-bottom: 20px;
  margin-top: 60px;
  font-family:
    Verdana,
    Geneva,
    Tahoma,
    sans-serif;
}
@media (max-width: 576px) {
  .theme-ux_3_1 .footer__links {
    text-align: center;
    margin-top: 25px;
  }
}
.theme-ux_3_1 .footer__links--item {
  display: inline-block;
  padding-left: 0.5em;
  padding-right: 0.5em;
  border-left: 2px solid #1ebca9;
}
.theme-ux_3_1 .footer__links--item a {
  color: #36C974 !important;
  font-weight: 900;
}
.theme-ux_3_1 .footer__links--item:first-of-type {
  border-left: none;
}
.theme-ux_3_1 .footer__links--item:last-of-type {
  padding-right: 0;
}
@media (max-width: 576px) {
  .theme-ux_3_1 .footer__links--item {
    border-left: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 991px) {
  .theme-ux_3_1 .w-container {
    max-width: 728px;
  }
  .theme-ux_3_1 .w-hidden-main {
    display: inherit !important;
  }
  .theme-ux_3_1 .w-hidden-medium {
    display: none !important;
  }
  .theme-ux_3_1 .w-col-medium-1 {
    width: 8.33333333%;
  }
  .theme-ux_3_1 .w-col-medium-2 {
    width: 16.66666667%;
  }
  .theme-ux_3_1 .w-col-medium-3 {
    width: 25%;
  }
  .theme-ux_3_1 .w-col-medium-4 {
    width: 33.33333333%;
  }
  .theme-ux_3_1 .w-col-medium-5 {
    width: 41.66666667%;
  }
  .theme-ux_3_1 .w-col-medium-6 {
    width: 50%;
  }
  .theme-ux_3_1 .w-col-medium-7 {
    width: 58.33333333%;
  }
  .theme-ux_3_1 .w-col-medium-8 {
    width: 66.66666667%;
  }
  .theme-ux_3_1 .w-col-medium-9 {
    width: 75%;
  }
  .theme-ux_3_1 .w-col-medium-10 {
    width: 83.33333333%;
  }
  .theme-ux_3_1 .w-col-medium-11 {
    width: 91.66666667%;
  }
  .theme-ux_3_1 .w-col-medium-12 {
    width: 100%;
  }
  .theme-ux_3_1 .w-col-stack {
    width: 100%;
    left: auto;
    right: auto;
  }
}
@media screen and (max-width: 767px) {
  .theme-ux_3_1 .w-hidden-main {
    display: inherit !important;
  }
  .theme-ux_3_1 .w-hidden-medium {
    display: inherit !important;
  }
  .theme-ux_3_1 .w-hidden-small {
    display: none !important;
  }
  .theme-ux_3_1 .w-row,
  .theme-ux_3_1 .w-container .w-row {
    margin-left: 0;
    margin-right: 0;
  }
  .theme-ux_3_1 .w-col {
    width: 100%;
    left: auto;
    right: auto;
  }
  .theme-ux_3_1 .w-col-small-1 {
    width: 8.33333333%;
  }
  .theme-ux_3_1 .w-col-small-2 {
    width: 16.66666667%;
  }
  .theme-ux_3_1 .w-col-small-3 {
    width: 25%;
  }
  .theme-ux_3_1 .w-col-small-4 {
    width: 33.33333333%;
  }
  .theme-ux_3_1 .w-col-small-5 {
    width: 41.66666667%;
  }
  .theme-ux_3_1 .w-col-small-6 {
    width: 50%;
  }
  .theme-ux_3_1 .w-col-small-7 {
    width: 58.33333333%;
  }
  .theme-ux_3_1 .w-col-small-8 {
    width: 66.66666667%;
  }
  .theme-ux_3_1 .w-col-small-9 {
    width: 75%;
  }
  .theme-ux_3_1 .w-col-small-10 {
    width: 83.33333333%;
  }
  .theme-ux_3_1 .w-col-small-11 {
    width: 91.66666667%;
  }
  .theme-ux_3_1 .w-col-small-12 {
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  .theme-ux_3_1 .w-container {
    max-width: none;
  }
  .theme-ux_3_1 .w-hidden-main {
    display: inherit !important;
  }
  .theme-ux_3_1 .w-hidden-medium {
    display: inherit !important;
  }
  .theme-ux_3_1 .w-hidden-small {
    display: inherit !important;
  }
  .theme-ux_3_1 .w-hidden-tiny {
    display: none !important;
  }
  .theme-ux_3_1 .w-col {
    width: 100%;
  }
  .theme-ux_3_1 .w-col-tiny-1 {
    width: 8.33333333%;
  }
  .theme-ux_3_1 .w-col-tiny-2 {
    width: 16.66666667%;
  }
  .theme-ux_3_1 .w-col-tiny-3 {
    width: 25%;
  }
  .theme-ux_3_1 .w-col-tiny-4 {
    width: 33.33333333%;
  }
  .theme-ux_3_1 .w-col-tiny-5 {
    width: 41.66666667%;
  }
  .theme-ux_3_1 .w-col-tiny-6 {
    width: 50%;
  }
  .theme-ux_3_1 .w-col-tiny-7 {
    width: 58.33333333%;
  }
  .theme-ux_3_1 .w-col-tiny-8 {
    width: 66.66666667%;
  }
  .theme-ux_3_1 .w-col-tiny-9 {
    width: 75%;
  }
  .theme-ux_3_1 .w-col-tiny-10 {
    width: 83.33333333%;
  }
  .theme-ux_3_1 .w-col-tiny-11 {
    width: 91.66666667%;
  }
  .theme-ux_3_1 .w-col-tiny-12 {
    width: 100%;
  }
}
.theme-ux_3_1 .w-widget {
  position: relative;
}
.theme-ux_3_1 .w-widget-map {
  width: 100%;
  height: 400px;
}
.theme-ux_3_1 .w-widget-map label {
  width: auto;
  display: inline;
}
.theme-ux_3_1 .w-widget-map img {
  max-width: inherit;
}
.theme-ux_3_1 .w-widget-map .gm-style-iw {
  text-align: center;
}
.theme-ux_3_1 .w-widget-map .gm-style-iw > button {
  display: none !important;
}
.theme-ux_3_1 .w-widget-twitter {
  overflow: hidden;
}
.theme-ux_3_1 .w-widget-twitter-count-shim {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 28px;
  height: 20px;
  text-align: center;
  background: white;
  border: #758696 solid 1px;
  border-radius: 3px;
}
.theme-ux_3_1 .w-widget-twitter-count-shim * {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.theme-ux_3_1 .w-widget-twitter-count-shim .w-widget-twitter-count-inner {
  position: relative;
  font-size: 15px;
  line-height: 12px;
  text-align: center;
  color: #999;
  font-family: serif;
}
.theme-ux_3_1 .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
  position: relative;
  display: block;
}
.theme-ux_3_1 .w-widget-twitter-count-shim.w--large {
  width: 36px;
  height: 28px;
}
.theme-ux_3_1 .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 18px;
}
.theme-ux_3_1 .w-widget-twitter-count-shim:not(.w--vertical) {
  margin-left: 5px;
  margin-right: 8px;
}
.theme-ux_3_1 .w-widget-twitter-count-shim:not(.w--vertical).w--large {
  margin-left: 6px;
}
.theme-ux_3_1 .w-widget-twitter-count-shim:not(.w--vertical):before,
.theme-ux_3_1 .w-widget-twitter-count-shim:not(.w--vertical):after {
  top: 50%;
  left: 0;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.theme-ux_3_1 .w-widget-twitter-count-shim:not(.w--vertical):before {
  border-color: rgba(117, 134, 150, 0);
  border-right-color: #5d6c7b;
  border-width: 4px;
  margin-left: -9px;
  margin-top: -4px;
}
.theme-ux_3_1 .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
  border-width: 5px;
  margin-left: -10px;
  margin-top: -5px;
}
.theme-ux_3_1 .w-widget-twitter-count-shim:not(.w--vertical):after {
  border-color: rgba(255, 255, 255, 0);
  border-right-color: white;
  border-width: 4px;
  margin-left: -8px;
  margin-top: -4px;
}
.theme-ux_3_1 .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
  border-width: 5px;
  margin-left: -9px;
  margin-top: -5px;
}
.theme-ux_3_1 .w-widget-twitter-count-shim.w--vertical {
  width: 61px;
  height: 33px;
  margin-bottom: 8px;
}
.theme-ux_3_1 .w-widget-twitter-count-shim.w--vertical:before,
.theme-ux_3_1 .w-widget-twitter-count-shim.w--vertical:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.theme-ux_3_1 .w-widget-twitter-count-shim.w--vertical:before {
  border-color: rgba(117, 134, 150, 0);
  border-top-color: #5d6c7b;
  border-width: 5px;
  margin-left: -5px;
}
.theme-ux_3_1 .w-widget-twitter-count-shim.w--vertical:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-color: white;
  border-width: 4px;
  margin-left: -4px;
}
.theme-ux_3_1 .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 22px;
}
.theme-ux_3_1 .w-widget-twitter-count-shim.w--vertical.w--large {
  width: 76px;
}
.theme-ux_3_1 .w-widget-gplus {
  overflow: hidden;
}
.theme-ux_3_1 .w-background-video {
  position: relative;
  overflow: hidden;
  height: 500px;
  color: white;
}
.theme-ux_3_1 .w-background-video > video {
  background-size: cover;
  background-position: 50% 50%;
  position: absolute;
  margin: auto;
  width: 100%;
  height: 100%;
  right: -100%;
  bottom: -100%;
  top: -100%;
  left: -100%;
  object-fit: cover;
  z-index: -100;
}
.theme-ux_3_1 .w-background-video > video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}
.theme-ux_3_1 .w-slider {
  position: relative;
  height: 300px;
  text-align: center;
  background: #dddddd;
  clear: both;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}
.theme-ux_3_1 .w-slider-mask {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
  left: 0;
  right: 0;
  height: 100%;
  white-space: nowrap;
}
.theme-ux_3_1 .w-slide {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: 100%;
  white-space: normal;
  text-align: left;
}
.theme-ux_3_1 .w-slider-nav {
  position: absolute;
  z-index: 2;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  padding-top: 10px;
  height: 40px;
  text-align: center;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}
.theme-ux_3_1 .w-slider-nav.w-round > div {
  border-radius: 100%;
}
.theme-ux_3_1 .w-slider-nav.w-num > div {
  width: auto;
  height: auto;
  padding: 0.2em 0.5em;
  font-size: inherit;
  line-height: inherit;
}
.theme-ux_3_1 .w-slider-nav.w-shadow > div {
  box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
}
.theme-ux_3_1 .w-slider-nav-invert {
  color: #fff;
}
.theme-ux_3_1 .w-slider-nav-invert > div {
  background-color: rgba(34, 34, 34, 0.4);
}
.theme-ux_3_1 .w-slider-nav-invert > div.w-active {
  background-color: #222;
}
.theme-ux_3_1 .w-slider-dot {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  margin: 0 3px 0.5em;
  transition: background-color 100ms, color 100ms;
}
.theme-ux_3_1 .w-slider-dot.w-active {
  background-color: #fff;
}
.theme-ux_3_1 .w-slider-dot:focus {
  outline: none;
  box-shadow: 0px 0px 0px 2px #fff;
}
.theme-ux_3_1 .w-slider-dot:focus.w-active {
  box-shadow: none;
}
.theme-ux_3_1 .w-slider-arrow-left,
.theme-ux_3_1 .w-slider-arrow-right {
  position: absolute;
  width: 80px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  cursor: pointer;
  overflow: hidden;
  color: white;
  font-size: 40px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.theme-ux_3_1 .w-slider-arrow-left [class^=w-icon-],
.theme-ux_3_1 .w-slider-arrow-right [class^=w-icon-],
.theme-ux_3_1 .w-slider-arrow-left [class*=" w-icon-"],
.theme-ux_3_1 .w-slider-arrow-right [class*=" w-icon-"] {
  position: absolute;
}
.theme-ux_3_1 .w-slider-arrow-left:focus,
.theme-ux_3_1 .w-slider-arrow-right:focus {
  outline: 0;
}
.theme-ux_3_1 .w-slider-arrow-left {
  z-index: 3;
  right: auto;
}
.theme-ux_3_1 .w-slider-arrow-right {
  z-index: 4;
  left: auto;
}
.theme-ux_3_1 .w-icon-slider-left,
.theme-ux_3_1 .w-icon-slider-right {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1em;
  height: 1em;
}
.theme-ux_3_1 .w-slider-aria-label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.theme-ux_3_1 .w-dropdown {
  display: inline-block;
  position: relative;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  z-index: 900;
}
.theme-ux_3_1 .w-dropdown-btn,
.theme-ux_3_1 .w-dropdown-toggle,
.theme-ux_3_1 .w-dropdown-link {
  position: relative;
  vertical-align: top;
  text-decoration: none;
  color: #222222;
  padding: 20px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}
.theme-ux_3_1 .w-dropdown-toggle {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: inline-block;
  cursor: pointer;
  padding-right: 40px;
}
.theme-ux_3_1 .w-dropdown-toggle:focus {
  outline: 0;
}
.theme-ux_3_1 .w-icon-dropdown-toggle {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  margin-right: 20px;
  width: 1em;
  height: 1em;
}
.theme-ux_3_1 .w-dropdown-list {
  position: absolute;
  background: #dddddd;
  display: none;
  min-width: 100%;
}
.theme-ux_3_1 .w-dropdown-list.w--open {
  display: block;
}
.theme-ux_3_1 .w-dropdown-link {
  padding: 10px 20px;
  display: block;
  color: #222222;
}
.theme-ux_3_1 .w-dropdown-link.w--current {
  color: #0082f3;
}
.theme-ux_3_1 .w-dropdown-link:focus {
  outline: 0;
}
@media screen and (max-width: 767px) {
  .theme-ux_3_1 .w-nav-brand {
    padding-left: 10px;
  }
}
.theme-ux_3_1 .w-lightbox-backdrop {
  color: #000;
  cursor: auto;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-height: normal;
  list-style: disc;
  text-align: start;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: #fff;
  font-family:
    "Helvetica Neue",
    Helvetica,
    Ubuntu,
    "Segoe UI",
    Verdana,
    sans-serif;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 300;
  text-align: center;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  outline: 0;
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-transform: translate(0, 0);
}
.theme-ux_3_1 .w-lightbox-backdrop,
.theme-ux_3_1 .w-lightbox-container {
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.theme-ux_3_1 .w-lightbox-content {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.theme-ux_3_1 .w-lightbox-view {
  position: absolute;
  width: 100vw;
  height: 100vh;
  opacity: 0;
}
.theme-ux_3_1 .w-lightbox-view:before {
  content: "";
  height: 100vh;
}
.theme-ux_3_1 .w-lightbox-group,
.theme-ux_3_1 .w-lightbox-group .w-lightbox-view,
.theme-ux_3_1 .w-lightbox-group .w-lightbox-view:before {
  height: 86vh;
}
.theme-ux_3_1 .w-lightbox-frame,
.theme-ux_3_1 .w-lightbox-view:before {
  display: inline-block;
  vertical-align: middle;
}
.theme-ux_3_1 .w-lightbox-figure {
  position: relative;
  margin: 0;
}
.theme-ux_3_1 .w-lightbox-group .w-lightbox-figure {
  cursor: pointer;
}
.theme-ux_3_1 .w-lightbox-img {
  width: auto;
  height: auto;
  max-width: none;
}
.theme-ux_3_1 .w-lightbox-image {
  display: block;
  float: none;
  max-width: 100vw;
  max-height: 100vh;
}
.theme-ux_3_1 .w-lightbox-group .w-lightbox-image {
  max-height: 86vh;
}
.theme-ux_3_1 .w-lightbox-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.5em 1em;
  background: rgba(0, 0, 0, 0.4);
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.theme-ux_3_1 .w-lightbox-embed {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.theme-ux_3_1 .w-lightbox-control {
  position: absolute;
  top: 0;
  width: 4em;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.theme-ux_3_1 .w-lightbox-left {
  display: none;
  bottom: 0;
  left: 0;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==);
}
.theme-ux_3_1 .w-lightbox-right {
  display: none;
  right: 0;
  bottom: 0;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+);
}
.theme-ux_3_1 .w-lightbox-close {
  right: 0;
  height: 2.6em;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=);
  background-size: 18px;
}
.theme-ux_3_1 .w-lightbox-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 1vh;
  line-height: 0;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}
.theme-ux_3_1 .w-lightbox-item {
  display: inline-block;
  width: 10vh;
  padding: 2vh 1vh;
  box-sizing: content-box;
  cursor: pointer;
  -webkit-transform: translate3d(0, 0, 0);
}
.theme-ux_3_1 .w-lightbox-active {
  opacity: 0.3;
}
.theme-ux_3_1 .w-lightbox-thumbnail {
  position: relative;
  height: 10vh;
  background: #222;
  overflow: hidden;
}
.theme-ux_3_1 .w-lightbox-thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
}
.theme-ux_3_1 .w-lightbox-thumbnail .w-lightbox-tall {
  top: 50%;
  width: 100%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.theme-ux_3_1 .w-lightbox-thumbnail .w-lightbox-wide {
  left: 50%;
  height: 100%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.theme-ux_3_1 .w-lightbox-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  border: 5px solid rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  -webkit-animation: spin 0.8s infinite linear;
  animation: spin 0.8s infinite linear;
}
.theme-ux_3_1 .w-lightbox-spinner:after {
  content: "";
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  border: 3px solid transparent;
  border-bottom-color: #fff;
  border-radius: 50%;
}
.theme-ux_3_1 .w-lightbox-hide {
  display: none;
}
.theme-ux_3_1 .w-lightbox-noscroll {
  overflow: hidden;
}
@media (min-width: 768px) {
  .theme-ux_3_1 {
  }
  .theme-ux_3_1 .w-lightbox-content {
    height: 96vh;
    margin-top: 2vh;
  }
  .theme-ux_3_1 .w-lightbox-view,
  .theme-ux_3_1 .w-lightbox-view:before {
    height: 96vh;
  }
  .theme-ux_3_1 .w-lightbox-group,
  .theme-ux_3_1 .w-lightbox-group .w-lightbox-view,
  .theme-ux_3_1 .w-lightbox-group .w-lightbox-view:before {
    height: 84vh;
  }
  .theme-ux_3_1 .w-lightbox-image {
    max-width: 96vw;
    max-height: 96vh;
  }
  .theme-ux_3_1 .w-lightbox-group .w-lightbox-image {
    max-width: 82.3vw;
    max-height: 84vh;
  }
  .theme-ux_3_1 .w-lightbox-left,
  .theme-ux_3_1 .w-lightbox-right {
    display: block;
    opacity: 0.5;
  }
  .theme-ux_3_1 .w-lightbox-close {
    opacity: 0.8;
  }
  .theme-ux_3_1 .w-lightbox-control:hover {
    opacity: 1;
  }
}
.theme-ux_3_1 .w-lightbox-inactive,
.theme-ux_3_1 .w-lightbox-inactive:hover {
  opacity: 0;
}
.theme-ux_3_1 .w-richtext:before,
.theme-ux_3_1 .w-richtext:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.theme-ux_3_1 .w-richtext:after {
  clear: both;
}
.theme-ux_3_1 .w-richtext[contenteditable=true]:before,
.theme-ux_3_1 .w-richtext[contenteditable=true]:after {
  white-space: initial;
}
.theme-ux_3_1 .w-richtext ol,
.theme-ux_3_1 .w-richtext ul {
  overflow: hidden;
}
.theme-ux_3_1 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:after,
.theme-ux_3_1 .w-richtext .w-richtext-figure-selected[data-rt-type=video] div:after {
  outline: 2px solid #2895f7;
}
.theme-ux_3_1 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div,
.theme-ux_3_1 .w-richtext .w-richtext-figure-selected[data-rt-type=image] div {
  outline: 2px solid #2895f7;
}
.theme-ux_3_1 .w-richtext figure.w-richtext-figure-type-video > div:after,
.theme-ux_3_1 .w-richtext figure[data-rt-type=video] > div:after {
  content: "";
  position: absolute;
  display: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.theme-ux_3_1 .w-richtext figure {
  position: relative;
  max-width: 60%;
}
.theme-ux_3_1 .w-richtext figure > div:before {
  cursor: default !important;
}
.theme-ux_3_1 .w-richtext figure img {
  width: 100%;
}
.theme-ux_3_1 .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
  opacity: 0.6;
}
.theme-ux_3_1 .w-richtext figure div {
  font-size: 0px;
  color: transparent;
}
.theme-ux_3_1 .w-richtext figure.w-richtext-figure-type-image,
.theme-ux_3_1 .w-richtext figure[data-rt-type=image] {
  display: table;
}
.theme-ux_3_1 .w-richtext figure.w-richtext-figure-type-image > div,
.theme-ux_3_1 .w-richtext figure[data-rt-type=image] > div {
  display: inline-block;
}
.theme-ux_3_1 .w-richtext figure.w-richtext-figure-type-image > figcaption,
.theme-ux_3_1 .w-richtext figure[data-rt-type=image] > figcaption {
  display: table-caption;
  caption-side: bottom;
}
.theme-ux_3_1 .w-richtext figure.w-richtext-figure-type-video,
.theme-ux_3_1 .w-richtext figure[data-rt-type=video] {
  width: 60%;
  height: 0;
}
.theme-ux_3_1 .w-richtext figure.w-richtext-figure-type-video iframe,
.theme-ux_3_1 .w-richtext figure[data-rt-type=video] iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.theme-ux_3_1 .w-richtext figure.w-richtext-figure-type-video > div,
.theme-ux_3_1 .w-richtext figure[data-rt-type=video] > div {
  width: 100%;
}
.theme-ux_3_1 .w-richtext figure.w-richtext-align-center {
  margin-right: auto;
  margin-left: auto;
  clear: both;
}
.theme-ux_3_1 .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div,
.theme-ux_3_1 .w-richtext figure.w-richtext-align-center[data-rt-type=image] > div {
  max-width: 100%;
}
.theme-ux_3_1 .w-richtext figure.w-richtext-align-normal {
  clear: both;
}
.theme-ux_3_1 .w-richtext figure.w-richtext-align-fullwidth {
  width: 100%;
  max-width: 100%;
  text-align: center;
  clear: both;
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.theme-ux_3_1 .w-richtext figure.w-richtext-align-fullwidth > div {
  display: inline-block;
  padding-bottom: inherit;
}
.theme-ux_3_1 .w-richtext figure.w-richtext-align-fullwidth > figcaption {
  display: block;
}
.theme-ux_3_1 .w-richtext figure.w-richtext-align-floatleft {
  float: left;
  margin-right: 15px;
  clear: none;
}
.theme-ux_3_1 .w-richtext figure.w-richtext-align-floatright {
  float: right;
  margin-left: 15px;
  clear: none;
}
.theme-ux_3_1 .w-nav {
  position: relative;
  background: #dddddd;
  z-index: 1000;
}
.theme-ux_3_1 .w-nav:before,
.theme-ux_3_1 .w-nav:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.theme-ux_3_1 .w-nav:after {
  clear: both;
}
.theme-ux_3_1 .w-nav-brand {
  position: relative;
  float: left;
  text-decoration: none;
  color: #333333;
}
.theme-ux_3_1 .w-nav-link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  color: #222222;
  padding: 20px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}
.theme-ux_3_1 .w-nav-link.w--current {
  color: #0082f3;
}
.theme-ux_3_1 .w-nav-menu {
  position: relative;
  float: right;
}
.theme-ux_3_1 [data-nav-menu-open] {
  display: block !important;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #C8C8C8;
  text-align: center;
  overflow: visible;
  min-width: 200px;
}
.theme-ux_3_1 .w--nav-link-open {
  display: block;
  position: relative;
}
.theme-ux_3_1 .w-nav-overlay {
  position: absolute;
  overflow: hidden;
  display: none;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
}
.theme-ux_3_1 .w-nav-overlay [data-nav-menu-open] {
  top: 0;
}
.theme-ux_3_1 .w-nav[data-animation=over-left] .w-nav-overlay {
  width: auto;
}
.theme-ux_3_1 .w-nav[data-animation=over-left] .w-nav-overlay,
.theme-ux_3_1 .w-nav[data-animation=over-left] [data-nav-menu-open] {
  right: auto;
  z-index: 1;
  top: 0;
}
.theme-ux_3_1 .w-nav[data-animation=over-right] .w-nav-overlay {
  width: auto;
}
.theme-ux_3_1 .w-nav[data-animation=over-right] .w-nav-overlay,
.theme-ux_3_1 .w-nav[data-animation=over-right] [data-nav-menu-open] {
  left: auto;
  z-index: 1;
  top: 0;
}
.theme-ux_3_1 .w-nav-button {
  position: relative;
  float: right;
  padding: 18px;
  font-size: 24px;
  display: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.theme-ux_3_1 .w-nav-button:focus {
  outline: 0;
}
.theme-ux_3_1 .w-nav-button.w--open {
  background-color: #C8C8C8;
  color: white;
}
.theme-ux_3_1 .w-nav[data-collapse=all] .w-nav-button {
  display: block;
}
.theme-ux_3_1 .w--nav-dropdown-open {
  display: block;
}
.theme-ux_3_1 .w--nav-dropdown-toggle-open {
  display: block;
}
.theme-ux_3_1 .w--nav-dropdown-list-open {
  position: static;
}
@media screen and (max-width: 991px) {
  .theme-ux_3_1 .w-nav[data-collapse=medium] .w-nav-button {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .theme-ux_3_1 .w-nav[data-collapse=small] .w-nav-button {
    display: block;
  }
  .theme-ux_3_1 .w-nav-brand {
    padding-left: 10px;
  }
}
@media screen and (max-width: 479px) {
  .theme-ux_3_1 .w-nav[data-collapse=tiny] .w-nav-button {
    display: block;
  }
}
.theme-ux_3_1 .w-tabs {
  position: relative;
}
.theme-ux_3_1 .w-tabs:before,
.theme-ux_3_1 .w-tabs:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.theme-ux_3_1 .w-tabs:after {
  clear: both;
}
.theme-ux_3_1 .w-tab-menu {
  position: relative;
}
.theme-ux_3_1 .w-tab-link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  padding: 9px 30px;
  text-align: left;
  cursor: pointer;
  color: #222222;
  background-color: #dddddd;
}
.theme-ux_3_1 .w-tab-link.w--current {
  background-color: #C8C8C8;
}
.theme-ux_3_1 .w-tab-link:focus {
  outline: 0;
}
.theme-ux_3_1 .w-tab-content {
  position: relative;
  display: block;
  overflow: hidden;
}
.theme-ux_3_1 .w-tab-pane {
  position: relative;
  display: none;
}
.theme-ux_3_1 .w--tab-active {
  display: block;
}
@media screen and (max-width: 479px) {
  .theme-ux_3_1 .w-tab-link {
    display: block;
  }
}
.theme-ux_3_1 .w-ix-emptyfix:after {
  content: "";
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.theme-ux_3_1 .w-dyn-empty {
  padding: 10px;
  background-color: #dddddd;
}
.theme-ux_3_1 .w-dyn-hide {
  display: none !important;
}
.theme-ux_3_1 .w-dyn-bind-empty {
  display: none !important;
}
.theme-ux_3_1 .w-condition-invisible {
  display: none !important;
}
.theme-ux_3_1 .w-layout-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}
.theme-ux_3_1 .w-checkbox {
  display: block;
  margin-bottom: 5px;
  padding-left: 20px;
}
.theme-ux_3_1 .w-checkbox::before {
  content: " ";
  display: table;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-column: 1;
  grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row: 1;
  grid-row-start: 1;
}
.theme-ux_3_1 .w-checkbox::after {
  content: " ";
  display: table;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-column: 1;
  grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row: 1;
  grid-row-start: 1;
  clear: both;
}
.theme-ux_3_1 .w-checkbox-input {
  float: left;
  margin-bottom: 0px;
  margin-left: -20px;
  margin-right: 0px;
  margin-top: 4px;
  line-height: normal;
}
.theme-ux_3_1 .w-checkbox-input--inputType-custom {
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-color: #ccc;
  border-bottom-color: #ccc;
  border-left-color: #ccc;
  border-right-color: #ccc;
  border-top-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-right-style: solid;
  width: 12px;
  height: 12px;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.theme-ux_3_1 .w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  border-top-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  border-right-color: #3898ec;
  background-image: url(https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.theme-ux_3_1 .w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0px 0px 3px 1px #3898ec;
}
.theme-ux_3_1 .signup-heading {
  margin-bottom: 40px;
  color: #000;
  font-size: 32px;
  line-height: 48px;
  font-weight: 700;
  font-family:
    Verdana,
    Geneva,
    Tahoma,
    sans-serif;
}
.theme-ux_3_1 .text-span-2 {
  color: #fa6341;
}
.theme-ux_3_1 .signin-now {
  margin-bottom: 8px;
  color: #000;
  font-size: 24px;
  line-height: 36px;
}
.theme-ux_3_1 .text-center {
  text-align: center;
}
.theme-ux_3_1 .strong {
  font-weight: 700;
}
.theme-ux_3_1 .search-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.theme-ux_3_1 .form-input {
  height: 70px;
  margin-bottom: 0px;
  padding-top: 21px;
  padding-bottom: 21px;
  padding-left: 20px;
  border: 2px solid #ccc;
  border-radius: 5px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}
.theme-ux_3_1 .form-input::-webkit-input-placeholder {
  color: #9d9d9d;
}
.theme-ux_3_1 .form-input:-ms-input-placeholder {
  color: #9d9d9d;
}
.theme-ux_3_1 .form-input::-ms-input-placeholder {
  color: #9d9d9d;
}
.theme-ux_3_1 .form-input::placeholder {
  color: #9d9d9d;
}
.theme-ux_3_1 .signup-form-submit-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 70px;
  padding: 11px 100px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  background-color: #23ce6b;
  box-shadow: inset 3px 3px 4px 0 rgba(0, 0, 0, 0.25), inset -3px -3px 4px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  text-decoration: none;
}
.theme-ux_3_1 .div-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 8px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.theme-ux_3_1 .image {
  margin-right: 8px;
}
.theme-ux_3_1 .normal {
  font-weight: 400;
}
.theme-ux_3_1 .more-ways-grid {
  margin-top: 60px;
  -webkit-box-align: end;
  -webkit-align-items: end;
  -ms-flex-align: end;
  align-items: end;
  grid-column-gap: 36px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
.theme-ux_3_1 .more-ways-grid-item {
  text-align: center;
}
.theme-ux_3_1 .image-2 {
  margin-bottom: 24px;
}
.theme-ux_3_1 .more-ways-search-button {
  width: 100%;
  margin-top: 35px;
  padding-top: 8px;
  padding-bottom: 8px;
  border: 1px solid #525252;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 3px 3px 4px 4px rgba(0, 0, 0, 0.25), 6px 6px 4px 0 #36c974;
  color: #525252;
  font-size: 14px;
  line-height: 24px;
  outline: 0;
}
.theme-ux_3_1 .stay-informed {
  position: relative;
  z-index: 10;
  margin-top: -65px;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #fff;
}
.theme-ux_3_1 .stay-informed-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.theme-ux_3_1 .div-block-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 200px;
  margin-top: -155px;
  margin-left: 93px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.theme-ux_3_1 .div-block-3 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.theme-ux_3_1 .circle {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
}
.theme-ux_3_1 .circle.red {
  margin-bottom: 70px;
  background-color: #ff6542;
}
.theme-ux_3_1 .circle.blue {
  margin-bottom: 70px;
  background-color: #2541b2;
}
.theme-ux_3_1 .circle.orange {
  background-color: #ffb400;
}
.theme-ux_3_1 .image-3 {
  position: absolute;
  left: 50%;
  bottom: -15px;
  -webkit-transform: translate(-50%, 0px);
  -ms-transform: translate(-50%, 0px);
  transform: translate(-50%, 0px);
}
.theme-ux_3_1 .text-block-2 {
  position: absolute;
  left: 16px;
  top: 40px;
  right: 16px;
  color: #fff;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}
.theme-ux_3_1 .image-4 {
  position: absolute;
  left: 50%;
  bottom: -24px;
  -webkit-transform: translate(-50%, 0px);
  -ms-transform: translate(-50%, 0px);
  transform: translate(-50%, 0px);
}
.theme-ux_3_1 .text-block-3 {
  position: absolute;
  left: 16px;
  top: 28px;
  right: 16px;
  color: #fff;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}
.theme-ux_3_1 .heading {
  max-width: 570px;
  margin-bottom: 24px;
}
.theme-ux_3_1 .div-block-4 {
  display: -ms-grid;
  display: grid;
  margin-top: 72px;
  justify-items: center;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  grid-auto-columns: 1fr;
  grid-column-gap: 56px;
  grid-row-gap: 60px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}
.theme-ux_3_1 .image-5 {
  margin-bottom: 32px;
}
.theme-ux_3_1 .text-block-4 {
  margin-bottom: 16px;
  color: #36c974;
  font-size: 15px;
  line-height: 27px;
  font-weight: 500;
}
.theme-ux_3_1 .text-block-5 {
  font-size: 20px;
  line-height: 30px;
}
.theme-ux_3_1 .testimonial-section {
  padding-top: 105px;
  padding-bottom: 135px;
  background-color: #eeeae1;
}
.theme-ux_3_1 .testimonial-grid {
  display: -ms-grid;
  display: grid;
  margin-top: 83px;
  grid-auto-columns: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
.theme-ux_3_1 .div-block-5 {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin-right: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 3px 3px 20px 4px rgba(0, 0, 0, 0.25);
}
.theme-ux_3_1 .div-block-6 {
  position: relative;
}
.theme-ux_3_1 .div-block-7 {
  position: absolute;
  left: 12px;
  top: 12px;
  right: 0px;
  bottom: -12px;
  z-index: 0;
  border: 5px solid #ffb400;
}
.theme-ux_3_1 .div-block-8 {
  padding: 64px 14px 32px 24px;
}
.theme-ux_3_1 .div-block-9 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 24px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f8f8f8;
  color: #2546cb;
  font-size: 20px;
  line-height: 23px;
  font-weight: 700;
}
.theme-ux_3_1 .image-6 {
  width: 64px;
  margin-right: 16px;
}
.theme-ux_3_1 .text-block-6 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
.theme-ux_3_1 .image-7 {
  position: absolute;
  left: 18px;
  top: -36px;
}
.theme-ux_3_1 .text-block-7 {
  margin-bottom: 24px;
  color: #898989;
  line-height: 16px;
  font-weight: 700;
}
.theme-ux_3_1 .div-block-10 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.theme-ux_3_1 .text-block-8 {
  width: 50%;
  color: #898989;
  line-height: 16px;
  font-weight: 800;
}
.theme-ux_3_1 .div-block-11 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.theme-ux_3_1 .footer-link {
  padding-right: 5px;
  padding-left: 5px;
  border-right: 2px solid #2546cb;
  color: #2546cb;
  line-height: 16px;
  font-weight: 700;
  text-decoration: none;
}
.theme-ux_3_1 .footer-link.last {
  padding-right: 0px;
  border-right-width: 0px;
}
.theme-ux_3_1 .footer {
  padding-right: 8px;
  padding-left: 8px;
}
.theme-ux_3_1 .footer-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  padding-right: 34px;
  padding-left: 34px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #ccc;
}
.theme-ux_3_1 .image-8 {
  position: absolute;
  left: 50%;
  bottom: -24px;
  -webkit-transform: translate(-50%, 0px);
  -ms-transform: translate(-50%, 0px);
  transform: translate(-50%, 0px);
}
.theme-ux_3_1 .text-block-9 {
  font-size: 12px;
  line-height: 21px;
  font-weight: 700;
  text-transform: uppercase;
}
.theme-ux_3_1 .navbar {
  padding-right: 8px;
  padding-left: 8px;
  background-color: #fff;
  margin-bottom: 0;
}
.theme-ux_3_1 .text-block-10 {
  font-size: 18px;
  line-height: 27px;
}
.theme-ux_3_1 .image-9 {
  margin-left: 16px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}
.theme-ux_3_1 .signup-form-submit {
  display: inline-block;
  margin-bottom: -40px;
  margin-left: 8px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.theme-ux_3_1 .heading-2 {
  text-align: center;
}
.theme-ux_3_1 .div-block-13 {
  -webkit-transform: perspective(1px) skew(0deg, -5deg);
  -ms-transform: skew(0deg, -5deg);
  transform: skew(0deg, -5deg);
}
.theme-ux_3_1 .landing-hero-header {
  font-size: 36px;
  white-space: nowrap;
}
.theme-ux_3_1 .div-block-14 {
  margin-right: 8px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.theme-ux_3_1 .form-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: -4px;
  margin-bottom: 16px;
  margin-left: -4px;
}
.theme-ux_3_1 .form-row:last-of-type {
  margin-bottom: 0;
}
.theme-ux_3_1 .form-col-6 {
  width: 50%;
  padding-right: 4px;
  padding-left: 4px;
}
.theme-ux_3_1 .form-col-12 {
  width: 100%;
  padding-right: 4px;
  padding-left: 4px;
}
.theme-ux_3_1 .form-select {
  height: 70px;
  margin-bottom: 0px;
  padding-left: 20px;
  border: 2px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  color: #9d9d9d;
  font-size: 18px;
  line-height: 27px;
}
.theme-ux_3_1 .text-block-11 {
  font-size: 16px;
  line-height: 24px;
}
.theme-ux_3_1 .div-block-15 {
  position: absolute;
  left: 50%;
  top: 8px;
  bottom: 8px;
  width: 424px;
  height: 44px;
  -webkit-transform: translate(-50%, 0px);
  -ms-transform: translate(-50%, 0px);
  transform: translate(-50%, 0px);
}
.theme-ux_3_1 .search-input {
  height: 44px;
  margin-bottom: 0px;
  padding-left: 56px;
  border: 2px solid #ccc;
  border-radius: 5px;
  background-image: url(/assets/ux3/images/Union-2_1Union\ 2.png);
  background-position: 16px 10px;
  background-size: 24px 24px;
  background-repeat: no-repeat;
  font-size: 18px;
  line-height: 26px;
}
.theme-ux_3_1 .form-block {
  margin-bottom: 0px;
}
.theme-ux_3_1 .nav-menu {
  position: static;
}
.theme-ux_3_1 .return-home {
  padding: 4px 20px;
  border: 3px solid #ffb400;
  border-radius: 5px;
  background-color: transparent;
  color: #525252;
  line-height: 22px;
  font-weight: 500;
}
.theme-ux_3_1 .modal-container {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.5);
}
.theme-ux_3_1 .notification-modal {
  width: 576px;
  margin-top: 120px;
  margin-right: auto;
  margin-left: auto;
  box-shadow: 3px 3px 4px 0 rgba(0, 0, 0, 0.25);
}
.theme-ux_3_1 .notification-modal-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 24px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #c4c4c4;
  border-right: 1px solid #c4c4c4;
  border-left: 1px solid #c4c4c4;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  background-color: #f8f8f8;
}
.theme-ux_3_1 .notification-modal-heading {
  margin-left: 8px;
  color: #fa6341;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  text-transform: uppercase;
}
.theme-ux_3_1 .notification-modal-body {
  padding: 24px 24px 40px;
  border-right: 1px solid #c4c4c4;
  border-bottom: 1px solid #c4c4c4;
  border-left: 1px solid #c4c4c4;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  background-color: #fff;
  text-align: center;
}
.theme-ux_3_1 .red {
  color: #ff4b55;
}
.theme-ux_3_1 .notification-modal-btn {
  display: inline-block;
  margin-top: 24px;
  margin-right: auto;
  margin-left: auto;
  padding: 7px 12px;
  border-radius: 5px;
  background-color: #2546cb;
  box-shadow: inset 1px 1px 4px 0 rgba(0, 0, 0, 0.25), inset -1px -1px 4px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
.theme-ux_3_1 .notification-description {
  font-size: 12px;
  line-height: 18px;
  text-align: left;
}
.theme-ux_3_1 .text-span {
  color: #fa6341;
  font-weight: 700;
}
.theme-ux_3_1 .signup-container {
  position: relative;
  overflow: hidden;
  padding: 80px 42px;
  background-color: #eeeae1;
}
.theme-ux_3_1 .div-block-16 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 72px;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.theme-ux_3_1 .membership-features {
  width: 440px;
  border: 1px solid #ffb400;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 3px 3px 4px 0 rgba(0, 0, 0, 0.25);
}
.theme-ux_3_1 .profile-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.theme-ux_3_1 .avatar {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 128px;
  height: 128px;
  margin-right: 28px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border: 1px solid #525252;
  border-radius: 50%;
  text-align: center;
}
.theme-ux_3_1 .lock-icon {
  position: absolute;
  left: 84px;
  bottom: 1.5px;
}
.theme-ux_3_1 .div-block-20 {
  padding-top: 10px;
}
.theme-ux_3_1 .name-age {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 36px;
}
.theme-ux_3_1 .locations {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 9px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.theme-ux_3_1 .signin-now h1 {
  color: #000000;
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
}
.theme-ux_3_1 .label {
  margin-right: 8px;
  font-weight: 700;
}
.theme-ux_3_1 .relative-label {
  margin-right: 17px;
  font-weight: 700;
}
.theme-ux_3_1 .profile-body {
  padding: 20px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  background-color: #f8f8f8;
}
.theme-ux_3_1 .profile-body-header {
  margin-top: 0px;
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 25px;
  text-align: center;
}
.theme-ux_3_1 .profile-body-grid {
  justify-items: start;
  grid-column-gap: 2px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}
.theme-ux_3_1 .profile-grid-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 11px;
}
.theme-ux_3_1 .unlock-icon {
  margin-right: 4px;
}
.theme-ux_3_1 .membership-features-header {
  margin-right: 8px;
  margin-left: 8px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #ffb400;
}
.theme-ux_3_1 .membership-features-heading {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 16px;
  text-align: center;
}
.theme-ux_3_1 .membership-features-body {
  position: relative;
  padding: 48px 60px;
  text-align: center;
}
.theme-ux_3_1 .membership-list {
  padding-left: 0px;
  list-style-type: none;
}
.theme-ux_3_1 .membership-list-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.theme-ux_3_1 .check-icon {
  margin-right: 8px;
}
.theme-ux_3_1 .unlimited {
  margin-right: 8px;
  color: #2546cb;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
.theme-ux_3_1 .text-block-13 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.theme-ux_3_1 .image-10 {
  position: absolute;
  top: 30px;
  right: -26px;
}
.theme-ux_3_1 .div-block-21 {
  margin-bottom: 36px;
}
.theme-ux_3_1 .plus-much-more {
  color: #525252;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  text-decoration: none;
}
.theme-ux_3_1 .signup-testimonial {
  margin-bottom: 80px;
}
.theme-ux_3_1 .signup-form-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 80px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.theme-ux_3_1 .signup-form {
  width: 666px;
  margin-right: 20px;
  margin-bottom: 0px;
  border: 1px solid #2546cb;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 3px 3px 4px 0 rgba(0, 0, 0, 0.25);
}
.theme-ux_3_1 .signup-form-header {
  padding-right: 8px;
  padding-left: 8px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.theme-ux_3_1 .div-block-22 {
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #2546cb;
}
.theme-ux_3_1 .signup-form-heading {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 16px;
  text-align: center;
}
.theme-ux_3_1 .signup-form-body {
  padding: 40px 18px;
  text-align: center;
}
.theme-ux_3_1 .signup-form-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: -10px;
  margin-bottom: 24px;
  margin-left: -10px;
}
.theme-ux_3_1 .signup-form-col {
  position: relative;
  padding-right: 10px;
  padding-left: 10px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.theme-ux_3_1 .text-block-14 {
  line-height: 21px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1em;
}
.theme-ux_3_1 .signup-form-col--6 {
  width: 50%;
  padding-right: 10px;
  padding-left: 10px;
}
.theme-ux_3_1 .signup-form-input {
  height: 48px;
  margin-bottom: 0px;
  padding-left: 16px;
  border: 2px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
}
.theme-ux_3_1 .signup-form-input::-webkit-input-placeholder {
  color: #9d9d9d;
}
.theme-ux_3_1 .signup-form-input:-ms-input-placeholder {
  color: #9d9d9d;
}
.theme-ux_3_1 .signup-form-input::-ms-input-placeholder {
  color: #9d9d9d;
}
.theme-ux_3_1 .signup-form-input::placeholder {
  color: #9d9d9d;
}
.theme-ux_3_1 .signup-form-input.expiration-month {
  width: 59px;
}
.theme-ux_3_1 .signup-form-input.expiration-year {
  width: 70px;
}
.theme-ux_3_1 .signup-form-input.cvc {
  width: 100%;
}
.theme-ux_3_1 .signup-form-p {
  margin-bottom: 40px;
  color: #acacac;
  font-size: 12px;
  line-height: 18px;
  text-align: left;
}
.theme-ux_3_1 .signup-disclaimer {
  margin-bottom: 0px;
  color: #acacac;
  font-size: 14px;
  line-height: 21px;
  font-weight: 700;
}
.theme-ux_3_1 .div-block-23 {
  position: absolute;
  left: -50%;
  top: -100px;
  right: -50%;
  bottom: auto;
  z-index: 0;
  height: 600px;
  background-color: #f6f5f1;
  -webkit-transform: skew(0deg, 5deg);
  -ms-transform: skew(0deg, 5deg);
  transform: skew(0deg, 5deg);
}
.theme-ux_3_1 .signup-header {
  position: relative;
}
.theme-ux_3_1 .paragraph {
  font-weight: 700;
  text-align: center;
}
.theme-ux_3_1 .link-block {
  margin-right: auto;
  margin-left: 10px;
  text-decoration: none;
}
.theme-ux_3_1 .text-block-15 {
  color: #525252;
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  text-decoration: none;
}
.theme-ux_3_1 .search-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 70px;
  padding: 11px 24px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  background-color: #23ce6b;
  box-shadow: inset 3px 3px 4px 0 rgba(0, 0, 0, 0.25), inset -3px -3px 4px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  text-decoration: none;
}
.theme-ux_3_1 .get-report-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 48px;
  padding: 11px 100px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  background-color: #23ce6b;
  box-shadow: inset 3px 3px 4px 0 rgba(0, 0, 0, 0.25), inset -3px -3px 4px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  text-decoration: none;
}
.theme-ux_3_1 .div-block-24 {
  margin-right: -10px;
  margin-left: -10px;
  padding-right: 10px;
  padding-bottom: 16px;
  padding-left: 10px;
  border-bottom: 1px solid #2546cb;
}
.theme-ux_3_1 .div-block-25 {
  padding-top: 32px;
  padding-bottom: 10px;
}
.theme-ux_3_1 .div-block-25.billing {
  padding-top: 0;
  padding-bottom: 10px;
}
.theme-ux_3_1 .heading-3 {
  margin-bottom: 0px;
  color: #fa6341;
}
.theme-ux_3_1 .text-block-17 {
  margin-bottom: 32px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.theme-ux_3_1 .div-block-26 {
  position: absolute;
  top: 22px;
  right: 10px;
  bottom: 0px;
  height: 45px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.theme-ux_3_1 .image-12 {
  margin-right: 5px;
}
.theme-ux_3_1 .text-block-18 {
  margin-right: 4px;
  margin-left: 4px;
  color: #000;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
}
.theme-ux_3_1 .div-block-18 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.theme-ux_3_1 .div-block-19 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.theme-ux_3_1 .form-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.theme-ux_3_1 .div-block-17 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1279px) {
  .theme-ux_3_1 .div-block-17 {
    margin-right: 10px;
  }
}
.theme-ux_3_1 .div-block-27 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.theme-ux_3_1 .text-block-19 {
  margin-left: 10px;
  color: #c00;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
}
.theme-ux_3_1 .signup-form-col-checkout-left {
  width: 50%;
  padding-right: 10px;
  padding-left: 10px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 0.7;
}
.theme-ux_3_1 .zip-code-input {
  padding-right: 10px;
  padding-left: 0px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0.3 auto;
}
.theme-ux_3_1 .text-block-20 {
  margin-bottom: 40px;
  font-size: 32px;
  line-height: 48px;
}
.theme-ux_3_1 .search.target.name {
  color: #ff6542;
}
.theme-ux_3_1 .full-name {
  width: 20%;
  margin-right: 1%;
}
.theme-ux_3_1 .header-age {
  width: 10%;
  margin-right: 1%;
}
.theme-ux_3_1 .header-locations {
  width: 24%;
  margin-right: 1%;
}
.theme-ux_3_1 .header-relatives {
  width: 24%;
  margin-right: 1%;
}
.theme-ux_3_1 .header-detail {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}
.theme-ux_3_1 .srp-table-body {
  margin-bottom: 48px;
}
.theme-ux_3_1 .srp-table-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
  padding: 25px;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border: 1px solid #acacac;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 3px 3px 4px 0 rgba(0, 0, 0, 0.25);
}
.theme-ux_3_1 .srp-item-name {
  width: 20%;
  margin-right: 1%;
  text-align: center;
}
.theme-ux_3_1 .srp-name {
  margin-top: 0px;
  color: #2546cb;
  text-align: left;
}
.theme-ux_3_1 .image-13 {
  width: 32px;
}
.theme-ux_3_1 .srp-lock-icon {
  position: absolute;
  right: 5px;
  bottom: 1.5px;
  width: 14px;
}
.theme-ux_3_1 .srp-item-age {
  width: 10%;
  margin-right: 1%;
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
}
.theme-ux_3_1 .srp-item-locations {
  width: 24%;
  margin-right: 1%;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.theme-ux_3_1 .srp-item-relatives {
  width: 24%;
  margin-right: 1%;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.theme-ux_3_1 .srp-item-location {
  max-width: 160px;
}
.theme-ux_3_1 .srp-item-relative {
  max-width: 160px;
}
.theme-ux_3_1 .srp-item-detail {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: 700;
  text-transform: capitalize;
}
.theme-ux_3_1 .srp-full-report {
  padding: 7px 13px;
  border-radius: 5px;
  background-color: #23ce6b;
  box-shadow: inset 1px 1px 4px 0 rgba(0, 0, 0, 0.25), inset -1px -1px 4px 0 rgba(0, 0, 0, 0.25);
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}
.theme-ux_3_1 .div-block-28 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 64px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.theme-ux_3_1 .div-block-29 {
  width: 325px;
  padding: 40px 30px 60px;
  border: 1px solid #acacac;
  border-radius: 6px;
}
.theme-ux_3_1 .heading-4 {
  color: #2546cb;
  line-height: 27px;
}
.theme-ux_3_1 .refine-form-submit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: -40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.theme-ux_3_1 .refine-form {
  text-align: center;
}
.theme-ux_3_1 .refine-search-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 48px;
  padding: 11px 12px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  background-color: #23ce6b;
  box-shadow: inset 3px 3px 4px 0 rgba(0, 0, 0, 0.25), inset -3px -3px 4px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
  text-decoration: none;
}
.theme-ux_3_1 .copyright-disclaimer {
  font-family:
    Verdana,
    Geneva,
    Tahoma,
    sans-serif;
}
.theme-ux_3_1 .image-9-copy {
  width: 20px;
  margin-left: 6px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}
.theme-ux_3_1 .heading-5 {
  margin-top: 0px;
  line-height: 27px;
}
.theme-ux_3_1 .list {
  padding-left: 20px;
}
.theme-ux_3_1 .text-block-21 {
  line-height: 21px;
  font-weight: 500;
}
.theme-ux_3_1 .div-block-31 {
  margin-bottom: 24px;
}
.theme-ux_3_1 .srp-table-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.theme-ux_3_1 .pagination-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  margin-left: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.theme-ux_3_1 .signup-form-select {
  height: 48px;
  margin-bottom: 0px;
  padding-left: 16px;
  border: 2px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  color: #9d9d9d;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
}
.theme-ux_3_1 .srp-disclaimer {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  color: #898989;
  font-size: 14px;
  line-height: 21px;
}
.theme-ux_3_1 .srp-wrapper {
  position: relative;
  z-index: 1;
}
.theme-ux_3_1 .div-block-32 {
  position: absolute;
  left: -50%;
  top: -100px;
  right: -50%;
  bottom: auto;
  z-index: 0;
  height: 1000px;
  background-color: #f6f5f1;
  -webkit-transform: skew(0deg, 5deg);
  -ms-transform: skew(0deg, 5deg);
  transform: skew(0deg, 5deg);
}
.theme-ux_3_1 .refine-form-col {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
  padding-right: 10px;
  padding-left: 10px;
}
.theme-ux_3_1 .refine-form-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: -10px;
  margin-left: -10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.theme-ux_3_1 .image-15 {
  margin-bottom: 15px;
}
.theme-ux_3_1 .paragraph-2 {
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  text-align: left;
}
.theme-ux_3_1 .text-block-22 {
  margin-bottom: 50px;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
}
.theme-ux_3_1 .loader-spinner {
  position: relative;
  width: 160px;
  height: 160px;
  margin-right: auto;
  margin-left: auto;
}
.theme-ux_3_1 .load-spinner-loading {
  animation-name: rotate;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.theme-ux_3_1 .image-16 {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.theme-ux_3_1 .loader-disclaimer {
  margin-bottom: 0px;
  color: #acacac;
  font-size: 14px;
  line-height: 21px;
}
.theme-ux_3_1 .text-block-23 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
}
.theme-ux_3_1 .text-block-24 {
  margin-top: 48px;
  margin-bottom: 48px;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  text-align: center;
}
.theme-ux_3_1 .div-block-33 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.theme-ux_3_1 .div-block-34 {
  margin-right: 8px;
  margin-left: 8px;
  padding: 12px 22px;
  border: 2px solid #23ce6b;
  border-radius: 5px;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
}
.theme-ux_3_1 .link {
  color: #2546cb;
  font-size: 18px;
  line-height: 27px;
  cursor: pointer;
}
.theme-ux_3_1 .form-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 100px;
  padding-left: 100px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: transparent;
}
.theme-ux_3_1 .loader-submit-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 191px;
  height: 70px;
  padding: 17px 24px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-radius: 5px;
  background-color: #23ce6b;
  box-shadow: inset 3px 3px 4px 0 rgba(0, 0, 0, 0.25), inset -3px -3px 4px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  text-decoration: none;
}
.theme-ux_3_1 .loader-submit-mag {
  width: 30px;
  margin-left: 16px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}
.theme-ux_3_1 .loader-form-select {
  height: 70px;
  margin-right: 9px;
  margin-bottom: 0px;
  padding-left: 20px;
  border: 2px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  color: #9d9d9d;
  font-size: 18px;
  line-height: 27px;
}
.theme-ux_3_1 .loader-form-input {
  height: 70px;
  max-width: 400px;
  margin-right: 16px;
  margin-bottom: 0px;
  padding-top: 21px;
  padding-bottom: 21px;
  padding-left: 20px;
  border: 2px solid #ccc;
  border-radius: 5px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}
.theme-ux_3_1 .loader-form-input::-webkit-input-placeholder {
  color: #9d9d9d;
}
.theme-ux_3_1 .loader-form-input:-ms-input-placeholder {
  color: #9d9d9d;
}
.theme-ux_3_1 .loader-form-input::-ms-input-placeholder {
  color: #9d9d9d;
}
.theme-ux_3_1 .loader-form-input::placeholder {
  color: #9d9d9d;
}
.theme-ux_3_1 .form-block-2 {
  margin-top: 48px;
  margin-bottom: 56px;
}
.theme-ux_3_1 .form-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 100px;
  padding-left: 100px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: transparent;
}
.theme-ux_3_1 .heading-6 {
  margin-bottom: 40px;
  font-weight: 400;
}
.theme-ux_3_1 .div-block-35 {
  display: -ms-grid;
  display: grid;
  width: 900px;
  margin-right: auto;
  margin-bottom: 56px;
  margin-left: auto;
  justify-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 125px;
  grid-row-gap: 40px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}
.theme-ux_3_1 .div-block-36 {
  position: relative;
  width: 216px;
  padding: 24px 16px;
  border-radius: 5px;
  background-color: #f6f5f1;
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.25), -1px -1px 4px 0 #fff;
  color: #000;
  font-size: 18px;
  line-height: 27px;
}
.theme-ux_3_1 .image-17 {
  height: 64px;
  margin-bottom: 24px;
}
.theme-ux_3_1 .checkbox-field {
  margin-bottom: 0px;
}
.theme-ux_3_1 .checkbox-label {
  display: none;
  margin-bottom: 0px;
}
.theme-ux_3_1 .checkbox {
  position: absolute;
  left: 16px;
  top: 16px;
  margin-left: 0px;
}
.theme-ux_3_1 .form-block-3 {
  margin-bottom: 0px;
}
.theme-ux_3_1 .build-my-report {
  display: inline-block;
  height: 70px;
  margin-bottom: 24px;
  padding: 17px 24px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  background-color: #23ce6b;
  box-shadow: inset 3px 3px 4px 0 rgba(0, 0, 0, 0.25), inset -3px -3px 4px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  text-decoration: none;
}
.theme-ux_3_1 .loader-container1 {
  position: relative;
  min-height: 100vh;
  margin-top: -120px;
  padding: 180px 42px 60px;
  background-color: #f6f5f1;
}
.theme-ux_3_1 .div-block-37 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 895px;
  margin-top: 48px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.theme-ux_3_1 .text-block-25 {
  margin-right: 7px;
  color: #fa6341;
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
}
.theme-ux_3_1 .paragraph-3 {
  margin-bottom: 0px;
  font-size: 18px;
  line-height: 27px;
  text-align: left;
}
.theme-ux_3_1 .content {
  font-family: Poppins, sans-serif;
  color: #525252;
  font-size: 14px;
  line-height: 20px;
}
.theme-ux_3_1 .search-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 70px;
  padding: 11px 24px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  background-color: #23ce6b;
  box-shadow: inset 3px 3px 4px 0 rgba(0, 0, 0, 0.25), inset -3px -3px 4px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  text-decoration: none;
}
.theme-ux_3_1 .rr-container {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  margin-top: -120px;
  padding-top: 160px;
  padding-bottom: 40px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  background-color: #f6f5f1;
}
.theme-ux_3_1 .scanning-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 300px;
  min-width: 300px;
  margin-top: -40px;
  margin-bottom: -40px;
  padding-top: 40px;
  padding-right: 35px;
  padding-left: 35px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  background-color: #eeeae1;
}
.theme-ux_3_1 .div-block-38 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: -40px;
  margin-bottom: -40px;
  padding: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.theme-ux_3_1 .heading-7 {
  margin-bottom: 40px;
  font-weight: 400;
  text-align: center;
}
.theme-ux_3_1 .div-block-39 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.theme-ux_3_1 .div-block-40 {
  position: relative;
  width: 400px;
  height: 40px;
  margin-right: 16px;
  padding-right: 20px;
  padding-left: 20px;
  border-radius: 30px;
  background-color: #eeeae1;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.25), inset 0 -2px 4px 0 #fff;
}
.theme-ux_3_1 .div-block-41 {
  position: absolute;
  left: 20px;
  top: 18px;
  right: 20px;
  z-index: 1;
  height: 5px;
  border-radius: 5px;
  background-color: #c6c2b8;
  box-shadow: inset 0 -2px 4px 0 #fff;
}
.theme-ux_3_1 .progress {
  position: relative;
  z-index: 2;
  width: 0%;
  height: 7px;
  margin-top: 17px;
  border-radius: 5px;
  background-color: #23ce6b;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.25), inset 0 -2px 4px 0 hsla(0, 0%, 100%, 0.25);
}
.theme-ux_3_1 .div-block-42 {
  height: 40px;
  padding: 9px;
  border-radius: 30px;
  background-color: #eeeae1;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.25), inset 0 -2px 4px 0 #fff;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  width: 66px;
  text-align: center;
}
.theme-ux_3_1 .div-block-43 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 982px;
  margin-bottom: 40px;
  padding: 53px 80px 75px 120px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #ffb400;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 3px 3px 4px 0 rgba(0, 0, 0, 0.25);
}
.theme-ux_3_1 .heading-8 {
  margin-bottom: 30px;
  color: #fa6341;
  font-size: 24px;
  line-height: 36px;
  text-align: left;
}
.theme-ux_3_1 .div-block-44 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.theme-ux_3_1 .div-block-45 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 64px;
  height: 64px;
  margin-right: 50px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #525252;
  border-radius: 50%;
}
.theme-ux_3_1 .image-18 {
  width: 32px;
  height: 48px;
}
.theme-ux_3_1 .image-19 {
  position: absolute;
  right: 4px;
  bottom: 7px;
}
.theme-ux_3_1 .paragraph-4 {
  font-size: 18px;
  line-height: 24px;
}
.theme-ux_3_1 .div-block-46 {
  position: absolute;
  left: 20px;
  top: -30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  height: 100px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background-color: #ffb400;
}
.theme-ux_3_1 .image-20 {
  margin-right: 50px;
}
.theme-ux_3_1 .div-block-47 {
  position: relative;
  margin-bottom: 40px;
}
.theme-ux_3_1 .image-21 {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.theme-ux_3_1 .heading-9 {
  margin-top: 0px;
  margin-bottom: 28px;
  color: #2546cb;
  font-size: 18px;
  line-height: 27px;
}
.theme-ux_3_1 .list-2 {
  list-style-type: none;
}
.theme-ux_3_1 .div-block-48 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.theme-ux_3_1 .div-block-49 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  line-height: 27px;
}
.theme-ux_3_1 .image-22 {
  width: 12px;
  height: 12px;
  margin-right: 12px;
}
.theme-ux_3_1 .paragraph-5 {
  font-size: 14px;
  line-height: 21px;
}
.theme-ux_3_1 .div-block-50 {
  position: absolute;
  left: 20px;
  top: -30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  height: 100px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background-color: #2546cb;
}
.theme-ux_3_1 .image-23 {
  height: 50px;
}
.theme-ux_3_1 .div-block-51 {
  position: absolute;
  left: 20px;
  top: -30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  height: 100px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fa6341;
}
.theme-ux_3_1 .image-24 {
  height: 60px;
}
.theme-ux_3_1 .div-block-52 {
  position: absolute;
  left: 20px;
  top: -30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  height: 100px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
}
.theme-ux_3_1 .div-block-53 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 982px;
  margin-bottom: 40px;
  padding: 56px 40px 75px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  border: 1px solid #ffb400;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 3px 3px 4px 0 rgba(0, 0, 0, 0.25);
}
.theme-ux_3_1 .div-block-54 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  height: 100px;
  margin-left: 24px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-radius: 50%;
}
.theme-ux_3_1 .list-3 {
  margin-bottom: 0px;
  padding-left: 20px;
}
.theme-ux_3_1 .text-block-26 {
  font-size: 16px;
  line-height: 24px;
}
.theme-ux_3_1 .get-report-modal {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 576px;
  margin-top: 120px;
  margin-right: auto;
  margin-left: auto;
  padding: 32px 90px 40px 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 1px solid #c4c4c4;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 3px 3px 4px 0 rgba(0, 0, 0, 0.25);
}
.theme-ux_3_1 .text-span-3 {
  color: #fa6341;
  font-weight: 700;
}
.theme-ux_3_1 .heading-10 {
  margin-top: 0px;
  margin-bottom: 25px;
  color: #2546cb;
  line-height: 36px;
}
.theme-ux_3_1 .image-25 {
  position: absolute;
  width: 56px;
  height: 56px;
}
.theme-ux_3_1 .image-26 {
  position: absolute;
  top: 20px;
  right: 20px;
}
.theme-ux_3_1 .image-31 {
  width: 12px;
  height: 12px;
  margin-right: 12px;
}
.theme-ux_3_1 .continue-btn {
  display: inline-block;
  margin-top: 24px;
  margin-right: auto;
  margin-left: auto;
  padding: 7px 12px;
  border-radius: 5px;
  background-color: #2546cb;
  box-shadow: inset 1px 1px 4px 0 rgba(0, 0, 0, 0.25), inset -1px -1px 4px 0 rgba(0, 0, 0, 0.25);
  -webkit-transform: translate(29px, 0px);
  -ms-transform: translate(29px, 0px);
  transform: translate(29px, 0px);
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
.theme-ux_3_1 .search-name-input {
  height: 70px;
  margin-right: 8px;
  margin-bottom: 0px;
  padding-top: 21px;
  padding-bottom: 21px;
  padding-left: 20px;
  border: 2px solid #ccc;
  border-radius: 5px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}
.theme-ux_3_1 .search-name-input::-webkit-input-placeholder {
  color: #9d9d9d;
}
.theme-ux_3_1 .search-name-input:-ms-input-placeholder {
  color: #9d9d9d;
}
.theme-ux_3_1 .search-name-input::-ms-input-placeholder {
  color: #9d9d9d;
}
.theme-ux_3_1 .search-name-input::placeholder {
  color: #9d9d9d;
}
.theme-ux_3_1 .search-name-submit {
  display: inline-block;
  margin-bottom: -40px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.theme-ux_3_1 .heading-4-copy {
  color: #2546cb;
  line-height: 27px;
}
.theme-ux_3_1 .heading-8-copy {
  margin-bottom: 30px;
  color: #fa6341;
  font-size: 24px;
  line-height: 36px;
  text-align: left;
}
@media screen and (min-width: 1280px) {
  .theme-ux_3_1 .form-input {
    padding-left: 40px;
  }
  .theme-ux_3_1 .more-ways-search-button {
    font-size: 20px;
    line-height: 30px;
  }
  .theme-ux_3_1 .div-block-5 {
    margin-right: 30px;
  }
  .theme-ux_3_1 .div-block-7 {
    left: 30px;
    top: 30px;
    bottom: -30px;
  }
  .theme-ux_3_1 .div-block-8 {
    padding-right: 40px;
    padding-left: 40px;
  }
  .theme-ux_3_1 .image-6 {
    width: auto;
  }
  .theme-ux_3_1 .text-block-9 {
    font-size: 18px;
    line-height: 27px;
  }
  .theme-ux_3_1 .landing-hero-header {
    font-size: 48px;
  }
  .theme-ux_3_1 .form-select {
    padding-left: 40px;
  }
  .theme-ux_3_1 .signup-container {
    padding-right: 156px;
    padding-left: 156px;
  }
  .theme-ux_3_1 .profile-header {
    padding: 32px;
  }
  .theme-ux_3_1 .profile-body {
    padding: 32px;
    background-color: #f8f8f8;
  }
  .theme-ux_3_1 .profile-body-header {
    margin-top: 0px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }
  .theme-ux_3_1 .profile-body-grid {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    grid-column-gap: 5px;
    grid-row-gap: 20px;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
  }
  .theme-ux_3_1 .profile-grid-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    color: #000;
    font-size: 12px;
    line-height: 21px;
  }
  .theme-ux_3_1 .unlock-icon {
    margin-right: 6px;
  }
  .theme-ux_3_1 .signup-form-input {
    padding-left: 16px;
  }
  .theme-ux_3_1 .signup-form-input.expiration-date {
    width: 130px;
    padding-left: 16px;
  }
  .theme-ux_3_1 .signup-form-input.cvc {
    width: 100%;
  }
  .theme-ux_3_1 .div-block-19 {
    margin-right: 10px;
  }
  .theme-ux_3_1 .signup-form-col-checkout-left {
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }
  .theme-ux_3_1 .zip-code-input {
    width: 50%;
  }
  .theme-ux_3_1 .signup-form-select {
    padding-left: 16px;
  }
  .theme-ux_3_1 .loader-form-select {
    padding-left: 40px;
  }
  .theme-ux_3_1 .loader-form-input {
    padding-left: 40px;
  }
  .theme-ux_3_1 .div-block-38 {
    padding-right: 80px;
    padding-left: 80px;
  }
  .theme-ux_3_1 .div-block-40 {
    width: 600px;
  }
  .theme-ux_3_1 .div-block-43 {
    padding-right: 100px;
    padding-left: 150px;
  }
  .theme-ux_3_1 .heading-8 {
    font-size: 28px;
    line-height: 42px;
  }
  .theme-ux_3_1 .paragraph-4 {
    font-size: 20px;
    line-height: 30px;
  }
  .theme-ux_3_1 .div-block-46 {
    width: 160px;
    height: 160px;
  }
  .theme-ux_3_1 .paragraph-5 {
    font-size: 18px;
    line-height: 27px;
  }
  .theme-ux_3_1 .div-block-50 {
    width: 160px;
    height: 160px;
  }
  .theme-ux_3_1 .image-23 {
    height: 80px;
  }
  .theme-ux_3_1 .div-block-51 {
    width: 160px;
    height: 160px;
  }
  .theme-ux_3_1 .image-24 {
    height: 100px;
  }
  .theme-ux_3_1 .div-block-52 {
    width: 160px;
    height: 160px;
  }
  .theme-ux_3_1 .div-block-53 {
    padding-right: 100px;
    padding-left: 150px;
  }
  .theme-ux_3_1 .div-block-54 {
    width: 160px;
    height: 160px;
  }
  .theme-ux_3_1 .search-name-input {
    padding-left: 40px;
  }
  .theme-ux_3_1 .heading-8-copy {
    font-size: 28px;
    line-height: 42px;
  }
}
@media screen and (min-width: 1920px) {
  .theme-ux_3_1 .more-ways {
    margin-top: -100px;
    padding-bottom: 220px;
  }
  .theme-ux_3_1 .stay-informed {
    margin-top: -90px;
  }
  .theme-ux_3_1 .profile-grid-item {
    font-size: 14px;
  }
  .theme-ux_3_1 .unlock-icon {
    margin-right: 12px;
  }
  .theme-ux_3_1 .signup-form-container {
    margin-bottom: 80px;
  }
  .theme-ux_3_1 .signup-form-input.expiration-date {
    width: 210px;
  }
  .theme-ux_3_1 .signup-form-input.cvc {
    width: 210px;
  }
  .theme-ux_3_1 .signup-disclaimer {
    margin-bottom: 64px;
    color: #acacac;
    font-size: 14px;
    line-height: 21px;
    font-weight: 700;
  }
  .theme-ux_3_1 .link-block {
    margin-left: 20px;
  }
  .theme-ux_3_1 .text-block-15 {
    font-size: 14px;
    line-height: 21px;
  }
  .theme-ux_3_1 .div-block-19 {
    margin-right: 20px;
  }
  .theme-ux_3_1 .signup-form-col-checkout-left {
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }
  .theme-ux_3_1 .zip-code-input {
    width: 50%;
  }
  .theme-ux_3_1 .signup-form-select {
    padding-left: 16px;
  }
  .theme-ux_3_1 .div-block-43 {
    max-width: 982px;
    margin-bottom: 40px;
  }
  .theme-ux_3_1 .heading-8 {
    font-size: 36px;
    line-height: 48px;
  }
  .theme-ux_3_1 .paragraph-4 {
    font-size: 24px;
    line-height: 36px;
  }
  .theme-ux_3_1 .paragraph-5 {
    font-size: 18px;
    line-height: 27px;
  }
  .theme-ux_3_1 .div-block-53 {
    max-width: 982px;
    margin-bottom: 40px;
  }
  .theme-ux_3_1 .heading-8-copy {
    font-size: 36px;
    line-height: 48px;
  }
}
@media screen and (max-width: 991px) {
  .theme-ux_3_1 h1 {
    font-size: 32px;
    line-height: 40px;
  }
  .theme-ux_3_1 p {
    font-size: 16px;
    line-height: 24px;
  }
  .theme-ux_3_1 .landing-hero {
    padding-top: 56px;
  }
  .theme-ux_3_1 .hero-wrapper {
    margin-right: 40px;
    margin-left: 40px;
  }
  .theme-ux_3_1 .form-input {
    height: 48px;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 16px;
    font-size: 14px;
    line-height: 21px;
  }
  .theme-ux_3_1 .signup-form-submit-btn {
    height: 48px;
    padding: 10px 100px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    line-height: 28px;
  }
  .theme-ux_3_1 .more-ways {
    padding-top: 90px;
    padding-bottom: 171px;
  }
  .theme-ux_3_1 .more-ways-grid {
    grid-column-gap: 25px;
  }
  .theme-ux_3_1 .image-2 {
    height: 48px;
  }
  .theme-ux_3_1 .more-ways-search-button {
    padding-right: 5px;
    padding-left: 5px;
    font-size: 14px;
    line-height: 24px;
  }
  .theme-ux_3_1 .stay-informed {
    margin-top: -86px;
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .theme-ux_3_1 .div-block-2 {
    width: 150px;
    margin-top: -110px;
    margin-left: 60px;
  }
  .theme-ux_3_1 .circle.red {
    width: 150px;
    height: 150px;
  }
  .theme-ux_3_1 .circle.blue {
    width: 150px;
    height: 150px;
  }
  .theme-ux_3_1 .circle.orange {
    width: 150px;
    height: 150px;
  }
  .theme-ux_3_1 .image-3 {
    width: 96px;
  }
  .theme-ux_3_1 .text-block-2 {
    top: 30px;
    font-size: 16px;
    line-height: 24px;
  }
  .theme-ux_3_1 .image-4 {
    width: 48px;
  }
  .theme-ux_3_1 .text-block-3 {
    top: 25px;
    font-size: 16px;
    line-height: 24px;
  }
  .theme-ux_3_1 .div-block-4 {
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
  }
  .theme-ux_3_1 .text-block-4 {
    font-size: 16px;
    line-height: 24px;
  }
  .theme-ux_3_1 .text-block-5 {
    font-size: 16px;
    line-height: 24px;
  }
  .theme-ux_3_1 .testimonial-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .theme-ux_3_1 .testimonial-grid {
    margin-top: 76px;
    grid-column-gap: 20px;
  }
  .theme-ux_3_1 .div-block-5 {
    margin-right: 12px;
  }
  .theme-ux_3_1 .div-block-7 {
    left: 12px;
    top: 12px;
    bottom: -12px;
  }
  .theme-ux_3_1 .div-block-8 {
    padding: 48px 14px 24px 24px;
  }
  .theme-ux_3_1 .div-block-9 {
    font-size: 14px;
    line-height: 16px;
  }
  .theme-ux_3_1 .image-6 {
    width: 64px;
  }
  .theme-ux_3_1 .text-block-6 {
    font-size: 14px;
    line-height: 16px;
  }
  .theme-ux_3_1 .image-7 {
    left: 24px;
    top: -20px;
    width: 72px;
  }
  .theme-ux_3_1 .text-block-7 {
    font-size: 10px;
    line-height: 15px;
  }
  .theme-ux_3_1 .text-block-8 {
    margin-right: 27px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 10px;
    line-height: 15px;
  }
  .theme-ux_3_1 .footer-link {
    font-size: 10px;
    line-height: 15px;
  }
  .theme-ux_3_1 .image-8 {
    width: 64px;
  }
  .theme-ux_3_1 .text-block-9 {
    font-size: 12px;
    line-height: 21px;
  }
  .theme-ux_3_1 .navbar {
    z-index: 100;
  }
  .theme-ux_3_1 .text-block-10 {
    margin-right: 7px;
  }
  .theme-ux_3_1 .image-9 {
    width: 20px;
    height: 20px;
    margin-left: 8px;
  }
  .theme-ux_3_1 .signup-form-submit {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .theme-ux_3_1 .landing-hero-header {
    font-size: 30px;
  }
  .theme-ux_3_1 .form-select {
    height: 48px;
    padding-left: 16px;
    font-size: 14px;
    line-height: 21px;
  }
  .theme-ux_3_1 .div-block-15 {
    width: 400px;
  }
  .theme-ux_3_1 .return-home {
    padding-right: 10px;
    padding-left: 10px;
  }
  .theme-ux_3_1 .srp-container {
    padding-top: 40px;
    padding-bottom: 55px;
  }
  .theme-ux_3_1 .signup-container {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .theme-ux_3_1 .signup-heading {
    margin-bottom: 32px;
  }
  .theme-ux_3_1 .div-block-16 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme-ux_3_1 .membership-features {
    width: 100%;
  }
  .theme-ux_3_1 .div-block-20 {
    width: 320px;
  }
  .theme-ux_3_1 .profile-body {
    padding-right: 24px;
    padding-left: 24px;
  }
  .theme-ux_3_1 .profile-grid-item {
    font-size: 14px;
    line-height: 21px;
  }
  .theme-ux_3_1 .image-10 {
    position: static;
  }
  .theme-ux_3_1 .div-block-21 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .theme-ux_3_1 .signup-testimonial {
    position: relative;
  }
  .theme-ux_3_1 .signup-form-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme-ux_3_1 .signup-form {
    width: 100%;
    margin-right: 0px;
  }
  .theme-ux_3_1 .signup-form-input {
    height: 48px;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 16px;
    font-size: 14px;
    line-height: 21px;
  }
  .theme-ux_3_1 .div-block-23 {
    height: 1500px;
  }
  .theme-ux_3_1 .link-block {
    margin-left: 16px;
  }
  .theme-ux_3_1 .text-block-15 {
    font-size: 14px;
    line-height: 21px;
  }
  .theme-ux_3_1 .search-button {
    height: 48px;
    padding: 10px 12px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    line-height: 28px;
  }
  .theme-ux_3_1 .get-report-btn {
    height: 48px;
    padding: 10px 100px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    line-height: 28px;
  }
  .theme-ux_3_1 .div-block-19 {
    margin-right: 10px;
  }
  .theme-ux_3_1 .signup-form-col-checkout-left {
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }
  .theme-ux_3_1 .zip-code-input {
    width: 50%;
  }
  .theme-ux_3_1 .text-block-20 {
    font-size: 24px;
    line-height: 36px;
  }
  .theme-ux_3_1 .srp-table {
    margin-right: 0px;
  }
  .theme-ux_3_1 .full-name {
    width: 24%;
  }
  .theme-ux_3_1 .header-age {
    width: 14%;
  }
  .theme-ux_3_1 .header-locations {
    width: 29%;
  }
  .theme-ux_3_1 .header-relatives {
    width: 29%;
  }
  .theme-ux_3_1 .header-detail {
    display: none;
  }
  .theme-ux_3_1 .srp-table-body {
    margin-bottom: 24px;
  }
  .theme-ux_3_1 .srp-table-item {
    position: relative;
    padding-bottom: 80px;
  }
  .theme-ux_3_1 .srp-item-name {
    width: 24%;
  }
  .theme-ux_3_1 .srp-name {
    font-size: 18px;
    line-height: 27px;
  }
  .theme-ux_3_1 .srp-item-age {
    width: 14%;
  }
  .theme-ux_3_1 .srp-item-locations {
    width: 29%;
  }
  .theme-ux_3_1 .srp-item-relatives {
    width: 29%;
  }
  .theme-ux_3_1 .srp-item-detail {
    position: absolute;
    left: 50%;
    bottom: 24px;
    -webkit-transform: translate(-50%, 0px);
    -ms-transform: translate(-50%, 0px);
    transform: translate(-50%, 0px);
  }
  .theme-ux_3_1 .div-block-28 {
    margin-bottom: 40px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .theme-ux_3_1 .div-block-29 {
    width: 100%;
    margin-top: 80px;
    padding-top: 32px;
    padding-bottom: 60px;
    background-color: #f6f5f1;
  }
  .theme-ux_3_1 .heading-4 {
    margin-top: 0px;
    margin-right: 120px;
    font-size: 32px;
    line-height: 48px;
  }
  .theme-ux_3_1 .div-block-30 {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .theme-ux_3_1 .refine-form-submit {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .theme-ux_3_1 .refine-search-button {
    height: 48px;
    padding: 10px 12px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    line-height: 28px;
  }
  .theme-ux_3_1 .image-9-copy {
    width: 20px;
    height: 20px;
    margin-left: 8px;
  }
  .theme-ux_3_1 .heading-5 {
    margin-right: 27px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .theme-ux_3_1 .signup-form-select {
    height: 48px;
    padding-left: 16px;
    font-size: 14px;
    line-height: 21px;
  }
  .theme-ux_3_1 .div-block-32 {
    height: 1500px;
  }
  .theme-ux_3_1 .refine-form-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .theme-ux_3_1 .loader-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 100px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme-ux_3_1 .text-block-22 {
    margin-top: 80px;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    font-size: 18px;
    line-height: 27px;
  }
  .theme-ux_3_1 .text-block-24 {
    margin-top: 0px;
  }
  .theme-ux_3_1 .form-2 {
    padding-right: 0px;
    padding-left: 0px;
  }
  .theme-ux_3_1 .loader-submit-btn {
    height: 48px;
    padding: 10px 12px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    line-height: 28px;
  }
  .theme-ux_3_1 .loader-submit-mag {
    width: 20px;
    height: 20px;
    margin-left: 8px;
  }
  .theme-ux_3_1 .loader-form-select {
    height: 48px;
    padding-left: 16px;
    font-size: 14px;
    line-height: 21px;
  }
  .theme-ux_3_1 .loader-form-input {
    height: 48px;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 16px;
    font-size: 14px;
    line-height: 21px;
  }
  .theme-ux_3_1 .div-block-35 {
    width: 100%;
    grid-column-gap: 0px;
  }
  .theme-ux_3_1 .build-my-report {
    height: 48px;
    padding: 10px 100px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    line-height: 28px;
  }
  .theme-ux_3_1 .search-btn {
    height: 48px;
    padding: 10px 24px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    line-height: 28px;
  }
  .theme-ux_3_1 .scanning-container {
    display: none;
  }
  .theme-ux_3_1 .heading-7 {
    font-size: 48px;
    line-height: 72px;
  }
  .theme-ux_3_1 .div-block-39 {
    margin-bottom: 92px;
  }
  .theme-ux_3_1 .div-block-40 {
    width: 600px;
  }
  .theme-ux_3_1 .div-block-43 {
    padding-right: 40px;
    padding-left: 40px;
  }
  .theme-ux_3_1 .heading-8 {
    font-size: 32px;
    line-height: 48px;
  }
  .theme-ux_3_1 .paragraph-4 {
    font-size: 24px;
    line-height: 36px;
  }
  .theme-ux_3_1 .div-block-46 {
    position: static;
    width: 160px;
    height: 160px;
    margin-top: -112px;
    margin-bottom: 40px;
  }
  .theme-ux_3_1 .paragraph-5 {
    font-size: 16px;
    line-height: 24px;
  }
  .theme-ux_3_1 .div-block-50 {
    position: static;
    width: 160px;
    height: 160px;
    margin-top: -112px;
    margin-bottom: 40px;
  }
  .theme-ux_3_1 .image-23 {
    height: 80px;
  }
  .theme-ux_3_1 .div-block-51 {
    position: static;
    width: 160px;
    height: 160px;
    margin-top: -112px;
    margin-bottom: 40px;
  }
  .theme-ux_3_1 .image-24 {
    height: 100px;
  }
  .theme-ux_3_1 .div-block-52 {
    position: static;
    width: 160px;
    height: 160px;
    margin-top: -112px;
    margin-bottom: 40px;
  }
  .theme-ux_3_1 .div-block-54 {
    width: 160px;
    height: 160px;
  }
  .theme-ux_3_1 .text-block-26 {
    font-size: 24px;
    line-height: 36px;
  }
  .theme-ux_3_1 .search-name-input {
    height: 48px;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 16px;
    font-size: 14px;
    line-height: 21px;
  }
  .theme-ux_3_1 .search-name-submit {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .theme-ux_3_1 .heading-4-copy {
    margin-top: 0px;
    margin-right: 120px;
    font-size: 32px;
    line-height: 48px;
  }
  .theme-ux_3_1 .heading-8-copy {
    font-size: 32px;
    line-height: 48px;
  }
}
@media screen and (max-width: 767px) {
  .theme-ux_3_1 h1 {
    font-size: 24px;
    line-height: 36px;
  }
  .theme-ux_3_1 p {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_1 .landing-hero {
    padding-top: 32px;
    padding-bottom: 124px;
  }
  .theme-ux_3_1 .landing-hero.advanced {
    padding-bottom: 121px;
  }
  .theme-ux_3_1 .hero-wrapper {
    margin-right: 0px;
    margin-left: 0px;
  }
  .theme-ux_3_1 .search-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .theme-ux_3_1 .form-input {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_1 .signup-form-submit-btn {
    width: 100%;
    margin-top: 16px;
  }
  .theme-ux_3_1 .more-ways {
    margin-top: -40px;
    padding-top: 45px;
    padding-bottom: 80px;
  }
  .theme-ux_3_1 .more-ways-grid {
    grid-column-gap: 20px;
    grid-row-gap: 32px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .theme-ux_3_1 .image-2 {
    margin-bottom: 16px;
  }
  .theme-ux_3_1 .more-ways-search-button {
    margin-top: 16px;
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_1 .stay-informed {
    margin-top: -40px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .theme-ux_3_1 .stay-informed-wrapper {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .theme-ux_3_1 .div-block-2 {
    width: 80px;
    margin-top: 0px;
    margin-left: 30px;
  }
  .theme-ux_3_1 .circle.red {
    width: 80px;
    height: 80px;
  }
  .theme-ux_3_1 .circle.blue {
    width: 80px;
    height: 80px;
  }
  .theme-ux_3_1 .circle.orange {
    width: 80px;
    height: 80px;
  }
  .theme-ux_3_1 .image-3 {
    bottom: -5px;
    width: 51px;
  }
  .theme-ux_3_1 .text-block-2 {
    top: 16px;
    font-size: 8px;
    line-height: 12px;
  }
  .theme-ux_3_1 .image-4 {
    width: 25px;
  }
  .theme-ux_3_1 .text-block-3 {
    top: 16px;
    font-size: 8px;
    line-height: 12px;
  }
  .theme-ux_3_1 .div-block-4 {
    margin-top: 24px;
    grid-column-gap: 20px;
    grid-row-gap: 24px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .theme-ux_3_1 .image-5 {
    margin-bottom: 16px;
  }
  .theme-ux_3_1 .text-block-4 {
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_1 .text-block-5 {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_1 .testimonial-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .theme-ux_3_1 .testimonial-grid {
    margin-top: 44px;
    padding-right: 20px;
    padding-left: 20px;
    grid-row-gap: 56px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .theme-ux_3_1 .div-block-10 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme-ux_3_1 .text-block-8 {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 8px;
  }
  .theme-ux_3_1 .footer {
    padding-right: 20px;
    padding-left: 20px;
  }
  .theme-ux_3_1 .footer-container {
    padding-right: 0px;
    padding-left: 0px;
  }
  .theme-ux_3_1 .image-8 {
    bottom: -13px;
    width: 33px;
  }
  .theme-ux_3_1 .text-block-9 {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_1 .brand {
    padding-left: 0px;
  }
  .theme-ux_3_1 .icon {
    color: #ffb400;
    font-size: 36px;
    line-height: 36px;
  }
  .theme-ux_3_1 .menu-button {
    padding: 0px;
  }
  .theme-ux_3_1 .signup-form-submit {
    display: block;
    margin-bottom: 0px;
    margin-left: 0px;
  }
  .theme-ux_3_1 .heading-2 {
    width: 75%;
    text-align: left;
  }
  .theme-ux_3_1 .landing-hero-header {
    white-space: normal;
  }
  .theme-ux_3_1 .nav-container {
    padding-right: 20px;
    padding-left: 20px;
  }
  .theme-ux_3_1 .div-block-14 {
    margin-right: 0px;
  }
  .theme-ux_3_1 .form-row {
    margin-bottom: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme-ux_3_1 .form-col-6 {
    width: 100%;
    margin-bottom: 16px;
  }
  .theme-ux_3_1 .srp-container {
    padding: 32px 20px;
  }
  .theme-ux_3_1 .notification-modal {
    width: auto;
    margin-right: 21px;
    margin-left: 21px;
  }
  .theme-ux_3_1 .notification-modal-heading {
    font-size: 18px;
    line-height: 21px;
  }
  .theme-ux_3_1 .signup-container {
    padding-right: 20px;
    padding-left: 20px;
  }
  .theme-ux_3_1 .signup-heading {
    font-size: 24px;
    line-height: 36px;
  }
  .theme-ux_3_1 .signin-now {
    font-size: 18px;
    line-height: 27px;
  }
  .theme-ux_3_1 .avatar {
    width: 64px;
    height: 64px;
  }
  .theme-ux_3_1 .lock-icon {
    left: 47px;
    bottom: 1.5px;
    width: 15px;
  }
  .theme-ux_3_1 .name-age {
    font-size: 16px;
    line-height: 24px;
  }
  .theme-ux_3_1 .name {
    color: #2546cb;
  }
  .theme-ux_3_1 .profile-body {
    position: relative;
    padding-bottom: 65px;
  }
  .theme-ux_3_1 .profile-body-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .theme-ux_3_1 .profile-grid-item.much-more {
    position: absolute;
    left: 50%;
    top: auto;
    bottom: 15px;
    -webkit-transform: translate(-50%, 0px);
    -ms-transform: translate(-50%, 0px);
    transform: translate(-50%, 0px);
  }
  .theme-ux_3_1 .membership-features-heading {
    font-size: 14px;
    line-height: 21px;
  }
  .theme-ux_3_1 .membership-features-body {
    padding: 28px 24px;
  }
  .theme-ux_3_1 .membership-list {
    margin-bottom: 0px;
  }
  .theme-ux_3_1 .check-icon {
    width: 12px;
    height: 12px;
    margin-right: 4px;
  }
  .theme-ux_3_1 .unlimited {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_1 .text-block-13 {
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
  }
  .theme-ux_3_1 .image-10 {
    position: static;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }
  .theme-ux_3_1 .div-block-21 {
    margin-bottom: 0px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .theme-ux_3_1 .div-block-17 {
    margin-right: 0px;
  }
  .theme-ux_3_1 .div-block-26 {
    top: 5px;
  }
  .theme-ux_3_1 .plus-much-more {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_1 .signup-form-container {
    margin-bottom: 40px;
  }
  .theme-ux_3_1 .signup-form-heading {
    font-size: 14px;
    line-height: 21px;
  }
  .theme-ux_3_1 .signup-form-row {
    margin-bottom: 0px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .theme-ux_3_1 .signup-form-col {
    margin-bottom: 8px;
  }
  .theme-ux_3_1 .signup-form-col--6 {
    width: 100%;
    margin-bottom: 8px;
  }
  .theme-ux_3_1 .signup-form-input {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_1 .signup-form-input.expiration-date {
    width: 100%;
  }
  .theme-ux_3_1 .signup-form-input.cvc {
    width: 100%;
  }
  .theme-ux_3_1 .signup-form-input.zip-code {
    width: 100%;
  }
  .theme-ux_3_1 .signup-disclaimer {
    font-size: 8px;
    line-height: 12px;
  }
  .theme-ux_3_1 .image-11 {
    height: 80%;
  }
  .theme-ux_3_1 .search-button {
    width: 100%;
    margin-top: 16px;
  }
  .theme-ux_3_1 .get-report-btn {
    width: 100%;
    margin-top: 16px;
  }
  .theme-ux_3_1 .heading-3 {
    font-size: 36px;
    line-height: 54px;
  }
  .theme-ux_3_1 .div-block-26 {
    position: relative;
    margin-bottom: 8px;
    margin-left: 10px;
  }
  .theme-ux_3_1 .div-block-18 {
    width: 100%;
  }
  .theme-ux_3_1 .div-block-19 {
    width: 50%;
  }
  .theme-ux_3_1 .form-group {
    width: 50%;
  }
  .theme-ux_3_1 .div-block-27 {
    width: 100%;
  }
  .theme-ux_3_1 .signup-form-col-checkout-left {
    width: 100%;
    margin-bottom: 8px;
  }
  .theme-ux_3_1 .zip-code-input {
    width: 100%;
    margin-bottom: 8px;
    padding-right: 5px;
    margin-left: 10px;
    margin-right: 5px;
  }
  .theme-ux_3_1 .text-block-20 {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 27px;
  }
  .theme-ux_3_1 .image-13 {
    height: 80%;
  }
  .theme-ux_3_1 .srp-lock-icon {
    left: 47px;
    bottom: 1.5px;
    width: 15px;
  }
  .theme-ux_3_1 .srp-item-age {
    margin-right: 0%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }
  .theme-ux_3_1 .srp-item-locations {
    width: 27%;
    margin-right: 25px;
  }
  .theme-ux_3_1 .srp-item-relatives {
    width: auto;
  }
  .theme-ux_3_1 .srp-full-report {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 18px;
    line-height: 27px;
    font-weight: 700;
  }
  .theme-ux_3_1 .div-block-29 {
    margin-top: 56px;
    padding: 16px 20px;
  }
  .theme-ux_3_1 .heading-4 {
    font-size: 20px;
    line-height: 30px;
  }
  .theme-ux_3_1 .refine-form-submit {
    display: block;
    margin-bottom: 0px;
    margin-left: 0px;
  }
  .theme-ux_3_1 .refine-search-button {
    width: 100%;
    margin-top: 16px;
  }
  .theme-ux_3_1 .heading-5 {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_1 .text-block-21 {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_1 .signup-form-select {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_1 .srp-disclaimer {
    font-size: 8px;
    line-height: 12px;
  }
  .theme-ux_3_1 .refine-form-col {
    margin-bottom: 8px;
  }
  .theme-ux_3_1 .refine-form-row {
    margin-bottom: 0px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .theme-ux_3_1 .image-15 {
    width: 100px;
  }
  .theme-ux_3_1 .loader-container {
    padding-top: 160px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .theme-ux_3_1 .loader-wrapper {
    margin-bottom: 50px;
  }
  .theme-ux_3_1 .loader-heading {
    margin-bottom: 30px;
    font-size: 32px;
    line-height: 48px;
  }
  .theme-ux_3_1 .loader-disclaimer {
    font-size: 8px;
    line-height: 12px;
  }
  .theme-ux_3_1 .text-block-23 {
    font-size: 14px;
    line-height: 21px;
  }
  .theme-ux_3_1 .text-block-24 {
    font-size: 18px;
    line-height: 27px;
  }
  .theme-ux_3_1 .form-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme-ux_3_1 .loader-submit-btn {
    width: 100%;
    margin-top: 16px;
  }
  .theme-ux_3_1 .loader-form-select {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_1 .loader-form-input {
    max-width: 100%;
    margin-right: 0px;
    margin-bottom: 12px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_1 .form-block-2 {
    margin-top: 0px;
    margin-bottom: 30px;
  }
  .theme-ux_3_1 .form-3 {
    padding-right: 0px;
    padding-left: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme-ux_3_1 .div-block-35 {
    margin-bottom: 20px;
    justify-items: stretch;
    grid-column-gap: 21px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .theme-ux_3_1 .div-block-36 {
    width: auto;
    padding-bottom: 12px;
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_1 .build-my-report {
    width: 100%;
    margin-top: 16px;
    margin-bottom: 8px;
  }
  .theme-ux_3_1 .loader-container1 {
    padding-right: 20px;
    padding-left: 20px;
  }
  .theme-ux_3_1 .div-block-37 {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_1 .text-block-25 {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_1 .paragraph-3 {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_1 .form-block-4 {
    margin-bottom: 0px;
  }
  .theme-ux_3_1 .search-btn {
    width: 100%;
    margin-top: 16px;
  }
  .theme-ux_3_1 .rr-container {
    padding-top: 160px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .theme-ux_3_1 .div-block-38 {
    padding-right: 0px;
    padding-left: 0px;
  }
  .theme-ux_3_1 .heading-7 {
    font-size: 32px;
    line-height: 48px;
  }
  .theme-ux_3_1 .div-block-39 {
    width: 100%;
    margin-bottom: 64px;
  }
  .theme-ux_3_1 .div-block-40 {
    width: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .theme-ux_3_1 .div-block-42 {
    font-size: 14px;
    line-height: 21px;
    font-weight: 900;
  }
  .theme-ux_3_1 .div-block-43 {
    padding-top: 40px;
    padding-right: 30px;
    padding-left: 30px;
  }
  .theme-ux_3_1 .heading-8 {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 24px;
  }
  .theme-ux_3_1 .div-block-44 {
    margin-bottom: 24px;
  }
  .theme-ux_3_1 .div-block-45 {
    width: 40px;
    height: 40px;
  }
  .theme-ux_3_1 .image-18 {
    width: 20px;
    height: 30px;
  }
  .theme-ux_3_1 .image-19 {
    bottom: 2px;
    height: 12.5px;
  }
  .theme-ux_3_1 .paragraph-4 {
    margin-bottom: 0px;
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_1 .div-block-46 {
    width: 80px;
    height: 80px;
    margin-top: -80px;
    margin-bottom: 16px;
  }
  .theme-ux_3_1 .image-20 {
    height: 40px;
  }
  .theme-ux_3_1 .paragraph-5 {
    font-size: 12px;
    line-height: 18px;
    text-align: center;
  }
  .theme-ux_3_1 .div-block-50 {
    width: 80px;
    height: 80px;
    margin-top: -80px;
    margin-bottom: 24px;
  }
  .theme-ux_3_1 .image-23 {
    height: 40px;
  }
  .theme-ux_3_1 .div-block-51 {
    width: 80px;
    height: 80px;
    margin-top: -80px;
  }
  .theme-ux_3_1 .image-24 {
    height: 40px;
  }
  .theme-ux_3_1 .div-block-52 {
    width: 80px;
    height: 80px;
    margin-top: -80px;
  }
  .theme-ux_3_1 .div-block-53 {
    margin-top: -24px;
    margin-bottom: 24px;
    padding: 26px 20px 63px;
  }
  .theme-ux_3_1 .div-block-54 {
    width: 80px;
    height: 80px;
  }
  .theme-ux_3_1 .text-block-26 {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_1 .get-report-modal {
    width: auto;
    margin-right: 21px;
    margin-left: 21px;
    padding-right: 24px;
    padding-left: 24px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .theme-ux_3_1 .image-26 {
    position: static;
    margin-bottom: 16px;
  }
  .theme-ux_3_1 .image-27 {
    height: 40px;
  }
  .theme-ux_3_1 .image-28 {
    height: 40px;
  }
  .theme-ux_3_1 .image-29 {
    height: 40px;
  }
  .theme-ux_3_1 .image-30 {
    height: 40px;
  }
  .theme-ux_3_1 .continue-btn {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .theme-ux_3_1 .search-name-input {
    margin-bottom: 8px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_1 .search-name-submit {
    display: block;
    margin-bottom: 0px;
    margin-left: 0px;
  }
  .theme-ux_3_1 .heading-4-copy {
    font-size: 20px;
    line-height: 30px;
  }
  .theme-ux_3_1 .heading-8-copy {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 24px;
  }
}
@media screen and (max-width: 576px) {
  .theme-ux_3_1 .srp-item-locations {
    width: 40%;
    margin-right: 5%;
    margin-left: 5px;
  }
  .theme-ux_3_1 .srp-item-relatives {
    width: 40%;
    margin-right: 5%;
    margin-left: 5%;
  }
  .theme-ux_3_1 .srp-view-more {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_1 .srp-item-location {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_1 .srp-item-relative {
    font-size: 12px;
    line-height: 18px;
  }
}
@media screen and (max-width: 479px) {
  .theme-ux_3_1 .landing-hero {
    padding-bottom: 128px;
  }
  .theme-ux_3_1 .more-ways-grid {
    grid-column-gap: 10px;
  }
  .theme-ux_3_1 .more-ways-search-button {
    white-space: normal;
  }
  .theme-ux_3_1 .stay-informed-wrapper {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .theme-ux_3_1 .text-block-9 {
    font-size: 11px;
    white-space: normal;
  }
  .theme-ux_3_1 .landing-hero-header {
    white-space: normal;
  }
  .theme-ux_3_1 .notification-modal {
    margin-top: 50px;
  }
  .theme-ux_3_1 .profile-header {
    padding: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme-ux_3_1 .avatar {
    width: 32px;
    height: 32px;
  }
  .theme-ux_3_1 .lock-icon {
    left: 22px;
    width: 7px;
  }
  .theme-ux_3_1 .div-block-20 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .theme-ux_3_1 .name-age {
    position: absolute;
    left: 60px;
    top: 19px;
  }
  .theme-ux_3_1 .locations {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_1 .profile-body {
    padding-right: 10px;
    padding-left: 10px;
  }
  .theme-ux_3_1 .profile-body-header {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_1 .profile-body-grid {
    grid-column-gap: 2px;
  }
  .theme-ux_3_1 .profile-grid-item {
    font-size: 10px;
    line-height: 18px;
  }
  .theme-ux_3_1 .membership-features-body {
    padding-right: 12px;
    padding-left: 12px;
  }
  .theme-ux_3_1 .membership-list {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .theme-ux_3_1 .text-block-13 {
    line-height: 18px;
  }
  .theme-ux_3_1 .image-10 {
    position: absolute;
    width: 100px;
  }
  .theme-ux_3_1 .signup-form-input.zip-code {
    width: 100%;
  }
  .theme-ux_3_1 .link-block {
    margin-left: 0px;
  }
  .theme-ux_3_1 .text-block-15 {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_1 .text-block-16 {
    line-height: 18px;
  }
  .theme-ux_3_1 .get-report-btn {
    padding-right: 0px;
    padding-left: 0px;
  }
  .theme-ux_3_1 .div-block-26 {
    width: 100%;
  }
  .theme-ux_3_1 .image-12 {
    display: block;
    height: 29px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }
  .theme-ux_3_1 .div-block-18 {
    margin-top: 0px;
  }
  .theme-ux_3_1 .div-block-19 {
    width: 100%;
    margin-right: 0px;
  }
  .theme-ux_3_1 .form-group {
    width: 100%;
    margin-top: 0px;
  }
  .theme-ux_3_1 .div-block-27 {
    margin-top: 0px;
  }
  .theme-ux_3_1 .zip-code-input {
    padding-right: 5px;
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  .theme-ux_3_1 .srp-item-name {
    padding-left: 20px;
  }
  .theme-ux_3_1 .image-13 {
    width: auto;
  }
  .theme-ux_3_1 .srp-lock-icon {
    left: 22px;
    width: 7px;
  }
  .theme-ux_3_1 .srp-item-locations {
    width: 40%;
    margin-right: 5%;
    margin-left: 5px;
  }
  .theme-ux_3_1 .srp-item-relatives {
    width: 40%;
    margin-right: 5%;
    margin-left: 5%;
  }
  .theme-ux_3_1 .image-15 {
    width: 100px;
  }
  .theme-ux_3_1 .paragraph-2 {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_1 .loader-heading {
    margin-bottom: 30px;
  }
  .theme-ux_3_1 .form-block-2 {
    margin-top: 0px;
  }
  .theme-ux_3_1 .build-my-report {
    padding-right: 0px;
    padding-left: 0px;
  }
  .theme-ux_3_1 .div-block-39 {
    margin-bottom: 64px;
  }
  .theme-ux_3_1 .div-block-43 {
    padding-right: 20px;
    padding-left: 20px;
  }
  .theme-ux_3_1 .heading-8 {
    position: absolute;
    left: 20px;
    top: 26px;
    right: 100px;
  }
  .theme-ux_3_1 .div-block-44 {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .theme-ux_3_1 .div-block-45 {
    margin-right: 0px;
  }
  .theme-ux_3_1 .image-20 {
    margin-right: 0px;
  }
  .theme-ux_3_1 .div-block-52 {
    margin-bottom: 16px;
  }
  .theme-ux_3_1 .div-block-53 {
    margin-top: -24px;
    padding-top: 100px;
  }
  .theme-ux_3_1 .div-block-54 {
    position: absolute;
    top: 16px;
    right: 16px;
    margin-left: 0px;
  }
  .theme-ux_3_1 .get-report-modal {
    padding-top: 24px;
  }
  .theme-ux_3_1 .heading-10 {
    font-size: 18px;
    line-height: 27px;
    text-align: center;
  }
  .theme-ux_3_1 .heading-4-copy {
    margin-right: 0px;
  }
}
.theme-ux_3_1 #w-node-4081f33f4a68-a74bd755 {
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}
.theme-ux_3_1 #w-node-c3804c32f8b6-a74bd755 {
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}
.theme-ux_3_1 #w-node-e861672d86a7-a74bd755 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-e4fe62daca22-a74bd755 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-e955c121380f-a74bd755 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-d7f04de55fde-a74bd755 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-fcb635cdd229-a74bd755 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-d4f796e5b9a5-a74bd755 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-4081f33f4a68-624bd757 {
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}
.theme-ux_3_1 #w-node-c3804c32f8b6-624bd757 {
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}
.theme-ux_3_1 #w-node-e861672d86a7-624bd757 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-e4fe62daca22-624bd757 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-e955c121380f-624bd757 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-d7f04de55fde-624bd757 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-fcb635cdd229-624bd757 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-d4f796e5b9a5-624bd757 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-4081f33f4a68-614bd758 {
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}
.theme-ux_3_1 #w-node-c3804c32f8b6-614bd758 {
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}
.theme-ux_3_1 #w-node-e861672d86a7-614bd758 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-e4fe62daca22-614bd758 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-e955c121380f-614bd758 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-d7f04de55fde-614bd758 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-fcb635cdd229-614bd758 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-d4f796e5b9a5-614bd758 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-4081f33f4a68-3a4bd759 {
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}
.theme-ux_3_1 #w-node-c3804c32f8b6-3a4bd759 {
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}
.theme-ux_3_1 #w-node-e861672d86a7-3a4bd759 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-e4fe62daca22-3a4bd759 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-e955c121380f-3a4bd759 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-d7f04de55fde-3a4bd759 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-fcb635cdd229-3a4bd759 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-d4f796e5b9a5-3a4bd759 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-4081f33f4a68-434bd75a {
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}
.theme-ux_3_1 #w-node-c3804c32f8b6-434bd75a {
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}
.theme-ux_3_1 #w-node-e861672d86a7-434bd75a {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-e4fe62daca22-434bd75a {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-e955c121380f-434bd75a {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-d7f04de55fde-434bd75a {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-fcb635cdd229-434bd75a {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-d4f796e5b9a5-434bd75a {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-4081f33f4a68-e44bd75c {
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}
.theme-ux_3_1 #w-node-c3804c32f8b6-e44bd75c {
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}
.theme-ux_3_1 #w-node-e861672d86a7-e44bd75c {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-e4fe62daca22-e44bd75c {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-e955c121380f-e44bd75c {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-d7f04de55fde-e44bd75c {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-fcb635cdd229-e44bd75c {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_1 #w-node-d4f796e5b9a5-e44bd75c {
  -ms-grid-column-align: center;
  justify-self: center;
}
@media screen and (max-width: 991px) {
  .theme-ux_3_1 #w-node-fa513f0b92e1-a74bd755 {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
  }
  .theme-ux_3_1 #w-node-fa513f0b92e1-624bd757 {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
  }
  .theme-ux_3_1 #w-node-fa513f0b92e1-614bd758 {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
  }
  .theme-ux_3_1 #w-node-fa513f0b92e1-3a4bd759 {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
  }
  .theme-ux_3_1 #w-node-fa513f0b92e1-434bd75a {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
  }
  .theme-ux_3_1 #w-node-fa513f0b92e1-e44bd75c {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
  }
}
.theme-ux_3_1.phone-search * {
  font-family: "Roboto";
  line-height: 1.2;
}
.theme-ux_3_1.phone-search .navbar {
  background-color: #474dad;
}
.theme-ux_3_1.phone-search .navbar-brand {
  padding: 0;
}
.theme-ux_3_1.phone-search .navbar-brand img {
  height: 100%;
}
.theme-ux_3_1 .fa,
.theme-ux_3_1 .far,
.theme-ux_3_1 .fas {
  font-family: "Font Awesome 5 Free";
}
.theme-ux_3_1 .glyphicons {
  font-family: "Glyphicons Regular";
}
.theme-ux_3_1 .has-error {
  border-color: #e54747;
}
.theme-ux_3_1 button {
  color: #fff;
  text-decoration: none;
}
.theme-ux_3_1 .use .glyphicons {
  margin-top: 3px !important;
  height: auto !important;
}
.theme-ux_3_1 .search-q-after h2 {
  color: #2546cb;
  font-size: 36px;
}
.theme-ux_3_1 .search-q-after div {
  font-size: 24px;
  line-height: 1.5;
}
.theme-ux_3_1 .disclaimer-loader .container {
  padding-right: 0;
  padding-left: 0;
}
.theme-ux_3_1 .notification-modal-body p {
  font-size: 16px !important;
  line-height: 24px !important;
}
.theme-ux_3_1 .loader-question-form .w-form-fail {
  display: block;
}
.theme-ux_3_1 .more-ways-grid {
  grid-template-columns: 1fr 1fr;
}
.theme-ux_3_1 .div-block-3 p {
  margin-bottom: 0;
}
.theme-ux_3_1 [data-nav-menu-open] {
  display: block !important;
  position: absolute;
  top: calc(100% + 1px);
  left: -8px;
  right: -9px;
  background: #c8c8c8;
  text-align: center;
  overflow: visible;
  min-width: 200px;
}
.theme-ux_3_1 .signup-form-body {
  padding: 18px;
}
.theme-ux_3_1 .signup-form-input::placeholder {
  color: #ccc !important;
}
.theme-ux_3_1 .plus-much-more {
  color: gray !important;
}
.theme-ux_3_1 .plus-much-more:hover {
  color: gray !important;
}
.theme-ux_3_1 .signup-form-container {
  z-index: 1;
  position: relative;
}
.theme-ux_3_1 .div-block-17 .form-group {
  margin-bottom: 0;
}
.theme-ux_3_1 .signup-form-row .has-error {
  text-align: left;
  width: 100%;
  display: block;
  color: #e54747;
}
.theme-ux_3_1 .signup-form-p {
  margin-bottom: 0;
}
@media (max-width: 479px) {
  .theme-ux_3_1 .div-block-18,
  .theme-ux_3_1 .div-block-27 {
    flex-direction: column;
  }
}
@media (max-width: 479px) {
  .theme-ux_3_1 .notification-modal-body {
    max-height: calc(100vh - 171px);
    overflow-y: scroll;
  }
}
@media (max-width: 479px) {
  .theme-ux_3_1 .loader-heading {
    margin-bottom: 18px;
  }
}
@media (max-width: 479px) {
  .theme-ux_3_1 .text-block-22 {
    margin-bottom: 18px;
    margin-top: 18px;
  }
}
@media (max-width: 479px) {
  .theme-ux_3_1 .loader-wrapper {
    margin-bottom: 36px;
  }
}
.theme-ux_3_1 .modal-header button.close {
  color: black;
  font-size: 27px;
  padding: 10px;
}
.theme-ux_3_1 .srp-item-age {
  min-height: 32px;
}
.theme-ux_3_1 .search-result-title {
  display: none;
}
@media (max-width: 479px) {
  .theme-ux_3_1 .search-result-title {
    width: 50%;
    display: block;
    padding-left: 5px;
    margin-bottom: -12px;
    margin-top: 8px;
  }
  .theme-ux_3_1 .search-result-title.srp-item-relative {
    padding-left: 10px;
  }
}
@media (max-width: 479px) {
  .theme-ux_3_1 .div-block-17 {
    gap: 15px;
  }
}
.theme-ux_3_1 .div-block-47 {
  padding: 12px;
}
@media (max-width: 768px) {
  .theme-ux_3_1 .heading-4 {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .theme-ux_3_1 .text-block-6 {
    line-height: 22px;
  }
}
.theme-ux_3_1 #terms .modal-title,
.theme-ux_3_1 #privacy .modal-title {
  color: #fa6341;
  font-size: 22px;
  line-height: 36px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  margin-left: 24px;
}
.theme-ux_3_1 #terms .modal-body,
.theme-ux_3_1 #privacy .modal-body {
  max-height: calc(100vh - 136px);
  overflow-y: scroll;
  padding: 12px 36px;
}
.theme-ux_3_1 #terms .modal-body h1,
.theme-ux_3_1 #terms .modal-body p,
.theme-ux_3_1 #privacy .modal-body h1,
.theme-ux_3_1 #privacy .modal-body p {
  font-size: 16px;
  color: #000;
  line-height: 24px;
}
.theme-ux_3_1 #terms .modal-body .btn-success,
.theme-ux_3_1 #privacy .modal-body .btn-success {
  border-radius: 5px;
  background-color: #23ce6b;
  box-shadow: inset 3px 3px 4px 0 rgba(0, 0, 0, 0.25), inset -3px -3px 4px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
}
.theme-ux_3_1 .header {
  padding-right: 8px;
  padding-left: 8px;
  background-color: #fff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .theme-ux_3_1 .header {
    z-index: 100;
  }
}
.theme-ux_3_1#contactUs .checkbox {
  position: relative;
  top: 0;
  left: 0;
}
.theme-ux_3_1#terms h1,
.theme-ux_3_1#privacy h1 {
  font-size: 36px;
}
.theme-ux_3_1#terms p,
.theme-ux_3_1#privacy p {
  font-size: 14px;
  line-height: 1.5;
}
.theme-ux_3_1 .jumbotron h1 {
  color: white;
}
@media (min-width: 768px) {
  .theme-ux_3_1 .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
}
@media (max-width: 991px) {
  .theme-ux_3_1 .search-wrapper .form-group {
    width: 100%;
    margin-bottom: 8px;
    box-shadow: 0.25rem 0.25rem 0.625rem rgba(0, 0, 0, 0.4);
  }
}
.theme-legacy.theme-ux_3_0 .header {
  margin-bottom: 20px;
}
.theme-legacy.theme-ux_3_0#addon .header {
  margin-bottom: 0;
}
.modal-content {
  border: 0;
}
.theme-ux_3_0 #sup-detail-rhs-content .sup-unlock-report-item {
  width: 100%;
}
.theme-ux_3_0 #sup-detail-rhs-content .sup-unlock-report-item div {
  width: 170px;
  text-align: left;
}
@media (max-width: 991px) {
  .theme-ux_3_0 #sup-detail-rhs-content .sup-unlock-report-item {
    width: 100% !important;
  }
}
@media (max-width: 991px) {
  .theme-ux_3_1 .container {
    padding-right: 0px;
    padding-left: 0px;
    width: 100%;
  }
  .theme-ux_3_1 .container .row {
    padding-left: 5px;
    padding-right: 5px;
  }
}

/* src/app/themes/ux.3.0/base.component.scss */
html {
  height: 100%;
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  min-height: 100%;
  background-color: #fff;
  font-size: 14px;
  line-height: 20px;
  color: #333;
}
body {
  background-color: #f8fafe;
}
.modal {
  display: none;
}
.modal.in {
  display: block;
}
.fast-right-spinner {
  -webkit-animation: glyphicons-spin-r 1s infinite linear;
  animation: glyphicons-spin-r 1s infinite linear;
}
.normal-right-spinner {
  -webkit-animation: glyphicons-spin-r 2s infinite linear;
  animation: glyphicons-spin-r 2s infinite linear;
}
.slow-right-spinner {
  -webkit-animation: glyphicons-spin-r 3s infinite linear;
  animation: glyphicons-spin-r 3s infinite linear;
}
.fast-left-spinner {
  -webkit-animation: glyphicons-spin-l 1s infinite linear;
  animation: glyphicons-spin-l 1s infinite linear;
}
.normal-left-spinner {
  -webkit-animation: glyphicons-spin-l 2s infinite linear;
  animation: glyphicons-spin-l 2s infinite linear;
}
.slow-left-spinner {
  -webkit-animation: glyphicons-spin-l 3s infinite linear;
  animation: glyphicons-spin-l 3s infinite linear;
}
@-webkit-keyframes glyphicons-spin-r {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes glyphicons-spin-r {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-webkit-keyframes glyphicons-spin-l {
  0% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes glyphicons-spin-l {
  0% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.theme-ux_3_0 {
}
.theme-ux_3_0 article,
.theme-ux_3_0 aside,
.theme-ux_3_0 details,
.theme-ux_3_0 figcaption,
.theme-ux_3_0 figure,
.theme-ux_3_0 footer,
.theme-ux_3_0 header,
.theme-ux_3_0 hgroup,
.theme-ux_3_0 main,
.theme-ux_3_0 menu,
.theme-ux_3_0 nav,
.theme-ux_3_0 section,
.theme-ux_3_0 summary {
  display: block;
}
.theme-ux_3_0 audio,
.theme-ux_3_0 canvas,
.theme-ux_3_0 progress,
.theme-ux_3_0 video {
  display: inline-block;
  vertical-align: baseline;
}
.theme-ux_3_0 audio:not([controls]) {
  display: none;
  height: 0;
}
.theme-ux_3_0 [hidden],
.theme-ux_3_0 template {
  display: none;
}
.theme-ux_3_0 a {
  background-color: transparent;
}
.theme-ux_3_0 a:active,
.theme-ux_3_0 a:hover {
  outline: 0;
}
.theme-ux_3_0 abbr[title] {
  border-bottom: 1px dotted;
}
.theme-ux_3_0 b,
.theme-ux_3_0 strong {
  font-weight: bold;
}
.theme-ux_3_0 dfn {
  font-style: italic;
}
.theme-ux_3_0 h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
.theme-ux_3_0 mark {
  background: #ff0;
  color: #000;
}
.theme-ux_3_0 small {
  font-size: 80%;
}
.theme-ux_3_0 sub,
.theme-ux_3_0 sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.theme-ux_3_0 sup {
  top: -0.5em;
}
.theme-ux_3_0 sub {
  bottom: -0.25em;
}
.theme-ux_3_0 img {
  border: 0;
}
.theme-ux_3_0 svg:not(:root) {
  overflow: hidden;
}
.theme-ux_3_0 figure {
  margin: 1em 40px;
}
.theme-ux_3_0 hr {
  box-sizing: content-box;
  height: 0;
}
.theme-ux_3_0 pre {
  overflow: auto;
}
.theme-ux_3_0 code,
.theme-ux_3_0 kbd,
.theme-ux_3_0 pre,
.theme-ux_3_0 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
.theme-ux_3_0 button,
.theme-ux_3_0 input,
.theme-ux_3_0 optgroup,
.theme-ux_3_0 select,
.theme-ux_3_0 textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
.theme-ux_3_0 button {
  overflow: visible;
}
.theme-ux_3_0 button,
.theme-ux_3_0 select {
  text-transform: none;
}
.theme-ux_3_0 button,
.theme-ux_3_0 html input[type=button],
.theme-ux_3_0 input[type=reset] {
  -webkit-appearance: button;
  cursor: pointer;
}
.theme-ux_3_0 button[disabled],
.theme-ux_3_0 html input[disabled] {
  cursor: default;
}
.theme-ux_3_0 button::-moz-focus-inner,
.theme-ux_3_0 input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.theme-ux_3_0 input {
  line-height: normal;
}
.theme-ux_3_0 input[type=checkbox],
.theme-ux_3_0 input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}
.theme-ux_3_0 input[type=number]::-webkit-inner-spin-button,
.theme-ux_3_0 input[type=number]::-webkit-outer-spin-button {
  height: auto;
}
.theme-ux_3_0 input[type=search] {
  -webkit-appearance: none;
}
.theme-ux_3_0 input[type=search]::-webkit-search-cancel-button,
.theme-ux_3_0 input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
.theme-ux_3_0 fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
.theme-ux_3_0 legend {
  border: 0;
  padding: 0;
}
.theme-ux_3_0 textarea {
  overflow: auto;
}
.theme-ux_3_0 optgroup {
  font-weight: bold;
}
.theme-ux_3_0 table {
  border-collapse: collapse;
  border-spacing: 0;
}
.theme-ux_3_0 td,
.theme-ux_3_0 th {
  padding: 0;
}
@font-face {
  font-family: "webflow-icons";
  src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBiUAAAC8AAAAYGNtYXDpP+a4AAABHAAAAFxnYXNwAAAAEAAAAXgAAAAIZ2x5ZmhS2XEAAAGAAAADHGhlYWQTFw3HAAAEnAAAADZoaGVhCXYFgQAABNQAAAAkaG10eCe4A1oAAAT4AAAAMGxvY2EDtALGAAAFKAAAABptYXhwABAAPgAABUQAAAAgbmFtZSoCsMsAAAVkAAABznBvc3QAAwAAAAAHNAAAACAAAwP4AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAQAAAAAwACAACAAQAAQAg5gPpA//9//8AAAAAACDmAOkA//3//wAB/+MaBBcIAAMAAQAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEBIAAAAyADgAAFAAAJAQcJARcDIP5AQAGA/oBAAcABwED+gP6AQAABAOAAAALgA4AABQAAEwEXCQEH4AHAQP6AAYBAAcABwED+gP6AQAAAAwDAAOADQALAAA8AHwAvAAABISIGHQEUFjMhMjY9ATQmByEiBh0BFBYzITI2PQE0JgchIgYdARQWMyEyNj0BNCYDIP3ADRMTDQJADRMTDf3ADRMTDQJADRMTDf3ADRMTDQJADRMTAsATDSANExMNIA0TwBMNIA0TEw0gDRPAEw0gDRMTDSANEwAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFVz+fAGEAAAAAAL//f+9BAMDwwAEAAkAABcBJwEXAwE3AQdpA5ps/GZsbAOabPxmbEMDmmz8ZmwDmvxmbAOabAAAAgAA/8AEAAPAAB0AOwAABSInLgEnJjU0Nz4BNzYzMTIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjMSIHDgEHBhUUFx4BFxYzAgBqXV6LKCgoKIteXWpqXV6LKCgoKIteXWpVSktvICEhIG9LSlVVSktvICEhIG9LSlVAKCiLXl1qal1eiygoKCiLXl1qal1eiygoZiEgb0tKVVVKS28gISEgb0tKVVVKS28gIQABAAABwAIAA8AAEgAAEzQ3PgE3NjMxFSIHDgEHBhUxIwAoKIteXWpVSktvICFmAcBqXV6LKChmISBvS0pVAAAAAgAA/8AFtgPAADIAOgAAARYXHgEXFhUUBw4BBwYHIxUhIicuAScmNTQ3PgE3NjMxOAExNDc+ATc2MzIXHgEXFhcVATMJATMVMzUEjD83NlAXFxYXTjU1PQL8kz01Nk8XFxcXTzY1PSIjd1BQWlJJSXInJw3+mdv+2/7c25MCUQYcHFg5OUA/ODlXHBwIAhcXTzY1PTw1Nk8XF1tQUHcjIhwcYUNDTgL+3QFt/pOTkwABAAAAAQAAmM7nP18PPPUACwQAAAAAANciZKUAAAAA1yJkpf/9/70FtgPDAAAACAACAAAAAAAAAAEAAAPA/8AAAAW3//3//QW2AAEAAAAAAAAAAAAAAAAAAAAMBAAAAAAAAAAAAAAAAgAAAAQAASAEAADgBAAAwAQAAJ0EAP/9BAAAAAQAAAAFtwAAAAAAAAAKABQAHgAyAEYAjACiAL4BFgE2AY4AAAABAAAADAA8AAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADQAAAAEAAAAAAAIABwCWAAEAAAAAAAMADQBIAAEAAAAAAAQADQCrAAEAAAAAAAUACwAnAAEAAAAAAAYADQBvAAEAAAAAAAoAGgDSAAMAAQQJAAEAGgANAAMAAQQJAAIADgCdAAMAAQQJAAMAGgBVAAMAAQQJAAQAGgC4AAMAAQQJAAUAFgAyAAMAAQQJAAYAGgB8AAMAAQQJAAoANADsd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("truetype");
  font-weight: normal;
  font-style: normal;
}
.theme-ux_3_0 [class^=w-icon-],
.theme-ux_3_0 [class*=" w-icon-"] {
  font-family: "webflow-icons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.theme-ux_3_0 .w-icon-slider-right:before {
  content: "\e600";
}
.theme-ux_3_0 .w-icon-slider-left:before {
  content: "\e601";
}
.theme-ux_3_0 .w-icon-nav-menu:before {
  content: "\e602";
}
.theme-ux_3_0 .w-icon-arrow-down:before,
.theme-ux_3_0 .w-icon-dropdown-toggle:before {
  content: "\e603";
}
.theme-ux_3_0 .w-icon-file-upload-remove:before {
  content: "\e900";
}
.theme-ux_3_0 .w-icon-file-upload-icon:before {
  content: "\e903";
}
.theme-ux_3_0 * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.theme-ux_3_0 html {
  height: 100%;
}
.theme-ux_3_0 body {
  margin: 0;
  min-height: 100%;
  background-color: #fff;
  font-size: 14px;
  line-height: 20px;
  color: #333;
}
.theme-ux_3_0 img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}
.theme-ux_3_0 html.w-mod-touch * {
  background-attachment: scroll !important;
}
.theme-ux_3_0 .w-block {
  display: block;
}
.theme-ux_3_0 .w-inline-block {
  max-width: 100%;
  display: inline-block;
}
.theme-ux_3_0 .w-clearfix:before,
.theme-ux_3_0 .w-clearfix:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.theme-ux_3_0 .w-clearfix:after {
  clear: both;
}
.theme-ux_3_0 .w-hidden {
  display: none;
}
.theme-ux_3_0 .w-button {
  display: inline-block;
  padding: 9px 15px;
  background-color: #3898EC;
  color: white;
  border: 0;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
}
.theme-ux_3_0 input.w-button {
  -webkit-appearance: button;
}
.theme-ux_3_0 html[data-w-dynpage] [data-w-cloak] {
  color: transparent !important;
}
.theme-ux_3_0 .w-webflow-badge,
.theme-ux_3_0 .w-webflow-badge * {
  position: static;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  z-index: auto;
  display: block;
  visibility: visible;
  overflow: visible;
  overflow-x: visible;
  overflow-y: visible;
  box-sizing: border-box;
  width: auto;
  height: auto;
  max-height: none;
  max-width: none;
  min-height: 0;
  min-width: 0;
  margin: 0;
  padding: 0;
  float: none;
  clear: none;
  border: 0 none transparent;
  border-radius: 0;
  background: none;
  background-image: none;
  background-position: 0% 0%;
  background-size: auto auto;
  background-repeat: repeat;
  background-origin: padding-box;
  background-clip: border-box;
  background-attachment: scroll;
  background-color: transparent;
  box-shadow: none;
  opacity: 1;
  transform: none;
  transition: none;
  direction: ltr;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-style: inherit;
  font-variant: inherit;
  text-align: inherit;
  letter-spacing: inherit;
  text-decoration: inherit;
  text-indent: 0;
  text-transform: inherit;
  list-style-type: disc;
  text-shadow: none;
  font-smoothing: auto;
  vertical-align: baseline;
  cursor: inherit;
  white-space: inherit;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
}
.theme-ux_3_0 .w-webflow-badge {
  position: fixed !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 2147483647 !important;
  top: auto !important;
  right: 12px !important;
  bottom: 12px !important;
  left: auto !important;
  color: #AAADB0 !important;
  background-color: #fff !important;
  border-radius: 3px !important;
  padding: 6px 8px 6px 6px !important;
  font-size: 12px !important;
  opacity: 1 !important;
  line-height: 14px !important;
  text-decoration: none !important;
  transform: none !important;
  margin: 0 !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.theme-ux_3_0 .w-webflow-badge > img {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  vertical-align: middle !important;
}
.theme-ux_3_0 h1,
.theme-ux_3_0 h2,
.theme-ux_3_0 h3,
.theme-ux_3_0 h4,
.theme-ux_3_0 h5,
.theme-ux_3_0 h6 {
  font-weight: bold;
  margin-bottom: 10px;
}
.theme-ux_3_0 h1 {
  font-size: 38px;
  line-height: 44px;
  margin-top: 20px;
}
.theme-ux_3_0 h2 {
  font-size: 32px;
  line-height: 36px;
  margin-top: 20px;
}
.theme-ux_3_0 h3 {
  font-size: 24px;
  line-height: 30px;
  margin-top: 20px;
}
.theme-ux_3_0 h4 {
  font-size: 18px;
  line-height: 24px;
  margin-top: 10px;
}
.theme-ux_3_0 h5 {
  font-size: 14px;
  line-height: 20px;
  margin-top: 10px;
}
.theme-ux_3_0 h6 {
  font-size: 12px;
  line-height: 18px;
  margin-top: 10px;
}
.theme-ux_3_0 p {
  margin-top: 0;
  margin-bottom: 10px;
}
.theme-ux_3_0 blockquote {
  margin: 0 0 10px 0;
  padding: 10px 20px;
  border-left: 5px solid #E2E2E2;
  font-size: 18px;
  line-height: 22px;
}
.theme-ux_3_0 figure {
  margin: 0;
  margin-bottom: 10px;
}
.theme-ux_3_0 figcaption {
  margin-top: 5px;
  text-align: center;
}
.theme-ux_3_0 ul,
.theme-ux_3_0 ol {
  margin-top: 0px;
  margin-bottom: 10px;
}
.theme-ux_3_0 .w-list-unstyled {
  padding-left: 0;
  list-style: none;
}
.theme-ux_3_0 .w-embed:before,
.theme-ux_3_0 .w-embed:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.theme-ux_3_0 .w-embed:after {
  clear: both;
}
.theme-ux_3_0 .w-video {
  width: 100%;
  position: relative;
  padding: 0;
}
.theme-ux_3_0 .w-video iframe,
.theme-ux_3_0 .w-video object,
.theme-ux_3_0 .w-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.theme-ux_3_0 fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}
.theme-ux_3_0 button,
.theme-ux_3_0 html input[type=button],
.theme-ux_3_0 input[type=reset] {
  border: 0;
  cursor: pointer;
  -webkit-appearance: button;
}
.theme-ux_3_0 .w-form {
  margin: 0 0 15px;
}
.theme-ux_3_0 .w-form-done {
  display: none;
  padding: 20px;
  text-align: center;
  background-color: #dddddd;
}
.theme-ux_3_0 .w-form-fail {
  display: none;
  margin-top: 10px;
  padding: 10px;
  background-color: #ffdede;
}
.theme-ux_3_0 label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.theme-ux_3_0 .w-input,
.theme-ux_3_0 .w-select {
  display: block;
  width: 100%;
  height: 38px;
  padding: 8px 12px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #333333;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #cccccc;
}
.theme-ux_3_0 .w-input:-moz-placeholder,
.theme-ux_3_0 .w-select:-moz-placeholder {
  color: #999;
}
.theme-ux_3_0 .w-input::-moz-placeholder,
.theme-ux_3_0 .w-select::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.theme-ux_3_0 .w-input:-ms-input-placeholder,
.theme-ux_3_0 .w-select:-ms-input-placeholder {
  color: #999;
}
.theme-ux_3_0 .w-input::-webkit-input-placeholder,
.theme-ux_3_0 .w-select::-webkit-input-placeholder {
  color: #999;
}
.theme-ux_3_0 .w-input:focus,
.theme-ux_3_0 .w-select:focus {
  border-color: #3898EC;
  outline: 0;
}
.theme-ux_3_0 .w-input[disabled],
.theme-ux_3_0 .w-select[disabled],
.theme-ux_3_0 .w-input[readonly],
.theme-ux_3_0 .w-select[readonly],
.theme-ux_3_0 fieldset[disabled] .w-input,
.theme-ux_3_0 fieldset[disabled] .w-select {
  cursor: not-allowed;
  background-color: #eeeeee;
}
.theme-ux_3_0 textarea.w-input,
.theme-ux_3_0 textarea.w-select {
  height: auto;
}
.theme-ux_3_0 .w-select {
  background-color: #f3f3f3;
}
.theme-ux_3_0 .w-select[multiple] {
  height: auto;
}
.theme-ux_3_0 .w-form-label {
  display: inline-block;
  cursor: pointer;
  font-weight: normal;
  margin-bottom: 0px;
}
.theme-ux_3_0 .w-radio {
  display: block;
  margin-bottom: 5px;
  padding-left: 20px;
}
.theme-ux_3_0 .w-radio:before,
.theme-ux_3_0 .w-radio:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.theme-ux_3_0 .w-radio:after {
  clear: both;
}
.theme-ux_3_0 .w-radio-input {
  margin: 4px 0 0;
  margin-top: 1px \	;
  line-height: normal;
  float: left;
  margin-left: -20px;
}
.theme-ux_3_0 .w-radio-input {
  margin-top: 3px;
}
.theme-ux_3_0 .w-file-upload {
  display: block;
  margin-bottom: 10px;
}
.theme-ux_3_0 .w-file-upload-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -100;
}
.theme-ux_3_0 .w-file-upload-default,
.theme-ux_3_0 .w-file-upload-uploading,
.theme-ux_3_0 .w-file-upload-success {
  display: inline-block;
  color: #333333;
}
.theme-ux_3_0 .w-file-upload-error {
  display: block;
  margin-top: 10px;
}
.theme-ux_3_0 .w-file-upload-default.w-hidden,
.theme-ux_3_0 .w-file-upload-uploading.w-hidden,
.theme-ux_3_0 .w-file-upload-error.w-hidden,
.theme-ux_3_0 .w-file-upload-success.w-hidden {
  display: none;
}
.theme-ux_3_0 .w-file-upload-uploading-btn {
  display: flex;
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid #cccccc;
  background-color: #fafafa;
}
.theme-ux_3_0 .w-file-upload-file {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  margin: 0;
  padding: 8px 9px 8px 11px;
  border: 1px solid #cccccc;
  background-color: #fafafa;
}
.theme-ux_3_0 .w-file-upload-file-name {
  font-size: 14px;
  font-weight: normal;
  display: block;
}
.theme-ux_3_0 .w-file-remove-link {
  margin-top: 3px;
  margin-left: 10px;
  width: auto;
  height: auto;
  padding: 3px;
  display: block;
  cursor: pointer;
}
.theme-ux_3_0 .w-icon-file-upload-remove {
  margin: auto;
  font-size: 10px;
}
.theme-ux_3_0 .w-file-upload-error-msg {
  display: inline-block;
  color: #ea384c;
  padding: 2px 0;
}
.theme-ux_3_0 .w-file-upload-info {
  display: inline-block;
  line-height: 38px;
  padding: 0 12px;
}
.theme-ux_3_0 .w-file-upload-label {
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid #cccccc;
  background-color: #fafafa;
}
.theme-ux_3_0 .w-icon-file-upload-icon,
.theme-ux_3_0 .w-icon-file-upload-uploading {
  display: inline-block;
  margin-right: 8px;
  width: 20px;
}
.theme-ux_3_0 .w-icon-file-upload-uploading {
  height: 20px;
}
.theme-ux_3_0 .w-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 940px;
}
.theme-ux_3_0 .w-container:before,
.theme-ux_3_0 .w-container:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.theme-ux_3_0 .w-container:after {
  clear: both;
}
.theme-ux_3_0 .w-container .w-row {
  margin-left: -10px;
  margin-right: -10px;
}
.theme-ux_3_0 .w-row:before,
.theme-ux_3_0 .w-row:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.theme-ux_3_0 .w-row:after {
  clear: both;
}
.theme-ux_3_0 .w-row .w-row {
  margin-left: 0;
  margin-right: 0;
}
.theme-ux_3_0 .w-col {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.theme-ux_3_0 .w-col .w-col {
  padding-left: 0;
  padding-right: 0;
}
.theme-ux_3_0 .w-col-1 {
  width: 8.33333333%;
}
.theme-ux_3_0 .w-col-2 {
  width: 16.66666667%;
}
.theme-ux_3_0 .w-col-3 {
  width: 25%;
}
.theme-ux_3_0 .w-col-4 {
  width: 33.33333333%;
}
.theme-ux_3_0 .w-col-5 {
  width: 41.66666667%;
}
.theme-ux_3_0 .w-col-6 {
  width: 50%;
}
.theme-ux_3_0 .w-col-7 {
  width: 58.33333333%;
}
.theme-ux_3_0 .w-col-8 {
  width: 66.66666667%;
}
.theme-ux_3_0 .w-col-9 {
  width: 75%;
}
.theme-ux_3_0 .w-col-10 {
  width: 83.33333333%;
}
.theme-ux_3_0 .w-col-11 {
  width: 91.66666667%;
}
.theme-ux_3_0 .w-col-12 {
  width: 100%;
}
.theme-ux_3_0 .w-hidden-main {
  display: none !important;
}
@media screen and (max-width: 991px) {
  .theme-ux_3_0 .w-container {
    max-width: 728px;
  }
  .theme-ux_3_0 .w-hidden-main {
    display: inherit !important;
  }
  .theme-ux_3_0 .w-hidden-medium {
    display: none !important;
  }
  .theme-ux_3_0 .w-col-medium-1 {
    width: 8.33333333%;
  }
  .theme-ux_3_0 .w-col-medium-2 {
    width: 16.66666667%;
  }
  .theme-ux_3_0 .w-col-medium-3 {
    width: 25%;
  }
  .theme-ux_3_0 .w-col-medium-4 {
    width: 33.33333333%;
  }
  .theme-ux_3_0 .w-col-medium-5 {
    width: 41.66666667%;
  }
  .theme-ux_3_0 .w-col-medium-6 {
    width: 50%;
  }
  .theme-ux_3_0 .w-col-medium-7 {
    width: 58.33333333%;
  }
  .theme-ux_3_0 .w-col-medium-8 {
    width: 66.66666667%;
  }
  .theme-ux_3_0 .w-col-medium-9 {
    width: 75%;
  }
  .theme-ux_3_0 .w-col-medium-10 {
    width: 83.33333333%;
  }
  .theme-ux_3_0 .w-col-medium-11 {
    width: 91.66666667%;
  }
  .theme-ux_3_0 .w-col-medium-12 {
    width: 100%;
  }
  .theme-ux_3_0 .w-col-stack {
    width: 100%;
    left: auto;
    right: auto;
  }
}
@media screen and (max-width: 767px) {
  .theme-ux_3_0 .w-hidden-main {
    display: inherit !important;
  }
  .theme-ux_3_0 .w-hidden-medium {
    display: inherit !important;
  }
  .theme-ux_3_0 .w-hidden-small {
    display: none !important;
  }
  .theme-ux_3_0 .w-row,
  .theme-ux_3_0 .w-container .w-row {
    margin-left: 0;
    margin-right: 0;
  }
  .theme-ux_3_0 .w-col {
    width: 100%;
    left: auto;
    right: auto;
  }
  .theme-ux_3_0 .w-col-small-1 {
    width: 8.33333333%;
  }
  .theme-ux_3_0 .w-col-small-2 {
    width: 16.66666667%;
  }
  .theme-ux_3_0 .w-col-small-3 {
    width: 25%;
  }
  .theme-ux_3_0 .w-col-small-4 {
    width: 33.33333333%;
  }
  .theme-ux_3_0 .w-col-small-5 {
    width: 41.66666667%;
  }
  .theme-ux_3_0 .w-col-small-6 {
    width: 50%;
  }
  .theme-ux_3_0 .w-col-small-7 {
    width: 58.33333333%;
  }
  .theme-ux_3_0 .w-col-small-8 {
    width: 66.66666667%;
  }
  .theme-ux_3_0 .w-col-small-9 {
    width: 75%;
  }
  .theme-ux_3_0 .w-col-small-10 {
    width: 83.33333333%;
  }
  .theme-ux_3_0 .w-col-small-11 {
    width: 91.66666667%;
  }
  .theme-ux_3_0 .w-col-small-12 {
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  .theme-ux_3_0 .w-container {
    max-width: none;
  }
  .theme-ux_3_0 .w-hidden-main {
    display: inherit !important;
  }
  .theme-ux_3_0 .w-hidden-medium {
    display: inherit !important;
  }
  .theme-ux_3_0 .w-hidden-small {
    display: inherit !important;
  }
  .theme-ux_3_0 .w-hidden-tiny {
    display: none !important;
  }
  .theme-ux_3_0 .w-col {
    width: 100%;
  }
  .theme-ux_3_0 .w-col-tiny-1 {
    width: 8.33333333%;
  }
  .theme-ux_3_0 .w-col-tiny-2 {
    width: 16.66666667%;
  }
  .theme-ux_3_0 .w-col-tiny-3 {
    width: 25%;
  }
  .theme-ux_3_0 .w-col-tiny-4 {
    width: 33.33333333%;
  }
  .theme-ux_3_0 .w-col-tiny-5 {
    width: 41.66666667%;
  }
  .theme-ux_3_0 .w-col-tiny-6 {
    width: 50%;
  }
  .theme-ux_3_0 .w-col-tiny-7 {
    width: 58.33333333%;
  }
  .theme-ux_3_0 .w-col-tiny-8 {
    width: 66.66666667%;
  }
  .theme-ux_3_0 .w-col-tiny-9 {
    width: 75%;
  }
  .theme-ux_3_0 .w-col-tiny-10 {
    width: 83.33333333%;
  }
  .theme-ux_3_0 .w-col-tiny-11 {
    width: 91.66666667%;
  }
  .theme-ux_3_0 .w-col-tiny-12 {
    width: 100%;
  }
}
.theme-ux_3_0 .w-widget {
  position: relative;
}
.theme-ux_3_0 .w-widget-map {
  width: 100%;
  height: 400px;
}
.theme-ux_3_0 .w-widget-map label {
  width: auto;
  display: inline;
}
.theme-ux_3_0 .w-widget-map img {
  max-width: inherit;
}
.theme-ux_3_0 .w-widget-map .gm-style-iw {
  text-align: center;
}
.theme-ux_3_0 .w-widget-map .gm-style-iw > button {
  display: none !important;
}
.theme-ux_3_0 .w-widget-twitter {
  overflow: hidden;
}
.theme-ux_3_0 .w-widget-twitter-count-shim {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 28px;
  height: 20px;
  text-align: center;
  background: white;
  border: #758696 solid 1px;
  border-radius: 3px;
}
.theme-ux_3_0 .w-widget-twitter-count-shim * {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.theme-ux_3_0 .w-widget-twitter-count-shim .w-widget-twitter-count-inner {
  position: relative;
  font-size: 15px;
  line-height: 12px;
  text-align: center;
  color: #999;
  font-family: serif;
}
.theme-ux_3_0 .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
  position: relative;
  display: block;
}
.theme-ux_3_0 .w-widget-twitter-count-shim.w--large {
  width: 36px;
  height: 28px;
}
.theme-ux_3_0 .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 18px;
}
.theme-ux_3_0 .w-widget-twitter-count-shim:not(.w--vertical) {
  margin-left: 5px;
  margin-right: 8px;
}
.theme-ux_3_0 .w-widget-twitter-count-shim:not(.w--vertical).w--large {
  margin-left: 6px;
}
.theme-ux_3_0 .w-widget-twitter-count-shim:not(.w--vertical):before,
.theme-ux_3_0 .w-widget-twitter-count-shim:not(.w--vertical):after {
  top: 50%;
  left: 0;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.theme-ux_3_0 .w-widget-twitter-count-shim:not(.w--vertical):before {
  border-color: rgba(117, 134, 150, 0);
  border-right-color: #5d6c7b;
  border-width: 4px;
  margin-left: -9px;
  margin-top: -4px;
}
.theme-ux_3_0 .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
  border-width: 5px;
  margin-left: -10px;
  margin-top: -5px;
}
.theme-ux_3_0 .w-widget-twitter-count-shim:not(.w--vertical):after {
  border-color: rgba(255, 255, 255, 0);
  border-right-color: white;
  border-width: 4px;
  margin-left: -8px;
  margin-top: -4px;
}
.theme-ux_3_0 .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
  border-width: 5px;
  margin-left: -9px;
  margin-top: -5px;
}
.theme-ux_3_0 .w-widget-twitter-count-shim.w--vertical {
  width: 61px;
  height: 33px;
  margin-bottom: 8px;
}
.theme-ux_3_0 .w-widget-twitter-count-shim.w--vertical:before,
.theme-ux_3_0 .w-widget-twitter-count-shim.w--vertical:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.theme-ux_3_0 .w-widget-twitter-count-shim.w--vertical:before {
  border-color: rgba(117, 134, 150, 0);
  border-top-color: #5d6c7b;
  border-width: 5px;
  margin-left: -5px;
}
.theme-ux_3_0 .w-widget-twitter-count-shim.w--vertical:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-color: white;
  border-width: 4px;
  margin-left: -4px;
}
.theme-ux_3_0 .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 22px;
}
.theme-ux_3_0 .w-widget-twitter-count-shim.w--vertical.w--large {
  width: 76px;
}
.theme-ux_3_0 .w-widget-gplus {
  overflow: hidden;
}
.theme-ux_3_0 .w-background-video {
  position: relative;
  overflow: hidden;
  height: 500px;
  color: white;
}
.theme-ux_3_0 .w-background-video > video {
  background-size: cover;
  background-position: 50% 50%;
  position: absolute;
  margin: auto;
  width: 100%;
  height: 100%;
  right: -100%;
  bottom: -100%;
  top: -100%;
  left: -100%;
  object-fit: cover;
  z-index: -100;
}
.theme-ux_3_0 .w-background-video > video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}
.theme-ux_3_0 .w-slider {
  position: relative;
  height: 300px;
  text-align: center;
  background: #dddddd;
  clear: both;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}
.theme-ux_3_0 .w-slider-mask {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
  left: 0;
  right: 0;
  height: 100%;
  white-space: nowrap;
}
.theme-ux_3_0 .w-slide {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: 100%;
  white-space: normal;
  text-align: left;
}
.theme-ux_3_0 .w-slider-nav {
  position: absolute;
  z-index: 2;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  padding-top: 10px;
  height: 40px;
  text-align: center;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}
.theme-ux_3_0 .w-slider-nav.w-round > div {
  border-radius: 100%;
}
.theme-ux_3_0 .w-slider-nav.w-num > div {
  width: auto;
  height: auto;
  padding: 0.2em 0.5em;
  font-size: inherit;
  line-height: inherit;
}
.theme-ux_3_0 .w-slider-nav.w-shadow > div {
  box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
}
.theme-ux_3_0 .w-slider-nav-invert {
  color: #fff;
}
.theme-ux_3_0 .w-slider-nav-invert > div {
  background-color: rgba(34, 34, 34, 0.4);
}
.theme-ux_3_0 .w-slider-nav-invert > div.w-active {
  background-color: #222;
}
.theme-ux_3_0 .w-slider-dot {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  margin: 0 3px 0.5em;
  transition: background-color 100ms, color 100ms;
}
.theme-ux_3_0 .w-slider-dot.w-active {
  background-color: #fff;
}
.theme-ux_3_0 .w-slider-dot:focus {
  outline: none;
  box-shadow: 0px 0px 0px 2px #fff;
}
.theme-ux_3_0 .w-slider-dot:focus.w-active {
  box-shadow: none;
}
.theme-ux_3_0 .w-slider-arrow-left,
.theme-ux_3_0 .w-slider-arrow-right {
  position: absolute;
  width: 80px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  cursor: pointer;
  overflow: hidden;
  color: white;
  font-size: 40px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.theme-ux_3_0 .w-slider-arrow-left [class^=w-icon-],
.theme-ux_3_0 .w-slider-arrow-right [class^=w-icon-],
.theme-ux_3_0 .w-slider-arrow-left [class*=" w-icon-"],
.theme-ux_3_0 .w-slider-arrow-right [class*=" w-icon-"] {
  position: absolute;
}
.theme-ux_3_0 .w-slider-arrow-left:focus,
.theme-ux_3_0 .w-slider-arrow-right:focus {
  outline: 0;
}
.theme-ux_3_0 .w-slider-arrow-left {
  z-index: 3;
  right: auto;
}
.theme-ux_3_0 .w-slider-arrow-right {
  z-index: 4;
  left: auto;
}
.theme-ux_3_0 .w-icon-slider-left,
.theme-ux_3_0 .w-icon-slider-right {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1em;
  height: 1em;
}
.theme-ux_3_0 .w-slider-aria-label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.theme-ux_3_0 .w-dropdown {
  display: inline-block;
  position: relative;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  z-index: 900;
}
.theme-ux_3_0 .w-dropdown-btn,
.theme-ux_3_0 .w-dropdown-toggle,
.theme-ux_3_0 .w-dropdown-link {
  position: relative;
  vertical-align: top;
  text-decoration: none;
  color: #222222;
  padding: 20px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}
.theme-ux_3_0 .w-dropdown-toggle {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: inline-block;
  cursor: pointer;
  padding-right: 40px;
}
.theme-ux_3_0 .w-dropdown-toggle:focus {
  outline: 0;
}
.theme-ux_3_0 .w-icon-dropdown-toggle {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  margin-right: 20px;
  width: 1em;
  height: 1em;
}
.theme-ux_3_0 .w-dropdown-list {
  position: absolute;
  background: #dddddd;
  display: none;
  min-width: 100%;
}
.theme-ux_3_0 .w-dropdown-list.w--open {
  display: block;
}
.theme-ux_3_0 .w-dropdown-link {
  padding: 10px 20px;
  display: block;
  color: #222222;
}
.theme-ux_3_0 .w-dropdown-link.w--current {
  color: #0082f3;
}
.theme-ux_3_0 .w-dropdown-link:focus {
  outline: 0;
}
@media screen and (max-width: 767px) {
  .theme-ux_3_0 .w-nav-brand {
    padding-left: 10px;
  }
}
.theme-ux_3_0 .w-lightbox-backdrop {
  color: #000;
  cursor: auto;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-height: normal;
  list-style: disc;
  text-align: start;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: #fff;
  font-family:
    "Helvetica Neue",
    Helvetica,
    Ubuntu,
    "Segoe UI",
    Verdana,
    sans-serif;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 300;
  text-align: center;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  outline: 0;
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-transform: translate(0, 0);
}
.theme-ux_3_0 .w-lightbox-backdrop,
.theme-ux_3_0 .w-lightbox-container {
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.theme-ux_3_0 .w-lightbox-content {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.theme-ux_3_0 .w-lightbox-view {
  position: absolute;
  width: 100vw;
  height: 100vh;
  opacity: 0;
}
.theme-ux_3_0 .w-lightbox-view:before {
  content: "";
  height: 100vh;
}
.theme-ux_3_0 .w-lightbox-group,
.theme-ux_3_0 .w-lightbox-group .w-lightbox-view,
.theme-ux_3_0 .w-lightbox-group .w-lightbox-view:before {
  height: 86vh;
}
.theme-ux_3_0 .w-lightbox-frame,
.theme-ux_3_0 .w-lightbox-view:before {
  display: inline-block;
  vertical-align: middle;
}
.theme-ux_3_0 .w-lightbox-figure {
  position: relative;
  margin: 0;
}
.theme-ux_3_0 .w-lightbox-group .w-lightbox-figure {
  cursor: pointer;
}
.theme-ux_3_0 .w-lightbox-img {
  width: auto;
  height: auto;
  max-width: none;
}
.theme-ux_3_0 .w-lightbox-image {
  display: block;
  float: none;
  max-width: 100vw;
  max-height: 100vh;
}
.theme-ux_3_0 .w-lightbox-group .w-lightbox-image {
  max-height: 86vh;
}
.theme-ux_3_0 .w-lightbox-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.5em 1em;
  background: rgba(0, 0, 0, 0.4);
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.theme-ux_3_0 .w-lightbox-embed {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.theme-ux_3_0 .w-lightbox-control {
  position: absolute;
  top: 0;
  width: 4em;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.theme-ux_3_0 .w-lightbox-left {
  display: none;
  bottom: 0;
  left: 0;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==);
}
.theme-ux_3_0 .w-lightbox-right {
  display: none;
  right: 0;
  bottom: 0;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+);
}
.theme-ux_3_0 .w-lightbox-close {
  right: 0;
  height: 2.6em;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=);
  background-size: 18px;
}
.theme-ux_3_0 .w-lightbox-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 1vh;
  line-height: 0;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}
.theme-ux_3_0 .w-lightbox-item {
  display: inline-block;
  width: 10vh;
  padding: 2vh 1vh;
  box-sizing: content-box;
  cursor: pointer;
  -webkit-transform: translate3d(0, 0, 0);
}
.theme-ux_3_0 .w-lightbox-active {
  opacity: 0.3;
}
.theme-ux_3_0 .w-lightbox-thumbnail {
  position: relative;
  height: 10vh;
  background: #222;
  overflow: hidden;
}
.theme-ux_3_0 .w-lightbox-thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
}
.theme-ux_3_0 .w-lightbox-thumbnail .w-lightbox-tall {
  top: 50%;
  width: 100%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.theme-ux_3_0 .w-lightbox-thumbnail .w-lightbox-wide {
  left: 50%;
  height: 100%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.theme-ux_3_0 .w-lightbox-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  border: 5px solid rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  -webkit-animation: spin 0.8s infinite linear;
  animation: spin 0.8s infinite linear;
}
.theme-ux_3_0 .w-lightbox-spinner:after {
  content: "";
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  border: 3px solid transparent;
  border-bottom-color: #fff;
  border-radius: 50%;
}
.theme-ux_3_0 .w-lightbox-hide {
  display: none;
}
.theme-ux_3_0 .w-lightbox-noscroll {
  overflow: hidden;
}
@media (min-width: 768px) {
  .theme-ux_3_0 {
  }
  .theme-ux_3_0 .w-lightbox-content {
    height: 96vh;
    margin-top: 2vh;
  }
  .theme-ux_3_0 .w-lightbox-view,
  .theme-ux_3_0 .w-lightbox-view:before {
    height: 96vh;
  }
  .theme-ux_3_0 .w-lightbox-group,
  .theme-ux_3_0 .w-lightbox-group .w-lightbox-view,
  .theme-ux_3_0 .w-lightbox-group .w-lightbox-view:before {
    height: 84vh;
  }
  .theme-ux_3_0 .w-lightbox-image {
    max-width: 96vw;
    max-height: 96vh;
  }
  .theme-ux_3_0 .w-lightbox-group .w-lightbox-image {
    max-width: 82.3vw;
    max-height: 84vh;
  }
  .theme-ux_3_0 .w-lightbox-left,
  .theme-ux_3_0 .w-lightbox-right {
    display: block;
    opacity: 0.5;
  }
  .theme-ux_3_0 .w-lightbox-close {
    opacity: 0.8;
  }
  .theme-ux_3_0 .w-lightbox-control:hover {
    opacity: 1;
  }
}
.theme-ux_3_0 .w-lightbox-inactive,
.theme-ux_3_0 .w-lightbox-inactive:hover {
  opacity: 0;
}
.theme-ux_3_0 .w-richtext:before,
.theme-ux_3_0 .w-richtext:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.theme-ux_3_0 .w-richtext:after {
  clear: both;
}
.theme-ux_3_0 .w-richtext[contenteditable=true]:before,
.theme-ux_3_0 .w-richtext[contenteditable=true]:after {
  white-space: initial;
}
.theme-ux_3_0 .w-richtext ol,
.theme-ux_3_0 .w-richtext ul {
  overflow: hidden;
}
.theme-ux_3_0 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:after,
.theme-ux_3_0 .w-richtext .w-richtext-figure-selected[data-rt-type=video] div:after {
  outline: 2px solid #2895f7;
}
.theme-ux_3_0 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div,
.theme-ux_3_0 .w-richtext .w-richtext-figure-selected[data-rt-type=image] div {
  outline: 2px solid #2895f7;
}
.theme-ux_3_0 .w-richtext figure.w-richtext-figure-type-video > div:after,
.theme-ux_3_0 .w-richtext figure[data-rt-type=video] > div:after {
  content: "";
  position: absolute;
  display: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.theme-ux_3_0 .w-richtext figure {
  position: relative;
  max-width: 60%;
}
.theme-ux_3_0 .w-richtext figure > div:before {
  cursor: default !important;
}
.theme-ux_3_0 .w-richtext figure img {
  width: 100%;
}
.theme-ux_3_0 .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
  opacity: 0.6;
}
.theme-ux_3_0 .w-richtext figure div {
  font-size: 0px;
  color: transparent;
}
.theme-ux_3_0 .w-richtext figure.w-richtext-figure-type-image,
.theme-ux_3_0 .w-richtext figure[data-rt-type=image] {
  display: table;
}
.theme-ux_3_0 .w-richtext figure.w-richtext-figure-type-image > div,
.theme-ux_3_0 .w-richtext figure[data-rt-type=image] > div {
  display: inline-block;
}
.theme-ux_3_0 .w-richtext figure.w-richtext-figure-type-image > figcaption,
.theme-ux_3_0 .w-richtext figure[data-rt-type=image] > figcaption {
  display: table-caption;
  caption-side: bottom;
}
.theme-ux_3_0 .w-richtext figure.w-richtext-figure-type-video,
.theme-ux_3_0 .w-richtext figure[data-rt-type=video] {
  width: 60%;
  height: 0;
}
.theme-ux_3_0 .w-richtext figure.w-richtext-figure-type-video iframe,
.theme-ux_3_0 .w-richtext figure[data-rt-type=video] iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.theme-ux_3_0 .w-richtext figure.w-richtext-figure-type-video > div,
.theme-ux_3_0 .w-richtext figure[data-rt-type=video] > div {
  width: 100%;
}
.theme-ux_3_0 .w-richtext figure.w-richtext-align-center {
  margin-right: auto;
  margin-left: auto;
  clear: both;
}
.theme-ux_3_0 .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div,
.theme-ux_3_0 .w-richtext figure.w-richtext-align-center[data-rt-type=image] > div {
  max-width: 100%;
}
.theme-ux_3_0 .w-richtext figure.w-richtext-align-normal {
  clear: both;
}
.theme-ux_3_0 .w-richtext figure.w-richtext-align-fullwidth {
  width: 100%;
  max-width: 100%;
  text-align: center;
  clear: both;
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.theme-ux_3_0 .w-richtext figure.w-richtext-align-fullwidth > div {
  display: inline-block;
  padding-bottom: inherit;
}
.theme-ux_3_0 .w-richtext figure.w-richtext-align-fullwidth > figcaption {
  display: block;
}
.theme-ux_3_0 .w-richtext figure.w-richtext-align-floatleft {
  float: left;
  margin-right: 15px;
  clear: none;
}
.theme-ux_3_0 .w-richtext figure.w-richtext-align-floatright {
  float: right;
  margin-left: 15px;
  clear: none;
}
.theme-ux_3_0 .w-nav {
  position: relative;
  background: #dddddd;
  z-index: 1000;
}
.theme-ux_3_0 .w-nav:before,
.theme-ux_3_0 .w-nav:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.theme-ux_3_0 .w-nav:after {
  clear: both;
}
.theme-ux_3_0 .w-nav-brand {
  position: relative;
  float: left;
  text-decoration: none;
  color: #333333;
}
.theme-ux_3_0 .w-nav-link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  color: #222222;
  padding: 20px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}
.theme-ux_3_0 .w-nav-link.w--current {
  color: #0082f3;
}
.theme-ux_3_0 .w-nav-menu {
  position: relative;
  float: right;
}
.theme-ux_3_0 [data-nav-menu-open] {
  display: block !important;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #C8C8C8;
  text-align: center;
  overflow: visible;
  min-width: 200px;
}
.theme-ux_3_0 .w--nav-link-open {
  display: block;
  position: relative;
}
.theme-ux_3_0 .w-nav-overlay {
  position: absolute;
  overflow: hidden;
  display: none;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
}
.theme-ux_3_0 .w-nav-overlay [data-nav-menu-open] {
  top: 0;
}
.theme-ux_3_0 .w-nav[data-animation=over-left] .w-nav-overlay {
  width: auto;
}
.theme-ux_3_0 .w-nav[data-animation=over-left] .w-nav-overlay,
.theme-ux_3_0 .w-nav[data-animation=over-left] [data-nav-menu-open] {
  right: auto;
  z-index: 1;
  top: 0;
}
.theme-ux_3_0 .w-nav[data-animation=over-right] .w-nav-overlay {
  width: auto;
}
.theme-ux_3_0 .w-nav[data-animation=over-right] .w-nav-overlay,
.theme-ux_3_0 .w-nav[data-animation=over-right] [data-nav-menu-open] {
  left: auto;
  z-index: 1;
  top: 0;
}
.theme-ux_3_0 .w-nav-button {
  position: relative;
  float: right;
  padding: 18px;
  font-size: 24px;
  display: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.theme-ux_3_0 .w-nav-button:focus {
  outline: 0;
}
.theme-ux_3_0 .w-nav-button.w--open {
  background-color: #C8C8C8;
  color: white;
}
.theme-ux_3_0 .w-nav[data-collapse=all] .w-nav-menu {
  display: none;
}
.theme-ux_3_0 .w-nav[data-collapse=all] .w-nav-button {
  display: block;
}
.theme-ux_3_0 .w--nav-dropdown-open {
  display: block;
}
.theme-ux_3_0 .w--nav-dropdown-toggle-open {
  display: block;
}
.theme-ux_3_0 .w--nav-dropdown-list-open {
  position: static;
}
@media screen and (max-width: 991px) {
  .theme-ux_3_0 .w-nav[data-collapse=medium] .w-nav-menu {
    display: none;
  }
  .theme-ux_3_0 .w-nav[data-collapse=medium] .w-nav-button {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .theme-ux_3_0 .w-nav[data-collapse=small] .w-nav-menu {
    display: none;
  }
  .theme-ux_3_0 .w-nav[data-collapse=small] .w-nav-button {
    display: block;
  }
  .theme-ux_3_0 .w-nav-brand {
    padding-left: 10px;
  }
}
@media screen and (max-width: 479px) {
  .theme-ux_3_0 .w-nav[data-collapse=tiny] .w-nav-menu {
    display: none;
  }
  .theme-ux_3_0 .w-nav[data-collapse=tiny] .w-nav-button {
    display: block;
  }
}
.theme-ux_3_0 .w-tabs {
  position: relative;
}
.theme-ux_3_0 .w-tabs:before,
.theme-ux_3_0 .w-tabs:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.theme-ux_3_0 .w-tabs:after {
  clear: both;
}
.theme-ux_3_0 .w-tab-menu {
  position: relative;
}
.theme-ux_3_0 .w-tab-link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  padding: 9px 30px;
  text-align: left;
  cursor: pointer;
  color: #222222;
  background-color: #dddddd;
}
.theme-ux_3_0 .w-tab-link.w--current {
  background-color: #C8C8C8;
}
.theme-ux_3_0 .w-tab-link:focus {
  outline: 0;
}
.theme-ux_3_0 .w-tab-content {
  position: relative;
  display: block;
  overflow: hidden;
}
.theme-ux_3_0 .w-tab-pane {
  position: relative;
  display: none;
}
.theme-ux_3_0 .w--tab-active {
  display: block;
}
@media screen and (max-width: 479px) {
  .theme-ux_3_0 .w-tab-link {
    display: block;
  }
}
.theme-ux_3_0 .w-ix-emptyfix:after {
  content: "";
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.theme-ux_3_0 .w-dyn-empty {
  padding: 10px;
  background-color: #dddddd;
}
.theme-ux_3_0 .w-dyn-hide {
  display: none !important;
}
.theme-ux_3_0 .w-dyn-bind-empty {
  display: none !important;
}
.theme-ux_3_0 .w-condition-invisible {
  display: none !important;
}
.theme-ux_3_0 .w-layout-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}
.theme-ux_3_0 .w-checkbox {
  display: block;
  margin-bottom: 5px;
  padding-left: 20px;
}
.theme-ux_3_0 .w-checkbox::before {
  content: " ";
  display: table;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-column: 1;
  grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row: 1;
  grid-row-start: 1;
}
.theme-ux_3_0 .w-checkbox::after {
  content: " ";
  display: table;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-column: 1;
  grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row: 1;
  grid-row-start: 1;
  clear: both;
}
.theme-ux_3_0 .w-checkbox-input {
  float: left;
  margin-bottom: 0px;
  margin-left: -20px;
  margin-right: 0px;
  margin-top: 4px;
  line-height: normal;
}
.theme-ux_3_0 .w-checkbox-input--inputType-custom {
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-color: #ccc;
  border-bottom-color: #ccc;
  border-left-color: #ccc;
  border-right-color: #ccc;
  border-top-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-right-style: solid;
  width: 12px;
  height: 12px;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.theme-ux_3_0 .w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  border-top-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  border-right-color: #3898ec;
  background-image: url(https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.theme-ux_3_0 .w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0px 0px 3px 1px #3898ec;
}
.theme-ux_3_0 .signup-heading {
  margin-bottom: 40px;
  color: #000;
  font-size: 32px;
  line-height: 48px;
  font-weight: 500;
}
.theme-ux_3_0 .text-span-2 {
  color: #fa6341;
}
.theme-ux_3_0 .signin-now {
  margin-bottom: 8px;
  color: #000;
  font-size: 24px;
  line-height: 36px;
}
.theme-ux_3_0 h1 {
  margin-top: 0px;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  color: #2546cb;
  font-size: 48px;
  line-height: 72px;
  font-weight: 700;
}
.theme-ux_3_0 p {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 36px;
}
.theme-ux_3_0 .text-center {
  text-align: center;
}
.theme-ux_3_0 .container {
  padding-right: 120px;
  padding-left: 120px;
}
.theme-ux_3_0 .nav-sign {
  margin-left: 20px;
  padding: 4px 20px;
  border: 3px solid #ffb400;
  border-radius: 5px;
  background-color: transparent;
  color: #525252;
  line-height: 22px;
  font-weight: 500;
}
.theme-ux_3_0 .landing-hero {
  padding-top: 80px;
  padding-bottom: 200px;
  background-color: #f6f5f1;
}
.theme-ux_3_0 .hero-wrapper {
  margin-right: 0px;
  margin-left: 0px;
}
.theme-ux_3_0 .strong {
  font-weight: 700;
}
.theme-ux_3_0 .search-form-block {
  margin-top: 40px;
  margin-bottom: 0px;
}
.theme-ux_3_0 .search-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.theme-ux_3_0 .form-input {
  height: 70px;
  margin-bottom: 0px;
  padding-top: 21px;
  padding-bottom: 21px;
  padding-left: 20px;
  border: 2px solid #ccc;
  border-radius: 5px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}
.theme-ux_3_0 .form-input::-webkit-input-placeholder {
  color: #9d9d9d;
}
.theme-ux_3_0 .form-input:-ms-input-placeholder {
  color: #9d9d9d;
}
.theme-ux_3_0 .form-input::-ms-input-placeholder {
  color: #9d9d9d;
}
.theme-ux_3_0 .form-input::placeholder {
  color: #9d9d9d;
}
.theme-ux_3_0 .signup-form-submit-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 70px;
  padding: 11px 100px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  background-color: #23ce6b;
  box-shadow: inset 3px 3px 4px 0 rgba(0, 0, 0, 0.25), inset -3px -3px 4px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  text-decoration: none;
}
.theme-ux_3_0 .div-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 8px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.theme-ux_3_0 .image {
  margin-right: 8px;
}
.theme-ux_3_0 .more-ways {
  position: relative;
  z-index: 1;
  margin-top: -80px;
  padding-top: 145px;
  padding-bottom: 200px;
  background-color: #eeeae1;
  -webkit-transform: perspective(1px) skew(0deg, 5deg);
  -ms-transform: skew(0deg, 5deg);
  transform: skew(0deg, 5deg);
}
.theme-ux_3_0 .normal {
  font-weight: 400;
}
.theme-ux_3_0 .more-ways-grid {
  margin-top: 60px;
  -webkit-box-align: end;
  -webkit-align-items: end;
  -ms-flex-align: end;
  align-items: end;
  grid-column-gap: 36px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
.theme-ux_3_0 .more-ways-grid-item {
  text-align: center;
}
.theme-ux_3_0 .image-2 {
  margin-bottom: 24px;
}
.theme-ux_3_0 .more-ways-search-button {
  width: 100%;
  margin-top: 35px;
  padding-top: 8px;
  padding-bottom: 8px;
  border: 1px solid #525252;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 3px 3px 4px 4px rgba(0, 0, 0, 0.25), 6px 6px 4px 0 #36c974;
  color: #525252;
  font-size: 14px;
  line-height: 24px;
  outline: 0;
}
.theme-ux_3_0 .stay-informed {
  position: relative;
  z-index: 10;
  margin-top: -65px;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #fff;
}
.theme-ux_3_0 .stay-informed-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.theme-ux_3_0 .div-block-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 200px;
  margin-top: -155px;
  margin-left: 93px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.theme-ux_3_0 .div-block-3 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.theme-ux_3_0 .circle {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
}
.theme-ux_3_0 .circle.red {
  margin-bottom: 70px;
  background-color: #ff6542;
}
.theme-ux_3_0 .circle.blue {
  margin-bottom: 70px;
  background-color: #2541b2;
}
.theme-ux_3_0 .circle.orange {
  background-color: #ffb400;
}
.theme-ux_3_0 .image-3 {
  position: absolute;
  left: 50%;
  bottom: -15px;
  -webkit-transform: translate(-50%, 0px);
  -ms-transform: translate(-50%, 0px);
  transform: translate(-50%, 0px);
}
.theme-ux_3_0 .text-block-2 {
  position: absolute;
  left: 16px;
  top: 40px;
  right: 16px;
  color: #fff;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}
.theme-ux_3_0 .image-4 {
  position: absolute;
  left: 50%;
  bottom: -24px;
  -webkit-transform: translate(-50%, 0px);
  -ms-transform: translate(-50%, 0px);
  transform: translate(-50%, 0px);
}
.theme-ux_3_0 .text-block-3 {
  position: absolute;
  left: 16px;
  top: 28px;
  right: 16px;
  color: #fff;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}
.theme-ux_3_0 .heading {
  max-width: 570px;
  margin-bottom: 24px;
}
.theme-ux_3_0 .all-in-one {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #f6f5f1;
}
.theme-ux_3_0 .div-block-4 {
  display: -ms-grid;
  display: grid;
  margin-top: 72px;
  justify-items: center;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  grid-auto-columns: 1fr;
  grid-column-gap: 56px;
  grid-row-gap: 60px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}
.theme-ux_3_0 .image-5 {
  margin-bottom: 32px;
}
.theme-ux_3_0 .text-block-4 {
  margin-bottom: 16px;
  color: #36c974;
  font-size: 15px;
  line-height: 27px;
  font-weight: 500;
}
.theme-ux_3_0 .text-block-5 {
  font-size: 20px;
  line-height: 30px;
}
.theme-ux_3_0 .testimonial-section {
  padding-top: 105px;
  padding-bottom: 135px;
  background-color: #eeeae1;
}
.theme-ux_3_0 .testimonial-grid {
  display: -ms-grid;
  display: grid;
  margin-top: 83px;
  grid-auto-columns: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
.theme-ux_3_0 .div-block-5 {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin-right: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 3px 3px 20px 4px rgba(0, 0, 0, 0.25);
}
.theme-ux_3_0 .div-block-6 {
  position: relative;
}
.theme-ux_3_0 .div-block-7 {
  position: absolute;
  left: 12px;
  top: 12px;
  right: 0px;
  bottom: -12px;
  z-index: 0;
  border: 5px solid #ffb400;
}
.theme-ux_3_0 .div-block-8 {
  padding: 64px 14px 32px 24px;
}
.theme-ux_3_0 .div-block-9 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 24px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f8f8f8;
  color: #2546cb;
  font-size: 20px;
  line-height: 23px;
  font-weight: 700;
}
.theme-ux_3_0 .image-6 {
  width: 64px;
  margin-right: 16px;
}
.theme-ux_3_0 .text-block-6 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
.theme-ux_3_0 .image-7 {
  position: absolute;
  left: 18px;
  top: -36px;
}
.theme-ux_3_0 .disclaimer {
  padding-top: 60px;
  padding-bottom: 60px;
}
.theme-ux_3_0 .text-block-7 {
  margin-bottom: 24px;
  color: #898989;
  line-height: 16px;
  font-weight: 700;
}
.theme-ux_3_0 .div-block-10 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.theme-ux_3_0 .text-block-8 {
  width: 50%;
  color: #898989;
  line-height: 16px;
  font-weight: 800;
}
.theme-ux_3_0 .div-block-11 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.theme-ux_3_0 .footer-link {
  padding-right: 5px;
  padding-left: 5px;
  border-right: 2px solid #2546cb;
  color: #2546cb;
  line-height: 16px;
  font-weight: 700;
  text-decoration: none;
}
.theme-ux_3_0 .footer-link.last {
  padding-right: 0px;
  border-right-width: 0px;
}
.theme-ux_3_0 .footer {
  padding-right: 8px;
  padding-left: 8px;
}
.theme-ux_3_0 .footer-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  padding-right: 34px;
  padding-left: 34px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #ccc;
}
.theme-ux_3_0 .image-8 {
  position: absolute;
  left: 50%;
  bottom: -24px;
  -webkit-transform: translate(-50%, 0px);
  -ms-transform: translate(-50%, 0px);
  transform: translate(-50%, 0px);
}
.theme-ux_3_0 .text-block-9 {
  font-size: 12px;
  line-height: 21px;
  font-weight: 700;
  text-transform: uppercase;
}
.theme-ux_3_0 .navbar {
  padding-right: 8px;
  padding-left: 8px;
  background-color: #fff;
  margin-bottom: 0;
}
.theme-ux_3_0 .text-block-10 {
  font-size: 18px;
  line-height: 27px;
}
.theme-ux_3_0 .image-9 {
  margin-left: 16px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}
.theme-ux_3_0 .signup-form-submit {
  display: inline-block;
  margin-bottom: -40px;
  margin-left: 8px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.theme-ux_3_0 .heading-2 {
  text-align: center;
}
.theme-ux_3_0 .div-block-13 {
  -webkit-transform: perspective(1px) skew(0deg, -5deg);
  -ms-transform: skew(0deg, -5deg);
  transform: skew(0deg, -5deg);
}
.theme-ux_3_0 .landing-hero-header {
  font-size: 36px;
  white-space: nowrap;
}
.theme-ux_3_0 .nav-container {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  padding-right: 34px;
  padding-left: 34px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.theme-ux_3_0 .div-block-14 {
  margin-right: 8px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.theme-ux_3_0 .form-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: -4px;
  margin-bottom: 16px;
  margin-left: -4px;
}
.theme-ux_3_0 .form-row:last-of-type {
  margin-bottom: 0;
}
.theme-ux_3_0 .form-col-6 {
  width: 50%;
  padding-right: 4px;
  padding-left: 4px;
}
.theme-ux_3_0 .form-col-12 {
  width: 100%;
  padding-right: 4px;
  padding-left: 4px;
}
.theme-ux_3_0 .advanced-search-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.theme-ux_3_0 .form-select {
  height: 70px;
  margin-bottom: 0px;
  padding-left: 20px;
  border: 2px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  color: #9d9d9d;
  font-size: 18px;
  line-height: 27px;
}
.theme-ux_3_0 .text-block-11 {
  font-size: 16px;
  line-height: 24px;
}
.theme-ux_3_0 .div-block-15 {
  position: absolute;
  left: 50%;
  top: 8px;
  bottom: 8px;
  width: 424px;
  height: 44px;
  -webkit-transform: translate(-50%, 0px);
  -ms-transform: translate(-50%, 0px);
  transform: translate(-50%, 0px);
}
.theme-ux_3_0 .search-input {
  height: 44px;
  margin-bottom: 0px;
  padding-left: 56px;
  border: 2px solid #ccc;
  border-radius: 5px;
  background-image: url(/assets/ux3/images/Union-2_1Union\ 2.png);
  background-position: 16px 10px;
  background-size: 24px 24px;
  background-repeat: no-repeat;
  font-size: 18px;
  line-height: 26px;
}
.theme-ux_3_0 .form-block {
  margin-bottom: 0px;
}
.theme-ux_3_0 .nav-menu {
  position: static;
}
.theme-ux_3_0 .return-home {
  padding: 4px 20px;
  border: 3px solid #ffb400;
  border-radius: 5px;
  background-color: transparent;
  color: #525252;
  line-height: 22px;
  font-weight: 500;
}
.theme-ux_3_0 .srp-container {
  position: relative;
  padding: 64px 42px;
  background-color: #eeeae1;
  overflow-x: hidden;
}
.theme-ux_3_0 .modal-container {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.5);
}
.theme-ux_3_0 .notification-modal {
  width: 576px;
  margin-top: 120px;
  margin-right: auto;
  margin-left: auto;
  box-shadow: 3px 3px 4px 0 rgba(0, 0, 0, 0.25);
}
.theme-ux_3_0 .notification-modal-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 24px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #c4c4c4;
  border-right: 1px solid #c4c4c4;
  border-left: 1px solid #c4c4c4;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  background-color: #f8f8f8;
}
.theme-ux_3_0 .notification-modal-heading {
  margin-left: 8px;
  color: #fa6341;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  text-transform: uppercase;
}
.theme-ux_3_0 .notification-modal-body {
  padding: 24px 24px 40px;
  border-right: 1px solid #c4c4c4;
  border-bottom: 1px solid #c4c4c4;
  border-left: 1px solid #c4c4c4;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  background-color: #fff;
  text-align: center;
}
.theme-ux_3_0 .red {
  color: #ff4b55;
}
.theme-ux_3_0 .notification-modal-btn {
  display: inline-block;
  margin-top: 24px;
  margin-right: auto;
  margin-left: auto;
  padding: 7px 12px;
  border-radius: 5px;
  background-color: #2546cb;
  box-shadow: inset 1px 1px 4px 0 rgba(0, 0, 0, 0.25), inset -1px -1px 4px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
.theme-ux_3_0 .notification-description {
  font-size: 12px;
  line-height: 18px;
  text-align: left;
}
.theme-ux_3_0 .text-span {
  color: #fa6341;
  font-weight: 700;
}
.theme-ux_3_0 .signup-container {
  position: relative;
  overflow: hidden;
  padding: 80px 42px;
  background-color: #eeeae1;
}
.theme-ux_3_0 .div-block-16 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 72px;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.theme-ux_3_0 .signup-profile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: 1px solid #acacac;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 3px 3px 4px 0 rgba(0, 0, 0, 0.25);
}
.theme-ux_3_0 .membership-features {
  width: 440px;
  border: 1px solid #ffb400;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 3px 3px 4px 0 rgba(0, 0, 0, 0.25);
}
.theme-ux_3_0 .profile-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.theme-ux_3_0 .avatar {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 128px;
  height: 128px;
  margin-right: 28px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border: 1px solid #525252;
  border-radius: 50%;
  text-align: center;
}
.theme-ux_3_0 .lock-icon {
  position: absolute;
  left: 84px;
  bottom: 1.5px;
}
.theme-ux_3_0 .div-block-20 {
  padding-top: 10px;
}
.theme-ux_3_0 .name-age {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 36px;
}
.theme-ux_3_0 .locations {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 9px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.theme-ux_3_0 .signin-now h1 {
  color: #000000;
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
}
.theme-ux_3_0 .label {
  margin-right: 8px;
  font-weight: 700;
}
.theme-ux_3_0 .relative-label {
  margin-right: 17px;
  font-weight: 700;
}
.theme-ux_3_0 .profile-body {
  padding: 20px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  background-color: #f8f8f8;
}
.theme-ux_3_0 .profile-body-header {
  margin-top: 0px;
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 25px;
  text-align: center;
}
.theme-ux_3_0 .profile-body-grid {
  justify-items: start;
  grid-column-gap: 2px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}
.theme-ux_3_0 .profile-grid-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 11px;
}
.theme-ux_3_0 .unlock-icon {
  margin-right: 4px;
}
.theme-ux_3_0 .membership-features-header {
  margin-right: 8px;
  margin-left: 8px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #ffb400;
}
.theme-ux_3_0 .membership-features-heading {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 16px;
  text-align: center;
}
.theme-ux_3_0 .membership-features-body {
  position: relative;
  padding: 48px 60px;
  text-align: center;
}
.theme-ux_3_0 .membership-list {
  padding-left: 0px;
  list-style-type: none;
}
.theme-ux_3_0 .membership-list-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.theme-ux_3_0 .check-icon {
  margin-right: 8px;
}
.theme-ux_3_0 .unlimited {
  margin-right: 8px;
  color: #2546cb;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
.theme-ux_3_0 .text-block-13 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.theme-ux_3_0 .image-10 {
  position: absolute;
  top: 30px;
  right: -26px;
}
.theme-ux_3_0 .div-block-21 {
  margin-bottom: 36px;
}
.theme-ux_3_0 .plus-much-more {
  color: #525252;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  text-decoration: none;
}
.theme-ux_3_0 .signup-testimonial {
  margin-bottom: 80px;
}
.theme-ux_3_0 .signup-form-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 80px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.theme-ux_3_0 .signup-form {
  width: 60%;
  margin-right: 20px;
  margin-bottom: 0px;
  border: 1px solid #2546cb;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 3px 3px 4px 0 rgba(0, 0, 0, 0.25);
}
.theme-ux_3_0 .signup-form-header {
  padding-right: 8px;
  padding-left: 8px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.theme-ux_3_0 .div-block-22 {
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #2546cb;
}
.theme-ux_3_0 .signup-form-heading {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 16px;
  text-align: center;
}
.theme-ux_3_0 .signup-form-body {
  padding: 40px 18px;
  text-align: center;
}
.theme-ux_3_0 .signup-form-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: -10px;
  margin-bottom: 24px;
  margin-left: -10px;
}
.theme-ux_3_0 .signup-form-col {
  position: relative;
  padding-right: 10px;
  padding-left: 10px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.theme-ux_3_0 .text-block-14 {
  line-height: 21px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1em;
}
.theme-ux_3_0 .signup-form-col--6 {
  width: 50%;
  padding-right: 10px;
  padding-left: 10px;
}
.theme-ux_3_0 .signup-form-input {
  height: 48px;
  margin-bottom: 0px;
  padding-left: 16px;
  border: 2px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
}
.theme-ux_3_0 .signup-form-input::-webkit-input-placeholder {
  color: #9d9d9d;
}
.theme-ux_3_0 .signup-form-input:-ms-input-placeholder {
  color: #9d9d9d;
}
.theme-ux_3_0 .signup-form-input::-ms-input-placeholder {
  color: #9d9d9d;
}
.theme-ux_3_0 .signup-form-input::placeholder {
  color: #9d9d9d;
}
.theme-ux_3_0 .signup-form-input.expiration-month {
  width: 59px;
}
.theme-ux_3_0 .signup-form-input.expiration-year {
  width: 70px;
}
.theme-ux_3_0 .signup-form-input.cvc {
  width: 75px;
}
.theme-ux_3_0 .signup-form-p {
  margin-bottom: 40px;
  color: #acacac;
  font-size: 12px;
  line-height: 18px;
  text-align: left;
}
.theme-ux_3_0 .activate-account {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: 1px solid #fa6341;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 3px 3px 4px 0 rgba(0, 0, 0, 0.25);
}
.theme-ux_3_0 .activate-account-header {
  margin-right: 8px;
  margin-left: 8px;
  padding: 12px 40px;
  border-bottom: 1px solid #fa6341;
}
.theme-ux_3_0 .activate-account-body {
  padding: 15px 20px 40px;
  text-align: center;
}
.theme-ux_3_0 .signup-disclaimer {
  margin-bottom: 0px;
  color: #acacac;
  font-size: 14px;
  line-height: 21px;
  font-weight: 700;
}
.theme-ux_3_0 .div-block-23 {
  position: absolute;
  left: -50%;
  top: -100px;
  right: -50%;
  bottom: auto;
  z-index: 0;
  height: 600px;
  background-color: #f6f5f1;
  -webkit-transform: skew(0deg, 5deg);
  -ms-transform: skew(0deg, 5deg);
  transform: skew(0deg, 5deg);
}
.theme-ux_3_0 .signup-header {
  position: relative;
}
.theme-ux_3_0 .paragraph {
  font-weight: 700;
  text-align: center;
}
.theme-ux_3_0 .link-block {
  margin-right: auto;
  margin-left: 10px;
  text-decoration: none;
}
.theme-ux_3_0 .text-block-15 {
  color: #525252;
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  text-decoration: none;
}
.theme-ux_3_0 .search-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 70px;
  padding: 11px 24px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  background-color: #23ce6b;
  box-shadow: inset 3px 3px 4px 0 rgba(0, 0, 0, 0.25), inset -3px -3px 4px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  text-decoration: none;
}
.theme-ux_3_0 .get-report-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 48px;
  padding: 11px 100px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  background-color: #23ce6b;
  box-shadow: inset 3px 3px 4px 0 rgba(0, 0, 0, 0.25), inset -3px -3px 4px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  text-decoration: none;
}
.theme-ux_3_0 .div-block-24 {
  margin-right: -10px;
  margin-left: -10px;
  padding-right: 10px;
  padding-bottom: 16px;
  padding-left: 10px;
  border-bottom: 1px solid #2546cb;
}
.theme-ux_3_0 .div-block-25 {
  padding-top: 32px;
  padding-bottom: 10px;
}
.theme-ux_3_0 .div-block-25.billing {
  padding-top: 0;
  padding-bottom: 10px;
}
.theme-ux_3_0 .heading-3 {
  margin-bottom: 0px;
  color: #fa6341;
}
.theme-ux_3_0 .text-block-17 {
  margin-bottom: 32px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.theme-ux_3_0 .div-block-26 {
  position: absolute;
  top: 0px;
  right: 10px;
  bottom: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.theme-ux_3_0 .image-12 {
  margin-right: 5px;
}
.theme-ux_3_0 .text-block-18 {
  margin-right: 4px;
  margin-left: 4px;
  color: #000;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
}
.theme-ux_3_0 .div-block-18 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.theme-ux_3_0 .div-block-19 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.theme-ux_3_0 .form-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.theme-ux_3_0 .div-block-17 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.theme-ux_3_0 .div-block-27 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.theme-ux_3_0 .text-block-19 {
  margin-left: 10px;
  color: #c00;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
}
.theme-ux_3_0 .signup-form-col-checkout-left {
  width: 50%;
  padding-right: 10px;
  padding-left: 10px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.theme-ux_3_0 .zip-code-input {
  padding-right: 10px;
  padding-left: 10px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}
.theme-ux_3_0 .text-block-20 {
  margin-bottom: 40px;
  font-size: 32px;
  line-height: 48px;
}
.theme-ux_3_0 .search.target.name {
  color: #ff6542;
}
.theme-ux_3_0 .srp-table {
  margin-right: 20px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.theme-ux_3_0 .srp-table-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  padding: 8px 25px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 6px;
  background-color: #2546cb;
  color: #fff;
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
}
.theme-ux_3_0 .full-name {
  width: 20%;
  margin-right: 1%;
}
.theme-ux_3_0 .header-age {
  width: 10%;
  margin-right: 1%;
}
.theme-ux_3_0 .header-locations {
  width: 24%;
  margin-right: 1%;
}
.theme-ux_3_0 .header-relatives {
  width: 24%;
  margin-right: 1%;
}
.theme-ux_3_0 .header-detail {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}
.theme-ux_3_0 .srp-table-body {
  margin-bottom: 48px;
}
.theme-ux_3_0 .srp-table-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
  padding: 25px;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border: 1px solid #acacac;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 3px 3px 4px 0 rgba(0, 0, 0, 0.25);
}
.theme-ux_3_0 .srp-item-name {
  width: 20%;
  margin-right: 1%;
  text-align: center;
}
.theme-ux_3_0 .srp-name {
  margin-top: 0px;
  color: #2546cb;
  text-align: left;
}
.theme-ux_3_0 .srp-avatar {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 64px;
  height: 64px;
  margin-right: auto;
  margin-left: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border: 1px solid #525252;
  border-radius: 50%;
  text-align: center;
}
.theme-ux_3_0 .image-13 {
  width: 32px;
}
.theme-ux_3_0 .srp-lock-icon {
  position: absolute;
  right: 5px;
  bottom: 1.5px;
  width: 14px;
}
.theme-ux_3_0 .srp-item-age {
  width: 10%;
  margin-right: 1%;
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
}
.theme-ux_3_0 .srp-item-locations {
  width: 24%;
  margin-right: 1%;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.theme-ux_3_0 .srp-view-more {
  display: inline-block;
  margin-top: 2px;
  color: #2546cb;
  cursor: pointer;
}
.theme-ux_3_0 .srp-item-relatives {
  width: 24%;
  margin-right: 1%;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.theme-ux_3_0 .srp-item-location {
  max-width: 160px;
}
.theme-ux_3_0 .srp-item-relative {
  max-width: 160px;
}
.theme-ux_3_0 .srp-item-detail {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.theme-ux_3_0 .srp-full-report {
  padding: 7px 13px;
  border-radius: 5px;
  background-color: #23ce6b;
  box-shadow: inset 1px 1px 4px 0 rgba(0, 0, 0, 0.25), inset -1px -1px 4px 0 rgba(0, 0, 0, 0.25);
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}
.theme-ux_3_0 .div-block-28 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 64px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.theme-ux_3_0 .div-block-29 {
  width: 325px;
  padding: 40px 30px 60px;
  border: 1px solid #acacac;
  border-radius: 6px;
}
.theme-ux_3_0 .heading-4 {
  color: #2546cb;
  line-height: 27px;
}
.theme-ux_3_0 .div-block-30 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 32px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.theme-ux_3_0 .refine-form-submit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: -40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.theme-ux_3_0 .refine-form {
  text-align: center;
}
.theme-ux_3_0 .refine-search-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 48px;
  padding: 11px 12px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  background-color: #23ce6b;
  box-shadow: inset 3px 3px 4px 0 rgba(0, 0, 0, 0.25), inset -3px -3px 4px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
  text-decoration: none;
}
.theme-ux_3_0 .image-9-copy {
  width: 20px;
  margin-left: 6px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}
.theme-ux_3_0 .heading-5 {
  margin-top: 0px;
  line-height: 27px;
}
.theme-ux_3_0 .list {
  padding-left: 20px;
}
.theme-ux_3_0 .text-block-21 {
  line-height: 21px;
  font-weight: 500;
}
.theme-ux_3_0 .div-block-31 {
  margin-bottom: 24px;
}
.theme-ux_3_0 .srp-table-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.theme-ux_3_0 .pagination-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  margin-left: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.theme-ux_3_0 .signup-form-select {
  height: 48px;
  margin-bottom: 0px;
  padding-left: 16px;
  border: 2px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  color: #9d9d9d;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
}
.theme-ux_3_0 .srp-disclaimer {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  color: #898989;
  font-size: 14px;
  line-height: 21px;
}
.theme-ux_3_0 .srp-wrapper {
  position: relative;
  z-index: 1;
}
.theme-ux_3_0 .div-block-32 {
  position: absolute;
  left: -50%;
  top: -100px;
  right: -50%;
  bottom: auto;
  z-index: 0;
  height: 1000px;
  background-color: #f6f5f1;
  -webkit-transform: skew(0deg, 5deg);
  -ms-transform: skew(0deg, 5deg);
  transform: skew(0deg, 5deg);
}
.theme-ux_3_0 .refine-form-col {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
  padding-right: 10px;
  padding-left: 10px;
}
.theme-ux_3_0 .refine-form-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: -10px;
  margin-left: -10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.theme-ux_3_0 .image-15 {
  margin-bottom: 15px;
}
.theme-ux_3_0 .paragraph-2 {
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  text-align: left;
}
.theme-ux_3_0 .loader-container {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  margin-top: -120px;
  padding: 200px 42px 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #f6f5f1;
}
.theme-ux_3_0 .loader-wrapper {
  margin-bottom: 100px;
  text-align: center;
}
.theme-ux_3_0 .loader-heading {
  margin-bottom: 8px;
  font-size: 36px;
  line-height: 54px;
  font-weight: 400;
  text-align: center;
}
.theme-ux_3_0 .text-block-22 {
  margin-bottom: 50px;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
}
.theme-ux_3_0 .loader-spinner {
  position: relative;
  width: 160px;
  height: 160px;
  margin-right: auto;
  margin-left: auto;
}
.theme-ux_3_0 .load-spinner-loading {
  animation-name: rotate;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.theme-ux_3_0 .image-16 {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.theme-ux_3_0 .loader-disclaimer {
  margin-bottom: 0px;
  color: #acacac;
  font-size: 14px;
  line-height: 21px;
}
.theme-ux_3_0 .text-block-23 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
}
.theme-ux_3_0 .text-block-24 {
  margin-top: 48px;
  margin-bottom: 48px;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  text-align: center;
}
.theme-ux_3_0 .div-block-33 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.theme-ux_3_0 .div-block-34 {
  margin-right: 8px;
  margin-left: 8px;
  padding: 12px 22px;
  border: 2px solid #23ce6b;
  border-radius: 5px;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
}
.theme-ux_3_0 .link {
  color: #2546cb;
  font-size: 18px;
  line-height: 27px;
  cursor: pointer;
}
.theme-ux_3_0 .form-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 100px;
  padding-left: 100px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: transparent;
}
.theme-ux_3_0 .loader-submit-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 191px;
  height: 70px;
  padding: 17px 24px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-radius: 5px;
  background-color: #23ce6b;
  box-shadow: inset 3px 3px 4px 0 rgba(0, 0, 0, 0.25), inset -3px -3px 4px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  text-decoration: none;
}
.theme-ux_3_0 .loader-submit-mag {
  width: 30px;
  margin-left: 16px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}
.theme-ux_3_0 .loader-form-select {
  height: 70px;
  margin-right: 9px;
  margin-bottom: 0px;
  padding-left: 20px;
  border: 2px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  color: #9d9d9d;
  font-size: 18px;
  line-height: 27px;
}
.theme-ux_3_0 .loader-form-input {
  height: 70px;
  max-width: 400px;
  margin-right: 16px;
  margin-bottom: 0px;
  padding-top: 21px;
  padding-bottom: 21px;
  padding-left: 20px;
  border: 2px solid #ccc;
  border-radius: 5px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}
.theme-ux_3_0 .loader-form-input::-webkit-input-placeholder {
  color: #9d9d9d;
}
.theme-ux_3_0 .loader-form-input:-ms-input-placeholder {
  color: #9d9d9d;
}
.theme-ux_3_0 .loader-form-input::-ms-input-placeholder {
  color: #9d9d9d;
}
.theme-ux_3_0 .loader-form-input::placeholder {
  color: #9d9d9d;
}
.theme-ux_3_0 .form-block-2 {
  margin-top: 48px;
  margin-bottom: 56px;
}
.theme-ux_3_0 .form-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 100px;
  padding-left: 100px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: transparent;
}
.theme-ux_3_0 .heading-6 {
  margin-bottom: 40px;
  font-weight: 400;
}
.theme-ux_3_0 .div-block-35 {
  display: -ms-grid;
  display: grid;
  width: 900px;
  margin-right: auto;
  margin-bottom: 56px;
  margin-left: auto;
  justify-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 125px;
  grid-row-gap: 40px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}
.theme-ux_3_0 .div-block-36 {
  position: relative;
  width: 216px;
  padding: 24px 16px;
  border-radius: 5px;
  background-color: #f6f5f1;
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.25), -1px -1px 4px 0 #fff;
  color: #000;
  font-size: 18px;
  line-height: 27px;
}
.theme-ux_3_0 .image-17 {
  height: 64px;
  margin-bottom: 24px;
}
.theme-ux_3_0 .checkbox-field {
  margin-bottom: 0px;
}
.theme-ux_3_0 .checkbox-label {
  display: none;
  margin-bottom: 0px;
}
.theme-ux_3_0 .checkbox {
  position: absolute;
  left: 16px;
  top: 16px;
  margin-left: 0px;
}
.theme-ux_3_0 .form-block-3 {
  margin-bottom: 0px;
}
.theme-ux_3_0 .build-my-report {
  display: inline-block;
  height: 70px;
  margin-bottom: 24px;
  padding: 17px 24px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  background-color: #23ce6b;
  box-shadow: inset 3px 3px 4px 0 rgba(0, 0, 0, 0.25), inset -3px -3px 4px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  text-decoration: none;
}
.theme-ux_3_0 .loader-container1 {
  position: relative;
  min-height: 100vh;
  margin-top: -120px;
  padding: 180px 42px 60px;
  background-color: #f6f5f1;
}
.theme-ux_3_0 .div-block-37 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 895px;
  margin-top: 48px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.theme-ux_3_0 .text-block-25 {
  margin-right: 7px;
  color: #fa6341;
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
}
.theme-ux_3_0 .paragraph-3 {
  margin-bottom: 0px;
  font-size: 18px;
  line-height: 27px;
  text-align: left;
}
.theme-ux_3_0 .content {
  font-family: Poppins, sans-serif;
  color: #525252;
  font-size: 14px;
  line-height: 20px;
}
.theme-ux_3_0 .search-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 70px;
  padding: 11px 24px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  background-color: #23ce6b;
  box-shadow: inset 3px 3px 4px 0 rgba(0, 0, 0, 0.25), inset -3px -3px 4px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  text-decoration: none;
}
.theme-ux_3_0 .rr-container {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  margin-top: -120px;
  padding-top: 160px;
  padding-bottom: 40px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  background-color: #f6f5f1;
}
.theme-ux_3_0 .scanning-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 300px;
  min-width: 300px;
  margin-top: -40px;
  margin-bottom: -40px;
  padding-top: 40px;
  padding-right: 35px;
  padding-left: 35px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  background-color: #eeeae1;
}
.theme-ux_3_0 .div-block-38 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: -40px;
  margin-bottom: -40px;
  padding: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.theme-ux_3_0 .heading-7 {
  margin-bottom: 40px;
  font-weight: 400;
  text-align: center;
}
.theme-ux_3_0 .div-block-39 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.theme-ux_3_0 .div-block-40 {
  position: relative;
  width: 400px;
  height: 40px;
  margin-right: 16px;
  padding-right: 20px;
  padding-left: 20px;
  border-radius: 30px;
  background-color: #eeeae1;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.25), inset 0 -2px 4px 0 #fff;
}
.theme-ux_3_0 .div-block-41 {
  position: absolute;
  left: 20px;
  top: 18px;
  right: 20px;
  z-index: 1;
  height: 5px;
  border-radius: 5px;
  background-color: #c6c2b8;
  box-shadow: inset 0 -2px 4px 0 #fff;
}
.theme-ux_3_0 .progress {
  position: relative;
  z-index: 2;
  width: 0%;
  height: 7px;
  margin-top: 17px;
  border-radius: 5px;
  background-color: #23ce6b;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.25), inset 0 -2px 4px 0 hsla(0, 0%, 100%, 0.25);
}
.theme-ux_3_0 .div-block-42 {
  height: 40px;
  padding: 9px;
  border-radius: 30px;
  background-color: #eeeae1;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.25), inset 0 -2px 4px 0 #fff;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  width: 66px;
  text-align: center;
}
.theme-ux_3_0 .div-block-43 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 982px;
  margin-bottom: 40px;
  padding: 53px 80px 75px 120px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #ffb400;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 3px 3px 4px 0 rgba(0, 0, 0, 0.25);
}
.theme-ux_3_0 .heading-8 {
  margin-bottom: 30px;
  color: #fa6341;
  font-size: 24px;
  line-height: 36px;
  text-align: left;
}
.theme-ux_3_0 .div-block-44 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.theme-ux_3_0 .div-block-45 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 64px;
  height: 64px;
  margin-right: 50px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #525252;
  border-radius: 50%;
}
.theme-ux_3_0 .image-18 {
  width: 32px;
  height: 48px;
}
.theme-ux_3_0 .image-19 {
  position: absolute;
  right: 4px;
  bottom: 7px;
}
.theme-ux_3_0 .paragraph-4 {
  font-size: 18px;
  line-height: 24px;
}
.theme-ux_3_0 .div-block-46 {
  position: absolute;
  left: 20px;
  top: -30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  height: 100px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background-color: #ffb400;
}
.theme-ux_3_0 .image-20 {
  margin-right: 50px;
}
.theme-ux_3_0 .div-block-47 {
  position: relative;
  margin-bottom: 40px;
}
.theme-ux_3_0 .image-21 {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.theme-ux_3_0 .heading-9 {
  margin-top: 0px;
  margin-bottom: 28px;
  color: #2546cb;
  font-size: 18px;
  line-height: 27px;
}
.theme-ux_3_0 .list-2 {
  list-style-type: none;
}
.theme-ux_3_0 .div-block-48 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.theme-ux_3_0 .div-block-49 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  line-height: 27px;
}
.theme-ux_3_0 .image-22 {
  width: 12px;
  height: 12px;
  margin-right: 12px;
}
.theme-ux_3_0 .paragraph-5 {
  font-size: 14px;
  line-height: 21px;
}
.theme-ux_3_0 .div-block-50 {
  position: absolute;
  left: 20px;
  top: -30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  height: 100px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background-color: #2546cb;
}
.theme-ux_3_0 .image-23 {
  height: 50px;
}
.theme-ux_3_0 .div-block-51 {
  position: absolute;
  left: 20px;
  top: -30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  height: 100px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fa6341;
}
.theme-ux_3_0 .image-24 {
  height: 60px;
}
.theme-ux_3_0 .div-block-52 {
  position: absolute;
  left: 20px;
  top: -30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  height: 100px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
}
.theme-ux_3_0 .div-block-53 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 982px;
  margin-bottom: 40px;
  padding: 56px 40px 75px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  border: 1px solid #ffb400;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 3px 3px 4px 0 rgba(0, 0, 0, 0.25);
}
.theme-ux_3_0 .div-block-54 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  height: 100px;
  margin-left: 24px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-radius: 50%;
}
.theme-ux_3_0 .list-3 {
  margin-bottom: 0px;
  padding-left: 20px;
}
.theme-ux_3_0 .text-block-26 {
  font-size: 16px;
  line-height: 24px;
}
.theme-ux_3_0 .get-report-modal {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 576px;
  margin-top: 120px;
  margin-right: auto;
  margin-left: auto;
  padding: 32px 90px 40px 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 1px solid #c4c4c4;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 3px 3px 4px 0 rgba(0, 0, 0, 0.25);
}
.theme-ux_3_0 .text-span-3 {
  color: #fa6341;
  font-weight: 700;
}
.theme-ux_3_0 .heading-10 {
  margin-top: 0px;
  margin-bottom: 25px;
  color: #2546cb;
  line-height: 36px;
}
.theme-ux_3_0 .image-25 {
  position: absolute;
  width: 56px;
  height: 56px;
}
.theme-ux_3_0 .image-26 {
  position: absolute;
  top: 20px;
  right: 20px;
}
.theme-ux_3_0 .image-31 {
  width: 12px;
  height: 12px;
  margin-right: 12px;
}
.theme-ux_3_0 .continue-btn {
  display: inline-block;
  margin-top: 24px;
  margin-right: auto;
  margin-left: auto;
  padding: 7px 12px;
  border-radius: 5px;
  background-color: #2546cb;
  box-shadow: inset 1px 1px 4px 0 rgba(0, 0, 0, 0.25), inset -1px -1px 4px 0 rgba(0, 0, 0, 0.25);
  -webkit-transform: translate(29px, 0px);
  -ms-transform: translate(29px, 0px);
  transform: translate(29px, 0px);
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
.theme-ux_3_0 .search-name-input {
  height: 70px;
  margin-right: 8px;
  margin-bottom: 0px;
  padding-top: 21px;
  padding-bottom: 21px;
  padding-left: 20px;
  border: 2px solid #ccc;
  border-radius: 5px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}
.theme-ux_3_0 .search-name-input::-webkit-input-placeholder {
  color: #9d9d9d;
}
.theme-ux_3_0 .search-name-input:-ms-input-placeholder {
  color: #9d9d9d;
}
.theme-ux_3_0 .search-name-input::-ms-input-placeholder {
  color: #9d9d9d;
}
.theme-ux_3_0 .search-name-input::placeholder {
  color: #9d9d9d;
}
.theme-ux_3_0 .search-name-submit {
  display: inline-block;
  margin-bottom: -40px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.theme-ux_3_0 .heading-4-copy {
  color: #2546cb;
  line-height: 27px;
}
.theme-ux_3_0 .heading-8-copy {
  margin-bottom: 30px;
  color: #fa6341;
  font-size: 24px;
  line-height: 36px;
  text-align: left;
}
@media screen and (min-width: 1280px) {
  .theme-ux_3_0 .form-input {
    padding-left: 40px;
  }
  .theme-ux_3_0 .more-ways-search-button {
    font-size: 20px;
    line-height: 30px;
  }
  .theme-ux_3_0 .div-block-5 {
    margin-right: 30px;
  }
  .theme-ux_3_0 .div-block-7 {
    left: 30px;
    top: 30px;
    bottom: -30px;
  }
  .theme-ux_3_0 .div-block-8 {
    padding-right: 40px;
    padding-left: 40px;
  }
  .theme-ux_3_0 .image-6 {
    width: auto;
  }
  .theme-ux_3_0 .text-block-9 {
    font-size: 18px;
    line-height: 27px;
  }
  .theme-ux_3_0 .landing-hero-header {
    font-size: 48px;
  }
  .theme-ux_3_0 .form-select {
    padding-left: 40px;
  }
  .theme-ux_3_0 .signup-container {
    padding-right: 156px;
    padding-left: 156px;
  }
  .theme-ux_3_0 .profile-header {
    padding: 32px;
  }
  .theme-ux_3_0 .profile-body {
    padding: 32px;
    background-color: #f8f8f8;
  }
  .theme-ux_3_0 .profile-body-header {
    margin-top: 0px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }
  .theme-ux_3_0 .profile-body-grid {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    grid-column-gap: 5px;
    grid-row-gap: 20px;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
  }
  .theme-ux_3_0 .profile-grid-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    color: #000;
    font-size: 12px;
    line-height: 21px;
  }
  .theme-ux_3_0 .unlock-icon {
    margin-right: 6px;
  }
  .theme-ux_3_0 .signup-form-input {
    padding-left: 16px;
  }
  .theme-ux_3_0 .signup-form-input.expiration-date {
    width: 130px;
    padding-left: 16px;
  }
  .theme-ux_3_0 .signup-form-input.cvc {
    width: 130px;
  }
  .theme-ux_3_0 .div-block-19 {
    margin-right: 10px;
  }
  .theme-ux_3_0 .signup-form-col-checkout-left {
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }
  .theme-ux_3_0 .zip-code-input {
    width: 50%;
  }
  .theme-ux_3_0 .signup-form-select {
    padding-left: 16px;
  }
  .theme-ux_3_0 .loader-form-select {
    padding-left: 40px;
  }
  .theme-ux_3_0 .loader-form-input {
    padding-left: 40px;
  }
  .theme-ux_3_0 .div-block-38 {
    padding-right: 80px;
    padding-left: 80px;
  }
  .theme-ux_3_0 .div-block-40 {
    width: 600px;
  }
  .theme-ux_3_0 .div-block-43 {
    padding-right: 100px;
    padding-left: 150px;
  }
  .theme-ux_3_0 .heading-8 {
    font-size: 28px;
    line-height: 42px;
  }
  .theme-ux_3_0 .paragraph-4 {
    font-size: 20px;
    line-height: 30px;
  }
  .theme-ux_3_0 .div-block-46 {
    width: 160px;
    height: 160px;
  }
  .theme-ux_3_0 .paragraph-5 {
    font-size: 18px;
    line-height: 27px;
  }
  .theme-ux_3_0 .div-block-50 {
    width: 160px;
    height: 160px;
  }
  .theme-ux_3_0 .image-23 {
    height: 80px;
  }
  .theme-ux_3_0 .div-block-51 {
    width: 160px;
    height: 160px;
  }
  .theme-ux_3_0 .image-24 {
    height: 100px;
  }
  .theme-ux_3_0 .div-block-52 {
    width: 160px;
    height: 160px;
  }
  .theme-ux_3_0 .div-block-53 {
    padding-right: 100px;
    padding-left: 150px;
  }
  .theme-ux_3_0 .div-block-54 {
    width: 160px;
    height: 160px;
  }
  .theme-ux_3_0 .search-name-input {
    padding-left: 40px;
  }
  .theme-ux_3_0 .heading-8-copy {
    font-size: 28px;
    line-height: 42px;
  }
}
@media screen and (min-width: 1920px) {
  .theme-ux_3_0 .more-ways {
    margin-top: -100px;
    padding-bottom: 220px;
  }
  .theme-ux_3_0 .stay-informed {
    margin-top: -90px;
  }
  .theme-ux_3_0 .profile-grid-item {
    font-size: 14px;
  }
  .theme-ux_3_0 .unlock-icon {
    margin-right: 12px;
  }
  .theme-ux_3_0 .signup-form-container {
    margin-bottom: 80px;
  }
  .theme-ux_3_0 .signup-form-input.expiration-date {
    width: 210px;
  }
  .theme-ux_3_0 .signup-form-input.cvc {
    width: 210px;
  }
  .theme-ux_3_0 .activate-account-header {
    padding-right: 90px;
    padding-left: 90px;
  }
  .theme-ux_3_0 .activate-account-body {
    padding-right: 60px;
    padding-left: 60px;
  }
  .theme-ux_3_0 .signup-disclaimer {
    margin-bottom: 64px;
    color: #acacac;
    font-size: 14px;
    line-height: 21px;
    font-weight: 700;
  }
  .theme-ux_3_0 .link-block {
    margin-left: 20px;
  }
  .theme-ux_3_0 .text-block-15 {
    font-size: 14px;
    line-height: 21px;
  }
  .theme-ux_3_0 .div-block-19 {
    margin-right: 20px;
  }
  .theme-ux_3_0 .signup-form-col-checkout-left {
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }
  .theme-ux_3_0 .zip-code-input {
    width: 50%;
  }
  .theme-ux_3_0 .signup-form-select {
    padding-left: 16px;
  }
  .theme-ux_3_0 .div-block-43 {
    max-width: 982px;
    margin-bottom: 40px;
  }
  .theme-ux_3_0 .heading-8 {
    font-size: 36px;
    line-height: 48px;
  }
  .theme-ux_3_0 .paragraph-4 {
    font-size: 24px;
    line-height: 36px;
  }
  .theme-ux_3_0 .paragraph-5 {
    font-size: 18px;
    line-height: 27px;
  }
  .theme-ux_3_0 .div-block-53 {
    max-width: 982px;
    margin-bottom: 40px;
  }
  .theme-ux_3_0 .heading-8-copy {
    font-size: 36px;
    line-height: 48px;
  }
}
@media screen and (max-width: 991px) {
  .theme-ux_3_0 h1 {
    font-size: 32px;
    line-height: 40px;
  }
  .theme-ux_3_0 p {
    font-size: 16px;
    line-height: 24px;
  }
  .theme-ux_3_0 .container {
    padding-right: 42px;
    padding-left: 42px;
  }
  .theme-ux_3_0 .nav-sign {
    padding-right: 10px;
    padding-left: 10px;
  }
  .theme-ux_3_0 .landing-hero {
    padding-top: 56px;
  }
  .theme-ux_3_0 .hero-wrapper {
    margin-right: 40px;
    margin-left: 40px;
  }
  .theme-ux_3_0 .form-input {
    height: 48px;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 16px;
    font-size: 14px;
    line-height: 21px;
  }
  .theme-ux_3_0 .signup-form-submit-btn {
    height: 48px;
    padding: 10px 100px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    line-height: 28px;
  }
  .theme-ux_3_0 .more-ways {
    padding-top: 90px;
    padding-bottom: 171px;
  }
  .theme-ux_3_0 .more-ways-grid {
    grid-column-gap: 25px;
  }
  .theme-ux_3_0 .image-2 {
    height: 48px;
  }
  .theme-ux_3_0 .more-ways-search-button {
    padding-right: 5px;
    padding-left: 5px;
    font-size: 14px;
    line-height: 24px;
  }
  .theme-ux_3_0 .stay-informed {
    margin-top: -86px;
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .theme-ux_3_0 .div-block-2 {
    width: 150px;
    margin-top: -110px;
    margin-left: 60px;
  }
  .theme-ux_3_0 .circle.red {
    width: 150px;
    height: 150px;
  }
  .theme-ux_3_0 .circle.blue {
    width: 150px;
    height: 150px;
  }
  .theme-ux_3_0 .circle.orange {
    width: 150px;
    height: 150px;
  }
  .theme-ux_3_0 .image-3 {
    width: 96px;
  }
  .theme-ux_3_0 .text-block-2 {
    top: 30px;
    font-size: 16px;
    line-height: 24px;
  }
  .theme-ux_3_0 .image-4 {
    width: 48px;
  }
  .theme-ux_3_0 .text-block-3 {
    top: 25px;
    font-size: 16px;
    line-height: 24px;
  }
  .theme-ux_3_0 .all-in-one {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .theme-ux_3_0 .div-block-4 {
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
  }
  .theme-ux_3_0 .text-block-4 {
    font-size: 16px;
    line-height: 24px;
  }
  .theme-ux_3_0 .text-block-5 {
    font-size: 16px;
    line-height: 24px;
  }
  .theme-ux_3_0 .testimonial-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .theme-ux_3_0 .testimonial-grid {
    margin-top: 76px;
    grid-column-gap: 20px;
  }
  .theme-ux_3_0 .div-block-5 {
    margin-right: 12px;
  }
  .theme-ux_3_0 .div-block-7 {
    left: 12px;
    top: 12px;
    bottom: -12px;
  }
  .theme-ux_3_0 .div-block-8 {
    padding: 48px 14px 24px 24px;
  }
  .theme-ux_3_0 .div-block-9 {
    font-size: 14px;
    line-height: 16px;
  }
  .theme-ux_3_0 .image-6 {
    width: 64px;
  }
  .theme-ux_3_0 .text-block-6 {
    font-size: 14px;
    line-height: 16px;
  }
  .theme-ux_3_0 .image-7 {
    left: 24px;
    top: -20px;
    width: 72px;
  }
  .theme-ux_3_0 .disclaimer {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .theme-ux_3_0 .text-block-7 {
    font-size: 10px;
    line-height: 15px;
  }
  .theme-ux_3_0 .text-block-8 {
    margin-right: 27px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 10px;
    line-height: 15px;
  }
  .theme-ux_3_0 .footer-link {
    font-size: 10px;
    line-height: 15px;
  }
  .theme-ux_3_0 .image-8 {
    width: 64px;
  }
  .theme-ux_3_0 .text-block-9 {
    font-size: 12px;
    line-height: 21px;
  }
  .theme-ux_3_0 .navbar {
    z-index: 100;
  }
  .theme-ux_3_0 .text-block-10 {
    margin-right: 7px;
  }
  .theme-ux_3_0 .image-9 {
    width: 20px;
    height: 20px;
    margin-left: 8px;
  }
  .theme-ux_3_0 .signup-form-submit {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .theme-ux_3_0 .landing-hero-header {
    font-size: 30px;
  }
  .theme-ux_3_0 .form-select {
    height: 48px;
    padding-left: 16px;
    font-size: 14px;
    line-height: 21px;
  }
  .theme-ux_3_0 .div-block-15 {
    width: 400px;
  }
  .theme-ux_3_0 .return-home {
    padding-right: 10px;
    padding-left: 10px;
  }
  .theme-ux_3_0 .srp-container {
    padding-top: 40px;
    padding-bottom: 55px;
  }
  .theme-ux_3_0 .signup-container {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .theme-ux_3_0 .signup-heading {
    margin-bottom: 32px;
  }
  .theme-ux_3_0 .div-block-16 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme-ux_3_0 .signup-profile {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 32px;
  }
  .theme-ux_3_0 .membership-features {
    width: 100%;
  }
  .theme-ux_3_0 .div-block-20 {
    width: 320px;
  }
  .theme-ux_3_0 .profile-body {
    padding-right: 24px;
    padding-left: 24px;
  }
  .theme-ux_3_0 .profile-grid-item {
    font-size: 14px;
    line-height: 21px;
  }
  .theme-ux_3_0 .image-10 {
    position: static;
  }
  .theme-ux_3_0 .div-block-21 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .theme-ux_3_0 .signup-testimonial {
    position: relative;
  }
  .theme-ux_3_0 .signup-form-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme-ux_3_0 .signup-form {
    width: 100%;
    margin-right: 0px;
  }
  .theme-ux_3_0 .signup-form-input {
    height: 48px;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 16px;
    font-size: 14px;
    line-height: 21px;
  }
  .theme-ux_3_0 .activate-account {
    margin-bottom: 32px;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
  .theme-ux_3_0 .activate-account-header {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .theme-ux_3_0 .activate-account-body {
    padding-right: 60px;
    padding-left: 60px;
  }
  .theme-ux_3_0 .div-block-23 {
    height: 1500px;
  }
  .theme-ux_3_0 .link-block {
    margin-left: 16px;
  }
  .theme-ux_3_0 .text-block-15 {
    font-size: 14px;
    line-height: 21px;
  }
  .theme-ux_3_0 .search-button {
    height: 48px;
    padding: 10px 12px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    line-height: 28px;
  }
  .theme-ux_3_0 .get-report-btn {
    height: 48px;
    padding: 10px 100px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    line-height: 28px;
  }
  .theme-ux_3_0 .div-block-19 {
    margin-right: 10px;
  }
  .theme-ux_3_0 .signup-form-col-checkout-left {
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }
  .theme-ux_3_0 .zip-code-input {
    width: 50%;
  }
  .theme-ux_3_0 .text-block-20 {
    font-size: 24px;
    line-height: 36px;
  }
  .theme-ux_3_0 .srp-table {
    margin-right: 0px;
  }
  .theme-ux_3_0 .full-name {
    width: 24%;
  }
  .theme-ux_3_0 .header-age {
    width: 14%;
  }
  .theme-ux_3_0 .header-locations {
    width: 29%;
  }
  .theme-ux_3_0 .header-relatives {
    width: 29%;
  }
  .theme-ux_3_0 .header-detail {
    display: none;
  }
  .theme-ux_3_0 .srp-table-body {
    margin-bottom: 24px;
  }
  .theme-ux_3_0 .srp-table-item {
    position: relative;
    padding-bottom: 80px;
  }
  .theme-ux_3_0 .srp-item-name {
    width: 24%;
  }
  .theme-ux_3_0 .srp-name {
    font-size: 18px;
    line-height: 27px;
  }
  .theme-ux_3_0 .srp-avatar {
    margin-left: 40px;
  }
  .theme-ux_3_0 .srp-item-age {
    width: 14%;
  }
  .theme-ux_3_0 .srp-item-locations {
    width: 29%;
  }
  .theme-ux_3_0 .srp-item-relatives {
    width: 29%;
  }
  .theme-ux_3_0 .srp-item-detail {
    position: absolute;
    left: 50%;
    bottom: 24px;
    -webkit-transform: translate(-50%, 0px);
    -ms-transform: translate(-50%, 0px);
    transform: translate(-50%, 0px);
  }
  .theme-ux_3_0 .div-block-28 {
    margin-bottom: 40px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .theme-ux_3_0 .div-block-29 {
    width: 100%;
    margin-top: 80px;
    padding-top: 32px;
    padding-bottom: 60px;
    background-color: #f6f5f1;
  }
  .theme-ux_3_0 .heading-4 {
    margin-top: 0px;
    margin-right: 120px;
    font-size: 32px;
    line-height: 48px;
  }
  .theme-ux_3_0 .div-block-30 {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .theme-ux_3_0 .refine-form-submit {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .theme-ux_3_0 .refine-search-button {
    height: 48px;
    padding: 10px 12px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    line-height: 28px;
  }
  .theme-ux_3_0 .image-9-copy {
    width: 20px;
    height: 20px;
    margin-left: 8px;
  }
  .theme-ux_3_0 .heading-5 {
    margin-right: 27px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .theme-ux_3_0 .div-block-31 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .theme-ux_3_0 .signup-form-select {
    height: 48px;
    padding-left: 16px;
    font-size: 14px;
    line-height: 21px;
  }
  .theme-ux_3_0 .div-block-32 {
    height: 1500px;
  }
  .theme-ux_3_0 .image-14 {
    width: 120px;
  }
  .theme-ux_3_0 .refine-form-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .theme-ux_3_0 .loader-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 100px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme-ux_3_0 .loader-heading {
    margin-bottom: 50px;
    font-size: 36px;
    line-height: 54px;
  }
  .theme-ux_3_0 .text-block-22 {
    margin-top: 80px;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    font-size: 18px;
    line-height: 27px;
  }
  .theme-ux_3_0 .text-block-24 {
    margin-top: 0px;
  }
  .theme-ux_3_0 .form-2 {
    padding-right: 0px;
    padding-left: 0px;
  }
  .theme-ux_3_0 .loader-submit-btn {
    height: 48px;
    padding: 10px 12px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    line-height: 28px;
  }
  .theme-ux_3_0 .loader-submit-mag {
    width: 20px;
    height: 20px;
    margin-left: 8px;
  }
  .theme-ux_3_0 .loader-form-select {
    height: 48px;
    padding-left: 16px;
    font-size: 14px;
    line-height: 21px;
  }
  .theme-ux_3_0 .loader-form-input {
    height: 48px;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 16px;
    font-size: 14px;
    line-height: 21px;
  }
  .theme-ux_3_0 .div-block-35 {
    width: 100%;
    grid-column-gap: 0px;
  }
  .theme-ux_3_0 .build-my-report {
    height: 48px;
    padding: 10px 100px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    line-height: 28px;
  }
  .theme-ux_3_0 .search-btn {
    height: 48px;
    padding: 10px 24px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    line-height: 28px;
  }
  .theme-ux_3_0 .scanning-container {
    display: none;
  }
  .theme-ux_3_0 .heading-7 {
    font-size: 48px;
    line-height: 72px;
  }
  .theme-ux_3_0 .div-block-39 {
    margin-bottom: 92px;
  }
  .theme-ux_3_0 .div-block-40 {
    width: 600px;
  }
  .theme-ux_3_0 .div-block-43 {
    padding-right: 40px;
    padding-left: 40px;
  }
  .theme-ux_3_0 .heading-8 {
    font-size: 32px;
    line-height: 48px;
  }
  .theme-ux_3_0 .paragraph-4 {
    font-size: 24px;
    line-height: 36px;
  }
  .theme-ux_3_0 .div-block-46 {
    position: static;
    width: 160px;
    height: 160px;
    margin-top: -112px;
    margin-bottom: 40px;
  }
  .theme-ux_3_0 .paragraph-5 {
    font-size: 16px;
    line-height: 24px;
  }
  .theme-ux_3_0 .div-block-50 {
    position: static;
    width: 160px;
    height: 160px;
    margin-top: -112px;
    margin-bottom: 40px;
  }
  .theme-ux_3_0 .image-23 {
    height: 80px;
  }
  .theme-ux_3_0 .div-block-51 {
    position: static;
    width: 160px;
    height: 160px;
    margin-top: -112px;
    margin-bottom: 40px;
  }
  .theme-ux_3_0 .image-24 {
    height: 100px;
  }
  .theme-ux_3_0 .div-block-52 {
    position: static;
    width: 160px;
    height: 160px;
    margin-top: -112px;
    margin-bottom: 40px;
  }
  .theme-ux_3_0 .div-block-54 {
    width: 160px;
    height: 160px;
  }
  .theme-ux_3_0 .text-block-26 {
    font-size: 24px;
    line-height: 36px;
  }
  .theme-ux_3_0 .search-name-input {
    height: 48px;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 16px;
    font-size: 14px;
    line-height: 21px;
  }
  .theme-ux_3_0 .search-name-submit {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .theme-ux_3_0 .heading-4-copy {
    margin-top: 0px;
    margin-right: 120px;
    font-size: 32px;
    line-height: 48px;
  }
  .theme-ux_3_0 .heading-8-copy {
    font-size: 32px;
    line-height: 48px;
  }
}
@media screen and (max-width: 767px) {
  .theme-ux_3_0 h1 {
    font-size: 24px;
    line-height: 36px;
  }
  .theme-ux_3_0 p {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_0 .container {
    padding-right: 20px;
    padding-left: 20px;
  }
  .theme-ux_3_0 .landing-hero {
    padding-top: 32px;
    padding-bottom: 124px;
  }
  .theme-ux_3_0 .landing-hero.advanced {
    padding-bottom: 121px;
  }
  .theme-ux_3_0 .hero-wrapper {
    margin-right: 0px;
    margin-left: 0px;
  }
  .theme-ux_3_0 .search-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .theme-ux_3_0 .form-input {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_0 .signup-form-submit-btn {
    width: 100%;
    margin-top: 16px;
  }
  .theme-ux_3_0 .more-ways {
    margin-top: -40px;
    padding-top: 45px;
    padding-bottom: 80px;
  }
  .theme-ux_3_0 .more-ways-grid {
    grid-column-gap: 20px;
    grid-row-gap: 32px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .theme-ux_3_0 .image-2 {
    margin-bottom: 16px;
  }
  .theme-ux_3_0 .more-ways-search-button {
    margin-top: 16px;
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_0 .stay-informed {
    margin-top: -40px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .theme-ux_3_0 .stay-informed-wrapper {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .theme-ux_3_0 .div-block-2 {
    width: 80px;
    margin-top: 0px;
    margin-left: 30px;
  }
  .theme-ux_3_0 .circle.red {
    width: 80px;
    height: 80px;
  }
  .theme-ux_3_0 .circle.blue {
    width: 80px;
    height: 80px;
  }
  .theme-ux_3_0 .circle.orange {
    width: 80px;
    height: 80px;
  }
  .theme-ux_3_0 .image-3 {
    bottom: -5px;
    width: 51px;
  }
  .theme-ux_3_0 .text-block-2 {
    top: 16px;
    font-size: 8px;
    line-height: 12px;
  }
  .theme-ux_3_0 .image-4 {
    width: 25px;
  }
  .theme-ux_3_0 .text-block-3 {
    top: 16px;
    font-size: 8px;
    line-height: 12px;
  }
  .theme-ux_3_0 .all-in-one {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .theme-ux_3_0 .div-block-4 {
    margin-top: 24px;
    grid-column-gap: 20px;
    grid-row-gap: 24px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .theme-ux_3_0 .image-5 {
    margin-bottom: 16px;
  }
  .theme-ux_3_0 .text-block-4 {
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_0 .text-block-5 {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_0 .testimonial-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .theme-ux_3_0 .testimonial-grid {
    margin-top: 44px;
    padding-right: 20px;
    padding-left: 20px;
    grid-row-gap: 56px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .theme-ux_3_0 .disclaimer {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .theme-ux_3_0 .div-block-10 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme-ux_3_0 .text-block-8 {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 8px;
  }
  .theme-ux_3_0 .footer {
    padding-right: 20px;
    padding-left: 20px;
  }
  .theme-ux_3_0 .footer-container {
    padding-right: 0px;
    padding-left: 0px;
  }
  .theme-ux_3_0 .image-8 {
    bottom: -13px;
    width: 33px;
  }
  .theme-ux_3_0 .text-block-9 {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_0 .brand {
    padding-left: 0px;
  }
  .theme-ux_3_0 .icon {
    color: #ffb400;
    font-size: 36px;
    line-height: 36px;
  }
  .theme-ux_3_0 .menu-button {
    padding: 0px;
  }
  .theme-ux_3_0 .signup-form-submit {
    display: block;
    margin-bottom: 0px;
    margin-left: 0px;
  }
  .theme-ux_3_0 .heading-2 {
    width: 75%;
    text-align: left;
  }
  .theme-ux_3_0 .landing-hero-header {
    white-space: normal;
  }
  .theme-ux_3_0 .nav-container {
    padding-right: 20px;
    padding-left: 20px;
  }
  .theme-ux_3_0 .div-block-14 {
    margin-right: 0px;
  }
  .theme-ux_3_0 .form-row {
    margin-bottom: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme-ux_3_0 .form-col-6 {
    width: 100%;
    margin-bottom: 16px;
  }
  .theme-ux_3_0 .advanced-search-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .theme-ux_3_0 .form-select {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_0 .srp-container {
    padding: 32px 20px;
  }
  .theme-ux_3_0 .notification-modal {
    width: auto;
    margin-right: 21px;
    margin-left: 21px;
  }
  .theme-ux_3_0 .notification-modal-heading {
    font-size: 18px;
    line-height: 21px;
  }
  .theme-ux_3_0 .signup-container {
    padding-right: 20px;
    padding-left: 20px;
  }
  .theme-ux_3_0 .signup-heading {
    font-size: 24px;
    line-height: 36px;
  }
  .theme-ux_3_0 .signin-now {
    font-size: 18px;
    line-height: 27px;
  }
  .theme-ux_3_0 .avatar {
    width: 64px;
    height: 64px;
  }
  .theme-ux_3_0 .lock-icon {
    left: 47px;
    bottom: 1.5px;
    width: 15px;
  }
  .theme-ux_3_0 .name-age {
    font-size: 16px;
    line-height: 24px;
  }
  .theme-ux_3_0 .name {
    color: #2546cb;
  }
  .theme-ux_3_0 .profile-body {
    position: relative;
    padding-bottom: 65px;
  }
  .theme-ux_3_0 .profile-body-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .theme-ux_3_0 .profile-grid-item.much-more {
    position: absolute;
    left: 50%;
    top: auto;
    bottom: 15px;
    -webkit-transform: translate(-50%, 0px);
    -ms-transform: translate(-50%, 0px);
    transform: translate(-50%, 0px);
  }
  .theme-ux_3_0 .membership-features-heading {
    font-size: 14px;
    line-height: 21px;
  }
  .theme-ux_3_0 .membership-features-body {
    padding: 28px 24px;
  }
  .theme-ux_3_0 .membership-list {
    margin-bottom: 0px;
  }
  .theme-ux_3_0 .check-icon {
    width: 12px;
    height: 12px;
    margin-right: 4px;
  }
  .theme-ux_3_0 .unlimited {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_0 .text-block-13 {
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
  }
  .theme-ux_3_0 .image-10 {
    position: static;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }
  .theme-ux_3_0 .div-block-21 {
    margin-bottom: 0px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .theme-ux_3_0 .plus-much-more {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_0 .signup-form-container {
    margin-bottom: 40px;
  }
  .theme-ux_3_0 .signup-form-heading {
    font-size: 14px;
    line-height: 21px;
  }
  .theme-ux_3_0 .signup-form-row {
    margin-bottom: 0px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .theme-ux_3_0 .signup-form-col {
    margin-bottom: 8px;
  }
  .theme-ux_3_0 .signup-form-col--6 {
    width: 100%;
    margin-bottom: 8px;
  }
  .theme-ux_3_0 .signup-form-input {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_0 .signup-form-input.expiration-date {
    width: 100%;
  }
  .theme-ux_3_0 .signup-form-input.cvc {
    width: 100%;
  }
  .theme-ux_3_0 .signup-form-input.zip-code {
    width: 100%;
  }
  .theme-ux_3_0 .activate-account-body {
    padding-right: 24px;
    padding-left: 24px;
  }
  .theme-ux_3_0 .signup-disclaimer {
    font-size: 8px;
    line-height: 12px;
  }
  .theme-ux_3_0 .image-11 {
    height: 80%;
  }
  .theme-ux_3_0 .search-button {
    width: 100%;
    margin-top: 16px;
  }
  .theme-ux_3_0 .get-report-btn {
    width: 100%;
    margin-top: 16px;
  }
  .theme-ux_3_0 .heading-3 {
    font-size: 36px;
    line-height: 54px;
  }
  .theme-ux_3_0 .div-block-26 {
    position: relative;
    margin-bottom: 8px;
    margin-left: 10px;
  }
  .theme-ux_3_0 .div-block-18 {
    width: 100%;
  }
  .theme-ux_3_0 .div-block-19 {
    width: 50%;
  }
  .theme-ux_3_0 .form-group {
    width: 50%;
  }
  .theme-ux_3_0 .div-block-27 {
    width: 100%;
  }
  .theme-ux_3_0 .signup-form-col-checkout-left {
    width: 100%;
    margin-bottom: 8px;
  }
  .theme-ux_3_0 .zip-code-input {
    width: 100%;
    margin-bottom: 8px;
    padding-right: 5px;
  }
  .theme-ux_3_0 .text-block-20 {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 27px;
  }
  .theme-ux_3_0 .srp-table-header {
    display: none;
  }
  .theme-ux_3_0 .srp-table-item {
    padding: 16px 0px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .theme-ux_3_0 .srp-item-name {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 60%;
    margin-right: 0px;
    padding-left: 25px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .theme-ux_3_0 .srp-name {
    margin-bottom: 0px;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    font-size: 16px;
    line-height: 24px;
  }
  .theme-ux_3_0 .srp-avatar {
    width: 64px;
    height: 64px;
    margin-right: 12px;
    margin-left: 0px;
  }
  .theme-ux_3_0 .image-13 {
    height: 80%;
  }
  .theme-ux_3_0 .srp-lock-icon {
    left: 47px;
    bottom: 1.5px;
    width: 15px;
  }
  .theme-ux_3_0 .srp-item-age {
    width: 40%;
    margin-right: 0%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }
  .theme-ux_3_0 .srp-item-locations {
    width: auto;
    margin-top: 16px;
    margin-right: 25px;
  }
  .theme-ux_3_0 .srp-view-more {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_0 .srp-item-relatives {
    width: auto;
    margin-top: 16px;
  }
  .theme-ux_3_0 .srp-item-location {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_0 .srp-item-relative {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_0 .srp-item-detail {
    position: static;
    display: block;
    width: 100%;
    margin-top: 16px;
    padding-right: 8px;
    padding-left: 8px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .theme-ux_3_0 .srp-full-report {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 18px;
    line-height: 27px;
    font-weight: 700;
  }
  .theme-ux_3_0 .div-block-29 {
    margin-top: 56px;
    padding: 16px 20px;
  }
  .theme-ux_3_0 .heading-4 {
    font-size: 20px;
    line-height: 30px;
  }
  .theme-ux_3_0 .refine-form-submit {
    display: block;
    margin-bottom: 0px;
    margin-left: 0px;
  }
  .theme-ux_3_0 .refine-search-button {
    width: 100%;
    margin-top: 16px;
  }
  .theme-ux_3_0 .heading-5 {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_0 .text-block-21 {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_0 .div-block-31 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme-ux_3_0 .signup-form-select {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_0 .srp-disclaimer {
    font-size: 8px;
    line-height: 12px;
  }
  .theme-ux_3_0 .image-14 {
    width: 64px;
  }
  .theme-ux_3_0 .refine-form-col {
    margin-bottom: 8px;
  }
  .theme-ux_3_0 .refine-form-row {
    margin-bottom: 0px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .theme-ux_3_0 .image-15 {
    width: 100px;
  }
  .theme-ux_3_0 .loader-container {
    padding-top: 160px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .theme-ux_3_0 .loader-wrapper {
    margin-bottom: 50px;
  }
  .theme-ux_3_0 .loader-heading {
    margin-bottom: 30px;
    font-size: 32px;
    line-height: 48px;
  }
  .theme-ux_3_0 .loader-disclaimer {
    font-size: 8px;
    line-height: 12px;
  }
  .theme-ux_3_0 .text-block-23 {
    font-size: 14px;
    line-height: 21px;
  }
  .theme-ux_3_0 .text-block-24 {
    font-size: 18px;
    line-height: 27px;
  }
  .theme-ux_3_0 .form-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme-ux_3_0 .loader-submit-btn {
    width: 100%;
    margin-top: 16px;
  }
  .theme-ux_3_0 .loader-form-select {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_0 .loader-form-input {
    max-width: 100%;
    margin-right: 0px;
    margin-bottom: 12px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_0 .form-block-2 {
    margin-top: 0px;
    margin-bottom: 30px;
  }
  .theme-ux_3_0 .form-3 {
    padding-right: 0px;
    padding-left: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme-ux_3_0 .div-block-35 {
    margin-bottom: 20px;
    justify-items: stretch;
    grid-column-gap: 21px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .theme-ux_3_0 .div-block-36 {
    width: auto;
    padding-bottom: 12px;
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_0 .build-my-report {
    width: 100%;
    margin-top: 16px;
    margin-bottom: 8px;
  }
  .theme-ux_3_0 .loader-container1 {
    padding-right: 20px;
    padding-left: 20px;
  }
  .theme-ux_3_0 .div-block-37 {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_0 .text-block-25 {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_0 .paragraph-3 {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_0 .form-block-4 {
    margin-bottom: 0px;
  }
  .theme-ux_3_0 .search-btn {
    width: 100%;
    margin-top: 16px;
  }
  .theme-ux_3_0 .rr-container {
    padding-top: 160px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .theme-ux_3_0 .div-block-38 {
    padding-right: 0px;
    padding-left: 0px;
  }
  .theme-ux_3_0 .heading-7 {
    font-size: 32px;
    line-height: 48px;
  }
  .theme-ux_3_0 .div-block-39 {
    width: 100%;
    margin-bottom: 64px;
  }
  .theme-ux_3_0 .div-block-40 {
    width: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .theme-ux_3_0 .div-block-42 {
    font-size: 14px;
    line-height: 21px;
    font-weight: 900;
  }
  .theme-ux_3_0 .div-block-43 {
    padding-top: 40px;
    padding-right: 30px;
    padding-left: 30px;
  }
  .theme-ux_3_0 .heading-8 {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 24px;
  }
  .theme-ux_3_0 .div-block-44 {
    margin-bottom: 24px;
  }
  .theme-ux_3_0 .div-block-45 {
    width: 40px;
    height: 40px;
  }
  .theme-ux_3_0 .image-18 {
    width: 20px;
    height: 30px;
  }
  .theme-ux_3_0 .image-19 {
    bottom: 2px;
    height: 12.5px;
  }
  .theme-ux_3_0 .paragraph-4 {
    margin-bottom: 0px;
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_0 .div-block-46 {
    width: 80px;
    height: 80px;
    margin-top: -80px;
    margin-bottom: 16px;
  }
  .theme-ux_3_0 .image-20 {
    height: 40px;
  }
  .theme-ux_3_0 .paragraph-5 {
    font-size: 12px;
    line-height: 18px;
    text-align: center;
  }
  .theme-ux_3_0 .div-block-50 {
    width: 80px;
    height: 80px;
    margin-top: -80px;
    margin-bottom: 24px;
  }
  .theme-ux_3_0 .image-23 {
    height: 40px;
  }
  .theme-ux_3_0 .div-block-51 {
    width: 80px;
    height: 80px;
    margin-top: -80px;
  }
  .theme-ux_3_0 .image-24 {
    height: 40px;
  }
  .theme-ux_3_0 .div-block-52 {
    width: 80px;
    height: 80px;
    margin-top: -80px;
  }
  .theme-ux_3_0 .div-block-53 {
    margin-top: -24px;
    margin-bottom: 24px;
    padding: 26px 20px 63px;
  }
  .theme-ux_3_0 .div-block-54 {
    width: 80px;
    height: 80px;
  }
  .theme-ux_3_0 .text-block-26 {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_0 .get-report-modal {
    width: auto;
    margin-right: 21px;
    margin-left: 21px;
    padding-right: 24px;
    padding-left: 24px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .theme-ux_3_0 .image-26 {
    position: static;
    margin-bottom: 16px;
  }
  .theme-ux_3_0 .image-27 {
    height: 40px;
  }
  .theme-ux_3_0 .image-28 {
    height: 40px;
  }
  .theme-ux_3_0 .image-29 {
    height: 40px;
  }
  .theme-ux_3_0 .image-30 {
    height: 40px;
  }
  .theme-ux_3_0 .continue-btn {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .theme-ux_3_0 .search-name-input {
    margin-bottom: 8px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_0 .search-name-submit {
    display: block;
    margin-bottom: 0px;
    margin-left: 0px;
  }
  .theme-ux_3_0 .heading-4-copy {
    font-size: 20px;
    line-height: 30px;
  }
  .theme-ux_3_0 .heading-8-copy {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 24px;
  }
}
@media screen and (max-width: 479px) {
  .theme-ux_3_0 .landing-hero {
    padding-bottom: 128px;
  }
  .theme-ux_3_0 .more-ways-grid {
    grid-column-gap: 10px;
  }
  .theme-ux_3_0 .more-ways-search-button {
    white-space: normal;
  }
  .theme-ux_3_0 .stay-informed-wrapper {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .theme-ux_3_0 .text-block-9 {
    font-size: 11px;
    white-space: normal;
  }
  .theme-ux_3_0 .landing-hero-header {
    white-space: normal;
  }
  .theme-ux_3_0 .notification-modal {
    margin-top: 50px;
  }
  .theme-ux_3_0 .profile-header {
    padding: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme-ux_3_0 .avatar {
    width: 32px;
    height: 32px;
  }
  .theme-ux_3_0 .lock-icon {
    left: 22px;
    width: 7px;
  }
  .theme-ux_3_0 .div-block-20 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .theme-ux_3_0 .name-age {
    position: absolute;
    left: 60px;
    top: 19px;
  }
  .theme-ux_3_0 .locations {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_0 .profile-body {
    padding-right: 10px;
    padding-left: 10px;
  }
  .theme-ux_3_0 .profile-body-header {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_0 .profile-body-grid {
    grid-column-gap: 2px;
  }
  .theme-ux_3_0 .profile-grid-item {
    font-size: 10px;
    line-height: 18px;
  }
  .theme-ux_3_0 .membership-features-body {
    padding-right: 12px;
    padding-left: 12px;
  }
  .theme-ux_3_0 .membership-list {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .theme-ux_3_0 .text-block-13 {
    line-height: 18px;
  }
  .theme-ux_3_0 .image-10 {
    position: absolute;
    width: 100px;
  }
  .theme-ux_3_0 .signup-form-input.zip-code {
    width: 100%;
  }
  .theme-ux_3_0 .link-block {
    margin-left: 0px;
  }
  .theme-ux_3_0 .text-block-15 {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_0 .text-block-16 {
    line-height: 18px;
  }
  .theme-ux_3_0 .get-report-btn {
    padding-right: 0px;
    padding-left: 0px;
  }
  .theme-ux_3_0 .div-block-26 {
    width: 100%;
  }
  .theme-ux_3_0 .image-12 {
    display: block;
    height: 29px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }
  .theme-ux_3_0 .div-block-18 {
    margin-top: 0px;
  }
  .theme-ux_3_0 .div-block-19 {
    width: 100%;
    margin-right: 0px;
  }
  .theme-ux_3_0 .form-group {
    width: 100%;
    margin-top: 8px;
  }
  .theme-ux_3_0 .div-block-17 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .theme-ux_3_0 .div-block-27 {
    margin-top: 0px;
  }
  .theme-ux_3_0 .zip-code-input {
    padding-right: 10px;
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  .theme-ux_3_0 .srp-item-name {
    padding-left: 20px;
  }
  .theme-ux_3_0 .srp-avatar {
    width: 32px;
    height: 32px;
  }
  .theme-ux_3_0 .image-13 {
    width: auto;
  }
  .theme-ux_3_0 .srp-lock-icon {
    left: 22px;
    width: 7px;
  }
  .theme-ux_3_0 .srp-item-locations {
    width: 40%;
    margin-right: 5%;
    margin-left: 5px;
  }
  .theme-ux_3_0 .srp-item-relatives {
    width: 40%;
    margin-right: 5%;
    margin-left: 5%;
  }
  .theme-ux_3_0 .image-15 {
    width: 100px;
  }
  .theme-ux_3_0 .paragraph-2 {
    font-size: 12px;
    line-height: 18px;
  }
  .theme-ux_3_0 .loader-heading {
    margin-bottom: 30px;
  }
  .theme-ux_3_0 .form-block-2 {
    margin-top: 0px;
  }
  .theme-ux_3_0 .build-my-report {
    padding-right: 0px;
    padding-left: 0px;
  }
  .theme-ux_3_0 .div-block-39 {
    margin-bottom: 64px;
  }
  .theme-ux_3_0 .div-block-43 {
    padding-right: 20px;
    padding-left: 20px;
  }
  .theme-ux_3_0 .heading-8 {
    position: absolute;
    left: 20px;
    top: 26px;
    right: 100px;
  }
  .theme-ux_3_0 .div-block-44 {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .theme-ux_3_0 .div-block-45 {
    margin-right: 0px;
  }
  .theme-ux_3_0 .image-20 {
    margin-right: 0px;
  }
  .theme-ux_3_0 .div-block-52 {
    margin-bottom: 16px;
  }
  .theme-ux_3_0 .div-block-53 {
    margin-top: -24px;
    padding-top: 100px;
  }
  .theme-ux_3_0 .div-block-54 {
    position: absolute;
    top: 16px;
    right: 16px;
    margin-left: 0px;
  }
  .theme-ux_3_0 .get-report-modal {
    padding-top: 24px;
  }
  .theme-ux_3_0 .heading-10 {
    font-size: 18px;
    line-height: 27px;
    text-align: center;
  }
  .theme-ux_3_0 .heading-4-copy {
    margin-right: 0px;
  }
}
.theme-ux_3_0 #w-node-4081f33f4a68-a74bd755 {
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}
.theme-ux_3_0 #w-node-c3804c32f8b6-a74bd755 {
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}
.theme-ux_3_0 #w-node-e861672d86a7-a74bd755 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-e4fe62daca22-a74bd755 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-e955c121380f-a74bd755 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-d7f04de55fde-a74bd755 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-fcb635cdd229-a74bd755 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-d4f796e5b9a5-a74bd755 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-4081f33f4a68-624bd757 {
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}
.theme-ux_3_0 #w-node-c3804c32f8b6-624bd757 {
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}
.theme-ux_3_0 #w-node-e861672d86a7-624bd757 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-e4fe62daca22-624bd757 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-e955c121380f-624bd757 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-d7f04de55fde-624bd757 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-fcb635cdd229-624bd757 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-d4f796e5b9a5-624bd757 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-4081f33f4a68-614bd758 {
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}
.theme-ux_3_0 #w-node-c3804c32f8b6-614bd758 {
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}
.theme-ux_3_0 #w-node-e861672d86a7-614bd758 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-e4fe62daca22-614bd758 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-e955c121380f-614bd758 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-d7f04de55fde-614bd758 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-fcb635cdd229-614bd758 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-d4f796e5b9a5-614bd758 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-4081f33f4a68-3a4bd759 {
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}
.theme-ux_3_0 #w-node-c3804c32f8b6-3a4bd759 {
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}
.theme-ux_3_0 #w-node-e861672d86a7-3a4bd759 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-e4fe62daca22-3a4bd759 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-e955c121380f-3a4bd759 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-d7f04de55fde-3a4bd759 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-fcb635cdd229-3a4bd759 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-d4f796e5b9a5-3a4bd759 {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-4081f33f4a68-434bd75a {
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}
.theme-ux_3_0 #w-node-c3804c32f8b6-434bd75a {
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}
.theme-ux_3_0 #w-node-e861672d86a7-434bd75a {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-e4fe62daca22-434bd75a {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-e955c121380f-434bd75a {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-d7f04de55fde-434bd75a {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-fcb635cdd229-434bd75a {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-d4f796e5b9a5-434bd75a {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-4081f33f4a68-e44bd75c {
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}
.theme-ux_3_0 #w-node-c3804c32f8b6-e44bd75c {
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}
.theme-ux_3_0 #w-node-e861672d86a7-e44bd75c {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-e4fe62daca22-e44bd75c {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-e955c121380f-e44bd75c {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-d7f04de55fde-e44bd75c {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-fcb635cdd229-e44bd75c {
  -ms-grid-column-align: center;
  justify-self: center;
}
.theme-ux_3_0 #w-node-d4f796e5b9a5-e44bd75c {
  -ms-grid-column-align: center;
  justify-self: center;
}
@media screen and (max-width: 991px) {
  .theme-ux_3_0 #w-node-fa513f0b92e1-a74bd755 {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
  }
  .theme-ux_3_0 #w-node-fa513f0b92e1-624bd757 {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
  }
  .theme-ux_3_0 #w-node-fa513f0b92e1-614bd758 {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
  }
  .theme-ux_3_0 #w-node-fa513f0b92e1-3a4bd759 {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
  }
  .theme-ux_3_0 #w-node-fa513f0b92e1-434bd75a {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
  }
  .theme-ux_3_0 #w-node-fa513f0b92e1-e44bd75c {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
  }
}
.theme-ux_3_0 * {
  font-family: "Poppins";
  -webkit-font-smoothing: subpixel-antialiased;
}
.theme-ux_3_0.phone-search * {
  font-family: "Roboto";
  line-height: 1.2;
}
.theme-ux_3_0.phone-search .navbar {
  background-color: #474dad;
}
.theme-ux_3_0.phone-search .navbar-brand {
  padding: 0;
}
.theme-ux_3_0.phone-search .navbar-brand img {
  height: 100%;
}
.theme-ux_3_0 .fa,
.theme-ux_3_0 .far,
.theme-ux_3_0 .fas {
  font-family: "Font Awesome 5 Free";
}
.theme-ux_3_0 .glyphicons {
  font-family: "Glyphicons Regular";
}
.theme-ux_3_0 .has-error {
  border-color: #e54747;
}
.theme-ux_3_0 button {
  color: #fff;
  text-decoration: none;
}
.theme-ux_3_0 .use .glyphicons {
  margin-top: 3px !important;
  height: auto !important;
}
.theme-ux_3_0 .search-q-after h2 {
  color: #2546cb;
  font-size: 36px;
}
.theme-ux_3_0 .search-q-after div {
  font-size: 24px;
  line-height: 1.5;
}
.theme-ux_3_0 .disclaimer-loader .container {
  padding-right: 0;
  padding-left: 0;
}
.theme-ux_3_0 .notification-modal-body p {
  font-size: 16px !important;
  line-height: 24px !important;
}
.theme-ux_3_0 .loader-question-form .w-form-fail {
  display: block;
}
.theme-ux_3_0 .search-form-block .w-form-fail {
  display: block;
}
.theme-ux_3_0 .more-ways-grid {
  grid-template-columns: 1fr 1fr;
}
.theme-ux_3_0 .div-block-3 p {
  margin-bottom: 0;
}
.theme-ux_3_0 [data-nav-menu-open] {
  display: block !important;
  position: absolute;
  top: calc(100% + 1px);
  left: -8px;
  right: -9px;
  background: #c8c8c8;
  text-align: center;
  overflow: visible;
  min-width: 200px;
}
.theme-ux_3_0 .signup-form-body {
  padding: 18px;
}
.theme-ux_3_0 .signup-form-input::placeholder {
  color: #ccc !important;
}
.theme-ux_3_0 a {
  color: #337ab7 !important;
}
.theme-ux_3_0 a:hover {
  color: #23527c !important;
}
.theme-ux_3_0 .plus-much-more {
  color: gray !important;
}
.theme-ux_3_0 .plus-much-more:hover {
  color: gray !important;
}
.theme-ux_3_0 .signup-form-container {
  z-index: 1;
  position: relative;
}
.theme-ux_3_0 .div-block-17 .form-group {
  margin-bottom: 0;
}
.theme-ux_3_0 .signup-form-row .has-error {
  text-align: left;
  width: 100%;
  display: block;
  color: #e54747;
}
.theme-ux_3_0 .signup-form-p {
  margin-bottom: 0;
}
@media (max-width: 479px) {
  .theme-ux_3_0 .div-block-18,
  .theme-ux_3_0 .div-block-27 {
    flex-direction: column;
  }
}
@media (max-width: 479px) {
  .theme-ux_3_0 .notification-modal-body {
    max-height: calc(100vh - 171px);
    overflow-y: scroll;
  }
}
@media (max-width: 479px) {
  .theme-ux_3_0 .loader-heading {
    margin-bottom: 18px;
  }
}
@media (max-width: 479px) {
  .theme-ux_3_0 .text-block-22 {
    margin-bottom: 18px;
    margin-top: 18px;
  }
}
@media (max-width: 479px) {
  .theme-ux_3_0 .loader-wrapper {
    margin-bottom: 36px;
  }
}
.theme-ux_3_0 .modal-header button.close {
  color: black;
  font-size: 27px;
  padding: 10px;
}
.theme-ux_3_0 .srp-item-age {
  min-height: 32px;
}
.theme-ux_3_0 .search-result-title {
  display: none;
}
@media (max-width: 479px) {
  .theme-ux_3_0 .search-result-title {
    width: 50%;
    display: block;
    padding-left: 5px;
    margin-bottom: -12px;
    margin-top: 8px;
  }
  .theme-ux_3_0 .search-result-title.srp-item-relative {
    padding-left: 10px;
  }
}
.theme-ux_3_0 .div-block-47 {
  padding: 12px;
}
@media (max-width: 768px) {
  .theme-ux_3_0 .heading-4 {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .theme-ux_3_0 .text-block-6 {
    line-height: 22px;
  }
}
.theme-ux_3_0 #terms .modal-title,
.theme-ux_3_0 #privacy .modal-title {
  color: #fa6341;
  font-size: 22px;
  line-height: 36px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  margin-left: 24px;
}
.theme-ux_3_0 #terms .modal-body,
.theme-ux_3_0 #privacy .modal-body {
  max-height: calc(100vh - 136px);
  overflow-y: scroll;
  padding: 12px 36px;
}
.theme-ux_3_0 #terms .modal-body h1,
.theme-ux_3_0 #terms .modal-body p,
.theme-ux_3_0 #privacy .modal-body h1,
.theme-ux_3_0 #privacy .modal-body p {
  font-size: 16px;
  color: #000;
  line-height: 24px;
}
.theme-ux_3_0 #terms .modal-body .btn-success,
.theme-ux_3_0 #privacy .modal-body .btn-success {
  border-radius: 5px;
  background-color: #23ce6b;
  box-shadow: inset 3px 3px 4px 0 rgba(0, 0, 0, 0.25), inset -3px -3px 4px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
}
.theme-ux_3_0 .header {
  padding-right: 8px;
  padding-left: 8px;
  background-color: #fff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .theme-ux_3_0 .header {
    z-index: 100;
  }
}
.theme-ux_3_0#contactUs .checkbox {
  position: relative;
  top: 0;
  left: 0;
}
.theme-ux_3_0#terms h1,
.theme-ux_3_0#privacy h1 {
  font-size: 36px;
}
.theme-ux_3_0#terms p,
.theme-ux_3_0#privacy p {
  font-size: 14px;
  line-height: 1.5;
}
.theme-ux_3_0 .jumbotron h1 {
  color: white;
}
@media (min-width: 768px) {
  .theme-ux_3_0 .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
}
@media (max-width: 991px) {
  .theme-ux_3_0 .search-wrapper .form-group {
    width: 100%;
    margin-bottom: 8px;
    box-shadow: 0.25rem 0.25rem 0.625rem rgba(0, 0, 0, 0.4);
  }
}
.theme-legacy.theme-ux_3_0 .header {
  margin-bottom: 20px;
}
.theme-legacy.theme-ux_3_0#addon .header {
  margin-bottom: 0;
}
.modal-content {
  border: 0;
}
.theme-ux_3_0 #sup-detail-rhs-content .sup-unlock-report-item {
  width: 100%;
}
.theme-ux_3_0 #sup-detail-rhs-content .sup-unlock-report-item div {
  width: 170px;
  text-align: left;
}
@media (max-width: 991px) {
  .theme-ux_3_0 #sup-detail-rhs-content .sup-unlock-report-item {
    width: 100% !important;
  }
}

/* src/app/themes/ux.4.0/base.component.scss */
body {
  margin: 0;
}
body:has(.loader__modal) {
  overflow: hidden;
}
.theme-ux_4_0 .color-primary {
  color: #001250;
}
.theme-ux_4_0 .color-accent {
  color: #1ebca9;
}
.theme-ux_4_0 .color-danger {
  color: #ff0000;
}
.theme-ux_4_0 * {
  font-family: "Source Sans Pro", sans-serif;
}
.theme-ux_4_0.phone-search * {
  font-family: "Roboto";
  line-height: 1.2;
}
.theme-ux_4_0.phone-search .navbar {
  background-color: #474dad;
}
.theme-ux_4_0.phone-search .navbar-brand {
  padding: 0;
}
.theme-ux_4_0.phone-search .navbar-brand img {
  height: 100%;
}
.theme-ux_4_0 footer {
  color: white;
  background:
    linear-gradient(
      180deg,
      #001250 0%,
      #59658d 100%);
  font-size: 12px;
  line-height: 1.25;
}
@media (max-width: 991px) {
  .theme-ux_4_0 footer {
    font: 10px;
  }
}
@media (max-width: 576px) {
  .theme-ux_4_0 footer {
    font: 8px;
  }
}
.theme-ux_4_0 footer a {
  color: #1ebca9;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
  outline: 0;
}
.theme-ux_4_0 footer a:hover,
.theme-ux_4_0 footer a:focus {
  color: white;
}
.theme-ux_4_0 footer.light {
  background: white;
  color: #525252;
}
.theme-ux_4_0 footer.light a:hover {
  color: #1ebca9;
}
.theme-ux_4_0 footer .row {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.theme-ux_4_0 footer .footer {
  opacity: 1;
  border-top: none;
  padding: 0;
  padding-top: 24px;
}
.theme-ux_4_0 footer .footer__disclaimer {
  margin-top: 18px;
}
.theme-ux_4_0 footer .footer__disclaimer br {
  display: none;
}
.theme-ux_4_0 footer .footer__links {
  list-style-type: none;
  text-align: right;
  padding-left: 0;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .theme-ux_4_0 footer .footer__links {
    text-align: left;
  }
}
.theme-ux_4_0 footer .footer__links--item {
  display: inline-block;
  padding-left: 0.5em;
  padding-right: 0.5em;
  border-left: 2px solid #1ebca9;
}
.theme-ux_4_0 footer .footer__links--item:first-of-type {
  border-left: none;
}
.theme-ux_4_0 footer .footer__links--item:last-of-type {
  padding-right: 0;
}
@media (max-width: 576px) {
  .theme-ux_4_0 footer .footer__links--item {
    border-left: none;
    width: 50%;
    padding-left: 0;
    padding-right: 0;
  }
}
.theme-ux_4_0 .bt-accent {
  border-top: 1px solid #1ebca9;
  padding-top: 64px;
  padding-bottom: 64px;
}
.theme-ux_4_0 .page__content--title {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.25;
  color: inherit;
  margin: 0;
  margin-bottom: 0.25em;
}
@media (max-width: 990px) {
  .theme-ux_4_0 .page__content--title {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .theme-ux_4_0 .page__content--title {
    font-size: 24px;
  }
}
.theme-ux_4_0 .page__content--detail {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
  margin-bottom: 0.25em;
}
@media (max-width: 990px) {
  .theme-ux_4_0 .page__content--detail {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .theme-ux_4_0 .page__content--detail {
    font-size: 12px;
  }
}
.theme-ux_4_0 .theme-ux_4_0 .form__submit {
  background: #1ebca9;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  color: white;
  font-weight: 900;
  height: 46px;
  font-size: 24px;
  line-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: 0;
  padding: 0 1em;
  cursor: pointer;
  transition: opacity 0.2s;
}
.theme-ux_4_0 .theme-ux_4_0 .form__submit:hover {
  opacity: 0.8;
}
@media (max-width: 576px) {
  .theme-ux_4_0 .theme-ux_4_0 .form__submit {
    width: 100%;
  }
}
.theme-ux_4_0 .theme-ux_4_0 .form__input {
  background: white;
  border: 1px solid #dcdcdc;
  color: #525252;
  box-sizing: border-box;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
  font-size: 16px;
  line-height: 20px;
  padding: 9px 12px;
  outline: 0;
  transition: all 0.2s;
}
.theme-ux_4_0 .theme-ux_4_0 .form__input.select {
  appearance: none;
  position: relative;
}
.theme-ux_4_0 .theme-ux_4_0 .form__input.has-error {
  border-color: #ff0000;
  padding: 8px 12px;
  border-width: 2px;
}
.theme-ux_4_0 .theme-ux_4_0 .form__input.has-success {
  border-color: #1ebca9;
  padding: 8px 12px;
  border-width: 2px;
}
@media (max-width: 576px) {
  .theme-ux_4_0 .theme-ux_4_0 .form__input {
    width: 100%;
  }
}
.theme-ux_4_0 .theme-ux_4_0 .form__select {
  position: relative;
}
.theme-ux_4_0 .theme-ux_4_0 .form__select:before {
  z-index: 5;
  content: "";
  position: absolute;
  right: 12px;
  top: 16px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-top: 10px solid #1ebca9;
  pointer-events: none;
}
.theme-ux_4_0 .theme-ux_4_0 .form__select:after {
  z-index: 10;
  content: "";
  position: absolute;
  right: 14px;
  top: 15px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-top: 8px solid white;
  pointer-events: none;
}
.theme-ux_4_0 .theme-ux_4_0 .form__error {
  color: #ff0000;
}
.theme-ux_4_0 .ux4-btn-outline {
  border: none;
  background-color: white;
  outline: 0;
  color: #1ebca9;
  border: 2px solid #1ebca9;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25;
  padding: 8px;
  transition: all 0.2s;
  border-radius: 10px;
  margin: 0 4px;
  width: 140px;
  cursor: pointer;
}
.theme-ux_4_0 .ux4-btn-outline:hover {
  background-color: #1ebca9;
  color: white;
}
.theme-ux_4_0 .ux4-btn-accent {
  border: none;
  background: #1ebca9;
  outline: 0;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}
.theme-ux_4_0 .ux4-btn-accent:hover {
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.theme-ux_4_0 .ux4-btn-accent.block {
  width: 100%;
}
@media (max-width: 576px) {
  .theme-ux_4_0 .ux4-btn-accent:hover {
    box-shadow: inset -2px -2px 4px rgba(0, 0, 0, 0.25), inset 2px 2px 4px rgba(0, 0, 0, 0.25);
  }
}

/* src/app/member/peopleSearch/nameSearch/detail/mini-reports.component.scss */
@media (min-width: 1200px) {
  .container {
    width: 95%;
    max-width: 1356px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 95%;
  }
}
@media (min-width: 750px) {
  .container {
    width: 95%;
  }
}
.no {
  font-weight: 400;
}
.bold {
  font-weight: 800;
}
.underline {
  text-decoration: underline;
}
.mini-container {
  border-bottom: 0px solid #dcdcdc;
}
@media (max-width: 576px) {
  .mini-container {
    padding: 0px 15px;
    border-bottom: 0px solid #dcdcdc;
  }
}
.mini-container__title {
  margin: 0;
  color: #525252;
  font-size: 32px;
  line-height: 38px;
  margin-bottom: 1em;
  margin-top: 1em;
}
@media (max-width: 990px) {
  .mini-container__title {
    font-size: 24px;
    line-height: 28px;
  }
}
.mini-container__title_bold {
  margin: 0;
  font-weight: 900;
  color: #525252;
  font-size: 32px;
  line-height: 38px;
  margin-bottom: 1em;
  margin-top: 1em;
}
@media (max-width: 990px) {
  .mini-container__title_bold {
    font-size: 24px;
    line-height: 28px;
  }
}
.mini-container__action {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-size: 24px;
  line-height: 28px;
  padding-bottom: 50px;
}
.mini-container__action--expander {
  display: flex;
  align-items: center;
  color: #81b34c;
  cursor: pointer;
  font-weight: 500;
  text-decoration: uppercase;
  text-decoration: underline;
}
.mini-container__action--expander img {
  max-width: 100%;
  margin-left: 12px;
}
.mini-dwb {
  border: 1px solid #acacac;
  border-radius: 6px;
  background: #fff;
  padding: 0 25px;
  margin: 0;
  margin-top: 24px;
  margin-bottom: 24px;
  max-width: 1440px;
}
@media (max-width: 576px) {
  .mini-dwb {
    padding: 0 20px;
  }
}
.mini-dwb-header {
  display: flex;
  position: relative;
  padding: 20px 0 16px;
  border-bottom: 1px solid #acacac;
}
@media (max-width: 990px) {
  .mini-dwb-header {
    padding: 32px 0 12px;
  }
}
@media (max-width: 576px) {
  .mini-dwb-header {
    padding: 12px 0;
  }
}
.mini-dwb-badge {
  position: absolute;
  right: -14px;
  top: 22px;
  width: 96px;
  height: 96px;
}
.mini-dwb-badge img {
  width: 100%;
}
@media (max-width: 990px) {
  .mini-dwb-badge {
    width: 64px;
    height: 64px;
    top: 38px;
  }
}
@media (max-width: 576px) {
  .mini-dwb-badge {
    width: 48px;
    height: 48px;
    top: 20px;
    right: -10px;
  }
}
.mini-dwb-title {
  font-size: 32px;
  color: #525252;
  font-weight: 900;
  margin: 0;
}
@media (max-width: 990px) {
  .mini-dwb-title {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .mini-dwb-title {
    font-size: 16px;
  }
}
.mini-checkbox {
  width: 100%;
  height: 46px;
  display: flex;
  margin-bottom: 80px;
  display: flex;
  justify-content: right;
}
@media (max-width: 834px) {
  .mini-checkbox {
    margin-bottom: 60px;
  }
}
@media (max-width: 576px) {
  .mini-checkbox {
    margin-bottom: 30px;
  }
}
.mini-checkbox .right {
  display: flex;
  width: 293px;
  height: 76px;
  justify-content: center;
  align-items: center;
  border: 1px solid #ACACAC;
  border-radius: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 10px;
}
.mini-checkbox .right input[type=checkbox] {
  box-shadow: 2px 2px 2px 0px rgba(128, 128, 128, 0.5019607843);
  width: 20px;
  height: 20px;
}
@media (max-width: 576px) {
  .mini-checkbox .right input[type=checkbox] {
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 834px) {
  .mini-checkbox .right {
    height: 71px;
    width: 255px;
  }
}
@media (max-width: 576px) {
  .mini-checkbox .right {
    width: 155px;
    height: 46px;
  }
}
.mini-checkbox .right label {
  padding-top: 10px;
  padding-left: 10px;
  font-family: Roboto;
  font-size: 24px;
  font-weight: 900;
  line-height: 28.13px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #525252;
}
@media (max-width: 834px) {
  .mini-checkbox .right label {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .mini-checkbox .right label {
    font-size: 12px;
    line-height: 14.06px;
  }
}
.mini-navigation {
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 990px) {
  .mini-navigation {
    margin-top: 32px;
  }
}
@media (max-width: 576px) {
  .mini-navigation {
    margin-top: 24px;
  }
}
.mini-ads iframe {
  border: 1px solid #acacac;
  border-radius: 6px;
  border-style: solid !important;
}
@media (max-width: 576px) {
  .aka-card-content .col-xs-6 {
    width: 100%;
  }
}
.aka-card-content .aka-card {
  padding-top: 40px;
  padding-left: 16px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .aka-card-content .aka-card {
    padding-bottom: 10px;
    padding-top: 20px;
    margin-bottom: 0px;
  }
}
.aka-card-content .aka-card__index {
  min-width: 40px;
  min-height: 40px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  line-height: 18.75px;
  background: #acacac;
  font-weight: 900;
}
@media (max-width: 576px) {
  .aka-card-content .aka-card__index {
    min-width: 30px;
    min-height: 30px;
    width: 30px;
    height: 30px;
  }
}
.aka-card-content .aka-card__name {
  margin-left: 16px;
  color: #276FCF;
  font-weight: 900;
  font-size: 18px;
  line-height: 21px;
}
@media (max-width: 576px) {
  .aka-card-content .aka-card__name {
    margin-left: 12px;
    font-size: 12px;
    line-height: 14px;
    width: 70%;
  }
}
.names {
  display: flex;
  flex-flow: row wrap;
}
.names:before {
  display: block;
}
.mini-box {
  border: 1px solid #acacac;
  background-color: #F9F9F9;
  border-radius: 6px;
  margin-bottom: 36px;
}
.mini-box.dark {
  border-color: #525252;
}
.mini-box__body {
  padding: 0px 20px;
  color: #525252;
}
@media (max-width: 990px) {
  .mini-box__body {
    padding: 0px 20px;
  }
}
@media (max-width: 576px) {
  .mini-box__body {
    padding: 0px 10px;
  }
}
.mini-box__body--row {
  border-bottom: 1px solid #dcdcdc;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (max-width: 990px) {
  .mini-box__body--row {
    margin-left: -40px;
    margin-right: -40px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 576px) {
  .mini-box__body--row {
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 28px;
    padding-right: 28px;
  }
}
.mini-box__body--row:last-of-type {
  border-bottom: none;
}
.mini-box__body--category {
  margin: 0;
  margin-bottom: 12px;
}
@media (max-width: 576px) {
  .mini-box__body--category {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.mini-box__detail {
  font-size: 18px;
  line-height: 24px;
}
.mini-box__detail--label {
  margin: 12px 0 8px;
}
@media (max-width: 990px) {
  .mini-box__detail--label {
    margin: 6px 0 4px;
  }
}
.mini-box__detail--value {
  font-weight: 900;
  margin: 0;
  margin-bottom: 12px;
}
.mini-box__detail--value.primary {
  color: #276fcf;
}
@media (max-width: 990px) {
  .mini-box__detail--value {
    margin-bottom: 6px;
  }
}
.mini-box__detail--label,
.mini-box__detail--value {
  font-size: 18px;
}
@media (max-width: 990px) {
  .mini-box__detail--label,
  .mini-box__detail--value {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .mini-box__detail--label,
  .mini-box__detail--value {
    font-size: 10px;
  }
}
.mini-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .mini-header {
    flex-direction: column;
    justify-items: flex-start;
  }
}
.mini-header__lhs {
  width: 400px;
}
.mini-header__lhs--title {
  color: #276fcf;
  font-size-adjust: 32px;
  line-height: 38px;
  font-weight: 900;
  margin: 0;
  margin-bottom: 16px;
}
.mini-header__lhs--desc {
  font-size: 16px;
  line-height: 18px;
  color: #525252;
}
@media (max-width: 576px) {
  .mini-header__lhs {
    width: 100%;
  }
}
.mini-header__rhs img {
  max-width: 350px;
}
.scroll-to-top {
  display: none;
  position: fixed;
  bottom: 2%;
  right: 0px;
  z-index: 999;
  scroll-behavior: smooth;
  flex-direction: column;
}
.scroll-to-top .btn-scroll-to-top {
  cursor: pointer;
  padding: 15px 15px 5px 15px;
  border-radius: 2%;
  font-size: 18px;
  background-color: transparent;
  border: none;
  outline: none;
}
@media screen and (max-width: 834px) {
  .scroll-to-top .btn-scroll-to-top {
    padding: 10px 10px 3px 10px;
  }
}
.scroll-to-top span {
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 14px;
  color: #276fcf;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .scroll-to-top {
    right: 0px;
  }
}
@media screen and (max-width: 534px) {
  .scroll-to-top {
    right: 0px;
  }
}
.report-line {
  border-bottom: 1px solid #dcdcdc;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
}
.empty-line {
  margin-top: 30px;
}

/* src/assets/common/css/common.css */
body {
  font-family:
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  color: #404040;
  background: #f9f9f9;
}
.contact-us-error {
  color: red !important;
}
.inline {
  display: inline;
}
.inline-important {
  display: inline !important;
}
.inline-block {
  display: inline-block;
}
.border-top:first-child {
  border-top: 1px solid #ccc;
}
.border-bottom:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
.display-none {
  display: none !important;
}
.float-right {
  float: right;
}
.float-right-important {
  float: right !important;
}
.pixel {
  width: 1px;
  height: 1px;
  display: inline;
  float: right;
  position: fixed;
  bottom: 1px;
  left: 1px;
  overflow: hidden;
}
.font-weight-bold {
  font-weight: 900;
}
.font-18 {
  font-size: 18px;
}
@media (min-width: 768px) {
  .media768-inline-block {
    display: inline-block;
  }
  .media768-display-none {
    display: none;
  }
}
@media (max-width: 767px) {
  .media767-background-image-none-important {
    background-image: none !important;
  }
}

/* node_modules/@ng-select/ng-select/themes/default.theme.css */
.ng-select.ng-select-opened > .ng-select-container {
  background: #fff;
  border-color: hsl(0, 0%, 70%) #ccc hsl(0, 0%, 85%);
}
.ng-select.ng-select-opened > .ng-select-container:hover {
  box-shadow: none;
}
.ng-select.ng-select-opened > .ng-select-container .ng-arrow {
  top: -2px;
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #999;
  border-width: 0 5px 5px;
}
.ng-select.ng-select-opened > .ng-select-container .ng-arrow:hover {
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #333;
}
.ng-select.ng-select-opened.ng-select-top > .ng-select-container {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.ng-select.ng-select-opened.ng-select-right > .ng-select-container {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ng-select.ng-select-opened.ng-select-bottom > .ng-select-container {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.ng-select.ng-select-opened.ng-select-left > .ng-select-container {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ng-select.ng-select-focused:not(.ng-select-opened) > .ng-select-container {
  border-color: #007eff;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 0 3px rgba(0, 126, 255, .1);
}
.ng-select.ng-select-disabled > .ng-select-container {
  background-color: #f9f9f9;
}
.ng-select .ng-has-value .ng-placeholder {
  display: none;
}
.ng-select .ng-select-container {
  color: #333;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #ccc;
  min-height: 36px;
  align-items: center;
}
.ng-select .ng-select-container:hover {
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
}
.ng-select .ng-select-container .ng-value-container {
  align-items: center;
  padding-left: 10px;
}
[dir=rtl] .ng-select .ng-select-container .ng-value-container {
  padding-right: 10px;
  padding-left: 0;
}
.ng-select .ng-select-container .ng-value-container .ng-placeholder {
  color: #999;
}
.ng-select.ng-select-single .ng-select-container {
  height: 36px;
}
.ng-select.ng-select-single .ng-select-container .ng-value-container .ng-input {
  top: 5px;
  left: 0;
  padding-left: 10px;
  padding-right: 50px;
}
[dir=rtl] .ng-select.ng-select-single .ng-select-container .ng-value-container .ng-input {
  padding-right: 10px;
  padding-left: 50px;
}
.ng-select.ng-select-multiple.ng-select-disabled > .ng-select-container .ng-value-container .ng-value {
  background-color: #f9f9f9;
  border: 1px solid hsl(0, 0%, 90%);
}
.ng-select.ng-select-multiple.ng-select-disabled > .ng-select-container .ng-value-container .ng-value .ng-value-label {
  padding: 0 5px;
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container {
  padding-top: 5px;
  padding-left: 7px;
}
[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container {
  padding-right: 7px;
  padding-left: 0;
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value {
  font-size: .9em;
  margin-bottom: 5px;
  color: #333;
  background-color: rgb(234.6, 244.68, 255);
  border-radius: 2px;
  margin-right: 5px;
}
[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value {
  margin-right: 0;
  margin-left: 5px;
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled {
  background-color: #f9f9f9;
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled .ng-value-label {
  padding-left: 5px;
}
[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled .ng-value-label {
  padding-left: 0;
  padding-right: 5px;
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-label {
  display: inline-block;
  padding: 1px 5px;
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon {
  display: inline-block;
  padding: 1px 5px;
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon:hover {
  background-color: rgb(209.1, 231.78, 255);
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon.left {
  border-right: 1px solid rgb(183.6, 218.88, 255);
}
[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon.left {
  border-left: 1px solid rgb(183.6, 218.88, 255);
  border-right: none;
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon.right {
  border-left: 1px solid rgb(183.6, 218.88, 255);
}
[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon.right {
  border-left: 0;
  border-right: 1px solid rgb(183.6, 218.88, 255);
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-input {
  padding: 0 0 3px 3px;
}
[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-input {
  padding: 0 3px 3px 0;
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-input > input {
  color: #000;
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-placeholder {
  top: 5px;
  padding-bottom: 5px;
  padding-left: 3px;
}
[dir=rtl] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-placeholder {
  padding-right: 3px;
  padding-left: 0;
}
.ng-select .ng-clear-wrapper {
  color: #999;
}
.ng-select .ng-clear-wrapper:hover .ng-clear {
  color: #d0021b;
}
.ng-select .ng-clear-wrapper:focus .ng-clear {
  color: #d0021b;
}
.ng-select .ng-clear-wrapper:focus {
  outline: none;
}
.ng-select .ng-spinner-zone {
  padding: 5px 5px 0 0;
}
[dir=rtl] .ng-select .ng-spinner-zone {
  padding: 5px 0 0 5px;
}
.ng-select .ng-arrow-wrapper {
  width: 25px;
  padding-right: 5px;
}
[dir=rtl] .ng-select .ng-arrow-wrapper {
  padding-left: 5px;
  padding-right: 0;
}
.ng-select .ng-arrow-wrapper:hover .ng-arrow {
  border-top-color: #666;
}
.ng-select .ng-arrow-wrapper .ng-arrow {
  border-color: #999 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  border-style: solid;
  border-width: 5px 5px 2.5px;
}
.ng-dropdown-panel {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
  left: 0;
}
.ng-dropdown-panel.ng-select-top {
  bottom: 100%;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-color: hsl(0, 0%, 90%);
  margin-bottom: -1px;
}
.ng-dropdown-panel.ng-select-top .ng-dropdown-panel-items .ng-option:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.ng-dropdown-panel.ng-select-right {
  left: 100%;
  top: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-bottom-color: hsl(0, 0%, 90%);
  margin-bottom: -1px;
}
.ng-dropdown-panel.ng-select-right .ng-dropdown-panel-items .ng-option:first-child {
  border-top-right-radius: 4px;
}
.ng-dropdown-panel.ng-select-bottom {
  top: 100%;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-color: hsl(0, 0%, 90%);
  margin-top: -1px;
}
.ng-dropdown-panel.ng-select-bottom .ng-dropdown-panel-items .ng-option:last-child {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ng-dropdown-panel.ng-select-left {
  left: -100%;
  top: 0;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-bottom-color: hsl(0, 0%, 90%);
  margin-bottom: -1px;
}
.ng-dropdown-panel.ng-select-left .ng-dropdown-panel-items .ng-option:first-child {
  border-top-left-radius: 4px;
}
.ng-dropdown-panel .ng-dropdown-header {
  border-bottom: 1px solid #ccc;
  padding: 5px 7px;
}
.ng-dropdown-panel .ng-dropdown-footer {
  border-top: 1px solid #ccc;
  padding: 5px 7px;
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup {
  -webkit-user-select: none;
  user-select: none;
  padding: 8px 10px;
  font-weight: 500;
  color: rgba(0, 0, 0, .54);
  cursor: pointer;
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-disabled {
  cursor: default;
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-marked {
  background-color: rgb(244.8, 249.84, 255);
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-selected,
.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-selected.ng-option-marked {
  color: rgba(0, 0, 0, .54);
  background-color: rgb(234.6, 244.68, 255);
  font-weight: 600;
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option {
  background-color: #fff;
  color: rgba(0, 0, 0, .87);
  padding: 8px 10px;
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected,
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected.ng-option-marked {
  color: #333;
  background-color: rgb(234.6, 244.68, 255);
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected .ng-option-label,
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected.ng-option-marked .ng-option-label {
  font-weight: 600;
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-marked {
  background-color: rgb(244.8, 249.84, 255);
  color: #333;
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-disabled {
  color: #ccc;
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-child {
  padding-left: 22px;
}
[dir=rtl] .ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-child {
  padding-right: 22px;
  padding-left: 0;
}
.ng-dropdown-panel .ng-dropdown-panel-items .ng-option .ng-tag-label {
  font-size: 80%;
  font-weight: 400;
  padding-right: 5px;
}
[dir=rtl] .ng-dropdown-panel .ng-dropdown-panel-items .ng-option .ng-tag-label {
  padding-left: 5px;
  padding-right: 0;
}
[dir=rtl] .ng-dropdown-panel {
  direction: rtl;
  text-align: right;
}

/* src/styles/common.scss */
.custom-btn {
  display: flex;
  width: max-content;
  justify-content: center;
  align-items: center;
  padding: 6px 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.5s;
  margin: 0 auto;
  border: none;
  outline: none;
}
.custom-btn__icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  display: flex;
  align-items: center;
}
.custom-btn__icon > img {
  max-width: 100%;
  max-height: 100%;
}
.custom-btn__text {
  font-size: 12px;
  margin-top: 3px;
}
.custom-btn:hover {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
  color: #fff;
  text-decoration: none;
}
.custom-btn-blue {
  background-color: #276FCF;
}
.custom-btn-gold {
  background-color: #E89F10;
}
.custom-btn-green {
  background-color: #81B34C;
}
.custom-btn-transparent {
  background-color: transparent;
}
.custom-btn-border-blue {
  border: solid 1px #276FCF;
}
.custom-btn-color-white {
  color: #FFFFFF;
}
.custom-btn-color-black {
  color: #000000;
}
.custom-btn-color-blue {
  color: #276FCF;
}
.custom-btn-color-gold {
  color: #E89F10;
}
.custom-btn-color-green {
  color: #81B34C;
}
.custom-btn-rounded {
  border-radius: 25px;
  padding: 8px 12px;
}
.custom-btn-full-width {
  width: 100%;
}
.custom-btn-shadow {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
}
.custom-btn-icon-right .custom-btn__icon {
  margin-left: 8px;
  margin-right: 0;
  order: 2;
}
ng-select.ng-invalid.ng-touched .ng-select-container {
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
}
.ng-select.ng-select-single .ng-select-container {
  border: none;
  outline: none;
  min-height: 32px;
  height: 32px;
  box-shadow: none !important;
}
.ng-select.ng-select-single .ng-select-container .ng-value-container,
.ng-select.ng-select-single .ng-select-container .ng-value-container .ng-value {
  color: #525252;
}
.modal-backdrop {
  opacity: 0 !important;
}
.switch-xs > span {
  height: 16px !important;
}
.switch-xs .switch-pane {
  width: 35px;
  height: 15px;
}
.switch-xs .switch-pane > span {
  line-height: 17px !important;
}
.switch-xs small {
  width: 15px !important;
  height: 15px !important;
  top: 2px;
  right: calc(100% - 18px) !important;
}
.switch-xs .checked small {
  right: 2px !important;
}
.d-flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.justify-center {
  justify-content: center;
}
.text-muted {
  color: #999999 !important;
}
.cursor-pointer {
  cursor: pointer;
}
@media (max-width: 767px) {
  body.disable-scroll {
    overflow: hidden;
  }
}
.btn.disabled,
.btn[disabled] {
  cursor: not-allowed !important;
}
#recaptcha {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
