@charset "UTF-8";
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT
Copyright (c) 2015 Daniel Eden
*/
body {
  -webkit-backface-visibility: hidden; }

.animated, div.add-feature-price {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }
  .animated.infinite, div.infinite.add-feature-price {
    animation-iteration-count: infinite; }
  .animated.hinge, div.hinge.add-feature-price {
    -webkit-animation-duration: 2s;
    animation-duration: 2s; }
  .animated.bounceIn, div.bounceIn.add-feature-price, .animated.bounceOut, div.bounceOut.add-feature-price {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s; }
  .animated.flipOutX, div.flipOutX.add-feature-price, .animated.flipOutY, div.flipOutY.add-feature-price {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s; }

.animated.infinite, div.infinite.add-feature-price {
  animation-iteration-count: infinite;
  display: inline-block; }

.animated.delay-1, div.delay-1.add-feature-price {
  animation-delay: 0.1s; }

.animated.delay-2, div.delay-2.add-feature-price {
  animation-delay: 0.2s; }

.animated.delay-3, div.delay-3.add-feature-price {
  animation-delay: 0.3s; }

.animated.delay-4, div.delay-4.add-feature-price {
  animation-delay: 0.4s; }

.animated.delay-5, div.delay-5.add-feature-price {
  animation-delay: 0.5s; }

.animated.delay-6, div.delay-6.add-feature-price {
  animation-delay: 0.6s; }

.animated.delay-7, div.delay-7.add-feature-price {
  animation-delay: 0.7s; }

.animated.delay-8, div.delay-8.add-feature-price {
  animation-delay: 0.8s; }

.animated.delay-9, div.delay-9.add-feature-price {
  animation-delay: 0.9s; }

.animated.delay-10, div.delay-10.add-feature-price {
  animation-delay: 1s; }

.animated.delay-11, div.delay-11.add-feature-price {
  animation-delay: 1.1s; }

.animated.delay-12, div.delay-12.add-feature-price {
  animation-delay: 1.2s; }

.animated.delay-13, div.delay-13.add-feature-price {
  animation-delay: 1.3s; }

.animated.delay-14, div.delay-14.add-feature-price {
  animation-delay: 1.4s; }

.animated.delay-15, div.delay-15.add-feature-price {
  animation-delay: 1.5s; }

.animated.delay-16, div.delay-16.add-feature-price {
  animation-delay: 1.6s; }

.animated.delay-17, div.delay-17.add-feature-price {
  animation-delay: 1.7s; }

.animated.delay-18, div.delay-18.add-feature-price {
  animation-delay: 1.8s; }

.animated.delay-19, div.delay-19.add-feature-price {
  animation-delay: 1.9s; }

.animated.delay-20, div.delay-20.add-feature-price {
  animation-delay: 2s; }

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-30px); }
  60% {
    -webkit-transform: translateY(-15px); } }

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0); }
  40% {
    transform: translateY(-30px); }
  60% {
    transform: translateY(-15px); } }

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce; }

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1); }
  50% {
    -webkit-transform: scale(1.1); }
  100% {
    -webkit-transform: scale(1); } }

@keyframes pulse {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse; }

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

.flash {
  -webkit-animation-name: flash;
  animation-name: flash; }

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05); }
  70% {
    -webkit-transform: scale(0.9); }
  100% {
    -webkit-transform: scale(1); } }

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3); }
  50% {
    opacity: 1;
    transform: scale(1.05); }
  70% {
    transform: scale(0.9); }
  100% {
    transform: scale(1); } }

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn; }

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

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

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

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

.fadeOut, div.add-feature-price:before {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px); } }

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0); }
  100% {
    opacity: 0;
    transform: translateY(20px); } }

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown; }

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px); } }

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0); }
  100% {
    opacity: 0;
    transform: translateX(-20px); } }

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft; }

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px); } }

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0); }
  100% {
    opacity: 0;
    transform: translateX(20px); } }

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight; }

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px); } }

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0); }
  100% {
    opacity: 0;
    transform: translateY(-20px); } }

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp; }

@keyframes balloon-fly {
  from {
    transform: translateY(-5px); }
  40% {
    transform: translateY(3px); }
  to {
    transform: translateY(-5px); } }

/*!
 * Bootstrap v4.0.0-alpha.3 (http://getbootstrap.com)
 * Copyright 2011-2016 The Bootstrap Authors
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v4.0.0 | 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,
main,
menu,
nav,
section,
summary {
  display: block; }

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

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

progress {
  vertical-align: baseline; }

template,
[hidden] {
  display: none; }

a {
  background-color: transparent; }

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

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted; }

b,
strong {
  font-weight: inherit; }

b,
strong {
  font-weight: bolder; }

dfn {
  font-style: italic; }

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

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

small {
  font-size: 80%; }

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

img {
  border-style: none; }

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

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

figure {
  margin: 1em 40px; }

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

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

optgroup {
  font-weight: bold; }

button,
input,
select {
  overflow: visible; }

button,
input,
select,
textarea {
  margin: 0; }

button,
select {
  text-transform: none; }

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

[disabled] {
  cursor: default; }

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

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

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

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

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal; }

textarea {
  overflow: auto; }

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

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

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

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

@media print {
  *,
  *::before,
  *::after,
  *::first-letter,
  *::first-line {
    text-shadow: none !important;
    box-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  abbr[title]::after {
    content: " (" attr(title) ")"; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .navbar {
    display: none; }
  .btn > .caret, .wizard > .actions a > .caret,
  .dropup > .btn > .caret,
  .wizard > .actions .dropup > a > .caret {
    border-top-color: #000 !important; }
  .tag {
    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; } }

html {
  box-sizing: border-box; }

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

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

html {
  font-size: 16px;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

body {
  font-family: "Gilroy", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #373a3c;
  background-color: #fff; }

[tabindex="-1"]:focus {
  outline: none !important; }

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: .5rem; }

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

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #818a91; }

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

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

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

dt {
  font-weight: bold; }

dd {
  margin-bottom: .5rem;
  margin-left: 0; }

blockquote {
  margin: 0 0 1rem; }

a {
  color: #252525;
  text-decoration: none; }
  a:focus, a:hover {
    color: black;
    text-decoration: underline; }
  a:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }

a:not([href]):not([tabindex]):not(.btn) {
  color: inherit;
  text-decoration: none; }
  a:not([href]):not([tabindex]):not(.btn):focus, a:not([href]):not([tabindex]):not(.btn):hover {
    color: inherit;
    text-decoration: none; }
  a:not([href]):not([tabindex]):not(.btn):focus {
    outline: none; }

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

figure {
  margin: 0 0 1rem; }

img {
  vertical-align: middle; }

[role="button"] {
  cursor: pointer; }

a,
area,
button,
[role="button"],
input,
label,
select,
summary,
textarea {
  touch-action: manipulation; }

table {
  border-collapse: collapse;
  background-color: transparent; }

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

th {
  text-align: left; }

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

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

input,
button,
select,
textarea {
  margin: 0;
  line-height: inherit;
  border-radius: 0; }

input[type="radio"]:disabled,
input[type="checkbox"]:disabled {
  cursor: not-allowed; }

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox; }

textarea {
  resize: vertical; }

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

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit; }

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

output {
  display: inline-block; }

[hidden] {
  display: none !important; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, input.number-for-range[type=number], .h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit; }

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

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

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

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

h5, .h5, input.number-for-range[type=number] {
  font-size: 1.25rem; }

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

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

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

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

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

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

.display-5 {
  font-size: 5rem;
  font-weight: 300; }

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

small,
.small {
  font-size: 80%;
  font-weight: normal; }

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

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

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

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

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

.blockquote {
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  border-left: 0.25rem solid #eceeef; }

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #818a91; }
  .blockquote-footer::before {
    content: "\2014 \00A0"; }

.blockquote-reverse {
  padding-right: 1rem;
  padding-left: 0;
  text-align: right;
  border-right: 0.25rem solid #eceeef;
  border-left: 0; }

.blockquote-reverse .blockquote-footer::before {
  content: ""; }

.blockquote-reverse .blockquote-footer::after {
  content: "\00A0 \2014"; }

dl.row > dd + dt {
  clear: left; }

.img-fluid, .carousel-inner > .carousel-item > img,
.carousel-inner > .carousel-item > a > img, .card img, .comments-list img,
.reply-form img {
  display: block;
  max-width: 100%;
  height: auto; }

.img-rounded {
  border-radius: 2rem; }

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 1rem;
  transition: all .2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto; }

.img-circle {
  border-radius: 50%; }

.figure {
  display: inline-block; }

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

.figure-caption {
  font-size: 90%;
  color: #818a91; }

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

code {
  padding: 0.2rem 0.4rem;
  font-size: 90%;
  color: #bd4147;
  background-color: #f7f7f9;
  border-radius: 1rem; }

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 0.75rem; }
  kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: bold; }

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 90%;
  color: #373a3c; }
  pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
    border-radius: 0; }

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

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%; }
  .container::after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 544px) {
    .container {
      max-width: 576px; } }
  @media (min-width: 768px) {
    .container {
      max-width: 720px; } }
  @media (min-width: 992px) {
    .container {
      max-width: 945px; } }
  @media (min-width: 1200px) {
    .container {
      max-width: 1180px; } }

.container-fluid {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px; }
  .container-fluid::after {
    content: "";
    display: table;
    clear: both; }

.row {
  margin-left: -15px;
  margin-right: -15px; }
  .row::after {
    content: "";
    display: table;
    clear: both; }

.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, .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, .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, .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, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px; }

.col-xs-1 {
  float: left;
  width: 8.33333%; }

.col-xs-2 {
  float: left;
  width: 16.66667%; }

.col-xs-3 {
  float: left;
  width: 25%; }

.col-xs-4 {
  float: left;
  width: 33.33333%; }

.col-xs-5 {
  float: left;
  width: 41.66667%; }

.col-xs-6 {
  float: left;
  width: 50%; }

.col-xs-7 {
  float: left;
  width: 58.33333%; }

.col-xs-8 {
  float: left;
  width: 66.66667%; }

.col-xs-9 {
  float: left;
  width: 75%; }

.col-xs-10 {
  float: left;
  width: 83.33333%; }

.col-xs-11 {
  float: left;
  width: 91.66667%; }

.col-xs-12 {
  float: left;
  width: 100%; }

.pull-xs-0 {
  right: auto; }

.pull-xs-1 {
  right: 8.33333%; }

.pull-xs-2 {
  right: 16.66667%; }

.pull-xs-3 {
  right: 25%; }

.pull-xs-4 {
  right: 33.33333%; }

.pull-xs-5 {
  right: 41.66667%; }

.pull-xs-6 {
  right: 50%; }

.pull-xs-7 {
  right: 58.33333%; }

.pull-xs-8 {
  right: 66.66667%; }

.pull-xs-9 {
  right: 75%; }

.pull-xs-10 {
  right: 83.33333%; }

.pull-xs-11 {
  right: 91.66667%; }

.pull-xs-12 {
  right: 100%; }

.push-xs-0 {
  left: auto; }

.push-xs-1 {
  left: 8.33333%; }

.push-xs-2 {
  left: 16.66667%; }

.push-xs-3 {
  left: 25%; }

.push-xs-4 {
  left: 33.33333%; }

.push-xs-5 {
  left: 41.66667%; }

.push-xs-6 {
  left: 50%; }

.push-xs-7 {
  left: 58.33333%; }

.push-xs-8 {
  left: 66.66667%; }

.push-xs-9 {
  left: 75%; }

.push-xs-10 {
  left: 83.33333%; }

.push-xs-11 {
  left: 91.66667%; }

.push-xs-12 {
  left: 100%; }

.offset-xs-1 {
  margin-left: 8.33333%; }

.offset-xs-2 {
  margin-left: 16.66667%; }

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

.offset-xs-4 {
  margin-left: 33.33333%; }

.offset-xs-5 {
  margin-left: 41.66667%; }

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

.offset-xs-7 {
  margin-left: 58.33333%; }

.offset-xs-8 {
  margin-left: 66.66667%; }

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

.offset-xs-10 {
  margin-left: 83.33333%; }

.offset-xs-11 {
  margin-left: 91.66667%; }

@media (min-width: 544px) {
  .col-sm-1 {
    float: left;
    width: 8.33333%; }
  .col-sm-2 {
    float: left;
    width: 16.66667%; }
  .col-sm-3 {
    float: left;
    width: 25%; }
  .col-sm-4 {
    float: left;
    width: 33.33333%; }
  .col-sm-5 {
    float: left;
    width: 41.66667%; }
  .col-sm-6 {
    float: left;
    width: 50%; }
  .col-sm-7 {
    float: left;
    width: 58.33333%; }
  .col-sm-8 {
    float: left;
    width: 66.66667%; }
  .col-sm-9 {
    float: left;
    width: 75%; }
  .col-sm-10 {
    float: left;
    width: 83.33333%; }
  .col-sm-11 {
    float: left;
    width: 91.66667%; }
  .col-sm-12 {
    float: left;
    width: 100%; }
  .pull-sm-0 {
    right: auto; }
  .pull-sm-1 {
    right: 8.33333%; }
  .pull-sm-2 {
    right: 16.66667%; }
  .pull-sm-3 {
    right: 25%; }
  .pull-sm-4 {
    right: 33.33333%; }
  .pull-sm-5 {
    right: 41.66667%; }
  .pull-sm-6 {
    right: 50%; }
  .pull-sm-7 {
    right: 58.33333%; }
  .pull-sm-8 {
    right: 66.66667%; }
  .pull-sm-9 {
    right: 75%; }
  .pull-sm-10 {
    right: 83.33333%; }
  .pull-sm-11 {
    right: 91.66667%; }
  .pull-sm-12 {
    right: 100%; }
  .push-sm-0 {
    left: auto; }
  .push-sm-1 {
    left: 8.33333%; }
  .push-sm-2 {
    left: 16.66667%; }
  .push-sm-3 {
    left: 25%; }
  .push-sm-4 {
    left: 33.33333%; }
  .push-sm-5 {
    left: 41.66667%; }
  .push-sm-6 {
    left: 50%; }
  .push-sm-7 {
    left: 58.33333%; }
  .push-sm-8 {
    left: 66.66667%; }
  .push-sm-9 {
    left: 75%; }
  .push-sm-10 {
    left: 83.33333%; }
  .push-sm-11 {
    left: 91.66667%; }
  .push-sm-12 {
    left: 100%; }
  .offset-sm-0 {
    margin-left: 0%; }
  .offset-sm-1 {
    margin-left: 8.33333%; }
  .offset-sm-2 {
    margin-left: 16.66667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.33333%; }
  .offset-sm-5 {
    margin-left: 41.66667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.33333%; }
  .offset-sm-8 {
    margin-left: 66.66667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.33333%; }
  .offset-sm-11 {
    margin-left: 91.66667%; } }

@media (min-width: 768px) {
  .col-md-1 {
    float: left;
    width: 8.33333%; }
  .col-md-2 {
    float: left;
    width: 16.66667%; }
  .col-md-3 {
    float: left;
    width: 25%; }
  .col-md-4 {
    float: left;
    width: 33.33333%; }
  .col-md-5 {
    float: left;
    width: 41.66667%; }
  .col-md-6 {
    float: left;
    width: 50%; }
  .col-md-7 {
    float: left;
    width: 58.33333%; }
  .col-md-8 {
    float: left;
    width: 66.66667%; }
  .col-md-9 {
    float: left;
    width: 75%; }
  .col-md-10 {
    float: left;
    width: 83.33333%; }
  .col-md-11 {
    float: left;
    width: 91.66667%; }
  .col-md-12 {
    float: left;
    width: 100%; }
  .pull-md-0 {
    right: auto; }
  .pull-md-1 {
    right: 8.33333%; }
  .pull-md-2 {
    right: 16.66667%; }
  .pull-md-3 {
    right: 25%; }
  .pull-md-4 {
    right: 33.33333%; }
  .pull-md-5 {
    right: 41.66667%; }
  .pull-md-6 {
    right: 50%; }
  .pull-md-7 {
    right: 58.33333%; }
  .pull-md-8 {
    right: 66.66667%; }
  .pull-md-9 {
    right: 75%; }
  .pull-md-10 {
    right: 83.33333%; }
  .pull-md-11 {
    right: 91.66667%; }
  .pull-md-12 {
    right: 100%; }
  .push-md-0 {
    left: auto; }
  .push-md-1 {
    left: 8.33333%; }
  .push-md-2 {
    left: 16.66667%; }
  .push-md-3 {
    left: 25%; }
  .push-md-4 {
    left: 33.33333%; }
  .push-md-5 {
    left: 41.66667%; }
  .push-md-6 {
    left: 50%; }
  .push-md-7 {
    left: 58.33333%; }
  .push-md-8 {
    left: 66.66667%; }
  .push-md-9 {
    left: 75%; }
  .push-md-10 {
    left: 83.33333%; }
  .push-md-11 {
    left: 91.66667%; }
  .push-md-12 {
    left: 100%; }
  .offset-md-0 {
    margin-left: 0%; }
  .offset-md-1 {
    margin-left: 8.33333%; }
  .offset-md-2 {
    margin-left: 16.66667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.33333%; }
  .offset-md-5 {
    margin-left: 41.66667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.33333%; }
  .offset-md-8 {
    margin-left: 66.66667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.33333%; }
  .offset-md-11 {
    margin-left: 91.66667%; } }

@media (min-width: 992px) {
  .col-lg-1 {
    float: left;
    width: 8.33333%; }
  .col-lg-2 {
    float: left;
    width: 16.66667%; }
  .col-lg-3 {
    float: left;
    width: 25%; }
  .col-lg-4 {
    float: left;
    width: 33.33333%; }
  .col-lg-5 {
    float: left;
    width: 41.66667%; }
  .col-lg-6 {
    float: left;
    width: 50%; }
  .col-lg-7 {
    float: left;
    width: 58.33333%; }
  .col-lg-8 {
    float: left;
    width: 66.66667%; }
  .col-lg-9 {
    float: left;
    width: 75%; }
  .col-lg-10 {
    float: left;
    width: 83.33333%; }
  .col-lg-11 {
    float: left;
    width: 91.66667%; }
  .col-lg-12 {
    float: left;
    width: 100%; }
  .pull-lg-0 {
    right: auto; }
  .pull-lg-1 {
    right: 8.33333%; }
  .pull-lg-2 {
    right: 16.66667%; }
  .pull-lg-3 {
    right: 25%; }
  .pull-lg-4 {
    right: 33.33333%; }
  .pull-lg-5 {
    right: 41.66667%; }
  .pull-lg-6 {
    right: 50%; }
  .pull-lg-7 {
    right: 58.33333%; }
  .pull-lg-8 {
    right: 66.66667%; }
  .pull-lg-9 {
    right: 75%; }
  .pull-lg-10 {
    right: 83.33333%; }
  .pull-lg-11 {
    right: 91.66667%; }
  .pull-lg-12 {
    right: 100%; }
  .push-lg-0 {
    left: auto; }
  .push-lg-1 {
    left: 8.33333%; }
  .push-lg-2 {
    left: 16.66667%; }
  .push-lg-3 {
    left: 25%; }
  .push-lg-4 {
    left: 33.33333%; }
  .push-lg-5 {
    left: 41.66667%; }
  .push-lg-6 {
    left: 50%; }
  .push-lg-7 {
    left: 58.33333%; }
  .push-lg-8 {
    left: 66.66667%; }
  .push-lg-9 {
    left: 75%; }
  .push-lg-10 {
    left: 83.33333%; }
  .push-lg-11 {
    left: 91.66667%; }
  .push-lg-12 {
    left: 100%; }
  .offset-lg-0 {
    margin-left: 0%; }
  .offset-lg-1 {
    margin-left: 8.33333%; }
  .offset-lg-2 {
    margin-left: 16.66667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.33333%; }
  .offset-lg-5 {
    margin-left: 41.66667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.33333%; }
  .offset-lg-8 {
    margin-left: 66.66667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.33333%; }
  .offset-lg-11 {
    margin-left: 91.66667%; } }

@media (min-width: 1200px) {
  .col-xl-1 {
    float: left;
    width: 8.33333%; }
  .col-xl-2 {
    float: left;
    width: 16.66667%; }
  .col-xl-3 {
    float: left;
    width: 25%; }
  .col-xl-4 {
    float: left;
    width: 33.33333%; }
  .col-xl-5 {
    float: left;
    width: 41.66667%; }
  .col-xl-6 {
    float: left;
    width: 50%; }
  .col-xl-7 {
    float: left;
    width: 58.33333%; }
  .col-xl-8 {
    float: left;
    width: 66.66667%; }
  .col-xl-9 {
    float: left;
    width: 75%; }
  .col-xl-10 {
    float: left;
    width: 83.33333%; }
  .col-xl-11 {
    float: left;
    width: 91.66667%; }
  .col-xl-12 {
    float: left;
    width: 100%; }
  .pull-xl-0 {
    right: auto; }
  .pull-xl-1 {
    right: 8.33333%; }
  .pull-xl-2 {
    right: 16.66667%; }
  .pull-xl-3 {
    right: 25%; }
  .pull-xl-4 {
    right: 33.33333%; }
  .pull-xl-5 {
    right: 41.66667%; }
  .pull-xl-6 {
    right: 50%; }
  .pull-xl-7 {
    right: 58.33333%; }
  .pull-xl-8 {
    right: 66.66667%; }
  .pull-xl-9 {
    right: 75%; }
  .pull-xl-10 {
    right: 83.33333%; }
  .pull-xl-11 {
    right: 91.66667%; }
  .pull-xl-12 {
    right: 100%; }
  .push-xl-0 {
    left: auto; }
  .push-xl-1 {
    left: 8.33333%; }
  .push-xl-2 {
    left: 16.66667%; }
  .push-xl-3 {
    left: 25%; }
  .push-xl-4 {
    left: 33.33333%; }
  .push-xl-5 {
    left: 41.66667%; }
  .push-xl-6 {
    left: 50%; }
  .push-xl-7 {
    left: 58.33333%; }
  .push-xl-8 {
    left: 66.66667%; }
  .push-xl-9 {
    left: 75%; }
  .push-xl-10 {
    left: 83.33333%; }
  .push-xl-11 {
    left: 91.66667%; }
  .push-xl-12 {
    left: 100%; }
  .offset-xl-0 {
    margin-left: 0%; }
  .offset-xl-1 {
    margin-left: 8.33333%; }
  .offset-xl-2 {
    margin-left: 16.66667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.33333%; }
  .offset-xl-5 {
    margin-left: 41.66667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.33333%; }
  .offset-xl-8 {
    margin-left: 66.66667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.33333%; }
  .offset-xl-11 {
    margin-left: 91.66667%; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thead-inverse th {
  color: #fff;
  background-color: #373a3c; }

.thead-default th {
  color: #55595c;
  background-color: #eceeef; }

.table-inverse {
  color: #eceeef;
  background-color: #373a3c; }
  .table-inverse th,
  .table-inverse td,
  .table-inverse thead th {
    border-color: #55595c; }
  .table-inverse.table-bordered {
    border: 0; }

.table-responsive {
  display: block;
  width: 100%;
  min-height: .01%; }
  @media (max-width: 991px) {
    .table-responsive {
      overflow-x: auto; }
      .table-responsive::-webkit-scrollbar {
        width: 4px;
        height: 4px; }
      .table-responsive::-webkit-scrollbar-track {
        background: #fff;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
        border-radius: 2px; }
      .table-responsive::-webkit-scrollbar-thumb {
        border-radius: 2px;
        width: 4px;
        height: 4px;
        background: #7159B5; } }

.table-reflow thead {
  float: left; }

.table-reflow tbody {
  display: block;
  white-space: nowrap; }

.table-reflow th,
.table-reflow td {
  border-top: 1px solid #eceeef;
  border-left: 1px solid #eceeef; }
  .table-reflow th:last-child,
  .table-reflow td:last-child {
    border-right: 1px solid #eceeef; }

.table-reflow thead:last-child tr:last-child th,
.table-reflow thead:last-child tr:last-child td,
.table-reflow tbody:last-child tr:last-child th,
.table-reflow tbody:last-child tr:last-child td,
.table-reflow tfoot:last-child tr:last-child th,
.table-reflow tfoot:last-child tr:last-child td {
  border-bottom: 1px solid #eceeef; }

.table-reflow tr {
  float: left; }
  .table-reflow tr th,
  .table-reflow tr td {
    display: block !important;
    border: 1px solid #eceeef; }

.form-control {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.25;
  color: #000;
  background-color: #fff;
  background-image: none;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 1rem; }
  .form-control::-ms-expand {
    background-color: transparent;
    border: 0; }
  .form-control:focus {
    color: #55595c;
    background-color: #fff;
    border-color: #66afe9;
    outline: none; }
  .form-control::placeholder {
    color: #999;
    opacity: 1; }
  .form-control:disabled, .form-control[readonly] {
    background-color: #eceeef;
    opacity: 1; }
  .form-control:disabled {
    cursor: not-allowed; }

select.form-control:not([size]):not([multiple]) {
  height: 2.5rem; }

select.form-control:focus::-ms-value {
  color: #55595c;
  background-color: #fff; }

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

.col-form-label {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0; }

.col-form-label-lg {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1.15rem; }

.col-form-label-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.875rem; }

.col-form-legend {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0;
  font-size: 1rem; }

.form-control-static {
  min-height: 2.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0; }
  .form-control-static.form-control-sm, .input-group-sm > .form-control-static.form-control,
  .input-group-sm > .form-control-static.input-group-addon,
  .input-group-sm > .input-group-btn > .form-control-static.btn, .wizard > .actions .input-group-sm > .input-group-btn > a.form-control-static, .form-control-static.form-control-lg, .input-group-lg > .form-control-static.form-control,
  .input-group-lg > .form-control-static.input-group-addon,
  .input-group-lg > .input-group-btn > .form-control-static.btn, .wizard > .actions .input-group-lg > .input-group-btn > a.form-control-static {
    padding-right: 0;
    padding-left: 0; }

.form-control-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn, .wizard > .actions .input-group-sm > .input-group-btn > a {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.75rem; }

select.form-control-sm:not([size]):not([multiple]), .input-group-sm > select.form-control:not([size]):not([multiple]),
.input-group-sm > select.input-group-addon:not([size]):not([multiple]),
.input-group-sm > .input-group-btn > select.btn:not([size]):not([multiple]) {
  height: 1.8125rem; }

.form-control-lg, .input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn, .wizard > .actions .input-group-lg > .input-group-btn > a {
  padding: 0.75rem 1.5rem;
  font-size: 1.15rem;
  border-radius: 2rem; }

select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.form-control:not([size]):not([multiple]),
.input-group-lg > select.input-group-addon:not([size]):not([multiple]),
.input-group-lg > .input-group-btn > select.btn:not([size]):not([multiple]) {
  height: 3.03333rem; }

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

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

.form-check {
  position: relative;
  display: block;
  margin-bottom: 0.75rem; }
  .form-check + .form-check {
    margin-top: -.25rem; }
  .form-check.disabled .form-check-label {
    color: #818a91;
    cursor: not-allowed; }

.form-check-label {
  padding-left: 1.25rem;
  margin-bottom: 0;
  cursor: pointer; }

.form-check-input {
  position: absolute;
  margin-top: .25rem;
  margin-left: -1.25rem; }
  .form-check-input:only-child {
    position: static; }

.form-check-inline {
  position: relative;
  display: inline-block;
  padding-left: 1.25rem;
  margin-bottom: 0;
  vertical-align: middle;
  cursor: pointer; }
  .form-check-inline + .form-check-inline {
    margin-left: .75rem; }
  .form-check-inline.disabled {
    cursor: not-allowed; }

.form-control-feedback {
  margin-top: 0.25rem; }

.form-control-success,
.form-control-warning,
.form-control-danger {
  padding-right: 2.25rem;
  background-repeat: no-repeat;
  background-position: center right 0.625rem;
  background-size: 1.25rem 1.25rem; }

.has-success .form-control-feedback,
.has-success .form-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,
.has-success .custom-control {
  color: #78cd62; }

.has-success .form-control {
  border-color: #78cd62; }

.has-success .input-group-addon {
  color: #78cd62;
  border-color: #78cd62;
  background-color: #fdfefd; }

.has-success .form-control-feedback {
  color: #78cd62; }

.has-success .form-control-success {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%235cb85c' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E"); }

.has-warning .form-control-feedback,
.has-warning .form-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,
.has-warning .custom-control {
  color: #ffb900; }

.has-warning .form-control {
  border-color: #ffb900; }

.has-warning .input-group-addon {
  color: #ffb900;
  border-color: #ffb900;
  background-color: #fff1cc; }

.has-warning .form-control-feedback {
  color: #ffb900; }

.has-warning .form-control-warning {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23f0ad4e' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E"); }

.has-danger .form-control-feedback,
.has-danger .form-control-label,
.has-danger .radio,
.has-danger .checkbox,
.has-danger .radio-inline,
.has-danger .checkbox-inline,
.has-danger.radio label,
.has-danger.checkbox label,
.has-danger.radio-inline label,
.has-danger.checkbox-inline label,
.has-danger .custom-control {
  color: #cc3032; }

.has-danger .form-control {
  border-color: #cc3032; }

.has-danger .input-group-addon {
  color: #cc3032;
  border-color: #cc3032;
  background-color: #f5d3d4; }

.has-danger .form-control-feedback {
  color: #cc3032; }

.has-danger .form-control-danger {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d9534f' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E"); }

@media (min-width: 544px) {
  .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 .form-control-label {
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .form-check {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .form-check-label {
    padding-left: 0; }
  .form-inline .form-check-input {
    position: relative;
    margin-left: 0; }
  .form-inline .has-feedback .form-control-feedback {
    top: 0; } }

.btn, .wizard > .actions a,
.wizard > .actions a:hover,
.wizard > .actions a:active {
  display: inline-block;
  font-weight: normal;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 1rem; }
  .btn:focus, .wizard > .actions a:focus, .btn.focus, .wizard > .actions a.focus, .btn:active:focus, .wizard > .actions a:active:focus, .btn:active.focus, .wizard > .actions a:active.focus, .btn.active:focus, .wizard > .actions a.active:focus, .btn.active.focus, .wizard > .actions a.active.focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }
  .btn:focus, .wizard > .actions a:focus, .btn:hover,
  .wizard > .actions a:hover {
    text-decoration: none; }
  .btn.focus, .wizard > .actions a.focus {
    text-decoration: none; }
  .btn:active,
  .wizard > .actions a:active, .btn.active, .wizard > .actions a.active {
    background-image: none;
    outline: 0; }
  .btn.disabled, .wizard > .actions a.disabled, .btn:disabled, .wizard > .actions a:disabled {
    cursor: not-allowed;
    opacity: .65; }

a.btn.disabled, .wizard > .actions a.disabled, .btn.lock, .wizard > .actions a.lock,
fieldset[disabled] a.btn,
fieldset[disabled] .wizard > .actions a,
.wizard > .actions fieldset[disabled] a {
  pointer-events: none; }

.btn-lock, .disabled {
  pointer-events: none !important;
  cursor: default !important; }

.btn-primary, .fso-widget .btn-submit, .wizard > .actions a,
.wizard > .actions a:hover,
.wizard > .actions a:active {
  color: #fff;
  background-color: #7159B5;
  border-color: #7159B5; }
  .btn-primary:hover, .fso-widget .btn-submit:hover,
  .wizard > .actions a:hover {
    color: #fff;
    background-color: #594497;
    border-color: #554090; }
  .btn-primary:focus, .fso-widget .btn-submit:focus, .wizard > .actions a:focus, .btn-primary.focus, .fso-widget .focus.btn-submit, .wizard > .actions a.focus {
    color: #fff;
    background-color: #594497;
    border-color: #554090; }
  .btn-primary:active, .fso-widget .btn-submit:active,
  .wizard > .actions a:active, .btn-primary.active, .fso-widget .active.btn-submit, .wizard > .actions a.active,
  .open > .btn-primary.dropdown-toggle,
  .fso-widget .open > .dropdown-toggle.btn-submit,
  .wizard > .actions .open > a.dropdown-toggle {
    color: #fff;
    background-color: #594497;
    border-color: #554090;
    background-image: none; }
    .btn-primary:active:hover, .fso-widget .btn-submit:active:hover,
    .wizard > .actions a:active:hover, .btn-primary:active:focus, .fso-widget .btn-submit:active:focus, .wizard > .actions a:active:focus, .btn-primary:active.focus, .fso-widget .btn-submit:active.focus, .wizard > .actions a:active.focus, .btn-primary.active:hover, .fso-widget .active.btn-submit:hover,
    .wizard > .actions a.active:hover, .btn-primary.active:focus, .fso-widget .active.btn-submit:focus, .wizard > .actions a.active:focus, .btn-primary.active.focus, .fso-widget .active.focus.btn-submit, .wizard > .actions a.active.focus,
    .open > .btn-primary.dropdown-toggle:hover,
    .fso-widget .open > .dropdown-toggle.btn-submit:hover,
    .wizard > .actions .open > a.dropdown-toggle:hover,
    .open > .btn-primary.dropdown-toggle:focus,
    .fso-widget .open > .dropdown-toggle.btn-submit:focus,
    .wizard > .actions .open > a.dropdown-toggle:focus,
    .open > .btn-primary.dropdown-toggle.focus,
    .fso-widget .open > .dropdown-toggle.focus.btn-submit,
    .wizard > .actions .open > a.dropdown-toggle.focus {
      color: #fff;
      background-color: #4b397f;
      border-color: #3a2c63; }
  .btn-primary.disabled:focus, .fso-widget .disabled.btn-submit:focus, .wizard > .actions a.disabled:focus, .btn-primary.disabled.focus, .fso-widget .disabled.focus.btn-submit, .wizard > .actions a.disabled.focus, .btn-primary:disabled:focus, .fso-widget .btn-submit:disabled:focus, .wizard > .actions a:disabled:focus, .btn-primary:disabled.focus, .fso-widget .btn-submit:disabled.focus, .wizard > .actions a:disabled.focus {
    background-color: #7159B5;
    border-color: #7159B5; }
  .btn-primary.disabled:hover, .fso-widget .disabled.btn-submit:hover,
  .wizard > .actions a.disabled:hover, .btn-primary:disabled:hover, .fso-widget .btn-submit:disabled:hover,
  .wizard > .actions a:disabled:hover {
    background-color: #7159B5;
    border-color: #7159B5; }

.btn-secondary {
  color: #373a3c;
  background-color: #fff;
  border-color: #ccc; }
  .btn-secondary:hover {
    color: #373a3c;
    background-color: #e6e6e6;
    border-color: #adadad; }
  .btn-secondary:focus, .btn-secondary.focus {
    color: #373a3c;
    background-color: #e6e6e6;
    border-color: #adadad; }
  .btn-secondary:active, .btn-secondary.active,
  .open > .btn-secondary.dropdown-toggle {
    color: #373a3c;
    background-color: #e6e6e6;
    border-color: #adadad;
    background-image: none; }
    .btn-secondary:active:hover, .btn-secondary:active:focus, .btn-secondary:active.focus, .btn-secondary.active:hover, .btn-secondary.active:focus, .btn-secondary.active.focus,
    .open > .btn-secondary.dropdown-toggle:hover,
    .open > .btn-secondary.dropdown-toggle:focus,
    .open > .btn-secondary.dropdown-toggle.focus {
      color: #373a3c;
      background-color: #d4d4d4;
      border-color: #8c8c8c; }
  .btn-secondary.disabled:focus, .btn-secondary.disabled.focus, .btn-secondary:disabled:focus, .btn-secondary:disabled.focus {
    background-color: #fff;
    border-color: #ccc; }
  .btn-secondary.disabled:hover, .btn-secondary:disabled:hover {
    background-color: #fff;
    border-color: #ccc; }

.btn-info {
  color: #fff;
  background-color: #7f93f3;
  border-color: #7f93f3; }
  .btn-info:hover {
    color: #fff;
    background-color: #506cef;
    border-color: #4764ee; }
  .btn-info:focus, .btn-info.focus {
    color: #fff;
    background-color: #506cef;
    border-color: #4764ee; }
  .btn-info:active, .btn-info.active,
  .open > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #506cef;
    border-color: #4764ee;
    background-image: none; }
    .btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus,
    .open > .btn-info.dropdown-toggle:hover,
    .open > .btn-info.dropdown-toggle:focus,
    .open > .btn-info.dropdown-toggle.focus {
      color: #fff;
      background-color: #3050ec;
      border-color: #1537de; }
  .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info:disabled:focus, .btn-info:disabled.focus {
    background-color: #7f93f3;
    border-color: #7f93f3; }
  .btn-info.disabled:hover, .btn-info:disabled:hover {
    background-color: #7f93f3;
    border-color: #7f93f3; }

.btn-success, .wizard .actions a[href$='#finish'] {
  color: #fff;
  background-color: #78cd62;
  border-color: #78cd62; }
  .btn-success:hover, .wizard .actions a:hover[href$='#finish'] {
    color: #fff;
    background-color: #58bf3d;
    border-color: #54b73a; }
  .btn-success:focus, .wizard .actions a:focus[href$='#finish'], .btn-success.focus, .wizard .actions a.focus[href$='#finish'] {
    color: #fff;
    background-color: #58bf3d;
    border-color: #54b73a; }
  .btn-success:active, .wizard .actions a:active[href$='#finish'], .btn-success.active, .wizard .actions a.active[href$='#finish'],
  .open > .btn-success.dropdown-toggle,
  .wizard .actions .open > a.dropdown-toggle[href$='#finish'] {
    color: #fff;
    background-color: #58bf3d;
    border-color: #54b73a;
    background-image: none; }
    .btn-success:active:hover, .wizard .actions a:active:hover[href$='#finish'], .btn-success:active:focus, .wizard .actions a:active:focus[href$='#finish'], .btn-success:active.focus, .wizard .actions a:active.focus[href$='#finish'], .btn-success.active:hover, .wizard .actions a.active:hover[href$='#finish'], .btn-success.active:focus, .wizard .actions a.active:focus[href$='#finish'], .btn-success.active.focus, .wizard .actions a.active.focus[href$='#finish'],
    .open > .btn-success.dropdown-toggle:hover,
    .wizard .actions .open > a.dropdown-toggle:hover[href$='#finish'],
    .open > .btn-success.dropdown-toggle:focus,
    .wizard .actions .open > a.dropdown-toggle:focus[href$='#finish'],
    .open > .btn-success.dropdown-toggle.focus,
    .wizard .actions .open > a.dropdown-toggle.focus[href$='#finish'] {
      color: #fff;
      background-color: #4ba434;
      border-color: #3d852a; }
  .btn-success.disabled:focus, .wizard .actions a.disabled:focus[href$='#finish'], .btn-success.disabled.focus, .wizard .actions a.disabled.focus[href$='#finish'], .btn-success:disabled:focus, .wizard .actions a:disabled:focus[href$='#finish'], .btn-success:disabled.focus, .wizard .actions a:disabled.focus[href$='#finish'] {
    background-color: #78cd62;
    border-color: #78cd62; }
  .btn-success.disabled:hover, .wizard .actions a.disabled:hover[href$='#finish'], .btn-success:disabled:hover, .wizard .actions a:disabled:hover[href$='#finish'] {
    background-color: #78cd62;
    border-color: #78cd62; }

.btn-warning {
  color: #fff;
  background-color: #ffb900;
  border-color: #ffb900; }
  .btn-warning:hover {
    color: #fff;
    background-color: #cc9400;
    border-color: #c28d00; }
  .btn-warning:focus, .btn-warning.focus {
    color: #fff;
    background-color: #cc9400;
    border-color: #c28d00; }
  .btn-warning:active, .btn-warning.active,
  .open > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #cc9400;
    border-color: #c28d00;
    background-image: none; }
    .btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus,
    .open > .btn-warning.dropdown-toggle:hover,
    .open > .btn-warning.dropdown-toggle:focus,
    .open > .btn-warning.dropdown-toggle.focus {
      color: #fff;
      background-color: #a87a00;
      border-color: #805d00; }
  .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning:disabled:focus, .btn-warning:disabled.focus {
    background-color: #ffb900;
    border-color: #ffb900; }
  .btn-warning.disabled:hover, .btn-warning:disabled:hover {
    background-color: #ffb900;
    border-color: #ffb900; }

.btn-danger {
  color: #fff;
  background-color: #cc3032;
  border-color: #cc3032; }
  .btn-danger:hover {
    color: #fff;
    background-color: #a32628;
    border-color: #9a2426; }
  .btn-danger:focus, .btn-danger.focus {
    color: #fff;
    background-color: #a32628;
    border-color: #9a2426; }
  .btn-danger:active, .btn-danger.active,
  .open > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #a32628;
    border-color: #9a2426;
    background-image: none; }
    .btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus,
    .open > .btn-danger.dropdown-toggle:hover,
    .open > .btn-danger.dropdown-toggle:focus,
    .open > .btn-danger.dropdown-toggle.focus {
      color: #fff;
      background-color: #861f21;
      border-color: #651819; }
  .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger:disabled:focus, .btn-danger:disabled.focus {
    background-color: #cc3032;
    border-color: #cc3032; }
  .btn-danger.disabled:hover, .btn-danger:disabled:hover {
    background-color: #cc3032;
    border-color: #cc3032; }

.btn-outline-primary {
  color: #7159B5;
  background-image: none;
  background-color: transparent;
  border-color: #7159B5; }
  .btn-outline-primary:hover {
    color: #fff;
    background-color: #7159B5;
    border-color: #7159B5; }
  .btn-outline-primary:focus, .btn-outline-primary.focus {
    color: #fff;
    background-color: #7159B5;
    border-color: #7159B5; }
  .btn-outline-primary:active, .btn-outline-primary.active,
  .open > .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #7159B5;
    border-color: #7159B5; }
    .btn-outline-primary:active:hover, .btn-outline-primary:active:focus, .btn-outline-primary:active.focus, .btn-outline-primary.active:hover, .btn-outline-primary.active:focus, .btn-outline-primary.active.focus,
    .open > .btn-outline-primary.dropdown-toggle:hover,
    .open > .btn-outline-primary.dropdown-toggle:focus,
    .open > .btn-outline-primary.dropdown-toggle.focus {
      color: #fff;
      background-color: #4b397f;
      border-color: #3a2c63; }
  .btn-outline-primary.disabled:focus, .btn-outline-primary.disabled.focus, .btn-outline-primary:disabled:focus, .btn-outline-primary:disabled.focus {
    border-color: #ada0d4; }
  .btn-outline-primary.disabled:hover, .btn-outline-primary:disabled:hover {
    border-color: #ada0d4; }

.btn-outline-secondary {
  color: #ccc;
  background-image: none;
  background-color: transparent;
  border-color: #ccc; }
  .btn-outline-secondary:hover {
    color: #fff;
    background-color: #ccc;
    border-color: #ccc; }
  .btn-outline-secondary:focus, .btn-outline-secondary.focus {
    color: #fff;
    background-color: #ccc;
    border-color: #ccc; }
  .btn-outline-secondary:active, .btn-outline-secondary.active,
  .open > .btn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: #ccc;
    border-color: #ccc; }
    .btn-outline-secondary:active:hover, .btn-outline-secondary:active:focus, .btn-outline-secondary:active.focus, .btn-outline-secondary.active:hover, .btn-outline-secondary.active:focus, .btn-outline-secondary.active.focus,
    .open > .btn-outline-secondary.dropdown-toggle:hover,
    .open > .btn-outline-secondary.dropdown-toggle:focus,
    .open > .btn-outline-secondary.dropdown-toggle.focus {
      color: #fff;
      background-color: #a1a1a1;
      border-color: #8c8c8c; }
  .btn-outline-secondary.disabled:focus, .btn-outline-secondary.disabled.focus, .btn-outline-secondary:disabled:focus, .btn-outline-secondary:disabled.focus {
    border-color: white; }
  .btn-outline-secondary.disabled:hover, .btn-outline-secondary:disabled:hover {
    border-color: white; }

.btn-outline-info {
  color: #7f93f3;
  background-image: none;
  background-color: transparent;
  border-color: #7f93f3; }
  .btn-outline-info:hover {
    color: #fff;
    background-color: #7f93f3;
    border-color: #7f93f3; }
  .btn-outline-info:focus, .btn-outline-info.focus {
    color: #fff;
    background-color: #7f93f3;
    border-color: #7f93f3; }
  .btn-outline-info:active, .btn-outline-info.active,
  .open > .btn-outline-info.dropdown-toggle {
    color: #fff;
    background-color: #7f93f3;
    border-color: #7f93f3; }
    .btn-outline-info:active:hover, .btn-outline-info:active:focus, .btn-outline-info:active.focus, .btn-outline-info.active:hover, .btn-outline-info.active:focus, .btn-outline-info.active.focus,
    .open > .btn-outline-info.dropdown-toggle:hover,
    .open > .btn-outline-info.dropdown-toggle:focus,
    .open > .btn-outline-info.dropdown-toggle.focus {
      color: #fff;
      background-color: #3050ec;
      border-color: #1537de; }
  .btn-outline-info.disabled:focus, .btn-outline-info.disabled.focus, .btn-outline-info:disabled:focus, .btn-outline-info:disabled.focus {
    border-color: #dce2fc; }
  .btn-outline-info.disabled:hover, .btn-outline-info:disabled:hover {
    border-color: #dce2fc; }

.btn-outline-success {
  color: #78cd62;
  background-image: none;
  background-color: transparent;
  border-color: #78cd62; }
  .btn-outline-success:hover {
    color: #fff;
    background-color: #78cd62;
    border-color: #78cd62; }
  .btn-outline-success:focus, .btn-outline-success.focus {
    color: #fff;
    background-color: #78cd62;
    border-color: #78cd62; }
  .btn-outline-success:active, .btn-outline-success.active,
  .open > .btn-outline-success.dropdown-toggle {
    color: #fff;
    background-color: #78cd62;
    border-color: #78cd62; }
    .btn-outline-success:active:hover, .btn-outline-success:active:focus, .btn-outline-success:active.focus, .btn-outline-success.active:hover, .btn-outline-success.active:focus, .btn-outline-success.active.focus,
    .open > .btn-outline-success.dropdown-toggle:hover,
    .open > .btn-outline-success.dropdown-toggle:focus,
    .open > .btn-outline-success.dropdown-toggle.focus {
      color: #fff;
      background-color: #4ba434;
      border-color: #3d852a; }
  .btn-outline-success.disabled:focus, .btn-outline-success.disabled.focus, .btn-outline-success:disabled:focus, .btn-outline-success:disabled.focus {
    border-color: #bbe6af; }
  .btn-outline-success.disabled:hover, .btn-outline-success:disabled:hover {
    border-color: #bbe6af; }

.btn-outline-warning {
  color: #ffb900;
  background-image: none;
  background-color: transparent;
  border-color: #ffb900; }
  .btn-outline-warning:hover {
    color: #fff;
    background-color: #ffb900;
    border-color: #ffb900; }
  .btn-outline-warning:focus, .btn-outline-warning.focus {
    color: #fff;
    background-color: #ffb900;
    border-color: #ffb900; }
  .btn-outline-warning:active, .btn-outline-warning.active,
  .open > .btn-outline-warning.dropdown-toggle {
    color: #fff;
    background-color: #ffb900;
    border-color: #ffb900; }
    .btn-outline-warning:active:hover, .btn-outline-warning:active:focus, .btn-outline-warning:active.focus, .btn-outline-warning.active:hover, .btn-outline-warning.active:focus, .btn-outline-warning.active.focus,
    .open > .btn-outline-warning.dropdown-toggle:hover,
    .open > .btn-outline-warning.dropdown-toggle:focus,
    .open > .btn-outline-warning.dropdown-toggle.focus {
      color: #fff;
      background-color: #a87a00;
      border-color: #805d00; }
  .btn-outline-warning.disabled:focus, .btn-outline-warning.disabled.focus, .btn-outline-warning:disabled:focus, .btn-outline-warning:disabled.focus {
    border-color: #ffd566; }
  .btn-outline-warning.disabled:hover, .btn-outline-warning:disabled:hover {
    border-color: #ffd566; }

.btn-outline-danger {
  color: #cc3032;
  background-image: none;
  background-color: transparent;
  border-color: #cc3032; }
  .btn-outline-danger:hover {
    color: #fff;
    background-color: #cc3032;
    border-color: #cc3032; }
  .btn-outline-danger:focus, .btn-outline-danger.focus {
    color: #fff;
    background-color: #cc3032;
    border-color: #cc3032; }
  .btn-outline-danger:active, .btn-outline-danger.active,
  .open > .btn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #cc3032;
    border-color: #cc3032; }
    .btn-outline-danger:active:hover, .btn-outline-danger:active:focus, .btn-outline-danger:active.focus, .btn-outline-danger.active:hover, .btn-outline-danger.active:focus, .btn-outline-danger.active.focus,
    .open > .btn-outline-danger.dropdown-toggle:hover,
    .open > .btn-outline-danger.dropdown-toggle:focus,
    .open > .btn-outline-danger.dropdown-toggle.focus {
      color: #fff;
      background-color: #861f21;
      border-color: #651819; }
  .btn-outline-danger.disabled:focus, .btn-outline-danger.disabled.focus, .btn-outline-danger:disabled:focus, .btn-outline-danger:disabled.focus {
    border-color: #e18182; }
  .btn-outline-danger.disabled:hover, .btn-outline-danger:disabled:hover {
    border-color: #e18182; }

.btn-link {
  font-weight: normal;
  color: #252525;
  border-radius: 0; }
  .btn-link, .btn-link:active, .btn-link.active, .btn-link:disabled {
    background-color: transparent; }
  .btn-link, .btn-link:focus, .btn-link:active {
    border-color: transparent; }
  .btn-link:hover {
    border-color: transparent; }
  .btn-link:focus, .btn-link:hover {
    color: black;
    text-decoration: underline;
    background-color: transparent; }
  .btn-link:disabled:focus, .btn-link:disabled:hover {
    color: #818a91;
    text-decoration: none; }

.btn-lg, .btn-group-lg > .btn, .wizard > .actions .btn-group-lg > a {
  padding: 0.75rem 1.5rem;
  font-size: 1.15rem;
  border-radius: 2rem; }

.btn-sm, .btn-group-sm > .btn, .wizard > .actions .btn-group-sm > a, #claimform .rev-btn-group .btn, #claimform .rev-btn-group .wizard > .actions a, .wizard > .actions #claimform .rev-btn-group a {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.75rem; }

.btn-block {
  display: block;
  width: 100%; }

.btn-block + .btn-block {
  margin-top: 0.5rem; }

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

.fade {
  opacity: 0;
  transition: opacity .15s linear; }
  .fade.in {
    opacity: 1; }

.collapse {
  display: none; }
  .collapse.in {
    display: block; }

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition-timing-function: ease;
  transition-duration: .35s;
  transition-property: height; }

@keyframes heart-beat {
  0% {
    transform: scale(1); }
  8% {
    transform: scale(0.7); }
  17% {
    transform: scale(1.5); }
  25% {
    transform: scale(0.7); }
  87.5% {
    transform: scale(0.7); }
  100% {
    transform: scale(1); } }

.dropup,
.dropdown {
  position: relative; }

.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 4px;
  vertical-align: middle;
  content: "";
  border-top: 4px solid #7159B5;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  transition: all .2s ease;
  transform: rotate(0deg); }

.dropdown-toggle[aria-expanded="true"]::after {
  border-top-color: rgba(0, 0, 0, 0.4);
  transform: rotate(180deg); }

.dropdown-toggle:focus {
  outline: 0; }

.dropup .dropdown-toggle::after {
  border-top: 0;
  border-bottom: 0.3em solid; }

.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;
  font-size: 1rem;
  color: #373a3c;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 1rem; }

.dropdown-divider {
  height: 1px;
  margin: 0.5rem 0;
  overflow: hidden;
  background-color: #e5e5e5; }

.dropdown-item {
  display: block;
  width: 100%;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  color: #373a3c;
  text-align: inherit;
  white-space: nowrap;
  background: none;
  border: 0; }
  .dropdown-item:focus, .dropdown-item:hover {
    color: #2b2d2f;
    text-decoration: none;
    background-color: #f5f5f5; }
  .dropdown-item.active, .dropdown-item.active:focus, .dropdown-item.active:hover {
    color: #fff;
    text-decoration: none;
    background-color: #7159B5;
    outline: 0; }
  .dropdown-item.disabled, .dropdown-item.disabled:focus, .dropdown-item.disabled:hover {
    color: #818a91; }
  .dropdown-item.disabled:focus, .dropdown-item.disabled:hover {
    text-decoration: none;
    cursor: not-allowed;
    background-color: transparent;
    background-image: none;
    filter: "progid:DXImageTransform.Microsoft.gradient(enabled = false)"; }

.open > .dropdown-menu {
  display: block; }

.open > a {
  outline: 0; }

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

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

.dropdown-header {
  display: block;
  padding: 5px 20px;
  font-size: 0.875rem;
  color: #818a91;
  white-space: nowrap; }

.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990; }

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 0.3em solid; }

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px; }

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle; }
  .btn-group > .btn, .wizard > .actions .btn-group > a,
  .btn-group-vertical > .btn,
  .wizard > .actions .btn-group-vertical > a {
    position: relative;
    float: left; }
    .btn-group > .btn:focus, .wizard > .actions .btn-group > a:focus, .btn-group > .btn:active,
    .wizard > .actions .btn-group > a:active, .btn-group > .btn.active, .wizard > .actions .btn-group > a.active,
    .btn-group-vertical > .btn:focus,
    .wizard > .actions .btn-group-vertical > a:focus,
    .btn-group-vertical > .btn:active,
    .wizard > .actions .btn-group-vertical > a:active,
    .btn-group-vertical > .btn.active,
    .wizard > .actions .btn-group-vertical > a.active {
      z-index: 2; }
    .btn-group > .btn:hover,
    .wizard > .actions .btn-group > a:hover,
    .btn-group-vertical > .btn:hover,
    .wizard > .actions .btn-group-vertical > a:hover {
      z-index: 2; }

.btn-group .btn + .btn, .btn-group .wizard > .actions a + .btn, .wizard > .actions .btn-group a + .btn, .btn-group .wizard > .actions .btn + a, .wizard > .actions .btn-group .btn + a, .btn-group .wizard > .actions a + a, .wizard > .actions .btn-group a + a,
.btn-group .btn + .btn-group,
.btn-group .wizard > .actions a + .btn-group,
.wizard > .actions .btn-group a + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .wizard > .actions .btn-group + a,
.wizard > .actions .btn-group .btn-group + a,
.btn-group .btn-group + .btn-group {
  margin-left: -1px; }

.btn-toolbar {
  margin-left: -0.5rem; }
  .btn-toolbar::after {
    content: "";
    display: table;
    clear: both; }
  .btn-toolbar .btn-group,
  .btn-toolbar .input-group {
    float: left; }
  .btn-toolbar > .btn, .wizard > .actions .btn-toolbar > a,
  .btn-toolbar > .btn-group,
  .btn-toolbar > .input-group {
    margin-left: 0.5rem; }

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle), .wizard > .actions .btn-group > a:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0; }

.btn-group > .btn:first-child, .wizard > .actions .btn-group > a:first-child {
  margin-left: 0; }
  .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle), .wizard > .actions .btn-group > a:first-child:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0; }

.btn-group > .btn-group {
  float: left; }

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn, .wizard > .actions .btn-group > .btn-group:not(:first-child):not(:last-child) > a {
  border-radius: 0; }

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .wizard > .actions .btn-group > .btn-group:first-child:not(:last-child) > a: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, .wizard > .actions .btn-group > .btn-group:last-child:not(:first-child) > a: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 + .dropdown-toggle-split, .wizard > .actions a + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem; }
  .btn + .dropdown-toggle-split::after, .wizard > .actions a + .dropdown-toggle-split::after {
    margin-left: 0; }

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split, .wizard > .actions .btn-group-sm > a + .dropdown-toggle-split, #claimform .rev-btn-group .btn + .dropdown-toggle-split, #claimform .rev-btn-group .wizard > .actions a + .dropdown-toggle-split, .wizard > .actions #claimform .rev-btn-group a + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem; }

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split, .wizard > .actions .btn-group-lg > a + .dropdown-toggle-split {
  padding-right: 1.125rem;
  padding-left: 1.125rem; }

.btn .caret, .wizard > .actions a .caret {
  margin-left: 0; }

.btn-lg .caret, .btn-group-lg > .btn .caret, .wizard > .actions .btn-group-lg > a .caret {
  border-width: 0.3em 0.3em 0;
  border-bottom-width: 0; }

.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret, .dropup .wizard > .actions .btn-group-lg > a .caret, .wizard > .actions .dropup .btn-group-lg > a .caret {
  border-width: 0 0.3em 0.3em; }


.btn-group-vertical > .btn,
.wizard > .actions .btn-group-vertical > a,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn,
.wizard > .actions .btn-group-vertical > .btn-group > a {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%; }

.btn-group-vertical > .btn-group::after {
  content: "";
  display: table;
  clear: both; }


.btn-group-vertical > .btn-group > .btn,
.wizard > .actions .btn-group-vertical > .btn-group > a {
  float: none; }

.btn-group-vertical > .btn + .btn, .wizard > .actions .btn-group-vertical > a + .btn, .wizard > .actions .btn-group-vertical > .btn + a, .wizard > .actions .btn-group-vertical > a + a,
.btn-group-vertical > .btn + .btn-group,
.wizard > .actions .btn-group-vertical > a + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.wizard > .actions .btn-group-vertical > .btn-group + a,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0; }

.btn-group-vertical > .btn:not(:first-child):not(:last-child), .wizard > .actions .btn-group-vertical > a:not(:first-child):not(:last-child) {
  border-radius: 0; }

.btn-group-vertical > .btn:first-child:not(:last-child), .wizard > .actions .btn-group-vertical > a:first-child:not(:last-child) {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn:last-child:not(:first-child), .wizard > .actions .btn-group-vertical > a:last-child:not(:first-child) {
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn, .wizard > .actions .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > a {
  border-radius: 0; }

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .wizard > .actions .btn-group-vertical > .btn-group:first-child:not(:last-child) > a: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, .wizard > .actions .btn-group-vertical > .btn-group:last-child:not(:first-child) > a:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

[data-toggle="buttons"] > .btn input[type="radio"], .wizard > .actions [data-toggle="buttons"] > a input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
.wizard > .actions [data-toggle="buttons"] > a input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
.wizard > .actions [data-toggle="buttons"] > .btn-group > a input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"],
.wizard > .actions [data-toggle="buttons"] > .btn-group > a input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none; }

.input-group {
  position: relative;
  width: 100%;
  display: table;
  border-collapse: separate; }
  .input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0; }
    .input-group .form-control:focus, .input-group .form-control:active, .input-group .form-control:hover {
      z-index: 3; }

.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: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.25;
  color: #55595c;
  text-align: center;
  background-color: #eceeef;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 1rem; }
  .input-group-addon.form-control-sm,
  .input-group-sm > .input-group-addon,
  .input-group-sm > .input-group-btn > .input-group-addon.btn, .wizard > .actions .input-group-sm > .input-group-btn > a.input-group-addon {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.75rem; }
  .input-group-addon.form-control-lg,
  .input-group-lg > .input-group-addon,
  .input-group-lg > .input-group-btn > .input-group-addon.btn, .wizard > .actions .input-group-lg > .input-group-btn > a.input-group-addon {
    padding: 0.75rem 1.5rem;
    font-size: 1.15rem;
    border-radius: 2rem; }
  .input-group-addon input[type="radio"],
  .input-group-addon input[type="checkbox"] {
    margin-top: 0; }

.input-group .form-control:not(:last-child),
.input-group-addon:not(:last-child),
.input-group-btn:not(:last-child) > .btn,
.wizard > .actions .input-group-btn:not(:last-child) > a,
.input-group-btn:not(:last-child) > .btn-group > .btn,
.wizard > .actions .input-group-btn:not(:last-child) > .btn-group > a,
.input-group-btn:not(:last-child) > .dropdown-toggle,
.input-group-btn:not(:first-child) > .btn:not(:last-child):not(.dropdown-toggle),
.wizard > .actions .input-group-btn:not(:first-child) > a:not(:last-child):not(.dropdown-toggle),
.input-group-btn:not(:first-child) > .btn-group:not(:last-child) > .btn,
.wizard > .actions .input-group-btn:not(:first-child) > .btn-group:not(:last-child) > a {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

.input-group-addon:not(:last-child) {
  border-right: 0; }

.input-group .form-control:not(:first-child),
.input-group-addon:not(:first-child),
.input-group-btn:not(:first-child) > .btn,
.wizard > .actions .input-group-btn:not(:first-child) > a,
.input-group-btn:not(:first-child) > .btn-group > .btn,
.wizard > .actions .input-group-btn:not(:first-child) > .btn-group > a,
.input-group-btn:not(:first-child) > .dropdown-toggle,
.input-group-btn:not(:last-child) > .btn:not(:first-child),
.wizard > .actions .input-group-btn:not(:last-child) > a:not(:first-child),
.input-group-btn:not(:last-child) > .btn-group:not(:first-child) > .btn,
.wizard > .actions .input-group-btn:not(:last-child) > .btn-group:not(:first-child) > a {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.form-control + .input-group-addon:not(:first-child) {
  border-left: 0; }

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap; }
  .input-group-btn > .btn, .wizard > .actions .input-group-btn > a {
    position: relative; }
    .input-group-btn > .btn + .btn, .wizard > .actions .input-group-btn > a + .btn, .wizard > .actions .input-group-btn > .btn + a, .wizard > .actions .input-group-btn > a + a {
      margin-left: -1px; }
    .input-group-btn > .btn:focus, .wizard > .actions .input-group-btn > a:focus, .input-group-btn > .btn:active,
    .wizard > .actions .input-group-btn > a:active, .input-group-btn > .btn:hover,
    .wizard > .actions .input-group-btn > a:hover {
      z-index: 3; }
  
  .input-group-btn:not(:last-child) > .btn,
  .wizard > .actions .input-group-btn:not(:last-child) > a,
  .input-group-btn:not(:last-child) > .btn-group {
    margin-right: -1px; }
  
  .input-group-btn:not(:first-child) > .btn,
  .wizard > .actions .input-group-btn:not(:first-child) > a,
  .input-group-btn:not(:first-child) > .btn-group {
    z-index: 2;
    margin-left: -1px; }
    .input-group-btn:not(:first-child) > .btn:focus, .wizard > .actions .input-group-btn:not(:first-child) > a:focus, .input-group-btn:not(:first-child) > .btn:active,
    .wizard > .actions .input-group-btn:not(:first-child) > a:active, .input-group-btn:not(:first-child) > .btn:hover,
    .wizard > .actions .input-group-btn:not(:first-child) > a:hover,
    .input-group-btn:not(:first-child) > .btn-group:focus,
    .input-group-btn:not(:first-child) > .btn-group:active,
    .input-group-btn:not(:first-child) > .btn-group:hover {
      z-index: 3; }

.custom-control {
  position: relative;
  display: inline;
  padding-left: 1.5rem;
  cursor: pointer; }
  .custom-control + .custom-control {
    margin-left: 1rem; }

.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0; }
  .custom-control-input:checked ~ .custom-control-indicator {
    color: #fff;
    background-color: #0074d9; }
  .custom-control-input:focus ~ .custom-control-indicator {
    box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.2rem #0074d9; }
  .custom-control-input:active ~ .custom-control-indicator {
    color: #fff;
    background-color: #84c6ff; }
  .custom-control-input:disabled ~ .custom-control-indicator {
    cursor: not-allowed;
    background-color: #eee; }
  .custom-control-input:disabled ~ .custom-control-description {
    color: #767676;
    cursor: not-allowed; }

.custom-control-indicator {
  position: absolute;
  top: .0625rem;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  user-select: none;
  background-color: #ddd;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%; }

.custom-checkbox .custom-control-indicator {
  border-radius: 1rem; }

.custom-checkbox .custom-control-input:checked ~ .custom-control-indicator {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"); }

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-indicator {
  background-color: #0074d9;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E"); }

.custom-radio .custom-control-indicator {
  border-radius: 50%; }

.custom-radio .custom-control-input:checked ~ .custom-control-indicator {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E"); }

.custom-controls-stacked .custom-control {
  display: inline; }
  .custom-controls-stacked .custom-control::after {
    display: block;
    margin-bottom: 0.25rem;
    content: ""; }
  .custom-controls-stacked .custom-control + .custom-control {
    margin-left: 0; }

.custom-select {
  display: inline-block;
  max-width: 100%;
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  padding-right: 0.75rem \9;
  color: #55595c;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-image: none \9;
  background-size: 8px 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 1rem;
  -moz-appearance: none;
  -webkit-appearance: none; }
  .custom-select:focus {
    border-color: #51a7e8;
    outline: none; }
    .custom-select:focus::-ms-value {
      color: #55595c;
      background-color: #fff; }
  .custom-select:disabled {
    color: #818a91;
    cursor: not-allowed;
    background-color: #eceeef; }
  .custom-select::-ms-expand {
    opacity: 0; }

.custom-select-sm {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 75%; }

.custom-file {
  position: relative;
  display: inline-block;
  max-width: 100%;
  height: 2.5rem;
  cursor: pointer; }

.custom-file-input {
  min-width: 14rem;
  max-width: 100%;
  margin: 0;
  filter: alpha(opacity=0);
  opacity: 0; }

.custom-file-control {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 5;
  height: 2.5rem;
  padding: 0.5rem 1rem;
  line-height: 1.5;
  color: #555;
  user-select: none;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 1rem; }
  .custom-file-control:lang(en)::after {
    content: "Choose file..."; }
  .custom-file-control::before {
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    z-index: 6;
    display: block;
    height: 2.5rem;
    padding: 0.5rem 1rem;
    line-height: 1.5;
    color: #555;
    background-color: #eee;
    border: 1px solid #ddd;
    border-radius: 0 1rem 1rem 0; }
  .custom-file-control:lang(en)::before {
    content: "Browse"; }

.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }

.nav-link {
  display: inline-block; }
  .nav-link:focus, .nav-link:hover {
    text-decoration: none; }
  .nav-link.disabled {
    color: #818a91; }
    .nav-link.disabled, .nav-link.disabled:focus, .nav-link.disabled:hover {
      color: #818a91;
      cursor: not-allowed;
      background-color: transparent; }

.nav-inline .nav-item {
  display: inline-block; }

.nav-inline .nav-item + .nav-item,
.nav-inline .nav-link + .nav-link {
  margin-left: 1rem; }

.nav-tabs {
  border-bottom: 1px solid #ddd; }
  .nav-tabs::after {
    content: "";
    display: table;
    clear: both; }
  .nav-tabs .nav-item {
    float: left; }
    .nav-tabs .nav-item body:not(.is-prices) {
      margin-bottom: -1px; }
    .nav-tabs .nav-item + .nav-item {
      margin-left: 0.2rem; }
  .nav-tabs .nav-link {
    display: block;
    padding: 0.5em 1em;
    border: 1px solid transparent;
    border-top-right-radius: 1rem;
    border-top-left-radius: 1rem; }
    .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
      border-color: #eceeef #eceeef #ddd; }
    .nav-tabs .nav-link.disabled, .nav-tabs .nav-link.disabled:focus, .nav-tabs .nav-link.disabled:hover {
      color: #818a91;
      background-color: transparent;
      border-color: transparent; }
  .nav-tabs .nav-link.active, .nav-tabs .nav-link.active:focus, .nav-tabs .nav-link.active:hover,
  .nav-tabs .nav-item.open .nav-link,
  .nav-tabs .nav-item.open .nav-link:focus,
  .nav-tabs .nav-item.open .nav-link:hover {
    color: #55595c;
    background-color: #fff;
    border-color: #ddd #ddd transparent; }
  .nav-tabs .dropdown-menu {
    border-top-right-radius: 0;
    border-top-left-radius: 0; }

.nav-pills::after {
  content: "";
  display: table;
  clear: both; }

.nav-pills .nav-item {
  float: left; }
  .nav-pills .nav-item + .nav-item {
    margin-left: 0.2rem; }

.nav-pills .nav-link {
  display: block;
  padding: 0.5em 1em;
  border-radius: 1rem; }

.nav-pills .nav-link.active, .nav-pills .nav-link.active:focus, .nav-pills .nav-link.active:hover,
.nav-pills .nav-item.open .nav-link,
.nav-pills .nav-item.open .nav-link:focus,
.nav-pills .nav-item.open .nav-link:hover {
  color: #fff;
  cursor: default;
  background-color: #7159B5; }

.nav-stacked .nav-item {
  display: block;
  float: none; }
  .nav-stacked .nav-item + .nav-item {
    margin-top: 0.2rem;
    margin-left: 0; }

.tab-content > .tab-pane {
  display: none; }

.tab-content > .active {
  display: block; }

.navbar {
  position: relative;
  padding: 0.5rem 1rem; }
  .navbar::after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 544px) {
    .navbar {
      border-radius: 1rem; } }

.navbar-full {
  z-index: 1000; }
  @media (min-width: 544px) {
    .navbar-full {
      border-radius: 0; } }

.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1028; }
  @media (min-width: 544px) {
    .navbar-fixed-top,
    .navbar-fixed-bottom {
      border-radius: 0; } }

.navbar-fixed-top {
  top: 0; }

.navbar-fixed-bottom {
  bottom: 0; }

.navbar-sticky-top {
  position: sticky;
  top: 0;
  z-index: 1030;
  width: 100%; }
  @media (min-width: 544px) {
    .navbar-sticky-top {
      border-radius: 0; } }

.navbar-brand {
  float: left;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  margin-right: 1rem;
  font-size: 1.15rem; }
  .navbar-brand:focus, .navbar-brand:hover {
    text-decoration: none; }
  .navbar-brand > img {
    display: block; }

.navbar-divider {
  float: left;
  width: 1px;
  padding-top: .425rem;
  padding-bottom: .425rem;
  margin-right: 1rem;
  margin-left: 1rem;
  overflow: hidden; }
  .navbar-divider::before {
    content: "\00a0"; }

.navbar-toggler {
  padding: .5rem .75rem;
  font-size: 1.15rem;
  line-height: 1;
  background: none;
  border: 1px solid transparent;
  border-radius: 1rem; }
  .navbar-toggler:focus, .navbar-toggler:hover {
    text-decoration: none; }

.navbar-nav .nav-item {
  float: left; }

.navbar-nav .nav-link {
  display: block;
  padding-top: .425rem;
  padding-bottom: .425rem; }
  .navbar-nav .nav-link + .nav-link {
    margin-left: 1rem; }

.navbar-nav .nav-item + .nav-item {
  margin-left: 1rem; }

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.8); }
  .navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
    color: rgba(0, 0, 0, 0.8); }

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.3); }
  .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: rgba(0, 0, 0, 0.6); }

.navbar-light .navbar-nav .open > .nav-link, .navbar-light .navbar-nav .open > .nav-link:focus, .navbar-light .navbar-nav .open > .nav-link:hover,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .active > .nav-link:focus,
.navbar-light .navbar-nav .active > .nav-link:hover,
.navbar-light .navbar-nav .nav-link.open,
.navbar-light .navbar-nav .nav-link.open:focus,
.navbar-light .navbar-nav .nav-link.open:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.active:focus,
.navbar-light .navbar-nav .nav-link.active:hover {
  color: rgba(0, 0, 0, 0.8); }

.navbar-light .navbar-divider {
  background-color: rgba(0, 0, 0, 0.075); }

.navbar-dark .navbar-brand {
  color: white; }
  .navbar-dark .navbar-brand:focus, .navbar-dark .navbar-brand:hover {
    color: white; }

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5); }
  .navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.75); }

.navbar-dark .navbar-nav .open > .nav-link, .navbar-dark .navbar-nav .open > .nav-link:focus, .navbar-dark .navbar-nav .open > .nav-link:hover,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link:focus,
.navbar-dark .navbar-nav .active > .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.open,
.navbar-dark .navbar-nav .nav-link.open:focus,
.navbar-dark .navbar-nav .nav-link.open:hover,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.active:focus,
.navbar-dark .navbar-nav .nav-link.active:hover {
  color: white; }

.navbar-dark .navbar-divider {
  background-color: rgba(255, 255, 255, 0.075); }

.navbar-toggleable-xs::after {
  content: "";
  display: table;
  clear: both; }

@media (max-width: 543px) {
  .navbar-toggleable-xs .navbar-nav .nav-item {
    float: none;
    margin-left: 0; } }

@media (min-width: 544px) {
  .navbar-toggleable-xs {
    display: block !important; } }

.navbar-toggleable-sm::after {
  content: "";
  display: table;
  clear: both; }

@media (max-width: 767px) {
  .navbar-toggleable-sm .navbar-nav .nav-item {
    float: none;
    margin-left: 0; } }

@media (min-width: 768px) {
  .navbar-toggleable-sm {
    display: block !important; } }

.navbar-toggleable-md::after {
  content: "";
  display: table;
  clear: both; }

@media (max-width: 991px) {
  .navbar-toggleable-md .navbar-nav .nav-item {
    float: none;
    margin-left: 0; } }

@media (min-width: 992px) {
  .navbar-toggleable-md {
    display: block !important; } }

.card {
  position: relative;
  display: block;
  margin-bottom: 0.75rem;
  background-color: #fff;
  border-radius: 15px; }

.card-block {
  padding: 1.25rem; }
  .card-block::after {
    content: "";
    display: table;
    clear: both; }

.card-title {
  margin-bottom: 0.75rem; }

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0; }

.card-text:last-child {
  margin-bottom: 0; }

.card-link:hover {
  text-decoration: none; }

.card-link + .card-link {
  margin-left: 1.25rem; }

.card > .list-group:first-child .list-group-item:first-child {
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem; }

.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem; }

.card-header {
  padding: 0.75rem 1.25rem;
  background-color: #f5f5f5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125); }
  .card-header::after {
    content: "";
    display: table;
    clear: both; }
  .card-header:first-child {
    border-radius: 1rem 1rem 0 0; }

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: #f5f5f5;
  border-top: 1px solid rgba(0, 0, 0, 0.125); }
  .card-footer::after {
    content: "";
    display: table;
    clear: both; }
  .card-footer:last-child {
    border-radius: 0 0 1rem 1rem; }

.breadcrumb {
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #eceeef;
  border-radius: 1rem; }
  .breadcrumb::after {
    content: "";
    display: table;
    clear: both; }

.breadcrumb-item {
  float: left; }
  .breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    color: #818a91;
    content: "/"; }
  .breadcrumb-item + .breadcrumb-item:hover::before {
    text-decoration: underline; }
  .breadcrumb-item + .breadcrumb-item:hover::before {
    text-decoration: none; }
  .breadcrumb-item.active {
    color: #818a91; }

.pagination {
  display: inline-block;
  padding-left: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-radius: 1rem; }

.page-item {
  display: inline; }
  .page-item:first-child .page-link {
    margin-left: 0;
    border-bottom-left-radius: 1rem;
    border-top-left-radius: 1rem; }
  .page-item:last-child .page-link {
    border-bottom-right-radius: 1rem;
    border-top-right-radius: 1rem; }
  .page-item.active .page-link, .page-item.active .page-link:focus, .page-item.active .page-link:hover {
    z-index: 2;
    color: #fff;
    cursor: default;
    background-color: #7159B5;
    border-color: #7159B5; }
  .page-item.disabled .page-link, .page-item.disabled .page-link:focus, .page-item.disabled .page-link:hover {
    color: #818a91;
    pointer-events: none;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd; }

.page-link {
  position: relative;
  float: left;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  color: #252525;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd; }
  .page-link:focus, .page-link:hover {
    color: black;
    background-color: #eceeef;
    border-color: #ddd; }
  .page-link.active {
    background: #7159B5;
    color: #ffffff;
    border-radius: 2px; }

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.15rem; }

.pagination-lg .page-item:first-child .page-link {
  border-bottom-left-radius: 2rem;
  border-top-left-radius: 2rem; }

.pagination-lg .page-item:last-child .page-link {
  border-bottom-right-radius: 2rem;
  border-top-right-radius: 2rem; }

.pagination-sm .page-link {
  padding: 0.275rem 0.75rem;
  font-size: 0.875rem; }

.pagination-sm .page-item:first-child .page-link {
  border-bottom-left-radius: 0.75rem;
  border-top-left-radius: 0.75rem; }

.pagination-sm .page-item:last-child .page-link {
  border-bottom-right-radius: 0.75rem;
  border-top-right-radius: 0.75rem; }

.tag {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 1rem; }
  .tag:empty {
    display: none; }

.btn .tag, .wizard > .actions a .tag {
  position: relative;
  top: -1px; }

a.tag:focus, a.tag:hover {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

.tag-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem; }

.tag-default {
  background-color: #818a91; }
  .tag-default[href]:focus, .tag-default[href]:hover {
    background-color: #687077; }

.tag-primary, .tag-category:hover {
  background-color: #7159B5; }
  .tag-primary[href]:focus, .tag-category[href]:focus:hover, .tag-primary[href]:hover, .tag-category[href]:hover {
    background-color: #594497; }

.tag-success {
  background-color: #78cd62; }
  .tag-success[href]:focus, .tag-success[href]:hover {
    background-color: #58bf3d; }

.tag-info {
  background-color: #7f93f3; }
  .tag-info[href]:focus, .tag-info[href]:hover {
    background-color: #506cef; }

.tag-warning {
  background-color: #ffb900; }
  .tag-warning[href]:focus, .tag-warning[href]:hover {
    background-color: #cc9400; }

.tag-danger {
  background-color: #cc3032; }
  .tag-danger[href]:focus, .tag-danger[href]:hover {
    background-color: #a32628; }

.tag-purple {
  background-color: #8393EC;
  color: #fff; }

.jumbotron, .author-box {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #eceeef;
  border-radius: 2rem; }
  @media (min-width: 544px) {
    .jumbotron, .author-box {
      padding: 4rem 2rem; } }

.jumbotron-hr {
  border-top-color: #d0d5d8; }

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0; }

.alert {
  padding: 15px;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 1rem; }

.alert-heading {
  color: inherit; }

.alert-link {
  font-weight: bold; }

.alert-dismissible {
  padding-right: 35px; }
  .alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit; }

.alert-success {
  background-color: #dff0d8;
  border-color: #d0e9c6;
  color: #3c763d; }
  .alert-success hr {
    border-top-color: #c1e2b3; }
  .alert-success .alert-link {
    color: #2b542c; }

.alert-info {
  background-color: #d9edf7;
  border-color: #bcdff1;
  color: #31708f; }
  .alert-info hr {
    border-top-color: #a6d5ec; }
  .alert-info .alert-link {
    color: #245269; }

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faf2cc;
  color: #8a6d3b; }
  .alert-warning hr {
    border-top-color: #f7ecb5; }
  .alert-warning .alert-link {
    color: #66512c; }

.alert-danger {
  background-color: #f2dede;
  border-color: #ebcccc;
  color: #a94442; }
  .alert-danger hr {
    border-top-color: #e4b9b9; }
  .alert-danger .alert-link {
    color: #843534; }

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0; }
  to {
    background-position: 0 0; } }

.progress {
  display: block;
  width: 100%;
  height: 1rem;
  margin-bottom: 1rem; }

.progress[value] {
  background-color: #eee;
  border: 0;
  appearance: none;
  border-radius: 1rem; }

.progress[value]::-ms-fill {
  background-color: #0074d9;
  border: 0; }

.progress[value]::-moz-progress-bar {
  background-color: #0074d9;
  border-bottom-left-radius: 1rem;
  border-top-left-radius: 1rem; }

.progress[value]::-webkit-progress-value {
  background-color: #0074d9;
  border-bottom-left-radius: 1rem;
  border-top-left-radius: 1rem; }

.progress[value="100"]::-moz-progress-bar {
  border-bottom-right-radius: 1rem;
  border-top-right-radius: 1rem; }

.progress[value="100"]::-webkit-progress-value {
  border-bottom-right-radius: 1rem;
  border-top-right-radius: 1rem; }

.progress[value]::-webkit-progress-bar {
  background-color: #eee;
  border-radius: 1rem; }

base::-moz-progress-bar,
.progress[value] {
  background-color: #eee;
  border-radius: 1rem; }

@media screen and (min-width: 0\0) {
  .progress {
    background-color: #eee;
    border-radius: 1rem; }
  .progress-bar {
    display: inline-block;
    height: 1rem;
    text-indent: -999rem;
    background-color: #0074d9;
    border-bottom-left-radius: 1rem;
    border-top-left-radius: 1rem; }
  .progress[width="100%"] {
    border-bottom-right-radius: 1rem;
    border-top-right-radius: 1rem; } }

.progress-striped[value]::-webkit-progress-value {
  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);
  background-size: 1rem 1rem; }

.progress-striped[value]::-moz-progress-bar {
  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);
  background-size: 1rem 1rem; }

.progress-striped[value]::-ms-fill {
  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);
  background-size: 1rem 1rem; }

@media screen and (min-width: 0\0) {
  .progress-bar-striped {
    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);
    background-size: 1rem 1rem; } }

.progress-animated[value]::-webkit-progress-value {
  animation: progress-bar-stripes 2s linear infinite; }

.progress-animated[value]::-moz-progress-bar {
  animation: progress-bar-stripes 2s linear infinite; }

@media screen and (min-width: 0\0) {
  .progress-animated .progress-bar-striped {
    animation: progress-bar-stripes 2s linear infinite; } }

.progress-success[value]::-webkit-progress-value {
  background-color: #78cd62; }

.progress-success[value]::-moz-progress-bar {
  background-color: #78cd62; }

.progress-success[value]::-ms-fill {
  background-color: #78cd62; }

@media screen and (min-width: 0\0) {
  .progress-success .progress-bar {
    background-color: #78cd62; } }

.progress-info[value]::-webkit-progress-value {
  background-color: #7f93f3; }

.progress-info[value]::-moz-progress-bar {
  background-color: #7f93f3; }

.progress-info[value]::-ms-fill {
  background-color: #7f93f3; }

@media screen and (min-width: 0\0) {
  .progress-info .progress-bar {
    background-color: #7f93f3; } }

.progress-warning[value]::-webkit-progress-value {
  background-color: #ffb900; }

.progress-warning[value]::-moz-progress-bar {
  background-color: #ffb900; }

.progress-warning[value]::-ms-fill {
  background-color: #ffb900; }

@media screen and (min-width: 0\0) {
  .progress-warning .progress-bar {
    background-color: #ffb900; } }

.progress-danger[value]::-webkit-progress-value {
  background-color: #cc3032; }

.progress-danger[value]::-moz-progress-bar {
  background-color: #cc3032; }

.progress-danger[value]::-ms-fill {
  background-color: #cc3032; }

@media screen and (min-width: 0\0) {
  .progress-danger .progress-bar {
    background-color: #cc3032; } }

.media {
  margin-top: 15px; }
  .media:first-child {
    margin-top: 0; }

.media,
.media-body {
  overflow: hidden; }

.media-body {
  width: 10000px; }

.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top; }

.media-middle {
  vertical-align: middle; }

.media-bottom {
  vertical-align: bottom; }

.media-object {
  display: block; }
  .media-object.img-thumbnail {
    max-width: none; }

.media-right {
  padding-left: 10px; }

.media-left {
  padding-right: 10px; }

.media-heading {
  margin-top: 0;
  margin-bottom: 5px; }

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

.list-group {
  padding-left: 0;
  margin-bottom: 0; }

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd; }
  .list-group-item:first-child {
    border-top-right-radius: 1rem;
    border-top-left-radius: 1rem; }
  .list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem; }
  .list-group-item.disabled, .list-group-item.disabled:focus, .list-group-item.disabled:hover {
    color: #818a91;
    cursor: not-allowed;
    background-color: #eceeef; }
    .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading {
      color: inherit; }
    .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text {
      color: #818a91; }
  .list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover {
    z-index: 2;
    color: #fff;
    text-decoration: none;
    background-color: #7159B5;
    border-color: #7159B5; }
    .list-group-item.active .list-group-item-heading,
    .list-group-item.active .list-group-item-heading > small,
    .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
    .list-group-item.active:focus .list-group-item-heading > small,
    .list-group-item.active:focus .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
    .list-group-item.active:hover .list-group-item-heading > small,
    .list-group-item.active:hover .list-group-item-heading > .small {
      color: inherit; }
    .list-group-item.active .list-group-item-text, .list-group-item.active:focus .list-group-item-text, .list-group-item.active:hover .list-group-item-text {
      color: #eae6f4; }

.list-group-flush .list-group-item {
  border-radius: 0; }

.list-group-item-action {
  width: 100%;
  color: #555;
  text-align: inherit; }
  .list-group-item-action .list-group-item-heading {
    color: #333; }
  .list-group-item-action:focus, .list-group-item-action:hover {
    color: #555;
    text-decoration: none;
    background-color: #f5f5f5; }

.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:focus, a.list-group-item-success:hover,
  button.list-group-item-success:focus,
  button.list-group-item-success:hover {
    color: #3c763d;
    background-color: #d0e9c6; }
  a.list-group-item-success.active, a.list-group-item-success.active:focus, a.list-group-item-success.active:hover,
  button.list-group-item-success.active,
  button.list-group-item-success.active:focus,
  button.list-group-item-success.active:hover {
    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:focus, a.list-group-item-info:hover,
  button.list-group-item-info:focus,
  button.list-group-item-info:hover {
    color: #31708f;
    background-color: #c4e3f3; }
  a.list-group-item-info.active, a.list-group-item-info.active:focus, a.list-group-item-info.active:hover,
  button.list-group-item-info.active,
  button.list-group-item-info.active:focus,
  button.list-group-item-info.active:hover {
    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:focus, a.list-group-item-warning:hover,
  button.list-group-item-warning:focus,
  button.list-group-item-warning:hover {
    color: #8a6d3b;
    background-color: #faf2cc; }
  a.list-group-item-warning.active, a.list-group-item-warning.active:focus, a.list-group-item-warning.active:hover,
  button.list-group-item-warning.active,
  button.list-group-item-warning.active:focus,
  button.list-group-item-warning.active:hover {
    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:focus, a.list-group-item-danger:hover,
  button.list-group-item-danger:focus,
  button.list-group-item-danger:hover {
    color: #a94442;
    background-color: #ebcccc; }
  a.list-group-item-danger.active, a.list-group-item-danger.active:focus, a.list-group-item-danger.active:hover,
  button.list-group-item-danger.active,
  button.list-group-item-danger.active:focus,
  button.list-group-item-danger.active:hover {
    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; }

.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;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; }

.embed-responsive-21by9 {
  padding-bottom: 42.85714%; }

.embed-responsive-16by9 {
  padding-bottom: 56.25%; }

.embed-responsive-4by3 {
  padding-bottom: 75%; }

.embed-responsive-1by1 {
  padding-bottom: 100%; }

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .2; }
  .close:focus, .close:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .5; }

button.close {
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none; }

.modal-open {
  overflow: hidden; }

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
  -webkit-overflow-scrolling: touch; }
  .modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0, -25%); }
  .modal.in .modal-dialog {
    transform: translate(0, 0); }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
  overflow: hidden; }

.modal-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2rem;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000; }
  .modal-backdrop.fade {
    opacity: 0; }
  .modal-backdrop.in {
    opacity: 0.5; }

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5; }
  .modal-header::after {
    content: "";
    display: table;
    clear: both; }

.modal-header .close {
  margin-top: -2px; }

.modal-title {
  margin: 0;
  line-height: 1.5; }

.modal-body {
  position: relative;
  padding: 15px; }

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5; }
  .modal-footer::after {
    content: "";
    display: table;
    clear: both; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 544px) {
  .modal-dialog {
    max-width: 600px;
    margin: 30px auto; }
  .modal-sm {
    max-width: 300px; } }

@media (min-width: 992px) {
  .modal-lg {
    max-width: 900px; } }

.tooltip {
  position: absolute;
  z-index: 16000003 !important;
  display: block;
  font: normal .8rem/.9rem sans-serif;
  font-family: "Gilroy", "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0; }
  .tooltip.in {
    opacity: .85; }
  .tooltip.tooltip-top, .tooltip.bs-tether-element-attached-bottom {
    padding: 5px 0;
    margin-top: -3px; }
    .tooltip.tooltip-top .tooltip-arrow, .tooltip.bs-tether-element-attached-bottom .tooltip-arrow {
      bottom: 0;
      left: 50%;
      margin-left: -5px;
      border-width: 5px 5px 0;
      border-top-color: #000; }
  .tooltip.tooltip-right, .tooltip.bs-tether-element-attached-left {
    padding: 0 5px;
    margin-left: 3px; }
    .tooltip.tooltip-right .tooltip-arrow, .tooltip.bs-tether-element-attached-left .tooltip-arrow {
      top: 50%;
      left: 0;
      margin-top: -5px;
      border-width: 5px 5px 5px 0;
      border-right-color: #000; }
  .tooltip.tooltip-bottom, .tooltip.bs-tether-element-attached-top {
    padding: 5px 0;
    margin-top: 3px; }
    .tooltip.tooltip-bottom .tooltip-arrow, .tooltip.bs-tether-element-attached-top .tooltip-arrow {
      top: 0;
      left: 50%;
      margin-left: -5px;
      border-width: 0 5px 5px;
      border-bottom-color: #000; }
  .tooltip.tooltip-left, .tooltip.bs-tether-element-attached-right {
    padding: 0 5px;
    margin-left: -3px; }
    .tooltip.tooltip-left .tooltip-arrow, .tooltip.bs-tether-element-attached-right .tooltip-arrow {
      top: 50%;
      right: 0;
      margin-top: -5px;
      border-width: 5px 0 5px 5px;
      border-left-color: #000; }

.tooltip-inner {
  font-family: sans-serif;
  line-height: 1.1em;
  max-width: 145px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 1rem; }

@media (min-width: 1100px) {
  .tooltip-inner {
    max-width: 290px; } }

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  padding: 1px;
  font-family: "Gilroy", "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2rem; }
  .popover.popover-top, .popover.bs-tether-element-attached-bottom {
    margin-top: -10px; }
    .popover.popover-top .popover-arrow, .popover.bs-tether-element-attached-bottom .popover-arrow {
      bottom: -11px;
      left: 50%;
      margin-left: -11px;
      border-top-color: rgba(0, 0, 0, 0.25);
      border-bottom-width: 0; }
      .popover.popover-top .popover-arrow::after, .popover.bs-tether-element-attached-bottom .popover-arrow::after {
        bottom: 1px;
        margin-left: -10px;
        content: "";
        border-top-color: #fff;
        border-bottom-width: 0; }
  .popover.popover-right, .popover.bs-tether-element-attached-left {
    margin-left: 10px; }
    .popover.popover-right .popover-arrow, .popover.bs-tether-element-attached-left .popover-arrow {
      top: 50%;
      left: -11px;
      margin-top: -11px;
      border-right-color: rgba(0, 0, 0, 0.25);
      border-left-width: 0; }
      .popover.popover-right .popover-arrow::after, .popover.bs-tether-element-attached-left .popover-arrow::after {
        bottom: -10px;
        left: 1px;
        content: "";
        border-right-color: #fff;
        border-left-width: 0; }
  .popover.popover-bottom, .popover.bs-tether-element-attached-top {
    margin-top: 10px; }
    .popover.popover-bottom .popover-arrow, .popover.bs-tether-element-attached-top .popover-arrow {
      top: -11px;
      left: 50%;
      margin-left: -11px;
      border-top-width: 0;
      border-bottom-color: rgba(0, 0, 0, 0.25); }
      .popover.popover-bottom .popover-arrow::after, .popover.bs-tether-element-attached-top .popover-arrow::after {
        top: 1px;
        margin-left: -10px;
        content: "";
        border-top-width: 0;
        border-bottom-color: #fff; }
  .popover.popover-left, .popover.bs-tether-element-attached-right {
    margin-left: -10px; }
    .popover.popover-left .popover-arrow, .popover.bs-tether-element-attached-right .popover-arrow {
      top: 50%;
      right: -11px;
      margin-top: -11px;
      border-right-width: 0;
      border-left-color: rgba(0, 0, 0, 0.25); }
      .popover.popover-left .popover-arrow::after, .popover.bs-tether-element-attached-right .popover-arrow::after {
        right: 1px;
        bottom: -10px;
        content: "";
        border-right-width: 0;
        border-left-color: #fff; }

.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 1rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 1.9375rem 1.9375rem 0 0; }
  .popover-title:empty {
    display: none; }

.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 {
  content: "";
  border-width: 10px; }

.carousel {
  position: relative; }

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden; }
  .carousel-inner > .carousel-item {
    position: relative;
    display: none;
    transition: .6s ease-in-out left; }
    .carousel-inner > .carousel-item > img,
    .carousel-inner > .carousel-item > a > img {
      line-height: 1; }
    @media all and (transform-3d), (-webkit-transform-3d) {
      .carousel-inner > .carousel-item {
        transition: transform .6s ease-in-out;
        backface-visibility: hidden;
        perspective: 1000px; }
        .carousel-inner > .carousel-item.next, .carousel-inner > .carousel-item.active.right {
          left: 0;
          transform: translate3d(100%, 0, 0); }
        .carousel-inner > .carousel-item.prev, .carousel-inner > .carousel-item.active.left {
          left: 0;
          transform: translate3d(-100%, 0, 0); }
        .carousel-inner > .carousel-item.next.left, .carousel-inner > .carousel-item.prev.right, .carousel-inner > .carousel-item.active {
          left: 0;
          transform: translate3d(0, 0, 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;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  opacity: 0.5; }
  .carousel-control.left {
    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 {
    right: 0;
    left: auto;
    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:focus, .carousel-control:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9; }
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    font-family: serif;
    line-height: 1; }
  .carousel-control .icon-prev {
    left: 50%;
    margin-left: -10px; }
  .carousel-control .icon-next {
    right: 50%;
    margin-right: -10px; }
  .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%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none; }
  .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #fff;
    border-radius: 10px; }
  .carousel-indicators .active {
    width: 12px;
    height: 12px;
    margin: 0;
    background-color: #fff; }

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
  .carousel-caption .btn, .carousel-caption .wizard > .actions a, .wizard > .actions .carousel-caption a {
    text-shadow: none; }

@media (min-width: 544px) {
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px; }
  .carousel-control .icon-prev {
    margin-left: -15px; }
  .carousel-control .icon-next {
    margin-right: -15px; }
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px; }
  .carousel-indicators {
    bottom: 20px; } }

.bg-inverse {
  background-color: #373a3c; }

.bg-faded {
  background-color: #f7f7f9; }

.bg-primary {
  color: #fff !important;
  background-color: #7159B5 !important; }

a.bg-primary:focus, a.bg-primary:hover {
  background-color: #594497 !important; }

.bg-success {
  color: #fff !important;
  background-color: #78cd62 !important; }

a.bg-success:focus, a.bg-success:hover {
  background-color: #58bf3d !important; }

.bg-info {
  color: #fff !important;
  background-color: #7f93f3 !important; }

a.bg-info:focus, a.bg-info:hover {
  background-color: #506cef !important; }

.bg-warning {
  color: #fff !important;
  background-color: #ffb900 !important; }

a.bg-warning:focus, a.bg-warning:hover {
  background-color: #cc9400 !important; }

.bg-danger {
  color: #fff !important;
  background-color: #cc3032 !important; }

a.bg-danger:focus, a.bg-danger:hover {
  background-color: #a32628 !important; }

.clearfix::after {
  content: "";
  display: table;
  clear: both; }

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

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

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

@media (max-width: 767px) {
  .d-block-on-small {
    display: block !important; } }

.pull-xs-left {
  float: left !important; }

.pull-xs-right {
  float: right !important; }

.pull-xs-none {
  float: none !important; }

@media (min-width: 544px) {
  .pull-sm-left {
    float: left !important; }
  .pull-sm-right {
    float: right !important; }
  .pull-sm-none {
    float: none !important; } }

@media (min-width: 768px) {
  .pull-md-left {
    float: left !important; }
  .pull-md-right {
    float: right !important; }
  .pull-md-none {
    float: none !important; } }

@media (min-width: 992px) {
  .pull-lg-left {
    float: left !important; }
  .pull-lg-right {
    float: right !important; }
  .pull-lg-none {
    float: none !important; } }

@media (min-width: 1200px) {
  .pull-xl-left {
    float: left !important; }
  .pull-xl-right {
    float: right !important; }
  .pull-xl-none {
    float: none !important; } }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  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; }

.w-100 {
  width: 100% !important; }

.m-x-auto {
  margin-right: auto !important;
  margin-left: auto !important; }

.m-a-0 {
  margin: 0 0 !important; }

.m-t-0 {
  margin-top: 0 !important; }

.m-r-0 {
  margin-right: 0 !important; }

.m-b-0 {
  margin-bottom: 0 !important; }

.m-l-0 {
  margin-left: 0 !important; }

.m-x-0 {
  margin-right: 0 !important;
  margin-left: 0 !important; }

.m-y-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

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

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

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

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

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

.m-x-1 {
  margin-right: 1rem !important;
  margin-left: 1rem !important; }

.m-y-1 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important; }

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

.m-t-2 {
  margin-top: 1.5rem !important; }

.m-r-2 {
  margin-right: 1.5rem !important; }

.m-b-2 {
  margin-bottom: 1.5rem !important; }

.m-l-2 {
  margin-left: 1.5rem !important; }

.m-x-2 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important; }

.m-y-2 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important; }

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

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

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

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

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

.m-x-3 {
  margin-right: 3rem !important;
  margin-left: 3rem !important; }

.m-y-3 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important; }

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

.m-t-4 {
  margin-top: 4.5rem !important; }

.m-r-4 {
  margin-right: 4.5rem !important; }

.m-b-4 {
  margin-bottom: 4.5rem !important; }

.m-l-4 {
  margin-left: 4.5rem !important; }

.m-x-4 {
  margin-right: 4.5rem !important;
  margin-left: 4.5rem !important; }

.m-y-4 {
  margin-top: 4.5rem !important;
  margin-bottom: 4.5rem !important; }

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

.m-t-5 {
  margin-top: 6rem !important; }

.m-r-5 {
  margin-right: 6rem !important; }

.m-b-5 {
  margin-bottom: 6rem !important; }

.m-l-5 {
  margin-left: 6rem !important; }

.m-x-5 {
  margin-right: 6rem !important;
  margin-left: 6rem !important; }

.m-y-5 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important; }

.m-a-6 {
  margin: 7rem 7rem !important; }

.m-t-6 {
  margin-top: 7rem !important; }

.m-r-6 {
  margin-right: 7rem !important; }

.m-b-6 {
  margin-bottom: 7rem !important; }

.m-l-6 {
  margin-left: 7rem !important; }

.m-x-6 {
  margin-right: 7rem !important;
  margin-left: 7rem !important; }

.m-y-6 {
  margin-top: 7rem !important;
  margin-bottom: 7rem !important; }

.m-a-7 {
  margin: 9rem 9rem !important; }

.m-t-7 {
  margin-top: 9rem !important; }

.m-r-7 {
  margin-right: 9rem !important; }

.m-b-7 {
  margin-bottom: 9rem !important; }

.m-l-7 {
  margin-left: 9rem !important; }

.m-x-7 {
  margin-right: 9rem !important;
  margin-left: 9rem !important; }

.m-y-7 {
  margin-top: 9rem !important;
  margin-bottom: 9rem !important; }

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

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

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

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

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

.p-x-0 {
  padding-right: 0 !important;
  padding-left: 0 !important; }

.p-y-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

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

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

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

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

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

.p-x-1 {
  padding-right: 1rem !important;
  padding-left: 1rem !important; }

.p-y-1 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important; }

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

.p-t-2 {
  padding-top: 1.5rem !important; }

.p-r-2 {
  padding-right: 1.5rem !important; }

.p-b-2 {
  padding-bottom: 1.5rem !important; }

.p-l-2 {
  padding-left: 1.5rem !important; }

.p-x-2 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important; }

.p-y-2 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important; }

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

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

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

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

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

.p-x-3 {
  padding-right: 3rem !important;
  padding-left: 3rem !important; }

.p-y-3 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important; }

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

.p-t-4 {
  padding-top: 4.5rem !important; }

.p-r-4 {
  padding-right: 4.5rem !important; }

.p-b-4 {
  padding-bottom: 4.5rem !important; }

.p-l-4 {
  padding-left: 4.5rem !important; }

.p-x-4 {
  padding-right: 4.5rem !important;
  padding-left: 4.5rem !important; }

.p-y-4 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important; }

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

.p-t-5 {
  padding-top: 6rem !important; }

.p-r-5 {
  padding-right: 6rem !important; }

.p-b-5 {
  padding-bottom: 6rem !important; }

.p-l-5 {
  padding-left: 6rem !important; }

.p-x-5 {
  padding-right: 6rem !important;
  padding-left: 6rem !important; }

.p-y-5 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important; }

.p-a-6 {
  padding: 7rem 7rem !important; }

.p-t-6 {
  padding-top: 7rem !important; }

.p-r-6 {
  padding-right: 7rem !important; }

.p-b-6 {
  padding-bottom: 7rem !important; }

.p-l-6 {
  padding-left: 7rem !important; }

.p-x-6 {
  padding-right: 7rem !important;
  padding-left: 7rem !important; }

.p-y-6 {
  padding-top: 7rem !important;
  padding-bottom: 7rem !important; }

.p-a-7 {
  padding: 9rem 9rem !important; }

.p-t-7 {
  padding-top: 9rem !important; }

.p-r-7 {
  padding-right: 9rem !important; }

.p-b-7 {
  padding-bottom: 9rem !important; }

.p-l-7 {
  padding-left: 9rem !important; }

.p-x-7 {
  padding-right: 9rem !important;
  padding-left: 9rem !important; }

.p-y-7 {
  padding-top: 9rem !important;
  padding-bottom: 9rem !important; }

.pos-f-t {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030; }

.text-justify {
  text-align: justify !important; }

.text-nowrap {
  white-space: nowrap !important; }

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.text-xs-left {
  text-align: left !important; }

.text-xs-right {
  text-align: right !important; }

.text-xs-center {
  text-align: center !important; }

@media (min-width: 544px) {
  .text-sm-left {
    text-align: left !important; }
  .text-sm-right {
    text-align: right !important; }
  .text-sm-center {
    text-align: center !important; } }

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important; }
  .text-md-right {
    text-align: right !important; }
  .text-md-center {
    text-align: center !important; } }

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important; }
  .text-lg-right {
    text-align: right !important; }
  .text-lg-center {
    text-align: center !important; } }

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important; }
  .text-xl-right {
    text-align: right !important; }
  .text-xl-center {
    text-align: center !important; } }

.text-lowercase {
  text-transform: lowercase !important; }

.text-uppercase {
  text-transform: uppercase !important; }

.text-capitalize {
  text-transform: capitalize !important; }

.font-weight-normal {
  font-weight: normal; }

.font-weight-bold {
  font-weight: bold; }

.font-italic {
  font-style: italic; }

.text-muted {
  color: #818a91 !important; }

a.text-muted:focus, a.text-muted:hover {
  color: #687077; }

.text-primary {
  color: #7159B5 !important; }

a.text-primary:focus, a.text-primary:hover {
  color: #594497; }

.text-success {
  color: #78cd62 !important; }

a.text-success:focus, a.text-success:hover {
  color: #58bf3d; }

.text-info, .is-dashboard tr.row-status td:nth-child(3) span.installment-paid span, .is-dashboard tr.row-status td:nth-child(3) span.installment-paid:before {
  color: #7f93f3 !important; }

a.text-info:focus, a.text-info:hover {
  color: #506cef; }

.text-warning {
  color: #ffb900 !important; }

a.text-warning:focus, a.text-warning:hover {
  color: #cc9400; }

.text-danger, .is-dashboard tr.row-status td:last-child span.installment-unpaid span, .is-dashboard tr.row-status td:last-child span.installment-unpaid:before {
  color: #cc3032 !important; }

a.text-danger:focus, a.text-danger:hover {
  color: #a32628; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.invisible {
  opacity: 0 !important;
  transition: all .35s ease; }

.hidden-xs-up {
  display: none !important; }

@media (max-width: 543px) {
  .hidden-xs-down {
    display: none !important; } }

@media (min-width: 544px) {
  .hidden-sm-up {
    display: none !important; } }

@media (max-width: 767px) {
  .hidden-sm-down {
    display: none !important; } }

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

@media (max-width: 991px) {
  .hidden-md-down {
    display: none !important; } }

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

@media (max-width: 1199px) {
  .hidden-lg-down {
    display: none !important; } }

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

.hidden-xl-down {
  display: none !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; } }

.section .section-subheading.subheading-divider:after, .section-wpc .feature-title:after, .widget.banner-free-features .widget-header:after {
  display: block;
  width: 60px;
  margin: 20px 0;
  content: '';
  background: rgba(0, 0, 0, 0.03);
  height: 1px; }

.section .section-subheading.subheading-divider:after, .widget.banner-free-features .widget-header:after {
  height: 4px;
  background: #7159B5; }

.section .section-subheading.subheading-divider.divider-centered:after, .widget.banner-free-features .widget-header:after {
  height: 4px;
  margin-right: auto;
  margin-left: auto; }

.xlg-icons [class^='icon-'], .section-wpc [class^='icon-'], .xlg-icons [class^='fa '], .section-wpc [class^='fa '] {
  font-size: 7rem;
  display: block;
  text-align: center; }
  @media (max-width: 991px) {
    .xlg-icons [class^='icon-'], .section-wpc [class^='icon-'], .xlg-icons [class^='fa '], .section-wpc [class^='fa '] {
      font-size: 6rem; } }

.lg-icons [class^='icon-'], .section-features [class^='icon-'], .lg-icons [class^='fa '], .section-features [class^='fa '] {
  font-size: 5rem; }

.text-xlg {
  font-size: 7rem; }

.text-lg {
  font-size: 5rem; }

.text-md {
  font-size: 4rem; }

.img-grayscale {
  filter: grayscale(100%); }

ul.list-inline li {
  display: inline-block; }

.b1 {
  border: 1px solid red; }

.b2 {
  border: 1px dotted #000; }

.set-gradient-1 {
  background-image: linear-gradient(to right, #77316C, #833D8A 50%, #773985);
  background-repeat: no-repeat;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF77316C', endColorstr='#FF773985', GradientType=1); }

.set-gradient-2 {
  background-image: linear-gradient(to right, #262626, #393939 50%, #262626);
  background-repeat: no-repeat;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF262626', endColorstr='#FF262626', GradientType=1); }

.set-gradient-0 {
  background-image: linear-gradient(to right, #644ba9 0%, #806bbd 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF644BA9', endColorstr='#FF806BBD', GradientType=1); }

.set-gradient-3 {
  background-image: linear-gradient(to bottom, #09ABE8 0%, #00BEE7 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF09ABE8', endColorstr='#FF00BEE7', GradientType=0); }

.set-gradient-3 {
  background-image: linear-gradient(to bottom, #0091EA 0%, #00BEE7 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF0091EA', endColorstr='#FF00BEE7', GradientType=0); }

.set-gradient-4 {
  background-image: linear-gradient(to bottom, #00AFF0 0%, #47D6C4 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF00AFF0', endColorstr='#FF47D6C4', GradientType=0); }

.set-gradient-5 {
  background-image: linear-gradient(to bottom, #FE7C52 0%, #FC9F3A 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFE7C52', endColorstr='#FFFC9F3A', GradientType=0); }

.set-gradient-primary {
  background: linear-gradient(to top right, rgba(144, 2, 140, 0.75) 0%, rgba(0, 180, 207, 0.95) 100%); }

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-lg-only {
    display: none !important; } }

@media (max-width: 543px) {
  .hidden-xs-only {
    display: none !important; } }

@media (min-width: 544px) and (max-width: 767px) {
  .hidden-sm-only {
    display: none !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-md-only {
    display: none !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-lg-only {
    display: none !important; } }

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

.visible-topbar-enabled {
  display: none; }

.is-topbar .visible-topbar-enabled {
  display: block; }

.is-topbar .hidden-topbar-enabled {
  display: none; }

@media (max-width: 991px) {
  .is-topbar .hidden-topbar-enabled {
    display: block; } }

.noselect, .tooltip, a.is-link-active, .btn, .wizard > .actions a,
.wizard > .actions a:hover,
.wizard > .actions a:active,
.dropdown-toggle,
.dropdown-menu, .disabled, div.dashboard-nav.container, .aside-title, .clickable, #gift [data-role="banner-close"], label,
label > span, #before-checkout, .site-footer .infos__paysystems img[data-lazy], .testimonial-carousel, .question-carousel, #single-notify, .voting__button, .section-steps, table.table-price tr td a, .samples .sample-card, .reviews-badge, .widget, .urgency__wrapper, .order-wizard.sw-theme-dots > ul.step-anchor > li {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  not supported by any browser */ }

.filter-grayscale {
  filter: grayscale(100%); }

.opacity-5 {
  opacity: .5; }

@media (min-width: 1279px) {
  .p-x-md {
    padding-left: 10rem;
    padding-right: 10rem; } }

body.is-loggedin .hidden-for-loggedin {
  display: none !important; }

/*********************
  Mixins
**********************/
.brand {
  background-color: #7159B5; }

.mdb-color.lighten-5 {
  background-color: #d0d6e2 !important; }

.mdb-color-text.text-lighten-5 {
  color: #d0d6e2 !important; }

.mdb-color.lighten-4 {
  background-color: #b1bace !important; }

.mdb-color-text.text-lighten-4 {
  color: #b1bace !important; }

.mdb-color.lighten-3 {
  background-color: #929fba !important; }

.mdb-color-text.text-lighten-3 {
  color: #929fba !important; }

.mdb-color.lighten-2 {
  background-color: #7283a7 !important; }

.mdb-color-text.text-lighten-2 {
  color: #7283a7 !important; }

.mdb-color.lighten-1 {
  background-color: #59698d !important; }

.mdb-color-text.text-lighten-1 {
  color: #59698d !important; }

.mdb-color {
  background-color: #45526e !important; }

.mdb-color-text {
  color: #45526e !important; }

.mdb-color.darken-1 {
  background-color: #3b465e !important; }

.mdb-color-text.text-darken-1 {
  color: #3b465e !important; }

.mdb-color.darken-2 {
  background-color: #2e3951 !important; }

.mdb-color-text.text-darken-2 {
  color: #2e3951 !important; }

.mdb-color.darken-3 {
  background-color: #1c2a48 !important; }

.mdb-color-text.text-darken-3 {
  color: #1c2a48 !important; }

.mdb-color.darken-4 {
  background-color: #1c2331 !important; }

.mdb-color-text.text-darken-4 {
  color: #1c2331 !important; }

.red.lighten-5 {
  background-color: #ffebee !important; }

.red-text.text-lighten-5, .is-faq .accordion .panel-title a.text-lighten-5:not(.collapsed) {
  color: #ffebee !important; }

.red.lighten-4 {
  background-color: #ffcdd2 !important; }

.red-text.text-lighten-4, .is-faq .accordion .panel-title a.text-lighten-4:not(.collapsed) {
  color: #ffcdd2 !important; }

.red.lighten-3 {
  background-color: #ef9a9a !important; }

.red-text.text-lighten-3, .is-faq .accordion .panel-title a.text-lighten-3:not(.collapsed) {
  color: #ef9a9a !important; }

.red.lighten-2 {
  background-color: #e57373 !important; }

.red-text.text-lighten-2, .is-faq .accordion .panel-title a.text-lighten-2:not(.collapsed) {
  color: #e57373 !important; }

.red.lighten-1 {
  background-color: #ef5350 !important; }

.red-text.text-lighten-1, .is-faq .accordion .panel-title a.text-lighten-1:not(.collapsed) {
  color: #ef5350 !important; }

.red {
  background-color: #f44336 !important; }

.red-text, .is-faq .accordion .panel-title a:not(.collapsed), body.is-faq .accordion h3.panel-title a:not(.collapsed) {
  color: #f44336 !important; }

.red.darken-1 {
  background-color: #e53935 !important; }

.red-text.text-darken-1, .is-faq .accordion .panel-title a.text-darken-1:not(.collapsed) {
  color: #e53935 !important; }

.red.darken-2 {
  background-color: #d32f2f !important; }

.red-text.text-darken-2, .is-faq .accordion .panel-title a.text-darken-2:not(.collapsed) {
  color: #d32f2f !important; }

.red.darken-3 {
  background-color: #c62828 !important; }

.red-text.text-darken-3, .is-faq .accordion .panel-title a.text-darken-3:not(.collapsed) {
  color: #c62828 !important; }

.red.darken-4 {
  background-color: #b71c1c !important; }

.red-text.text-darken-4, .is-faq .accordion .panel-title a.text-darken-4:not(.collapsed) {
  color: #b71c1c !important; }

.red.accent-1 {
  background-color: #ff8a80 !important; }

.red-text.text-accent-1, .is-faq .accordion .panel-title a.text-accent-1:not(.collapsed) {
  color: #ff8a80 !important; }

.red.accent-2 {
  background-color: #ff5252 !important; }

.red-text.text-accent-2, .is-faq .accordion .panel-title a.text-accent-2:not(.collapsed) {
  color: #ff5252 !important; }

.red.accent-3 {
  background-color: #ff1744 !important; }

.red-text.text-accent-3, .is-faq .accordion .panel-title a.text-accent-3:not(.collapsed) {
  color: #ff1744 !important; }

.red.accent-4 {
  background-color: #d50000 !important; }

.red-text.text-accent-4, .is-faq .accordion .panel-title a.text-accent-4:not(.collapsed) {
  color: #d50000 !important; }

.pink.lighten-5 {
  background-color: #fce4ec !important; }

.pink-text.text-lighten-5 {
  color: #fce4ec !important; }

.pink.lighten-4 {
  background-color: #f8bbd0 !important; }

.pink-text.text-lighten-4 {
  color: #f8bbd0 !important; }

.pink.lighten-3 {
  background-color: #f48fb1 !important; }

.pink-text.text-lighten-3 {
  color: #f48fb1 !important; }

.pink.lighten-2 {
  background-color: #f06292 !important; }

.pink-text.text-lighten-2 {
  color: #f06292 !important; }

.pink.lighten-1 {
  background-color: #ec407a !important; }

.pink-text.text-lighten-1 {
  color: #ec407a !important; }

.pink {
  background-color: #e91e63 !important; }

.pink-text {
  color: #e91e63 !important; }

.pink.darken-1 {
  background-color: #d81b60 !important; }

.pink-text.text-darken-1 {
  color: #d81b60 !important; }

.pink.darken-2 {
  background-color: #c2185b !important; }

.pink-text.text-darken-2 {
  color: #c2185b !important; }

.pink.darken-3 {
  background-color: #ad1457 !important; }

.pink-text.text-darken-3 {
  color: #ad1457 !important; }

.pink.darken-4 {
  background-color: #880e4f !important; }

.pink-text.text-darken-4 {
  color: #880e4f !important; }

.pink.accent-1 {
  background-color: #ff80ab !important; }

.pink-text.text-accent-1 {
  color: #ff80ab !important; }

.pink.accent-2 {
  background-color: #ff4081 !important; }

.pink-text.text-accent-2 {
  color: #ff4081 !important; }

.pink.accent-3 {
  background-color: #f50057 !important; }

.pink-text.text-accent-3 {
  color: #f50057 !important; }

.pink.accent-4 {
  background-color: #c51162 !important; }

.pink-text.text-accent-4 {
  color: #c51162 !important; }

.purple.lighten-5 {
  background-color: #f3e5f5 !important; }

.purple-text.text-lighten-5 {
  color: #f3e5f5 !important; }

.purple.lighten-4 {
  background-color: #e1bee7 !important; }

.purple-text.text-lighten-4 {
  color: #e1bee7 !important; }

.purple.lighten-3 {
  background-color: #ce93d8 !important; }

.purple-text.text-lighten-3 {
  color: #ce93d8 !important; }

.purple.lighten-2 {
  background-color: #ba68c8 !important; }

.purple-text.text-lighten-2 {
  color: #ba68c8 !important; }

.purple.lighten-1 {
  background-color: #ab47bc !important; }

.purple-text.text-lighten-1 {
  color: #ab47bc !important; }

.purple {
  background-color: #9c27b0 !important; }

.purple-text {
  color: #9c27b0 !important; }

.purple.darken-1 {
  background-color: #8e24aa !important; }

.purple-text.text-darken-1 {
  color: #8e24aa !important; }

.purple.darken-2 {
  background-color: #7b1fa2 !important; }

.purple-text.text-darken-2 {
  color: #7b1fa2 !important; }

.purple.darken-3 {
  background-color: #6a1b9a !important; }

.purple-text.text-darken-3 {
  color: #6a1b9a !important; }

.purple.darken-4 {
  background-color: #4a148c !important; }

.purple-text.text-darken-4 {
  color: #4a148c !important; }

.purple.accent-1 {
  background-color: #ea80fc !important; }

.purple-text.text-accent-1 {
  color: #ea80fc !important; }

.purple.accent-2 {
  background-color: #e040fb !important; }

.purple-text.text-accent-2 {
  color: #e040fb !important; }

.purple.accent-3 {
  background-color: #d500f9 !important; }

.purple-text.text-accent-3 {
  color: #d500f9 !important; }

.purple.accent-4 {
  background-color: #aa00ff !important; }

.purple-text.text-accent-4 {
  color: #aa00ff !important; }

.deep-purple.lighten-5 {
  background-color: #ede7f6 !important; }

.deep-purple-text.text-lighten-5 {
  color: #ede7f6 !important; }

.deep-purple.lighten-4 {
  background-color: #d1c4e9 !important; }

.deep-purple-text.text-lighten-4 {
  color: #d1c4e9 !important; }

.deep-purple.lighten-3 {
  background-color: #b39ddb !important; }

.deep-purple-text.text-lighten-3 {
  color: #b39ddb !important; }

.deep-purple.lighten-2 {
  background-color: #9575cd !important; }

.deep-purple-text.text-lighten-2 {
  color: #9575cd !important; }

.deep-purple.lighten-1 {
  background-color: #7e57c2 !important; }

.deep-purple-text.text-lighten-1 {
  color: #7e57c2 !important; }

.deep-purple {
  background-color: #673ab7 !important; }

.deep-purple-text {
  color: #673ab7 !important; }

.deep-purple.darken-1 {
  background-color: #5e35b1 !important; }

.deep-purple-text.text-darken-1 {
  color: #5e35b1 !important; }

.deep-purple.darken-2 {
  background-color: #512da8 !important; }

.deep-purple-text.text-darken-2 {
  color: #512da8 !important; }

.deep-purple.darken-3 {
  background-color: #4527a0 !important; }

.deep-purple-text.text-darken-3 {
  color: #4527a0 !important; }

.deep-purple.darken-4 {
  background-color: #311b92 !important; }

.deep-purple-text.text-darken-4 {
  color: #311b92 !important; }

.deep-purple.accent-1 {
  background-color: #b388ff !important; }

.deep-purple-text.text-accent-1 {
  color: #b388ff !important; }

.deep-purple.accent-2 {
  background-color: #7c4dff !important; }

.deep-purple-text.text-accent-2 {
  color: #7c4dff !important; }

.deep-purple.accent-3 {
  background-color: #651fff !important; }

.deep-purple-text.text-accent-3 {
  color: #651fff !important; }

.deep-purple.accent-4 {
  background-color: #6200ea !important; }

.deep-purple-text.text-accent-4 {
  color: #6200ea !important; }

.indigo.lighten-5 {
  background-color: #e8eaf6 !important; }

.indigo-text.text-lighten-5 {
  color: #e8eaf6 !important; }

.indigo.lighten-4 {
  background-color: #c5cae9 !important; }

.indigo-text.text-lighten-4 {
  color: #c5cae9 !important; }

.indigo.lighten-3 {
  background-color: #9fa8da !important; }

.indigo-text.text-lighten-3 {
  color: #9fa8da !important; }

.indigo.lighten-2 {
  background-color: #7986cb !important; }

.indigo-text.text-lighten-2 {
  color: #7986cb !important; }

.indigo.lighten-1 {
  background-color: #5c6bc0 !important; }

.indigo-text.text-lighten-1 {
  color: #5c6bc0 !important; }

.indigo {
  background-color: #3f51b5 !important; }

.indigo-text {
  color: #3f51b5 !important; }

.indigo.darken-1 {
  background-color: #3949ab !important; }

.indigo-text.text-darken-1 {
  color: #3949ab !important; }

.indigo.darken-2 {
  background-color: #303f9f !important; }

.indigo-text.text-darken-2 {
  color: #303f9f !important; }

.indigo.darken-3 {
  background-color: #283593 !important; }

.indigo-text.text-darken-3 {
  color: #283593 !important; }

.indigo.darken-4 {
  background-color: #1a237e !important; }

.indigo-text.text-darken-4 {
  color: #1a237e !important; }

.indigo.accent-1 {
  background-color: #8c9eff !important; }

.indigo-text.text-accent-1 {
  color: #8c9eff !important; }

.indigo.accent-2 {
  background-color: #536dfe !important; }

.indigo-text.text-accent-2 {
  color: #536dfe !important; }

.indigo.accent-3 {
  background-color: #3d5afe !important; }

.indigo-text.text-accent-3 {
  color: #3d5afe !important; }

.indigo.accent-4 {
  background-color: #304ffe !important; }

.indigo-text.text-accent-4 {
  color: #304ffe !important; }

.blue.lighten-5 {
  background-color: #e3f2fd !important; }

.blue-text.text-lighten-5 {
  color: #e3f2fd !important; }

.blue.lighten-4 {
  background-color: #bbdefb !important; }

.blue-text.text-lighten-4 {
  color: #bbdefb !important; }

.blue.lighten-3 {
  background-color: #90caf9 !important; }

.blue-text.text-lighten-3 {
  color: #90caf9 !important; }

.blue.lighten-2 {
  background-color: #64b5f6 !important; }

.blue-text.text-lighten-2 {
  color: #64b5f6 !important; }

.blue.lighten-1 {
  background-color: #42a5f5 !important; }

.blue-text.text-lighten-1 {
  color: #42a5f5 !important; }

.blue {
  background-color: #2196f3 !important; }

.blue-text {
  color: #2196f3 !important; }

.blue.darken-1 {
  background-color: #1e88e5 !important; }

.blue-text.text-darken-1 {
  color: #1e88e5 !important; }

.blue.darken-2 {
  background-color: #1976d2 !important; }

.blue-text.text-darken-2 {
  color: #1976d2 !important; }

.blue.darken-3 {
  background-color: #1565c0 !important; }

.blue-text.text-darken-3 {
  color: #1565c0 !important; }

.blue.darken-4 {
  background-color: #0d47a1 !important; }

.blue-text.text-darken-4 {
  color: #0d47a1 !important; }

.blue.accent-1 {
  background-color: #82b1ff !important; }

.blue-text.text-accent-1 {
  color: #82b1ff !important; }

.blue.accent-2 {
  background-color: #448aff !important; }

.blue-text.text-accent-2 {
  color: #448aff !important; }

.blue.accent-3 {
  background-color: #2979ff !important; }

.blue-text.text-accent-3 {
  color: #2979ff !important; }

.blue.accent-4 {
  background-color: #2962ff !important; }

.blue-text.text-accent-4 {
  color: #2962ff !important; }

.light-blue.lighten-5 {
  background-color: #e1f5fe !important; }

.light-blue-text.text-lighten-5 {
  color: #e1f5fe !important; }

.light-blue.lighten-4 {
  background-color: #b3e5fc !important; }

.light-blue-text.text-lighten-4 {
  color: #b3e5fc !important; }

.light-blue.lighten-3 {
  background-color: #81d4fa !important; }

.light-blue-text.text-lighten-3 {
  color: #81d4fa !important; }

.light-blue.lighten-2 {
  background-color: #4fc3f7 !important; }

.light-blue-text.text-lighten-2 {
  color: #4fc3f7 !important; }

.light-blue.lighten-1 {
  background-color: #29b6f6 !important; }

.light-blue-text.text-lighten-1 {
  color: #29b6f6 !important; }

.light-blue {
  background-color: #03a9f4 !important; }

.light-blue-text {
  color: #03a9f4 !important; }

.light-blue.darken-1 {
  background-color: #039be5 !important; }

.light-blue-text.text-darken-1 {
  color: #039be5 !important; }

.light-blue.darken-2 {
  background-color: #0288d1 !important; }

.light-blue-text.text-darken-2 {
  color: #0288d1 !important; }

.light-blue.darken-3 {
  background-color: #0277bd !important; }

.light-blue-text.text-darken-3 {
  color: #0277bd !important; }

.light-blue.darken-4 {
  background-color: #01579b !important; }

.light-blue-text.text-darken-4 {
  color: #01579b !important; }

.light-blue.accent-1 {
  background-color: #80d8ff !important; }

.light-blue-text.text-accent-1 {
  color: #80d8ff !important; }

.light-blue.accent-2 {
  background-color: #40c4ff !important; }

.light-blue-text.text-accent-2 {
  color: #40c4ff !important; }

.light-blue.accent-3 {
  background-color: #00b0ff !important; }

.light-blue-text.text-accent-3 {
  color: #00b0ff !important; }

.light-blue.accent-4 {
  background-color: #0091ea !important; }

.light-blue-text.text-accent-4 {
  color: #0091ea !important; }

.cyan.lighten-5 {
  background-color: #e0f7fa !important; }

.cyan-text.text-lighten-5 {
  color: #e0f7fa !important; }

.cyan.lighten-4 {
  background-color: #b2ebf2 !important; }

.cyan-text.text-lighten-4 {
  color: #b2ebf2 !important; }

.cyan.lighten-3 {
  background-color: #80deea !important; }

.cyan-text.text-lighten-3 {
  color: #80deea !important; }

.cyan.lighten-2 {
  background-color: #4dd0e1 !important; }

.cyan-text.text-lighten-2 {
  color: #4dd0e1 !important; }

.cyan.lighten-1 {
  background-color: #26c6da !important; }

.cyan-text.text-lighten-1 {
  color: #26c6da !important; }

.cyan {
  background-color: #00bcd4 !important; }

.cyan-text {
  color: #00bcd4 !important; }

.cyan.darken-1 {
  background-color: #00acc1 !important; }

.cyan-text.text-darken-1 {
  color: #00acc1 !important; }

.cyan.darken-2 {
  background-color: #0097a7 !important; }

.cyan-text.text-darken-2 {
  color: #0097a7 !important; }

.cyan.darken-3 {
  background-color: #00838f !important; }

.cyan-text.text-darken-3 {
  color: #00838f !important; }

.cyan.darken-4 {
  background-color: #006064 !important; }

.cyan-text.text-darken-4 {
  color: #006064 !important; }

.cyan.accent-1 {
  background-color: #84ffff !important; }

.cyan-text.text-accent-1 {
  color: #84ffff !important; }

.cyan.accent-2 {
  background-color: #18ffff !important; }

.cyan-text.text-accent-2 {
  color: #18ffff !important; }

.cyan.accent-3 {
  background-color: #00e5ff !important; }

.cyan-text.text-accent-3 {
  color: #00e5ff !important; }

.cyan.accent-4 {
  background-color: #00b8d4 !important; }

.cyan-text.text-accent-4 {
  color: #00b8d4 !important; }

.teal.lighten-5 {
  background-color: #e0f2f1 !important; }

.teal-text.text-lighten-5 {
  color: #e0f2f1 !important; }

.teal.lighten-4 {
  background-color: #b2dfdb !important; }

.teal-text.text-lighten-4 {
  color: #b2dfdb !important; }

.teal.lighten-3 {
  background-color: #80cbc4 !important; }

.teal-text.text-lighten-3 {
  color: #80cbc4 !important; }

.teal.lighten-2 {
  background-color: #4db6ac !important; }

.teal-text.text-lighten-2 {
  color: #4db6ac !important; }

.teal.lighten-1 {
  background-color: #26a69a !important; }

.teal-text.text-lighten-1 {
  color: #26a69a !important; }

.teal {
  background-color: #009688 !important; }

.teal-text {
  color: #009688 !important; }

.teal.darken-1 {
  background-color: #00897b !important; }

.teal-text.text-darken-1 {
  color: #00897b !important; }

.teal.darken-2 {
  background-color: #00796b !important; }

.teal-text.text-darken-2 {
  color: #00796b !important; }

.teal.darken-3 {
  background-color: #00695c !important; }

.teal-text.text-darken-3 {
  color: #00695c !important; }

.teal.darken-4 {
  background-color: #004d40 !important; }

.teal-text.text-darken-4 {
  color: #004d40 !important; }

.teal.accent-1 {
  background-color: #a7ffeb !important; }

.teal-text.text-accent-1 {
  color: #a7ffeb !important; }

.teal.accent-2 {
  background-color: #64ffda !important; }

.teal-text.text-accent-2 {
  color: #64ffda !important; }

.teal.accent-3 {
  background-color: #1de9b6 !important; }

.teal-text.text-accent-3 {
  color: #1de9b6 !important; }

.teal.accent-4 {
  background-color: #00bfa5 !important; }

.teal-text.text-accent-4 {
  color: #00bfa5 !important; }

.green.lighten-5 {
  background-color: #e8f5e9 !important; }

.green-text.text-lighten-5 {
  color: #e8f5e9 !important; }

.green.lighten-4 {
  background-color: #c8e6c9 !important; }

.green-text.text-lighten-4 {
  color: #c8e6c9 !important; }

.green.lighten-3 {
  background-color: #a5d6a7 !important; }

.green-text.text-lighten-3 {
  color: #a5d6a7 !important; }

.green.lighten-2 {
  background-color: #81c784 !important; }

.green-text.text-lighten-2 {
  color: #81c784 !important; }

.green.lighten-1 {
  background-color: #66bb6a !important; }

.green-text.text-lighten-1 {
  color: #66bb6a !important; }

.green {
  background-color: #78CD63 !important; }

.green-text {
  color: #78CD63 !important; }

.green.darken-1 {
  background-color: #43a047 !important; }

.green-text.text-darken-1 {
  color: #43a047 !important; }

.green.darken-2 {
  background-color: #388e3c !important; }

.green-text.text-darken-2 {
  color: #388e3c !important; }

.green.darken-3 {
  background-color: #2e7d32 !important; }

.green-text.text-darken-3 {
  color: #2e7d32 !important; }

.green.darken-4 {
  background-color: #1b5e20 !important; }

.green-text.text-darken-4 {
  color: #1b5e20 !important; }

.green.accent-1 {
  background-color: #b9f6ca !important; }

.green-text.text-accent-1 {
  color: #b9f6ca !important; }

.green.accent-2 {
  background-color: #69f0ae !important; }

.green-text.text-accent-2 {
  color: #69f0ae !important; }

.green.accent-3 {
  background-color: #00e676 !important; }

.green-text.text-accent-3 {
  color: #00e676 !important; }

.green.accent-4 {
  background-color: #00c853 !important; }

.green-text.text-accent-4 {
  color: #00c853 !important; }

.light-green.lighten-5 {
  background-color: #f1f8e9 !important; }

.light-green-text.text-lighten-5 {
  color: #f1f8e9 !important; }

.light-green.lighten-4 {
  background-color: #dcedc8 !important; }

.light-green-text.text-lighten-4 {
  color: #dcedc8 !important; }

.light-green.lighten-3 {
  background-color: #c5e1a5 !important; }

.light-green-text.text-lighten-3 {
  color: #c5e1a5 !important; }

.light-green.lighten-2 {
  background-color: #aed581 !important; }

.light-green-text.text-lighten-2 {
  color: #aed581 !important; }

.light-green.lighten-1 {
  background-color: #9ccc65 !important; }

.light-green-text.text-lighten-1 {
  color: #9ccc65 !important; }

.light-green {
  background-color: #8bc34a !important; }

.light-green-text {
  color: #8bc34a !important; }

.light-green.darken-1 {
  background-color: #7cb342 !important; }

.light-green-text.text-darken-1 {
  color: #7cb342 !important; }

.light-green.darken-2 {
  background-color: #689f38 !important; }

.light-green-text.text-darken-2 {
  color: #689f38 !important; }

.light-green.darken-3 {
  background-color: #558b2f !important; }

.light-green-text.text-darken-3 {
  color: #558b2f !important; }

.light-green.darken-4 {
  background-color: #33691e !important; }

.light-green-text.text-darken-4 {
  color: #33691e !important; }

.light-green.accent-1 {
  background-color: #ccff90 !important; }

.light-green-text.text-accent-1 {
  color: #ccff90 !important; }

.light-green.accent-2 {
  background-color: #b2ff59 !important; }

.light-green-text.text-accent-2 {
  color: #b2ff59 !important; }

.light-green.accent-3 {
  background-color: #76ff03 !important; }

.light-green-text.text-accent-3 {
  color: #76ff03 !important; }

.light-green.accent-4 {
  background-color: #64dd17 !important; }

.light-green-text.text-accent-4 {
  color: #64dd17 !important; }

.lime.lighten-5 {
  background-color: #f9fbe7 !important; }

.lime-text.text-lighten-5 {
  color: #f9fbe7 !important; }

.lime.lighten-4 {
  background-color: #f0f4c3 !important; }

.lime-text.text-lighten-4 {
  color: #f0f4c3 !important; }

.lime.lighten-3 {
  background-color: #e6ee9c !important; }

.lime-text.text-lighten-3 {
  color: #e6ee9c !important; }

.lime.lighten-2 {
  background-color: #dce775 !important; }

.lime-text.text-lighten-2 {
  color: #dce775 !important; }

.lime.lighten-1 {
  background-color: #d4e157 !important; }

.lime-text.text-lighten-1 {
  color: #d4e157 !important; }

.lime {
  background-color: #cddc39 !important; }

.lime-text {
  color: #cddc39 !important; }

.lime.darken-1 {
  background-color: #c0ca33 !important; }

.lime-text.text-darken-1 {
  color: #c0ca33 !important; }

.lime.darken-2 {
  background-color: #afb42b !important; }

.lime-text.text-darken-2 {
  color: #afb42b !important; }

.lime.darken-3 {
  background-color: #9e9d24 !important; }

.lime-text.text-darken-3 {
  color: #9e9d24 !important; }

.lime.darken-4 {
  background-color: #827717 !important; }

.lime-text.text-darken-4 {
  color: #827717 !important; }

.lime.accent-1 {
  background-color: #f4ff81 !important; }

.lime-text.text-accent-1 {
  color: #f4ff81 !important; }

.lime.accent-2 {
  background-color: #eeff41 !important; }

.lime-text.text-accent-2 {
  color: #eeff41 !important; }

.lime.accent-3 {
  background-color: #c6ff00 !important; }

.lime-text.text-accent-3 {
  color: #c6ff00 !important; }

.lime.accent-4 {
  background-color: #aeea00 !important; }

.lime-text.text-accent-4 {
  color: #aeea00 !important; }

.yellow.lighten-5 {
  background-color: #fffde7 !important; }

.yellow-text.text-lighten-5 {
  color: #fffde7 !important; }

.yellow.lighten-4 {
  background-color: #fff9c4 !important; }

.yellow-text.text-lighten-4 {
  color: #fff9c4 !important; }

.yellow.lighten-3 {
  background-color: #fff59d !important; }

.yellow-text.text-lighten-3 {
  color: #fff59d !important; }

.yellow.lighten-2 {
  background-color: #fff176 !important; }

.yellow-text.text-lighten-2 {
  color: #fff176 !important; }

.yellow.lighten-1 {
  background-color: #ffee58 !important; }

.yellow-text.text-lighten-1 {
  color: #ffee58 !important; }

.yellow {
  background-color: #ffcc00 !important; }

.yellow-text {
  color: #ffcc00 !important; }

.yellow.darken-1 {
  background-color: #fdd835 !important; }

.yellow-text.text-darken-1 {
  color: #fdd835 !important; }

.yellow.darken-2 {
  background-color: #fbc02d !important; }

.yellow-text.text-darken-2 {
  color: #fbc02d !important; }

.yellow.darken-3 {
  background-color: #f9a825 !important; }

.yellow-text.text-darken-3 {
  color: #f9a825 !important; }

.yellow.darken-4 {
  background-color: #f57f17 !important; }

.yellow-text.text-darken-4 {
  color: #f57f17 !important; }

.yellow.accent-1 {
  background-color: #ffff8d !important; }

.yellow-text.text-accent-1 {
  color: #ffff8d !important; }

.yellow.accent-2 {
  background-color: #ffff00 !important; }

.yellow-text.text-accent-2 {
  color: #ffff00 !important; }

.yellow.accent-3 {
  background-color: #ffea00 !important; }

.yellow-text.text-accent-3 {
  color: #ffea00 !important; }

.yellow.accent-4 {
  background-color: #ffd600 !important; }

.yellow-text.text-accent-4 {
  color: #ffd600 !important; }

.amber.lighten-5 {
  background-color: #fff8e1 !important; }

.amber-text.text-lighten-5 {
  color: #fff8e1 !important; }

.amber.lighten-4 {
  background-color: #ffecb3 !important; }

.amber-text.text-lighten-4 {
  color: #ffecb3 !important; }

.amber.lighten-3 {
  background-color: #ffe082 !important; }

.amber-text.text-lighten-3 {
  color: #ffe082 !important; }

.amber.lighten-2 {
  background-color: #ffd54f !important; }

.amber-text.text-lighten-2 {
  color: #ffd54f !important; }

.amber.lighten-1 {
  background-color: #ffca28 !important; }

.amber-text.text-lighten-1 {
  color: #ffca28 !important; }

.amber {
  background-color: #ffc107 !important; }

.amber-text {
  color: #ffc107 !important; }

.amber.darken-1 {
  background-color: #ffb300 !important; }

.amber-text.text-darken-1 {
  color: #ffb300 !important; }

.amber.darken-2 {
  background-color: #ffa000 !important; }

.amber-text.text-darken-2 {
  color: #ffa000 !important; }

.amber.darken-3 {
  background-color: #ff8f00 !important; }

.amber-text.text-darken-3 {
  color: #ff8f00 !important; }

.amber.darken-4 {
  background-color: #ff6f00 !important; }

.amber-text.text-darken-4 {
  color: #ff6f00 !important; }

.amber.accent-1 {
  background-color: #ffe57f !important; }

.amber-text.text-accent-1 {
  color: #ffe57f !important; }

.amber.accent-2 {
  background-color: #ffd740 !important; }

.amber-text.text-accent-2 {
  color: #ffd740 !important; }

.amber.accent-3 {
  background-color: #ffc400 !important; }

.amber-text.text-accent-3 {
  color: #ffc400 !important; }

.amber.accent-4 {
  background-color: #ffab00 !important; }

.amber-text.text-accent-4 {
  color: #ffab00 !important; }

.orange.lighten-5 {
  background-color: #fff3e0 !important; }

.orange-text.text-lighten-5 {
  color: #fff3e0 !important; }

.orange.lighten-4 {
  background-color: #ffe0b2 !important; }

.orange-text.text-lighten-4 {
  color: #ffe0b2 !important; }

.orange.lighten-3 {
  background-color: #ffcc80 !important; }

.orange-text.text-lighten-3 {
  color: #ffcc80 !important; }

.orange.lighten-2 {
  background-color: #ffb74d !important; }

.orange-text.text-lighten-2 {
  color: #ffb74d !important; }

.orange.lighten-1 {
  background-color: #ffa726 !important; }

.orange-text.text-lighten-1 {
  color: #ffa726 !important; }

.orange {
  background-color: #ff9800 !important; }

.orange-text {
  color: #ff9800 !important; }

.orange.darken-1 {
  background-color: #fb8c00 !important; }

.orange-text.text-darken-1 {
  color: #fb8c00 !important; }

.orange.darken-2 {
  background-color: #f57c00 !important; }

.orange-text.text-darken-2 {
  color: #f57c00 !important; }

.orange.darken-3 {
  background-color: #ef6c00 !important; }

.orange-text.text-darken-3 {
  color: #ef6c00 !important; }

.orange.darken-4 {
  background-color: #e65100 !important; }

.orange-text.text-darken-4 {
  color: #e65100 !important; }

.orange.accent-1 {
  background-color: #ffd180 !important; }

.orange-text.text-accent-1 {
  color: #ffd180 !important; }

.orange.accent-2 {
  background-color: #ffab40 !important; }

.orange-text.text-accent-2 {
  color: #ffab40 !important; }

.orange.accent-3 {
  background-color: #ff9100 !important; }

.orange-text.text-accent-3 {
  color: #ff9100 !important; }

.orange.accent-4 {
  background-color: #ff6d00 !important; }

.orange-text.text-accent-4 {
  color: #ff6d00 !important; }

.deep-orange.lighten-5 {
  background-color: #fbe9e7 !important; }

.deep-orange-text.text-lighten-5 {
  color: #fbe9e7 !important; }

.deep-orange.lighten-4 {
  background-color: #ffccbc !important; }

.deep-orange-text.text-lighten-4 {
  color: #ffccbc !important; }

.deep-orange.lighten-3 {
  background-color: #ffab91 !important; }

.deep-orange-text.text-lighten-3 {
  color: #ffab91 !important; }

.deep-orange.lighten-2 {
  background-color: #ff8a65 !important; }

.deep-orange-text.text-lighten-2 {
  color: #ff8a65 !important; }

.deep-orange.lighten-1 {
  background-color: #ff7043 !important; }

.deep-orange-text.text-lighten-1 {
  color: #ff7043 !important; }

.deep-orange {
  background-color: #ff5722 !important; }

.deep-orange-text {
  color: #ff5722 !important; }

.deep-orange.darken-1 {
  background-color: #f4511e !important; }

.deep-orange-text.text-darken-1 {
  color: #f4511e !important; }

.deep-orange.darken-2 {
  background-color: #e64a19 !important; }

.deep-orange-text.text-darken-2 {
  color: #e64a19 !important; }

.deep-orange.darken-3 {
  background-color: #d84315 !important; }

.deep-orange-text.text-darken-3 {
  color: #d84315 !important; }

.deep-orange.darken-4 {
  background-color: #bf360c !important; }

.deep-orange-text.text-darken-4 {
  color: #bf360c !important; }

.deep-orange.accent-1 {
  background-color: #ff9e80 !important; }

.deep-orange-text.text-accent-1 {
  color: #ff9e80 !important; }

.deep-orange.accent-2 {
  background-color: #ff6e40 !important; }

.deep-orange-text.text-accent-2 {
  color: #ff6e40 !important; }

.deep-orange.accent-3 {
  background-color: #ff3d00 !important; }

.deep-orange-text.text-accent-3 {
  color: #ff3d00 !important; }

.deep-orange.accent-4 {
  background-color: #dd2c00 !important; }

.deep-orange-text.text-accent-4 {
  color: #dd2c00 !important; }

.brown.lighten-5 {
  background-color: #efebe9 !important; }

.brown-text.text-lighten-5 {
  color: #efebe9 !important; }

.brown.lighten-4 {
  background-color: #d7ccc8 !important; }

.brown-text.text-lighten-4 {
  color: #d7ccc8 !important; }

.brown.lighten-3 {
  background-color: #bcaaa4 !important; }

.brown-text.text-lighten-3 {
  color: #bcaaa4 !important; }

.brown.lighten-2 {
  background-color: #a1887f !important; }

.brown-text.text-lighten-2 {
  color: #a1887f !important; }

.brown.lighten-1 {
  background-color: #8d6e63 !important; }

.brown-text.text-lighten-1 {
  color: #8d6e63 !important; }

.brown {
  background-color: #795548 !important; }

.brown-text {
  color: #795548 !important; }

.brown.darken-1 {
  background-color: #6d4c41 !important; }

.brown-text.text-darken-1 {
  color: #6d4c41 !important; }

.brown.darken-2 {
  background-color: #5d4037 !important; }

.brown-text.text-darken-2 {
  color: #5d4037 !important; }

.brown.darken-3 {
  background-color: #4e342e !important; }

.brown-text.text-darken-3 {
  color: #4e342e !important; }

.brown.darken-4 {
  background-color: #3e2723 !important; }

.brown-text.text-darken-4 {
  color: #3e2723 !important; }

.blue-grey.lighten-5 {
  background-color: #eceff1 !important; }

.blue-grey-text.text-lighten-5 {
  color: #eceff1 !important; }

.blue-grey.lighten-4 {
  background-color: #cfd8dc !important; }

.blue-grey-text.text-lighten-4 {
  color: #cfd8dc !important; }

.blue-grey.lighten-3 {
  background-color: #b0bec5 !important; }

.blue-grey-text.text-lighten-3 {
  color: #b0bec5 !important; }

.blue-grey.lighten-2 {
  background-color: #90a4ae !important; }

.blue-grey-text.text-lighten-2 {
  color: #90a4ae !important; }

.blue-grey.lighten-1 {
  background-color: #78909c !important; }

.blue-grey-text.text-lighten-1 {
  color: #78909c !important; }

.blue-grey {
  background-color: #607d8b !important; }

.blue-grey-text {
  color: #607d8b !important; }

.blue-grey.darken-1 {
  background-color: #546e7a !important; }

.blue-grey-text.text-darken-1 {
  color: #546e7a !important; }

.blue-grey.darken-2 {
  background-color: #455a64 !important; }

.blue-grey-text.text-darken-2 {
  color: #455a64 !important; }

.blue-grey.darken-3 {
  background-color: #37474f !important; }

.blue-grey-text.text-darken-3 {
  color: #37474f !important; }

.blue-grey.darken-4 {
  background-color: #263238 !important; }

.blue-grey-text.text-darken-4 {
  color: #263238 !important; }

.grey.lighten-5 {
  background-color: #fafafa !important; }

.grey-text.text-lighten-5 {
  color: #fafafa !important; }

.grey.lighten-4 {
  background-color: #f5f5f5 !important; }

.grey-text.text-lighten-4 {
  color: #f5f5f5 !important; }

.grey.lighten-3 {
  background-color: #eeeeee !important; }

.grey-text.text-lighten-3 {
  color: #eeeeee !important; }

.grey.lighten-2 {
  background-color: #e0e0e0 !important; }

.grey-text.text-lighten-2 {
  color: #e0e0e0 !important; }

.grey.lighten-1 {
  background-color: #bdbdbd !important; }

.grey-text.text-lighten-1 {
  color: #bdbdbd !important; }

.grey {
  background-color: #9e9e9e !important; }

.grey-text {
  color: #9e9e9e !important; }

.grey.darken-1 {
  background-color: #757575 !important; }

.grey-text.text-darken-1 {
  color: #757575 !important; }

.grey.darken-2 {
  background-color: #616161 !important; }

.grey-text.text-darken-2 {
  color: #616161 !important; }

.grey.darken-3 {
  background-color: #424242 !important; }

.grey-text.text-darken-3 {
  color: #424242 !important; }

.grey.darken-4 {
  background-color: #212121 !important; }

.grey-text.text-darken-4 {
  color: #212121 !important; }

.shades.black {
  background-color: #000000 !important; }

.shades-text.text-black {
  color: #000000 !important; }

.shades.white {
  background-color: #ffffff !important; }

.shades-text.text-white {
  color: #ffffff !important; }

.shades.transparent {
  background-color: transparent !important; }

.shades-text.text-transparent {
  color: transparent !important; }

.topnav {
  background-color: #fff !important; }

.topnav-text {
  color: #fff !important; }

.black {
  background-color: #9e9e9e !important; }

.black-text {
  color: #9e9e9e !important; }

.black {
  background-color: #000000 !important; }

.black-text {
  color: #000000 !important; }

.white {
  background-color: #ffffff !important; }

.white-text, .tag-category:hover {
  color: #ffffff !important; }

.transparent {
  background-color: transparent !important; }

.transparent-text {
  color: transparent !important; }

.primary-color {
  background-color: #7159B5 !important;
  color: #ffffff !important; }

.primary-text {
  color: #7159B5 !important; }

a.primary-color > i {
  color: #ffffff; }

.red-text, .is-faq .accordion .panel-title a:not(.collapsed), body.is-faq .accordion h3.panel-title a:not(.collapsed) {
  color: #cc3032; }

/*** Colors ***/
/*** Fonts ***/
/*** Typography ***/
/*** Cards ***/
/*** Global ***/
/*** Forms ***/
/*** Buttons ***/
/*** Dropdown ***/
/*** Tabs ***/
html,
body {
  min-width: 320px;
  min-height: 100%;
  height: auto !important; }
  html.custom-scrollbars,
  body.custom-scrollbars {
    /* Let's get this party started */
    /* Track */
    /* Handle */ }
    html.custom-scrollbars::-webkit-scrollbar,
    body.custom-scrollbars::-webkit-scrollbar {
      -webkit-appearance: none;
      width: 5px;
      height: 5px; }
    html.custom-scrollbars::-webkit-scrollbar-track,
    body.custom-scrollbars::-webkit-scrollbar-track {
      background: #fff;
      box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.07);
      border-radius: 10px;
      background: #f9f9f9;
      visibility: visible; }
    html.custom-scrollbars:hover::-webkit-scrollbar-track,
    body.custom-scrollbars:hover::-webkit-scrollbar-track {
      visibility: visible; }
    html.custom-scrollbars::-webkit-scrollbar-thumb,
    body.custom-scrollbars::-webkit-scrollbar-thumb {
      border-radius: 10px;
      background: #7159B5;
      visibility: visible; }
    html.custom-scrollbars:hover::-webkit-scrollbar-thumb,
    body.custom-scrollbars:hover::-webkit-scrollbar-thumb {
      visibility: visible; }
    html.custom-scrollbars::-webkit-scrollbar-thumb,
    body.custom-scrollbars::-webkit-scrollbar-thumb {
      border-radius: 0;
      background: linear-gradient(to bottom, #7159b5 0%, #8f7cc5 100%); }

footer#site-footer.footer_1 .footer__logo-wrapper img,
footer#site-footer.footer_1 .footer__logo-wrapper svg {
  width: 75px;
  height: 26.25px; }

footer .company__wrapper {
  margin: .5rem 0; }
  footer .company__wrapper.flex, footer .company__wrapper.flex-center, footer .company__wrapper.card-overlay, footer .testimonial-carousel .testimonial .company__wrapper.avatar, .testimonial-carousel .testimonial footer .company__wrapper.avatar, footer .question-carousel .testimonial .company__wrapper.avatar, .question-carousel .testimonial footer .company__wrapper.avatar, footer .question-carousel .question .company__wrapper.avatar, .question-carousel .question footer .company__wrapper.avatar {
    display: flex;
    flex-wrap: wrap; }
    footer .company__wrapper.flex div, footer .company__wrapper.flex-center div, footer .company__wrapper.card-overlay div, footer .testimonial-carousel .testimonial .company__wrapper.avatar div, .testimonial-carousel .testimonial footer .company__wrapper.avatar div, footer .question-carousel .testimonial .company__wrapper.avatar div, .question-carousel .testimonial footer .company__wrapper.avatar div, footer .question-carousel .question .company__wrapper.avatar div, .question-carousel .question footer .company__wrapper.avatar div {
      margin-left: .5rem; }
  footer .company__wrapper.inline {
    display: inline; }
  footer .company__wrapper.block {
    display: block; }
  footer .company__wrapper.inline-block {
    display: inline-block; }
  footer .company__wrapper.theme__light strong {
    color: #b3b3b3; }
  footer .company__wrapper.theme__light a {
    color: #49cf43; }
  footer .company__wrapper.theme__dark strong {
    color: #404040; }
  footer .company__wrapper.theme__dark a {
    color: #49cf43; }

footer .company__name {
  display: inline-block; }

footer .company__code {
  display: inline-block; }

.fb-container {
  display: inline-block;
  min-width: 150px;
  margin-left: -12px;
  padding: .4rem 0; }
  .fb-container .fb-container-new {
    left: -4rem;
    top: -2rem; }
  .fb-container iframe {
    font-size: 4rem !important;
    border: 1px solid #3982F7 !important;
    border-radius: 5px;
    background: #f9fbff;
    padding: .1rem .2rem .2rem 0;
    box-shadow: 0 10px 10px -5px rgba(57, 130, 247, 0.11); }

.magic-link {
  border: none;
  background: none;
  box-shadow: none; }
  body.is-forgot .magic-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: .5rem 1rem;
    height: 50px;
    transform: translateY(-5px); }

a.is-link-active {
  pointer-events: none;
  opacity: .4 !important; }

.z-depth-0, .section .map-container img, .md-pills, .card-cascade.wider, .card-cascade-2, .wizard > .actions .disabled a,
.wizard > .actions .disabled a:hover,
.wizard > .actions .disabled a:active {
  box-shadow: none !important; }

.z-depth-light,
.dropdown-menu, .card, .autocomplete-suggestions, .is-tpl-samples .sample__img, .is-about.is-tpl-about .aditional-content div[class^="col"] i[class*="ico"], [class*="is-tpl-faq"] #FAQ h2.faq-title i, .urgency__wrapper .urgency__select, .site-header .main-nav.top-nav-collapse, .select-preferred-writers ~ .select2-container .select2-dropdown .select2-results__option[aria-selected] .is-premium, .deprecated-sidebar-layout .article-content .blockquote, .samples .sample-card, .related-posts__carousel .related-post__item, .is-tpl-article .article__thumbnail-wrapper.thumbnail-small, .is-tpl-article .article__thumbnail-wrapper img, .widget, .select2-dropdown {
  box-shadow: 0 4px 14px -4px rgba(21, 88, 168, 0.2), 0 2px 25px -5px rgba(21, 88, 168, 0.1), 0 1px 1px rgba(21, 88, 168, 0.05); }

.z-depth-primary {
  box-shadow: 0 4px 14px -4px rgba(79, 60, 134, 0.2), 0 2px 25px -5px rgba(79, 60, 134, 0.1), 0 1px 1px rgba(79, 60, 134, 0.05); }

.z-depth-1, .page-link.active, .breadcrumbs-nav__list .nav-item i, .btn, .wizard > .actions a,
.wizard > .actions a:hover,
.wizard > .actions a:active, .pager li a, .btn-floating, .social-list, .card-wrapper .front,
.card-wrapper .back, .card-cascade.wider .card-block, .card-cascade-2 .card-block, .dropdown-content, #toast-container > div, #claimform .rev-btn-group .btn:hover,
#claimform .rev-btn-group .wizard > .actions a:hover, .wizard > .actions #claimform .rev-btn-group a:hover, .btn-radio, .md-pills.pills-default .nav-item .nav-link.active, .question-carousel .question, .hit-steps .steps-item:before, .widget.widget-testimonials .testimonial__avatar img {
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.2), 0 2px 25px -5px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.05); }

.z-depth-1-half, .tooltip .tooltip-inner, .btn:hover,
.wizard > .actions a:hover, .btn-secondary.active, .btn-secondary.dropdown-toggle, .btn-primary.active, .fso-widget .active.btn-submit, .wizard > .actions a.active, .btn-default.active, .btn-success.active, .wizard .actions a.active[href$='#finish'], .btn-info.active, .btn-warning.active, .btn-danger.active, .pager li a:hover, .btn-elegant.active, .btn-unique.active, .btn-pink.active, .btn-purple.active, .btn-deep-purple.active, .btn-indigo.active, .btn-cyan.active, .btn-light-green.active, .btn-dark-green.active, .btn-lime.active, .btn-yellow.active, .btn-amber.active, .btn-orange.active, .btn-deep-orange.active, .btn-brown.active, .btn-blue-grey.active, .btn-mdb.active, .md-pills .nav-item .nav-link.active, .inline-ul-img li img, .btn-floating:hover, .colorful-select .dropdown-content li.active span, .picker__day--selected,
.picker__day--selected:hover,
.picker--focused .picker__day--selected, .comments-list .label,
.reply-form .label, .card .form-header {
  box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }

.z-depth-2, .nav-tabs, .card-overlay, .card-cascade .view, .card-cascade-2 .view, .colorful-select .dropdown-content li a:hover,
.colorful-select .dropdown-content li span:hover, .comments-list img,
.reply-form img, .section-blog-fw .view, .testimonial-carousel .testimonial .avatar img, .question-carousel .testimonial .avatar img, .question-carousel .question .avatar img {
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.18), 0 6px 20px 0 rgba(0, 0, 0, 0.1); }

.z-depth-3, .modal-test .modal-content {
  box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19); }

.z-depth-4, .bootbox.modal .modal-dialog .modal-content, #single-notify {
  box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.15), 0 25px 55px 0 rgba(0, 0, 0, 0.1); }

.hoverable {
  transition: box-shadow 0.55s;
  box-shadow: 0; }

.hoverable:hover {
  transition: box-shadow 0.45s;
  box-shadow: 0 8px 17px 0 rgba(21, 88, 168, 0.2), 0 6px 20px 0 rgba(21, 88, 168, 0.19); }

@media (max-width: 543px) {
  .m-y-xs {
    margin-top: 1rem;
    margin-bottom: 1rem; } }

a {
  color: #252525;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent; }
  a:hover, a:focus {
    text-decoration: none; }

ul {
  padding: 0;
  list-style-type: none; }
  ul li {
    list-style-type: none; }

.label,
.alert,
.navbar-toggler,
.list-group .list-group-item,
.modal-content,
.tooltip-inner,
.popover,
.dropdown-menu,
.dropdown-toggle,
.input-group-addon,
.file-custom,
.nav-tabs,
.dropdown-menu,
img {
  border-radius: 4px; }

.popover,
.input-group-addon,
.dropdown-menu,
.pagination .page-item .page-link {
  border: 0; }

.modal-footer .btn + .btn, .modal-footer .wizard > .actions a + .btn, .wizard > .actions .modal-footer a + .btn, .modal-footer .wizard > .actions .btn + a, .wizard > .actions .modal-footer .btn + a, .modal-footer .wizard > .actions a + a, .wizard > .actions .modal-footer a + a {
  margin-bottom: 6px; }

body.modal-open {
  overflow: inherit;
  padding-right: 0 !important; }

hr.dashed {
  border-top: 1px dashed silver; }

.card {
  padding: 1rem; }

.parallax {
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  padding-top: 3em;
  padding-bottom: 3em; }

.nav-pills.horizontal-spy .nav-item .active {
  border-bottom: 2px solid #45526e;
  border-left: none; }

.nav-pills.horizontal-spy .nav-item:hover {
  background-color: transparent;
  color: #45526e;
  font-weight: 500;
  border-left: none; }

.nav-pills .nav-item.open .nav-link,
.nav-pills .nav-item.open .nav-link:focus,
.nav-pills .nav-item.open .nav-link:hover,
.nav-pills .nav-link.active,
.nav-pills .nav-link.active:focus,
.nav-pills .nav-link.active:hover {
  background-color: transparent;
  color: #000; }

.disabled {
  cursor: not-allowed !important;
  pointer-events: none; }

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

.video-full {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background-size: cover; }

.card-block h5 {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 400; }

.card-block h3 {
  margin-bottom: 1rem;
  font-weight: 400; }

.card-block p {
  margin-bottom: 1rem; }

.tooltip {
  z-index: 16000004 !important; }
  .tooltip .tooltip-inner {
    padding: 0.4rem 0.8rem; }

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* Retina-specific stuff here */
  img.img-retina {
    width: 50%;
    height: 50%; } }

@keyframes phone-shake {
  0% {
    transform: rotate(-8deg) scale(1); }
  4% {
    transform: rotate(5deg) scale(1.2); }
  8% {
    transform: rotate(-8deg) scale(1); }
  12% {
    transform: rotate(5deg) scale(1.2); }
  to {
    transform: rotate(2deg) scale(1); } }

@keyframes phone-ring {
  from {
    transform: scale(1); }
  to {
    transform: scale(2);
    opacity: 0; } }

a.nav-link.nav-phone {
  user-select: text;
  white-space: nowrap;
  position: relative;
  transform: translateY(-5px);
  line-height: 25px; }
  a.nav-link.nav-phone:before, a.nav-link.nav-phone:after {
    display: none !important; }
  a.nav-link.nav-phone sub.phone__cta {
    color: rgba(1, 6, 72, 0.75);
    white-space: nowrap;
    display: block;
    bottom: 0;
    left: 26px;
    letter-spacing: 0px;
    font-size: 10px;
    animation: fadeIn 1s ease 0.4s both; }
    a.nav-link.nav-phone sub.phone__cta strong {
      font-weight: bold; }
  a.nav-link.nav-phone span.phone__code {
    letter-spacing: -0.5px;
    color: rgba(1, 6, 72, 0.75);
    font-size: 0.75rem !important;
    position: relative;
    top: -1px; }
  a.nav-link.nav-phone span.phone__icon {
    background: #7159B5;
    border-radius: 50%;
    color: white !important;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    position: relative;
    top: 5px;
    width: 20px;
    height: 20px;
    display: inline-block; }
    a.nav-link.nav-phone span.phone__icon:before, a.nav-link.nav-phone span.phone__icon:after {
      content: "";
      border: 1px solid #7159B5;
      position: absolute;
      top: 1px;
      left: 1px;
      bottom: 1px;
      right: 1px;
      border-radius: 50%;
      animation: phone-ring 2s ease-in-out infinite; }
    a.nav-link.nav-phone span.phone__icon:after {
      animation: phone-ring 4s ease-in-out 1s infinite;
      border-width: 2px; }
    a.nav-link.nav-phone span.phone__icon .fa {
      font-size: 18px;
      z-index: 100;
      animation: phone-shake 1.4s ease-in-out infinite;
      transition: all 0.2s ease;
      position: relative;
      top: -3px;
      left: 3px;
      padding: 0; }

.tag.tag-xs {
  font: 300 .7rem/1rem sans-serif;
  padding: 2px 8px; }

.tag-ghost {
  color: #a09f9f;
  border: 1px solid #d6d6d6; }
  .tag-ghost.tag-danger {
    color: #cc3032;
    border-color: #cc3032;
    background: transparent; }

.tag-white {
  background: white;
  color: #7f93f3; }

.js-confirm-email {
  cursor: pointer; }

.not-active {
  pointer-events: none;
  cursor: default; }

.opacity-5 {
  opacity: 0.5; }

.hover-show {
  display: inline-block;
  opacity: 1;
  transition: all 0.2s ease; }
  body:not(.is-mobile) .hover-show__parent .hover-show {
    opacity: 0;
    transform: translateX(-10px); }
  body:not(.is-mobile) .hover-show__parent:hover .hover-show {
    opacity: 1;
    transform: translateX(0); }

.autocomplete-suggestions {
  /* Let's get this party started */
  /* Track */
  /* Handle */
  cursor: default;
  text-align: left;
  border-top: 0;
  background: #fff;
  border-radius: 4px;
  position: absolute;
  display: none;
  z-index: 16000003;
  max-height: 230px;
  overflow: hidden;
  overflow-y: auto;
  box-sizing: border-box; }
  .autocomplete-suggestions::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
    height: 7px; }
  .autocomplete-suggestions::-webkit-scrollbar-track {
    background: #fff;
    box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    background: rgba(245, 248, 249, 0.8);
    visibility: hidden; }
  .autocomplete-suggestions:hover::-webkit-scrollbar-track {
    visibility: visible; }
  .autocomplete-suggestions::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #7159B5;
    visibility: hidden; }
  .autocomplete-suggestions:hover::-webkit-scrollbar-thumb {
    visibility: visible; }
  .autocomplete-suggestions .autocomplete-suggestion {
    position: relative;
    padding: 0 0.6em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.1rem;
    color: #333;
    transition: all .1s ease; }
    .autocomplete-suggestions .autocomplete-suggestion b {
      font-weight: normal;
      color: #1f8dd6;
      transition: all 0.15s ease, color none; }
    .autocomplete-suggestions .autocomplete-suggestion.selected {
      color: #ffffff;
      background: #7159B5; }
      .autocomplete-suggestions .autocomplete-suggestion.selected b {
        color: #ffffff; }
    @media (max-width: 991px) {
      .autocomplete-suggestions .autocomplete-suggestion {
        padding: 0.2rem 0.5rem; } }

.tag-xs {
  padding: 0 0.2rem; }

.currency:before, .table-price .order-now:before {
  font-weight: 100; }

.file-upl {
  cursor: pointer;
  font-size: 0.75rem;
  margin: 0 3px;
  border-radius: 4px;
  padding: 1px 10px 0 4px;
  animation-duration: 0.4s !important;
  white-space: nowrap; }
  .file-upl span {
    position: relative;
    top: 6px;
    text-overflow: ellipsis;
    display: inline-block;
    max-width: 63vw;
    overflow: hidden; }
  .file-upl__remove:before {
    content: "\f0c6";
    font-family: "fontawesome";
    display: inline-block;
    transition: all 0.2s ease-out;
    border-radius: 50%;
    text-align: center;
    font-size: 1.2rem;
    transform: scale(1);
    position: relative;
    top: 2px;
    width: 22px;
    height: 22px;
    border: 1px solid transparent; }
  .file-upl:hover {
    color: darkred; }
    .file-upl:hover .file-upl__remove:before {
      transform: rotate(90deg) scale(0.85);
      border-color: #f34235;
      color: #f34235;
      content: "\f00d"; }
  .file-upl:active {
    transform: scale(0.97);
    opacity: 0.75; }

.link-dashed {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1); }
  .link-dashed:hover {
    border-color: black; }

div.dashboard-nav.container {
  margin: 0.5rem auto 0.2rem;
  padding: 0 0 0.4rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
  div.dashboard-nav.container nav ul.nav .nav-item {
    display: inline-block;
    white-space: nowrap;
    margin-right: 0.2rem; }
    div.dashboard-nav.container nav ul.nav .nav-item a {
      transition: color 0.2s ease;
      font-size: 1.1rem;
      color: rgba(0, 0, 0, 0.8); }
      div.dashboard-nav.container nav ul.nav .nav-item a i {
        display: inline-block;
        font-size: 1rem; }
      div.dashboard-nav.container nav ul.nav .nav-item a:hover {
        color: black; }
    div.dashboard-nav.container nav ul.nav .nav-item:after {
      content: "";
      border-right: 1px solid rgba(0, 0, 0, 0.1);
      padding-left: 0.6rem; }
    div.dashboard-nav.container nav ul.nav .nav-item:last-child:after {
      display: none; }
  @media (max-width: 767px) {
    div.dashboard-nav.container {
      border: none;
      margin: 0;
      padding: 0; }
      div.dashboard-nav.container nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        transform: translateY(65px);
        transition: transform 0.25s ease-in-out;
        z-index: 10000000 !important; }
        body.is-sticky div.dashboard-nav.container nav {
          transform: translateY(0); }
        div.dashboard-nav.container nav > ul.nav {
          margin: 0;
          border-top: 1px solid #fafafa;
          line-height: 1em;
          display: flex;
          flex-direction: row;
          background: #fff;
          box-shadow: 0 -8px 5px rgba(0, 0, 0, 0.01), 0 -1px 1px rgba(0, 0, 0, 0.1);
          min-width: 320px;
          overflow-x: auto; }
          body.is-mobilenav.is-sticky div.dashboard-nav.container nav > ul.nav {
            display: none; } }
      @media only screen and (max-width: 767px) and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
        div.dashboard-nav.container nav > ul.nav {
          /*@trindent*/
          padding: 0.5rem 0;
          background: #f6f6f6; } }
  @media (max-width: 767px) {
          div.dashboard-nav.container nav > ul.nav li.nav-item {
            flex-grow: 1;
            margin: 0;
            text-align: center; }
            div.dashboard-nav.container nav > ul.nav li.nav-item:after {
              border: none;
              padding: 0; }
            div.dashboard-nav.container nav > ul.nav li.nav-item a {
              font-size: 12px; }
              div.dashboard-nav.container nav > ul.nav li.nav-item a span {
                text-transform: capitalize;
                display: block;
                margin: 0;
                padding: 0 0.2rem 0.4rem;
                white-space: nowrap; }
              div.dashboard-nav.container nav > ul.nav li.nav-item a i:not(.icon-notification) {
                padding-top: 0.4rem;
                padding-bottom: 0.4rem;
                display: block;
                font-size: 20px;
                transition: all 0.2s ease;
                opacity: 0.75; }
              div.dashboard-nav.container nav > ul.nav li.nav-item a:hover {
                color: black; }
                div.dashboard-nav.container nav > ul.nav li.nav-item a:hover i {
                  opacity: 1; } }

.breadcrumbs-nav__list .nav-item a {
  color: black;
  font: 400 0.95rem/0.9rem "Gilroy", "Helvetica Neue", Arial, sans-serif;
  transition: all 0.2s ease; }
  .breadcrumbs-nav__list .nav-item a:after {
    content: "\f101";
    font-family: "fontawesome";
    font-size: 0.7rem;
    color: rgba(0, 0, 0, 0.2);
    padding-left: 0.3rem; }
  .breadcrumbs-nav__list .nav-item a:hover {
    color: #252525; }
    .breadcrumbs-nav__list .nav-item a:hover span {
      text-decoration: underline; }

.breadcrumbs-nav__list .nav-item.active a {
  opacity: 0.5; }

.breadcrumbs-nav__list .nav-item:last-child a:after {
  display: none; }

.breadcrumbs-nav__list .nav-item i {
  border-radius: 50%;
  font-size: 14px;
  padding: 2px;
  min-width: 19px;
  min-height: 19px;
  text-align: center;
  background: #49cf43;
  color: #fff; }

pre.code {
  white-space: normal;
  font-size: 0.75rem; }

#price-calculator .select-wrapper.mdb-select input.select-dropdown {
  text-align: center; }

#price-calculator .select-wrapper.mdb-select ul.dropdown-content {
  overflow-x: hidden;
  max-height: 70vh;
  max-height: 320px; }
  #price-calculator .select-wrapper.mdb-select ul.dropdown-content.active {
    z-index: 1080px; }
  #price-calculator .select-wrapper.mdb-select ul.dropdown-content > li[class] {
    transition: none; }
    #price-calculator .select-wrapper.mdb-select ul.dropdown-content > li[class] > span:hover {
      background: #7159B5;
      color: #fff;
      transform: none; }

.draggable {
  cursor: -moz-grab;
  cursor: -webkit-grab;
  cursor: grab; }
  .draggable:active {
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
    cursor: grabbing; }

#output {
  max-height: 240px;
  overflow-y: auto; }

a[href="/profile"] sup.fa-exclamation-circle {
  opacity: 1 !important;
  font-size: 15px !important;
  top: -5px;
  transform: scale(1) !important;
  min-width: 0 !important; }

.sitemap {
  /* Customize links */ }
  .sitemap__item .item__title {
    font-weight: 600;
    font-size: 1.1rem; }
  .sitemap__link {
    display: block;
    color: #252525;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 1rem;
    position: relative; }
    .sitemap__link:before {
      content: "\f105";
      font-family: "fontawesome";
      display: inline-block;
      color: #7159B5;
      position: absolute;
      left: 0;
      transition: all 0.15s ease; }
    .sitemap__link:hover:before {
      transform: scale(1.5) translateX(0.1rem); }

span.hilite {
  background: #7159B5;
  color: #ffffff;
  border-radius: 4px; }

.position-relative {
  position: relative !important; }

.position-absolute {
  position: absolute !important; }

img[data-lazy] {
  transition: width 0, height 0 !important; }
  img[data-lazy][src^="data:image"][src$="w=="] {
    max-height: 155px; }
  body.is-blog img[data-lazy].loading {
    max-height: 177px; }
  img[data-lazy]:not(.loaded):not(.error) + .mask {
    text-align: center;
    font-size: 1.5rem;
    color: silver;
    opacity: 1;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center; }
    img[data-lazy]:not(.loaded):not(.error) + .mask:before {
      top: 40%;
      content: "\e97f";
      font-family: "essay";
      display: inline-block;
      animation: fa-spin 0.4s infinite steps(9);
      position: absolute;
      width: 27px;
      height: 27px;
      line-height: 27px; }
  img[data-lazy].loaded + .mask {
    display: none; }
  img[data-lazy].error + .mask {
    z-index: 1000;
    position: absolute;
    top: 2px;
    right: 10px;
    transition: transform 0.2s ease; }
    img[data-lazy].error + .mask:before {
      content: "\f06a";
      font-family: "fontawesome";
      color: #cc3032;
      font-size: 15px; }

.acepted-privacy-policy {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 35px;
  z-index: 1027;
  animation: fadeIn 0.5s ease; }
  .acepted-privacy-policy .banner__container {
    padding: 0 15px;
    max-width: 900px;
    margin: 0 auto; }
  .acepted-privacy-policy .banner__inner-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F0F7FF;
    border-radius: 10px;
    color: #6F768E;
    padding: 10px 50px; }
    @media (max-width: 767px) {
      .acepted-privacy-policy .banner__inner-wrapper {
        padding: 10px 20px; } }
    @media screen and (max-width: 380px) {
      .acepted-privacy-policy .banner__inner-wrapper {
        justify-content: center;
        flex-wrap: wrap; } }
    .acepted-privacy-policy .banner__inner-wrapper .cookie-img {
      margin-right: 30px;
      width: 40px;
      height: 40px;
      min-width: 40px; }
      @media (max-width: 767px) {
        .acepted-privacy-policy .banner__inner-wrapper .cookie-img {
          margin-right: 15px;
          width: 30px;
          height: 30px;
          min-width: 30px; } }
      @media screen and (max-width: 430px) {
        .acepted-privacy-policy .banner__inner-wrapper .cookie-img {
          display: none; } }
  .acepted-privacy-policy .banner__cross {
    position: absolute;
    top: 4px;
    right: 4px; }
  html[lang="de"] .acepted-privacy-policy .banner__heading {
    font-size: 15px;
    line-height: 1.2em; }
  @media (max-width: 991px) {
    html[lang="de"] .acepted-privacy-policy .banner__heading {
      font-size: 12px; } }
  @media (max-width: 767px) {
    html[lang="de"] .acepted-privacy-policy .banner__heading {
      font-size: 11px;
      line-height: 14px; } }
  @media (max-width: 767px) {
    .acepted-privacy-policy .banner__heading {
      font-size: 13px; } }
  @media screen and (max-width: 380px) {
    .acepted-privacy-policy .banner__heading {
      text-align: center; } }
  .acepted-privacy-policy .banner__heading a {
    color: #6F768E;
    text-decoration: underline;
    transition: 0.2s; }
    .acepted-privacy-policy .banner__heading a:hover {
      opacity: 0.7; }
  .acepted-privacy-policy .banner__close {
    border: 1px solid #6F768E;
    border-radius: 30px;
    line-height: 24px;
    padding: 7px 25px;
    white-space: nowrap;
    margin-left: 20px; }
    @media (max-width: 991px) {
      .acepted-privacy-policy .banner__close {
        font-size: 13px; } }
    @media (max-width: 767px) {
      .acepted-privacy-policy .banner__close {
        padding: 2px 15px;
        margin-left: 15px; } }
    @media (max-width: 543px) {
      .acepted-privacy-policy .banner__close {
        font-size: 12px; } }
    @media screen and (max-width: 380px) {
      .acepted-privacy-policy .banner__close {
        margin: 10px 0 0; } }

.banner-msg[data-role="banner"] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  background-color: rgba(255, 203, 22, 0.9);
  padding: 0.4rem 0;
  z-index: 1027;
  animation: fadeIn 0.5s ease; }
  .banner-msg[data-role="banner"].banner-stripe .banner__heading {
    padding: 1rem 0 .75rem; }
  .banner-msg[data-role="banner"].banner-stripe .banner__footer {
    margin-bottom: .75rem; }
  .banner-msg[data-role="banner"].banner-stripe .banner__img {
    max-width: 300px;
    margin: 0 auto .5rem; }
    .banner-msg[data-role="banner"].banner-stripe .banner__img svg path,
    .banner-msg[data-role="banner"].banner-stripe .banner__img svg g {
      fill: #252525; }
  body.is-mobilenav .banner-msg[data-role="banner"] {
    z-index: 50; }
  body.is-nav-collapsed .banner-msg[data-role="banner"] {
    z-index: 0;
    display: none !important; }
  .banner-msg[data-role="banner"].is-hidding {
    animation: fadeOut 0.3s ease both; }
  .banner-msg[data-role="banner"].banner-bottom {
    bottom: 0; }
  .banner-msg[data-role="banner"] .banner__heading {
    color: #252525; }
    html[lang="de"] .banner-msg[data-role="banner"] .banner__heading {
      font-size: 15px;
      line-height: 1.2em; }
    @media (max-width: 991px) {
      html[lang="de"] .banner-msg[data-role="banner"] .banner__heading {
        font-size: 12px; } }
    @media (max-width: 767px) {
      html[lang="de"] .banner-msg[data-role="banner"] .banner__heading {
        font-size: 11px;
        line-height: 14px; } }
    @media (max-width: 767px) {
      .banner-msg[data-role="banner"] .banner__heading {
        font-size: 13px; } }
  .banner-msg[data-role="banner"] .banner__container {
    text-align: center; }
    .banner-msg[data-role="banner"] .banner__container a {
      text-decoration: underline;
      color: #252525; }
    @media (max-width: 767px) {
      .banner-msg[data-role="banner"] .banner__container {
        padding: 0 10px; } }
  .banner-msg[data-role="banner"] .banner__close {
    position: relative;
    white-space: nowrap;
    font-size: 13px;
    font-weight: bold;
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
    border: 1px solid;
    color: #252525;
    border-color: #252525;
    background: rgba(255, 255, 255, 0.15); }
    .banner-msg[data-role="banner"] .banner__close:hover {
      transform: scale(1); }
    @media (max-width: 991px) {
      .banner-msg[data-role="banner"] .banner__close {
        font-size: 11px; } }
    @media (max-width: 767px) {
      .banner-msg[data-role="banner"] .banner__close {
        font-size: 10px; } }

.currency, .table-price .order-now {
  white-space: nowrap;
  color: #4caf50;
  font-weight: 700; }
  .currency:before, .table-price .order-now:before {
    content: "\f155";
    font-family: "fontawesome";
    font-size: 1rem;
    font-weight: bold;
    display: inline-block;
    color: rgba(0, 0, 0, 0.3);
    margin-right: 0.2rem; }

#edit-order-modal {
  margin: 0;
  padding: 16px 30px; }
  #edit-order-modal h5 {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    padding-bottom: 9px;
    color: grey; }
  #edit-order-modal .control-label {
    color: grey;
    display: block; }
    #edit-order-modal .control-label > .tag {
      font-size: 1.1em;
      float: right; }
  #edit-order-modal .md-textarea {
    font-style: 1.2rem;
    padding: 10px 0;
    height: 100px; }
  #edit-order-modal .range-field .thumb {
    display: none; }
  #edit-order-modal #deadlineDateform {
    text-align: center;
    font-weight: bold; }
  #edit-order-modal label[for="deadlineDateform"] {
    margin-bottom: 22px; }
  #edit-order-modal .btn.btn-radio, #edit-order-modal .wizard > .actions a.btn-radio, .wizard > .actions #edit-order-modal a.btn-radio {
    border-radius: 1rem;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); }
    #edit-order-modal .btn.btn-radio.active, #edit-order-modal .wizard > .actions a.btn-radio.active, .wizard > .actions #edit-order-modal a.btn-radio.active {
      box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.1); }

.outdated-browser {
  position: fixed;
  bottom: 0px;
  left: 0;
  right: 0;
  z-index: 16000001;
  background: #cc3032;
  color: white;
  padding: 0.3rem 0.5rem;
  font-size: 0.9rem;
  line-height: 1em; }
  .outdated-browser a {
    color: white;
    border-bottom: 1px dashed white; }
  .outdated-browser__title {
    text-transform: uppercase;
    margin: 0 0 0.4rem;
    font-weight: bold; }

.admin-bar {
  padding-top: 15px;
  z-index: 100000;
  transition: all 0.18s ease;
  position: fixed;
  top: 25vh;
  border-radius: 0 4px 4px 0;
  width: 34px;
  z-index: 77777777;
  background: rgba(255, 255, 255, 0.8);
  border-right: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 2px 0px 4px -2px rgba(0, 0, 0, 0.45);
  padding: 0;
  transform: translateX(-29px); }
  .admin-bar hr {
    display: block;
    margin: 3px auto;
    max-width: 75%; }
  .admin-bar.has-seo-errors, .admin-bar:hover {
    transform: translateX(0);
    background: #fff; }
  .admin-bar a {
    /* All links, excluding .dropdown-item */
    /* Icons global */ }
    .admin-bar a.dropdown-toggle {
      line-height: 1em; }
      .admin-bar a.dropdown-toggle[aria-expanded="false"] + .dropdown-menu {
        opacity: 0;
        transform: translateY(0, -40px); }
      .admin-bar a.dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
        opacity: 1;
        transform: translate(32px, -40px); }
      .admin-bar a.dropdown-toggle:after {
        display: none; }
      .admin-bar a.dropdown-toggle + .dropdown-menu {
        padding: 0;
        box-shadow: 2px 0 2px rgba(0, 0, 0, 0.1);
        transition: all 0.2s ease !important; }
        .admin-bar a.dropdown-toggle + .dropdown-menu .dropdown-divider {
          opacity: 0.5;
          margin: 0; }
        .admin-bar a.dropdown-toggle + .dropdown-menu a.dropdown-item {
          font-size: 1rem;
          color: #252525 !important;
          padding: 0.3rem 0.8rem;
          /* Icons inside dropdowns */ }
          .admin-bar a.dropdown-toggle + .dropdown-menu a.dropdown-item .fa {
            display: inline-block;
            opacity: 0.3;
            width: 1.4rem;
            font-size: 1rem; }
    .admin-bar a:not(.dropdown-item) {
      display: inline-block;
      color: #373a3c !important;
      background: rgba(255, 255, 255, 0.01);
      padding: 0.3rem 0.5rem; }
    .admin-bar a .fa {
      opacity: 0.5;
      width: 1.2rem;
      font-size: 1rem;
      text-align: center;
      transition: all 0.15s ease; }
    .admin-bar a:hover .fa {
      opacity: 1;
      transform: scale(1.3); }
  .admin-bar span.text-label {
    display: none; }
  .admin-bar .overview-content {
    display: none;
    z-index: 1;
    font-size: 0.75rem;
    padding: 1.5rem 1rem;
    background: #fff;
    color: #252525;
    position: fixed;
    top: 0;
    right: -318px;
    width: 320px;
    box-shadow: 2px 0 2px rgba(0, 0, 0, 0.1), 10px 10px 15px -8px rgba(0, 0, 0, 0.1);
    border-radius: 0 4px 4px 0;
    transition: all 0.2s ease; }
    .admin-bar .overview-content p {
      margin: 0; }
    .admin-bar .overview-content__thumbnail {
      float: right;
      max-width: 120px;
      margin: 0 0.5rem 0.5rem 0; }
  .admin-bar .overview-trigger {
    /* Default icon is green */
    /* Show overview content */ }
    .admin-bar .overview-trigger .fa {
      color: #4fae5e;
      opacity: 1; }
    .admin-bar .overview-trigger:hover + .overview-content {
      display: block;
      animation: fadeIn 0.25s linear both; }
  .admin-bar.has-seo-errors .overview-trigger .fa {
    color: #ca3439 !important;
    transform: scale(1.6); }

.btn-group-justified {
  align-items: center; }

.nojs {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999999;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  font-size: 28px;
  text-align: center;
  padding-top: 30vh; }

@keyframes seo-collapsed {
  from {
    transform: scale(0.75) rotate(45deg) translate(-5px, 0); }
  to {
    transform: rotate(0); } }

@keyframes seo-expanded {
  40% {
    transform: scale(0.75); }
  to {
    transform: scale(0.75) rotate(45deg) translate(-5px, 0);
    opacity: 1; } }

@media (max-width: 767px) {
  h2.seo-item.collapse-seo-sm {
    text-align: center; }
    h2.seo-item.collapse-seo-sm:before {
      display: inline-block;
      padding-right: 0.25rem;
      opacity: 0.2;
      transform-origin: 0% 50%;
      content: "+"; }
    h2.seo-item.collapse-seo-sm:after {
      margin: 0.7rem auto !important;
      max-width: 0;
      max-height: 0;
      border-radius: 50%; }
    h2.seo-item.collapse-seo-sm[data-expanded="true"]:before {
      animation: seo-expanded 0.45s ease both; }
    h2.seo-item.collapse-seo-sm[data-expanded="false"]:before {
      animation: seo-collapsed 0.45s ease 0.25s both; } }

h2.seo-item.collapse-seo-sm + .seo-item-content p.seo-item-description:empty {
  display: none; }

ul.tabs-default + div.tab-content {
  background: #fff; }

.legal-info__item a {
  display: inline-block;
  color: #242424;
  font-size: 1.2rem;
  padding: 0.2rem 0; }

.is-tpl-samples .sample__img {
  border-radius: 5px; }

.is-tpl-samples .sample__title {
  font-size: 1.3rem; }

.is-tpl-samples .sample__info {
  padding: 1rem 0.5rem; }

.is-tpl-samples .sample__details > span {
  font-size: 0.85rem;
  border-radius: 5px; }

.is-about.is-tpl-about .aditional-content .section {
  margin: 2rem auto 1rem; }

.is-about.is-tpl-about .aditional-content div[class^="col"] i[class*="ico"] {
  font-size: 3rem;
  background: #fafafa;
  border-radius: 50%;
  padding: 15px; }

.is-about.is-tpl-about .aditional-content div[class^="col"] h3 {
  font-size: 1.4rem; }
  .is-about.is-tpl-about .aditional-content div[class^="col"] h3 ~ p {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.65); }

.when-ready {
  opacity: 0; }
  body.is-ready .when-ready {
    animation: fadeIn 0.45s ease both 0.2s; }

.order-info-call-to-action-block {
  max-width: 960px;
  background-color: #f7f9fb;
  border: 2px solid #eaf0f4;
  display: flex;
  padding: 20px;
  margin: 30px 0 50px 0; }
  @media (max-width: 543px) {
    .order-info-call-to-action-block {
      flex-direction: column; } }
  .order-info-call-to-action-block p {
    margin: 0; }
    @media (max-width: 543px) {
      .order-info-call-to-action-block p {
        margin-bottom: 10px; } }
  .order-info-call-to-action-block .writer-link {
    color: #8695e6;
    border-bottom: 2px dashed #8695e6;
    font-size: 110%; }
    .order-info-call-to-action-block .writer-link:hover {
      color: #97a1df;
      border-bottom: 2px dashed #97a1df; }
  .order-info-call-to-action-block .call-to-action-icon {
    margin: 5px 20px 0 0; }
    .order-info-call-to-action-block .call-to-action-icon:before {
      content: '\e93d';
      font-family: 'essay' !important;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      height: 60px;
      width: 60px;
      padding-right: 6px;
      background: #8695e6;
      color: #fff;
      border-radius: 50%; }
      @media (max-width: 543px) {
        .order-info-call-to-action-block .call-to-action-icon:before {
          margin: 0 auto 20px auto; } }

[class*="is-tpl-faq"] #FAQ h2.faq-title {
  font-weight: bold;
  font-size: 1.2rem; }
  [class*="is-tpl-faq"] #FAQ h2.faq-title i {
    font-size: 1.3rem;
    background: #fafafa;
    color: #7159B5;
    border-radius: 50%;
    font-weight: bold;
    display: inline-block;
    width: 2rem;
    height: 2rem;
    text-align: center;
    line-height: 1.4; }

[class*="is-tpl-faq"] .panel.panel-default {
  padding: 0.3rem 2.5rem 0.3rem 2rem; }
  [class*="is-tpl-faq"] .panel.panel-default .panel-heading .panel-title a.arrow-r {
    font-weight: normal;
    font-size: 1.1rem; }

[data-href] {
  cursor: pointer; }

body {
  font-family: "Gilroy", "Helvetica Neue", Arial, sans-serif; }

h1.article-heading {
  font-size: 2.2rem; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 400; }
  h1.hide,
  h2.hide,
  h3.hide,
  h4.hide,
  h5.hide,
  h6.hide {
    position: absolute;
    left: -99999px; }

@media only screen and (min-width: 0) {
  html {
    font-size: 15px; } }

@media only screen and (min-width: 992px) {
  html {
    font-size: 15.5px; } }

@media only screen and (min-width: 1200px) {
  html {
    font-size: 16px; } }

em {
  font-style: normal; }

.text-fluid {
  font-weight: 300; }
  @media only screen and (min-width: 360px) {
    .text-fluid {
      font-size: 1.2rem; } }
  @media only screen and (min-width: 390px) {
    .text-fluid {
      font-size: 1.224rem; } }
  @media only screen and (min-width: 420px) {
    .text-fluid {
      font-size: 1.248rem; } }
  @media only screen and (min-width: 450px) {
    .text-fluid {
      font-size: 1.272rem; } }
  @media only screen and (min-width: 480px) {
    .text-fluid {
      font-size: 1.296rem; } }
  @media only screen and (min-width: 510px) {
    .text-fluid {
      font-size: 1.32rem; } }
  @media only screen and (min-width: 540px) {
    .text-fluid {
      font-size: 1.344rem; } }
  @media only screen and (min-width: 570px) {
    .text-fluid {
      font-size: 1.368rem; } }
  @media only screen and (min-width: 600px) {
    .text-fluid {
      font-size: 1.392rem; } }
  @media only screen and (min-width: 630px) {
    .text-fluid {
      font-size: 1.416rem; } }
  @media only screen and (min-width: 660px) {
    .text-fluid {
      font-size: 1.44rem; } }
  @media only screen and (min-width: 690px) {
    .text-fluid {
      font-size: 1.464rem; } }
  @media only screen and (min-width: 720px) {
    .text-fluid {
      font-size: 1.488rem; } }
  @media only screen and (min-width: 750px) {
    .text-fluid {
      font-size: 1.512rem; } }
  @media only screen and (min-width: 780px) {
    .text-fluid {
      font-size: 1.536rem; } }
  @media only screen and (min-width: 810px) {
    .text-fluid {
      font-size: 1.56rem; } }
  @media only screen and (min-width: 840px) {
    .text-fluid {
      font-size: 1.584rem; } }
  @media only screen and (min-width: 870px) {
    .text-fluid {
      font-size: 1.608rem; } }
  @media only screen and (min-width: 900px) {
    .text-fluid {
      font-size: 1.632rem; } }
  @media only screen and (min-width: 930px) {
    .text-fluid {
      font-size: 1.656rem; } }
  @media only screen and (min-width: 960px) {
    .text-fluid {
      font-size: 1.68rem; } }
  @media only screen and (max-width: 360px) {
    .text-fluid {
      font-size: 1.2rem; } }

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

p:empty {
  margin: 0 !important; }

p.lead {
  font-weight: 400; }

/* Responsive Headings */
/* Extra Small Devices, Phones */
@media only screen and (max-width: 768px) {
  .h1-responsive, .section .section-heading, .section-heading h1 {
    font-size: 150%;
    font-weight: 500; }
  .h2-responsive, .section-blog-fw h2 {
    font-size: 145%; }
  .h3-responsive {
    font-size: 135%; }
  .h4-responsive {
    font-size: 135%; }
  .h5-responsive {
    font-size: 135%; } }

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) {
  .h1-responsive, .section .section-heading, .section-heading h1 {
    font-size: 170%; }
  .h2-responsive, .section-blog-fw h2 {
    font-size: 140%; }
  .h3-responsive {
    font-size: 125%; }
  .h4-responsive {
    font-size: 125%; }
  .h5-responsive {
    font-size: 125%; } }

/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {
  .h1-responsive, .section .section-heading, .section-heading h1 {
    font-size: 200%; }
  .h2-responsive, .section-blog-fw h2 {
    font-size: 170%; }
  .h3-responsive {
    font-size: 140%; }
  .h4-responsive {
    font-size: 125%; }
  .h5-responsive {
    font-size: 125%; } }

/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {
  .h1-responsive, .section .section-heading, .section-heading h1 {
    font-size: 250%; }
  .h2-responsive, .section-blog-fw h2 {
    font-size: 200%; }
  .h3-responsive {
    font-size: 170%; }
  .h4-responsive {
    font-size: 140%; }
  .h5-responsive {
    font-size: 125%; } }

.section {
  margin-bottom: 2rem; }
  .section .section-heading {
    margin-top: 2rem; }
    .section .section-heading body:not(.is-simple) {
      margin-bottom: 4rem; }
  .section .section-description {
    color: #757575;
    margin-bottom: 4rem;
    margin-left: 15%;
    margin-right: 15%;
    text-align: center; }
    @media (max-width: 992px) {
      .section .section-description {
        margin-left: 5%;
        margin-right: 5%; } }
  .section.extra-margins h5,
  .section.extra-margins h4,
  .section.extra-margins a {
    margin-bottom: 1rem; }
  .section h4 {
    font-weight: 400; }
  .section h5 .fa {
    margin-right: 8px; }
  .section hr {
    margin-top: 1rem;
    margin-bottom: 3rem; }
  @media (min-width: 992px) {
    .section hr {
      display: none; } }
  .section .contact-icons {
    text-align: center; }
    .section .contact-icons li {
      margin-bottom: 2.2rem; }
    .section .contact-icons .fa {
      font-size: 2.2rem;
      margin-bottom: 0.6rem;
      color: #424242; }

.between-sections {
  margin-bottom: 4rem; }

ul.list li {
  list-style: disc; }

ul.list-no-space,
ul.list-no-space li {
  margin: 0 !important;
  padding: 0 !important; }

ul.list-normal {
  margin-left: 1rem; }
  ul.list-normal li:before {
    content: "●";
    display: inline-block;
    transform: scale(1.1);
    padding-right: 10px;
    color: #7159B5; }

.list-check li:before {
  position: relative;
  left: 1px;
  content: "\f058";
  display: inline-block;
  margin-right: 0.4rem;
  font-family: "fontawesome";
  display: inline-block;
  color: #78cd62 !important; }

.is-index .list-check li:before,
.list-uncheck li:before,
.list-stared li:before {
  content: "\2713";
  color: #78cd62;
  display: inline-block;
  margin-right: 0.4rem;
  font-family: sans-serif;
  display: inline-block;
  transition: all 0.2s ease;
  transform: scale(1); }

.is-index .list-check li:hover:before,
.list-uncheck li:hover:before,
.list-stared li:hover:before {
  transform: scale(2); }

.list-uncheck li:before {
  content: "\2716";
  color: #cc3032; }

.list-stared li:before {
  content: "\2605";
  color: #7159B5; }

.list-angle li:before {
  content: "\f101";
  padding-right: 0.4rem;
  font-family: "fontawesome"; }

ul[class*="list-"]:not(.nav):not(.list-inline) {
  margin-top: 1rem;
  margin-bottom: 1rem; }
  ul[class*="list-"]:not(.nav):not(.list-inline) > li {
    margin-left: 0.2rem; }

ul.list-roman > li {
  list-style-type: upper-roman; }

ul.list-alpha > li {
  list-style-type: upper-alpha; }

ol.list-normal {
  counter-reset: li-item;
  padding: 0; }
  ol.list-normal li {
    margin-bottom: 0.1rem;
    list-style-type: none; }
    ol.list-normal li:before {
      counter-increment: li-item;
      content: counter(li-item);
      display: inline-block;
      min-width: 1.3rem;
      min-height: 1.3rem;
      background: #7159B5;
      color: #ffffff;
      font-size: 0.85rem;
      text-align: center;
      border-radius: 50%;
      margin-right: 0.3rem; }

.text-small {
  font-size: 0.9rem;
  line-height: 1.1em; }

.text-xs {
  font-size: 0.75rem; }

/*!
 * Waves v0.7.5
 * http://fian.my.id/Waves 
 * 
 * Copyright 2014-2016 Alfiana E. Sibuea and other contributors 
 * Released under the MIT license 
 * https://github.com/fians/Waves/blob/master/LICENSE 
 */
.waves-effect {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  z-index: 1; }
  .waves-effect .waves-ripple {
    position: absolute;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
    opacity: 0;
    background: rgba(0, 0, 0, 0.2);
    background: -webkit-radial-gradient(rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    background: -o-radial-gradient(rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    background: -moz-radial-gradient(rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    background: radial-gradient(rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    -o-transition-property: -o-transform, opacity;
    transition-property: transform, opacity;
    -webkit-transform: scale(0) translate(0, 0);
    -moz-transform: scale(0) translate(0, 0);
    -ms-transform: scale(0) translate(0, 0);
    -o-transform: scale(0) translate(0, 0);
    transform: scale(0) translate(0, 0);
    pointer-events: none; }
  .waves-effect.waves-light .waves-ripple {
    background: rgba(255, 255, 255, 0.4);
    background: -webkit-radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    background: -o-radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    background: -moz-radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    background: radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%); }
  .waves-effect.waves-classic .waves-ripple {
    background: rgba(0, 0, 0, 0.2); }
  .waves-effect.waves-classic.waves-light .waves-ripple {
    background: rgba(255, 255, 255, 0.4); }

.waves-notransition {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important; }

.waves-button,
.waves-circle {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%); }

.waves-button,
.waves-button:hover,
.waves-button:visited,
.waves-button-input {
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  outline: none;
  color: inherit;
  background-color: rgba(0, 0, 0, 0);
  font-size: 1em;
  line-height: 1em;
  text-align: center;
  text-decoration: none;
  z-index: 1; }

.waves-button {
  padding: 0.85em 1.1em;
  border-radius: 0.2em; }

.waves-button-input {
  margin: 0;
  padding: 0.85em 1.1em; }

.waves-input-wrapper {
  border-radius: 0.2em;
  vertical-align: bottom; }
  .waves-input-wrapper.waves-button {
    padding: 0; }
  .waves-input-wrapper .waves-button-input {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1; }

.waves-circle {
  text-align: center;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  border-radius: 50%; }

.waves-float {
  -webkit-mask-image: none;
  -webkit-box-shadow: 0px 1px 1.5px 1px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 1px 1.5px 1px rgba(0, 0, 0, 0.12);
  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms; }
  .waves-float:active {
    -webkit-box-shadow: 0px 8px 20px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 8px 20px 1px rgba(0, 0, 0, 0.3); }

.waves-block {
  display: block; }

@media only screen and (max-width: 992px) {
  .center-on-small-only {
    text-align: center !important; }
    .center-on-small-only .img-fluid, .center-on-small-only .carousel-inner > .carousel-item > img,
    .center-on-small-only .carousel-inner > .carousel-item > a > img, .center-on-small-only .card img, .card .center-on-small-only img, .center-on-small-only .comments-list img, .comments-list .center-on-small-only img,
    .center-on-small-only .reply-form img, .reply-form .center-on-small-only img {
      display: inline; } }

.flex-center, .card-overlay, .testimonial-carousel .testimonial .avatar, .question-carousel .testimonial .avatar, .question-carousel .question .avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; }
  .flex-center p, .card-overlay p, .testimonial-carousel .testimonial .avatar p, .question-carousel .testimonial .avatar p, .question-carousel .question .avatar p {
    margin: 0; }
  .flex-center ul, .card-overlay ul, .testimonial-carousel .testimonial .avatar ul, .question-carousel .testimonial .avatar ul, .question-carousel .question .avatar ul {
    text-align: center; }
    .flex-center ul li, .card-overlay ul li, .testimonial-carousel .testimonial .avatar ul li, .question-carousel .testimonial .avatar ul li, .question-carousel .question .avatar ul li {
      margin-bottom: 1rem; }

.vertical-center {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); }

.img-fluid, .carousel-inner > .carousel-item > img,
.carousel-inner > .carousel-item > a > img, .card img, .comments-list img,
.reply-form img {
  display: block;
  max-width: 100%;
  height: auto; }

.inline-ul > li, .card .rating > li {
  display: inline; }

.list-inline-div > div {
  display: inline-block; }

.hr-light {
  background-color: #fff;
  height: 0.5px; }

.hr-dark {
  background-color: #666;
  height: 0.5px; }

.divider-new {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-weight: 300;
  margin-top: 45px;
  margin-bottom: 45px; }
  .divider-new h2 {
    margin-top: 5px; }

.divider-new::before {
  content: '';
  height: 1.5px;
  background: #666;
  flex: 1;
  margin: 0 .45em 0 0; }

.divider-new::after {
  content: '';
  height: 1.5px;
  background: #666;
  flex: 1;
  margin: 0 0 0 .45em; }

.section-title {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 3rem;
  padding: 0.7rem; }
  .section-title small {
    text-transform: none;
    padding-left: 7px;
    margin-left: 10px; }

.st-indigo {
  border-left: 4px solid blue; }
  .st-indigo small {
    border-left: 2px solid blue; }

.st-red {
  border-left: 4px solid red; }
  .st-red small {
    border-left: 2px solid red; }

.st-teal {
  border-left: 4px solid #009688; }
  .st-teal small {
    border-left: 2px solid #009688; }

.st-orange {
  border-left: 4px solid #ff6f00; }
  .st-orange small {
    border-left: 2px solid #ff6f00; }

.st-blue {
  border-left: 4px solid #2196f3; }
  .st-blue small {
    border-left: 2px solid #2196f3; }

.st-mdb {
  border-left: 4px solid #45526e; }
  .st-mdb small {
    border-left: 2px solid #45526e; }

.divider-short {
  max-width: 50px;
  border-color: #7159B5;
  border-width: 3px; }

.blockquote .bq-title {
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 0; }

.blockquote p {
  font-size: 1.1rem; }

.bq-primary {
  border-left: 3px solid #7159B5; }
  .bq-primary .bq-title {
    color: #7159B5; }

.bq-warning {
  border-left: 3px solid #ffb900; }
  .bq-warning .bq-title {
    color: #ffb900; }

.bq-danger {
  border-left: 3px solid #cc3032; }
  .bq-danger .bq-title {
    color: #cc3032; }

.bq-success {
  border-left: 3px solid #78cd62; }
  .bq-success .bq-title {
    color: #78cd62; }

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

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

.p-t-6 {
  padding-top: 6rem !important; }

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

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

.p-b-6 {
  padding-bottom: 6rem !important; }

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

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

.m-t-6 {
  margin-top: 6rem !important; }

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

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

.m-b-6 {
  margin-bottom: 6rem !important; }

@media (max-width: 992px) {
  .m-b-r {
    margin-bottom: 2rem !important; } }

@media (min-width: 992px) {
  .m-b-r {
    margin-bottom: 3rem !important; } }

.p-col {
  margin-right: 0.9375rem !important;
  margin-left: 0.9375rem !important; }

.no-borders {
  border: none !important; }

button:focus {
  outline: none !important; }

.btn, .wizard > .actions a,
.wizard > .actions a:hover,
.wizard > .actions a:active {
  border: 0;
  transition: .2s ease-out;
  color: #fff;
  margin: 6px;
  white-space: normal !important;
  word-wrap: break-word; }
  .btn:hover,
  .wizard > .actions a:hover {
    color: #fff; }
  .btn:active,
  .wizard > .actions a:active, .btn:focus, .wizard > .actions a:focus, .btn.active, .wizard > .actions a.active {
    outline: 0;
    color: #fff; }
  .btn .fa, .wizard > .actions a .fa {
    margin-top: 3px; }
    .btn .fa.right, .wizard > .actions a .fa.right {
      margin-left: 3px; }
    .btn .fa.left, .wizard > .actions a .fa.left {
      margin-right: 3px; }

.btn-group .btn, .btn-group .wizard > .actions a, .wizard > .actions .btn-group a {
  margin: 0; }

.btn-block {
  margin: inherit; }

.btn-secondary {
  background-color: #6a6a6a; }
  .btn-secondary:hover, .btn-secondary:focus {
    background-color: #777777 !important;
    color: #fff; }
  .btn-secondary.active {
    background-color: #373737 !important; }
    .btn-secondary.active:hover {
      color: #fff; }
    .btn-secondary.active:focus {
      color: #fff; }
  .btn-secondary.dropdown-toggle {
    color: #fff !important;
    background-color: #6a6a6a !important; }
    .btn-secondary.dropdown-toggle:hover {
      color: #fff;
      background-color: #777777 !important; }
    .btn-secondary.dropdown-toggle:focus {
      color: #fff;
      background-color: #6a6a6a; }

.btn-secondary:active:hover {
  background-color: #777777 !important;
  color: #fff; }

.btn-primary, .fso-widget .btn-submit, .wizard > .actions a,
.wizard > .actions a:hover,
.wizard > .actions a:active {
  background: #7159B5; }
  .btn-primary:hover, .fso-widget .btn-submit:hover,
  .wizard > .actions a:hover, .btn-primary:focus, .fso-widget .btn-submit:focus, .wizard > .actions a:focus {
    background-color: #806bbd !important; }
  .btn-primary.active, .fso-widget .active.btn-submit, .wizard > .actions a.active {
    background-color: #453474 !important; }

.btn-default {
  background: #00c853; }
  .btn-default:hover, .btn-default:focus {
    background-color: #00e25e !important; }
  .btn-default.active {
    background-color: #006229 !important; }

.btn-success, .wizard .actions a[href$='#finish'] {
  background: #78cd62; }
  .btn-success:hover, .wizard .actions a:hover[href$='#finish'], .btn-success:focus, .wizard .actions a:focus[href$='#finish'] {
    background-color: #7fcf6a !important; }
  .btn-success.active, .wizard .actions a.active[href$='#finish'] {
    background-color: #469831 !important; }

.btn-info {
  background: #7f93f3; }
  .btn-info:hover, .btn-info:focus {
    background-color: #96a7f5 !important; }
  .btn-info.active {
    background-color: #2244ea !important; }

.btn-warning {
  background: #ff8800; }
  .btn-warning:hover, .btn-warning:focus {
    background-color: #ff961f !important; }
  .btn-warning.active {
    background-color: #996f00 !important; }

.btn-danger {
  background: #cc0000; }
  .btn-danger:hover, .btn-danger:focus {
    background-color: #db0000 !important; }
  .btn-danger.active {
    background-color: maroon !important; }

.btn-link {
  background-color: transparent;
  color: #000; }
  .btn-link:hover, .btn-link:focus {
    background-color: transparent;
    color: #000; }

.btn-primary-outline {
  border: 2px solid #7159B5;
  color: #d69930; }
  .btn-primary-outline:hover, .btn-primary-outline:focus {
    background-color: transparent;
    color: #7159B5; }

.btn-secondary-outline {
  border: 2px solid #6a6a6a;
  color: #252525; }
  .btn-secondary-outline:hover, .btn-secondary-outline:focus {
    background-color: transparent;
    color: #6a6a6a;
    border: 2px solid #6a6a6a; }

.btn-default-outline {
  background-color: transparent;
  border: 2px solid #00c853;
  color: #00491e; }
  .btn-default-outline:hover, .btn-default-outline:focus {
    background-color: transparent;
    color: #00c853; }

.btn-success-outline {
  border: 2px solid #78cd62;
  color: #007e33; }
  .btn-success-outline:hover, .btn-success-outline:focus {
    background-color: transparent;
    color: #78cd62; }

.btn-info-outline {
  border: 2px solid #7f93f3;
  color: #0099cc; }
  .btn-info-outline:hover, .btn-info-outline:focus {
    background-color: transparent;
    color: #7f93f3; }

.btn-warning-outline {
  border: 2px solid #ffb900;
  color: #ff8800; }
  .btn-warning-outline:hover, .btn-warning-outline:focus {
    background-color: transparent;
    color: #ffb900; }

.btn-danger-outline {
  border: 2px solid #cc3032;
  color: #cc0000; }
  .btn-danger-outline:hover, .btn-danger-outline:focus {
    background-color: transparent;
    color: #cc3032; }

.btn-white-outline {
  border: 2px solid #fff;
  color: #fff; }
  .btn-white-outline:hover, .btn-white-outline:focus {
    background-color: transparent;
    color: #e6e6e6; }

.btn-black-outline {
  border: 2px solid #000;
  color: #000;
  background-color: transparent; }
  .btn-black-outline:hover, .btn-black-outline:focus {
    background-color: transparent;
    color: #000; }

.pager li a {
  border: 0;
  transition: .2s ease-out; }

.btn-elegant {
  background: #2e2e2e; }
  .btn-elegant:hover, .btn-elegant:focus {
    background-color: #3b3b3b !important; }
  .btn-elegant.active {
    background-color: black !important; }

.btn-unique {
  background: red; }
  .btn-unique:hover, .btn-unique:focus {
    background-color: #ff1a1a !important; }
  .btn-unique.active {
    background-color: #990000 !important; }

.btn-pink {
  background: #e91e63; }
  .btn-pink:hover, .btn-pink:focus {
    background-color: #eb3573 !important; }
  .btn-pink.active {
    background-color: #930e3b !important; }

.btn-purple {
  background: #4a148c; }
  .btn-purple:hover, .btn-purple:focus {
    background-color: #5617a2 !important; }
  .btn-purple.active {
    background-color: #1b0733 !important; }

.btn-deep-purple {
  background: #311b92; }
  .btn-deep-purple:hover, .btn-deep-purple:focus {
    background-color: #381fa8 !important; }
  .btn-deep-purple.active {
    background-color: #140b3c !important; }

.btn-indigo {
  background: #1a237e; }
  .btn-indigo:hover, .btn-indigo:focus {
    background-color: #1e2993 !important; }
  .btn-indigo.active {
    background-color: #090c29 !important; }

.btn-cyan {
  background: #00acc1; }
  .btn-cyan:hover, .btn-cyan:focus {
    background-color: #00c3db !important; }
  .btn-cyan.active {
    background-color: #00515b !important; }

.btn-light-green {
  background: #7cb342; }
  .btn-light-green:hover, .btn-light-green:focus {
    background-color: #89be50 !important; }
  .btn-light-green.active {
    background-color: #486827 !important; }

.btn-dark-green {
  background: #007E33; }
  .btn-dark-green:hover, .btn-dark-green:focus {
    background-color: #00983d !important; }
  .btn-dark-green.active {
    background-color: #00180a !important; }

.btn-lime {
  background: #afb42b; }
  .btn-lime:hover, .btn-lime:focus {
    background-color: #c3c930 !important; }
  .btn-lime.active {
    background-color: #5f6217 !important; }

.btn-yellow {
  background: #fbc02d; }
  .btn-yellow:hover, .btn-yellow:focus {
    background-color: #fbc846 !important; }
  .btn-yellow.active {
    background-color: #be8904 !important; }

.btn-amber {
  background: #ff6f00; }
  .btn-amber:hover, .btn-amber:focus {
    background-color: #ff7d1a !important; }
  .btn-amber.active {
    background-color: #994300 !important; }

.btn-orange {
  background: #e65100; }
  .btn-orange:hover, .btn-orange:focus {
    background-color: #ff5a01 !important; }
  .btn-orange.active {
    background-color: #802d00 !important; }

.btn-deep-orange {
  background: #bf360c; }
  .btn-deep-orange:hover, .btn-deep-orange:focus {
    background-color: #d73d0e !important; }
  .btn-deep-orange.active {
    background-color: #5f1b06 !important; }

.btn-brown {
  background: #6d4c41; }
  .btn-brown:hover, .btn-brown:focus {
    background-color: #7d574b !important; }
  .btn-brown.active {
    background-color: #2d1f1b !important; }

.btn-blue-grey {
  background: #607d8b; }
  .btn-blue-grey:hover, .btn-blue-grey:focus {
    background-color: #6b8a99 !important; }
  .btn-blue-grey.active {
    background-color: #36474f !important; }

.btn-mdb {
  background: #45526E; }
  .btn-mdb:hover, .btn-mdb:focus {
    background-color: #4f5e7e !important; }
  .btn-mdb.active {
    background-color: #1e232f !important; }

a.edit-lvar {
  float: right;
  padding: 0 5px;
  font-size: 1rem;
  border-radius: 50%;
  color: silver;
  transition: all .2s ease;
  opacity: 0; }
  a.edit-lvar:hover {
    color: black;
    transform: scale(1.2) rotate(-5deg); }
  main.main-content:hover a.edit-lvar {
    opacity: 1; }

input[type=text],
input[type=password],
input[type=email],
input[type=url],
input[type=time],
input[type=date],
input[type=datetime-local],
input[type=tel],
input[type=number],
input[type=search-md],
textarea.md-textarea {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  outline: none;
  height: 2.1rem;
  width: 100%;
  font-size: 1rem;
  box-shadow: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  transition: all .3s; }
  input[type=text]:disabled, input[type=text]:disabled, input[type=text][readonly="readonly"],
  input[type=password]:disabled,
  input[type=password]:disabled,
  input[type=password][readonly="readonly"],
  input[type=email]:disabled,
  input[type=email]:disabled,
  input[type=email][readonly="readonly"],
  input[type=url]:disabled,
  input[type=url]:disabled,
  input[type=url][readonly="readonly"],
  input[type=time]:disabled,
  input[type=time]:disabled,
  input[type=time][readonly="readonly"],
  input[type=date]:disabled,
  input[type=date]:disabled,
  input[type=date][readonly="readonly"],
  input[type=datetime-local]:disabled,
  input[type=datetime-local]:disabled,
  input[type=datetime-local][readonly="readonly"],
  input[type=tel]:disabled,
  input[type=tel]:disabled,
  input[type=tel][readonly="readonly"],
  input[type=number]:disabled,
  input[type=number]:disabled,
  input[type=number][readonly="readonly"],
  input[type=search-md]:disabled,
  input[type=search-md]:disabled,
  input[type=search-md][readonly="readonly"],
  textarea.md-textarea:disabled,
  textarea.md-textarea:disabled,
  textarea.md-textarea[readonly="readonly"] {
    color: rgba(0, 0, 0, 0.46);
    border-bottom: 1px dotted rgba(0, 0, 0, 0.46);
    background-color: transparent; }
  input[type=text]:disabled + label,
  input[type=text][readonly="readonly"] + label,
  input[type=password]:disabled + label,
  input[type=password][readonly="readonly"] + label,
  input[type=email]:disabled + label,
  input[type=email][readonly="readonly"] + label,
  input[type=url]:disabled + label,
  input[type=url][readonly="readonly"] + label,
  input[type=time]:disabled + label,
  input[type=time][readonly="readonly"] + label,
  input[type=date]:disabled + label,
  input[type=date][readonly="readonly"] + label,
  input[type=datetime-local]:disabled + label,
  input[type=datetime-local][readonly="readonly"] + label,
  input[type=tel]:disabled + label,
  input[type=tel][readonly="readonly"] + label,
  input[type=number]:disabled + label,
  input[type=number][readonly="readonly"] + label,
  input[type=search-md]:disabled + label,
  input[type=search-md][readonly="readonly"] + label,
  textarea.md-textarea:disabled + label,
  textarea.md-textarea[readonly="readonly"] + label {
    color: rgba(0, 0, 0, 0.46) !important;
    background-color: transparent; }
  input[type=text]:focus:not([readonly]),
  input[type=password]:focus:not([readonly]),
  input[type=email]:focus:not([readonly]),
  input[type=url]:focus:not([readonly]),
  input[type=time]:focus:not([readonly]),
  input[type=date]:focus:not([readonly]),
  input[type=datetime-local]:focus:not([readonly]),
  input[type=tel]:focus:not([readonly]),
  input[type=number]:focus:not([readonly]),
  input[type=search-md]:focus:not([readonly]),
  textarea.md-textarea:focus:not([readonly]) {
    border-bottom: 1px solid #d2d0d0; }
  input[type=text]:focus:not([readonly]) + label,
  input[type=password]:focus:not([readonly]) + label,
  input[type=email]:focus:not([readonly]) + label,
  input[type=url]:focus:not([readonly]) + label,
  input[type=time]:focus:not([readonly]) + label,
  input[type=date]:focus:not([readonly]) + label,
  input[type=datetime-local]:focus:not([readonly]) + label,
  input[type=tel]:focus:not([readonly]) + label,
  input[type=number]:focus:not([readonly]) + label,
  input[type=search-md]:focus:not([readonly]) + label,
  textarea.md-textarea:focus:not([readonly]) + label {
    color: #6a6a6a; }
  input[type=text].valid, input[type=text]:focus.valid,
  input[type=password].valid,
  input[type=password]:focus.valid,
  input[type=email].valid,
  input[type=email]:focus.valid,
  input[type=url].valid,
  input[type=url]:focus.valid,
  input[type=time].valid,
  input[type=time]:focus.valid,
  input[type=date].valid,
  input[type=date]:focus.valid,
  input[type=datetime-local].valid,
  input[type=datetime-local]:focus.valid,
  input[type=tel].valid,
  input[type=tel]:focus.valid,
  input[type=number].valid,
  input[type=number]:focus.valid,
  input[type=search-md].valid,
  input[type=search-md]:focus.valid,
  textarea.md-textarea.valid,
  textarea.md-textarea:focus.valid {
    border-bottom: 1px solid #78cd62; }
  input[type=text].valid + label:after,
  input[type=text]:focus.valid + label:after,
  input[type=password].valid + label:after,
  input[type=password]:focus.valid + label:after,
  input[type=email].valid + label:after,
  input[type=email]:focus.valid + label:after,
  input[type=url].valid + label:after,
  input[type=url]:focus.valid + label:after,
  input[type=time].valid + label:after,
  input[type=time]:focus.valid + label:after,
  input[type=date].valid + label:after,
  input[type=date]:focus.valid + label:after,
  input[type=datetime-local].valid + label:after,
  input[type=datetime-local]:focus.valid + label:after,
  input[type=tel].valid + label:after,
  input[type=tel]:focus.valid + label:after,
  input[type=number].valid + label:after,
  input[type=number]:focus.valid + label:after,
  input[type=search-md].valid + label:after,
  input[type=search-md]:focus.valid + label:after,
  textarea.md-textarea.valid + label:after,
  textarea.md-textarea:focus.valid + label:after {
    content: attr(data-success);
    color: #78cd62;
    opacity: 1; }
  input[type=text].invalid, input[type=text]:focus.invalid,
  input[type=password].invalid,
  input[type=password]:focus.invalid,
  input[type=email].invalid,
  input[type=email]:focus.invalid,
  input[type=url].invalid,
  input[type=url]:focus.invalid,
  input[type=time].invalid,
  input[type=time]:focus.invalid,
  input[type=date].invalid,
  input[type=date]:focus.invalid,
  input[type=datetime-local].invalid,
  input[type=datetime-local]:focus.invalid,
  input[type=tel].invalid,
  input[type=tel]:focus.invalid,
  input[type=number].invalid,
  input[type=number]:focus.invalid,
  input[type=search-md].invalid,
  input[type=search-md]:focus.invalid,
  textarea.md-textarea.invalid,
  textarea.md-textarea:focus.invalid {
    border-bottom: 1px solid #f44336; }
  input[type=text].invalid + label:after,
  input[type=text]:focus.invalid + label:after,
  input[type=password].invalid + label:after,
  input[type=password]:focus.invalid + label:after,
  input[type=email].invalid + label:after,
  input[type=email]:focus.invalid + label:after,
  input[type=url].invalid + label:after,
  input[type=url]:focus.invalid + label:after,
  input[type=time].invalid + label:after,
  input[type=time]:focus.invalid + label:after,
  input[type=date].invalid + label:after,
  input[type=date]:focus.invalid + label:after,
  input[type=datetime-local].invalid + label:after,
  input[type=datetime-local]:focus.invalid + label:after,
  input[type=tel].invalid + label:after,
  input[type=tel]:focus.invalid + label:after,
  input[type=number].invalid + label:after,
  input[type=number]:focus.invalid + label:after,
  input[type=search-md].invalid + label:after,
  input[type=search-md]:focus.invalid + label:after,
  textarea.md-textarea.invalid + label:after,
  textarea.md-textarea:focus.invalid + label:after {
    content: attr(data-error);
    color: #f44336;
    opacity: 1; }
  input[type=text] + label:after,
  input[type=password] + label:after,
  input[type=email] + label:after,
  input[type=url] + label:after,
  input[type=time] + label:after,
  input[type=date] + label:after,
  input[type=datetime-local] + label:after,
  input[type=tel] + label:after,
  input[type=number] + label:after,
  input[type=search-md] + label:after,
  textarea.md-textarea + label:after {
    display: block;
    content: "";
    position: absolute;
    top: 65px;
    opacity: 0;
    transition: .2s opacity ease-out, .2s color ease-out; }

input[type=text],
input[type=password],
input[type=email],
input[type=url] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none; }

label {
  font-size: 0.8rem;
  color: #b3b3b3; }

.form-control {
  padding: 0;
  padding-bottom: 0.6rem;
  padding-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
  background-color: transparent;
  background-image: none;
  border-radius: 0;
  margin-top: 0.2rem;
  margin-bottom: 1rem; }

.form-control:disabled, .form-control[readonly] {
  background-color: transparent;
  border-bottom: 1px solid #e0e0e0; }

.md-form {
  position: relative;
  margin-bottom: 1.5rem; }
  .md-form .btn, .md-form .wizard > .actions a, .wizard > .actions .md-form a {
    margin-bottom: 1.5rem; }
  .md-form label {
    color: #757575;
    position: absolute;
    top: 0.8rem;
    left: .25rem;
    font-size: 1rem;
    cursor: text;
    -webkit-transition: 0.2s ease-out;
    -moz-transition: 0.2s ease-out;
    -o-transition: 0.2s ease-out;
    -ms-transition: 0.2s ease-out;
    transition: 0.2s ease-out; }
  .md-form label.active {
    transform: translate(-15%, -110%) scale(0.7); }
  .md-form .prefix, .md-form .form-icon {
    position: absolute;
    width: 2.6rem;
    font-size: 2rem;
    -webkit-transition: color 0.2s;
    -moz-transition: color 0.2s;
    -o-transition: color 0.2s;
    -ms-transition: color 0.2s;
    transition: color 0.2s; }
    body.is-order .md-form .prefix, body.is-order .md-form .form-icon {
      text-shadow: 1px 1px white; }
    .md-form .prefix.active, .md-form .active.form-icon {
      color: #6a6a6a; }
  .md-form .prefix ~ input, .md-form .form-icon ~ input,
  .md-form .prefix ~ textarea,
  .md-form .form-icon ~ textarea {
    margin-left: 2.6rem;
    width: 92%;
    width: calc(100% - 2.6rem); }
  
  .md-form .prefix ~ textarea,
  .md-form .form-icon ~ textarea {
    padding-top: .8rem; }
  .md-form .prefix ~ label, .md-form .form-icon ~ label {
    margin-left: 2.6rem; }
  @media only screen and (max-width: 992px) {
    .md-form .prefix ~ input, .md-form .form-icon ~ input {
      width: 86%;
      width: calc(100% - 2.6rem);
      max-width: 100%; } }
  @media only screen and (max-width: 600px) {
    .md-form .prefix ~ input, .md-form .form-icon ~ input {
      width: 80%;
      width: calc(100% - 2.6rem); } }
  .md-form .input-group {
    border: 1px solid #eee; }
    .md-form .input-group .form-control {
      margin: 0; }
    .md-form .input-group ::-webkit-input-placeholder {
      padding-left: 7px;
      padding-top: 2px; }
    .md-form .input-group :-moz-placeholder {
      /* Firefox 18- */
      padding-left: 7px;
      padding-top: 2px; }
    .md-form .input-group ::-moz-placeholder {
      /* Firefox 19+ */
      padding-left: 7px;
      padding-top: 2px; }
    .md-form .input-group :-ms-input-placeholder {
      padding-left: 7px;
      padding-top: 2px; }

.form-inline fieldset {
  margin-right: 1.5rem; }

textarea {
  width: 100%;
  height: 3rem;
  background-color: transparent; }
  textarea.md-textarea {
    resize: vertical;
    overflow-y: auto;
    /* prevents scroll bar flash */
    padding: 1.6rem 0;
    /* prevents text jump on Enter keypress */
    min-height: 4rem; }

.hiddendiv {
  display: none;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  /* future version of deprecated 'word-wrap' */
  padding-top: 1.2rem;
  /* prevents text jump on Enter keypress */ }

.input-dark-bg ::-webkit-input-placeholder {
  color: #fff !important;
  font-weight: 300; }

.input-dark-bg :-moz-placeholder {
  /* Firefox 18- */
  color: #fff !important;
  font-weight: 300; }

.input-dark-bg ::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff !important;
  font-weight: 300; }

.input-dark-bg :-ms-input-placeholder {
  color: #fff !important;
  font-weight: 300; }

.input-dark-bg input[type=text] {
  border-bottom: 1px solid #fff; }

.input-dark-bg .form-control {
  color: #fff; }

.input-light-bg ::-webkit-input-placeholder {
  color: #1C2331 !important;
  font-weight: 300; }

.input-light-bg :-moz-placeholder {
  /* Firefox 18- */
  color: #1C2331 !important;
  font-weight: 300; }

.input-light-bg ::-moz-placeholder {
  /* Firefox 19+ */
  color: #1C2331 !important;
  font-weight: 300; }

.input-light-bg :-ms-input-placeholder {
  color: #1C2331 !important;
  font-weight: 300; }

.input-light-bg input[type=text] {
  border-bottom: 1px solid #1C2331; }

.input-light-bg .form-control {
  color: #1C2331; }

.form-inline .form-group {
  margin-right: 2rem; }

i.btn-primary, .fso-widget i.btn-submit {
  background: #7159B5 !important; }

i.btn-default {
  background: #00c853 !important; }

i.btn-success {
  background: #78cd62 !important; }

i.btn-info {
  background: #7f93f3 !important; }

i.btn-warning {
  background: #ff8800 !important; }

i.btn-danger {
  background: #cc0000 !important; }

input[type=number].number-for-range {
  color: #78cd62;
  cursor: pointer;
  padding: 0 0 0 1rem !important;
  height: auto;
  font-size: 2rem;
  margin-bottom: 0;
  position: relative;
  border-radius: 5px;
  text-align: right;
  display: block;
  width: 100%;
  margin-top: -1rem;
  box-sizing: border-box;
  border: 1px solid transparent;
  -moz-appearance: textfield; }
  input[type=number].number-for-range:focus {
    box-shadow: none;
    border-color: transparent; }
  input[type=number].number-for-range body.is-order:focus, input[type=number].number-for-range body.is-order:hover {
    background: #F2F2F2;
    border-color: #fff; }
  #price-calculator input[type=number].number-for-range {
    top: 12px; }
  @media (max-width: 991px) {
    input[type=number].number-for-range {
      margin-top: 0; } }
  @media (min-width: 768px) {
    body.is-order input[type=number].number-for-range {
      top: -.3rem; } }
  @media (max-width: 767px) {
    body.is-order input[type=number].number-for-range {
      text-align: center; } }
  input[type=number].number-for-range::-webkit-inner-spin-button, input[type=number].number-for-range::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0; }

.is-order .row div.row:hover .pages-wrapper .number-for-range,
.is-order .row div.row:hover .sources-wrapper .number-for-range {
  background: #fff;
  border-color: #F2F2F2; }

.order-details .form-control[readonly], .order-details .form-control:disabled {
  border-bottom-color: #f3f3f3; }

textarea.md-textarea {
  padding: 0 1rem 0 .5rem;
  text-align: justify;
  padding-bottom: 0 !important;
  box-shadow: inset 0 -10px 5px -10px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #f3f1f1; }

html.is-Firefox input.deadline-picker {
  padding: 5px 0 !important;
  box-sizing: content-box; }

html.safari select, body.iOS-device select {
  -webkit-appearance: none;
  padding: 0rem 1rem; }

.card {
  border: 0; }
  .card .card-title a {
    color: #424242;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    -ms-transition: 0.4s;
    transition: 0.4s; }
    .card .card-title a:hover {
      color: #616161;
      -webkit-transition: 0.4s;
      -moz-transition: 0.4s;
      -o-transition: 0.4s;
      -ms-transition: 0.4s;
      transition: 0.4s; }
  .card img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }

.jumbotron, .author-box {
  background-color: #fff;
  padding: 2rem; }
  .jumbotron.m-1, .m-1.author-box, .section-blog-fw .jumbotron, .section-blog-fw .author-box, .jumbotron.m-2, .m-2.author-box, .jumbotron.m-3, .m-3.author-box {
    z-index: 50;
    position: relative;
    margin-left: 3%;
    margin-right: 3%; }
  .jumbotron.m-1, .m-1.author-box, .section-blog-fw .jumbotron, .section-blog-fw .author-box {
    margin-top: -20px; }
  .jumbotron.m-2, .m-2.author-box {
    margin-top: -30px; }
  .jumbotron.m-3, .m-3.author-box {
    margin-top: -40px; }

.navbar form {
  float: right; }
  .navbar form input {
    margin: 0;
    height: 1rem;
    margin-right: 5px;
    margin-left: 8px;
    margin-bottom: 1px; }

.navbar .dropdown .dropdown-menu a {
  color: #000; }

.navbar .navbar-nav .nav-item {
  margin-left: 0; }
  .navbar .navbar-nav .nav-item a {
    padding-right: 8px;
    padding-left: 8px; }

.navbar .navbar-toggler {
  float: right; }
  .navbar .navbar-toggler:focus {
    background-color: inherit; }

.navbar .breadcrumb {
  margin: 0;
  background-color: inherit; }

.navbar .nav-flex-icons {
  float: right;
  display: flex; }

.navbar.navbar-dark .breadcrumb a,
.navbar.navbar-dark .navbar-nav .nav-item a {
  color: #fff;
  transition: .35s; }
  .navbar.navbar-dark .breadcrumb a:hover,
  .navbar.navbar-dark .navbar-nav .nav-item a:hover {
    transition: .35s;
    color: rgba(113, 89, 181, 0.75); }

.navbar.navbar-dark .breadcrumb.active,
.navbar.navbar-dark .navbar-nav .nav-item.active {
  background-color: rgba(255, 255, 255, 0.1); }
  .navbar.navbar-dark .breadcrumb.active a, .navbar.navbar-dark .breadcrumb.active a:hover, .navbar.navbar-dark .breadcrumb.active a:active, .navbar.navbar-dark .breadcrumb.active a:focus,
  .navbar.navbar-dark .navbar-nav .nav-item.active a,
  .navbar.navbar-dark .navbar-nav .nav-item.active a:hover,
  .navbar.navbar-dark .navbar-nav .nav-item.active a:active,
  .navbar.navbar-dark .navbar-nav .nav-item.active a:focus {
    color: #7159B5; }

.navbar.navbar-dark .navbar-toggler {
  color: #fff; }

.navbar.navbar-dark .nav-link {
  color: #fff; }

.navbar.navbar-light .breadcrumb a,
.navbar.navbar-light .nav-item a {
  color: #000;
  transition: .35s; }
  .navbar.navbar-light .breadcrumb a:hover,
  .navbar.navbar-light .nav-item a:hover {
    transition: .35s;
    color: #212121; }

.navbar.navbar-light .breadcrumb.active,
.navbar.navbar-light .nav-item.active {
  background-color: rgba(158, 158, 158, 0.2); }

.navbar.navbar-light .navbar-toggler {
  color: #000; }

@media (max-width: 544px) {
  .navbar .navbar-toggleable-xs .navbar-brand {
    float: none;
    margin-left: 8px; }
  .navbar .navbar-toggleable-xs ul {
    float: none; }
  .navbar .navbar-toggleable-xs ul li {
    float: none; }
  .navbar .navbar-toggleable-xs form {
    float: left; }
  .navbar .navbar-toggleable-xs .nav-item {
    margin-left: 0; } }

@media (max-width: 768px) {
  .navbar .navbar-toggleable-sm .navbar-brand {
    float: none; }
  .navbar .navbar-toggleable-sm ul {
    float: none; }
  .navbar .navbar-toggleable-sm ul li {
    float: none; }
  .navbar .navbar-toggleable-sm form {
    float: left;
    padding-left: 4px; }
  .navbar .navbar-toggleable-sm .nav-item {
    margin-left: 0; } }

.navbar-dark form ::-webkit-input-placeholder {
  color: #fff !important;
  font-weight: 300; }

.navbar-dark form :-moz-placeholder {
  /* Firefox 18- */
  color: #fff !important;
  font-weight: 300; }

.navbar-dark form ::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff !important;
  font-weight: 300; }

.navbar-dark form :-ms-input-placeholder {
  color: #fff !important;
  font-weight: 300; }

.navbar-dark form input[type=text] {
  border-bottom: 1px solid #fff; }

.navbar-dark form .form-control {
  color: #fff; }

.navbar-light form ::-webkit-input-placeholder {
  color: #1C2331 !important;
  font-weight: 300; }

.navbar-light form :-moz-placeholder {
  /* Firefox 18- */
  color: #1C2331 !important;
  font-weight: 300; }

.navbar-light form ::-moz-placeholder {
  /* Firefox 19+ */
  color: #1C2331 !important;
  font-weight: 300; }

.navbar-light form :-ms-input-placeholder {
  color: #1C2331 !important;
  font-weight: 300; }

.navbar-light form input[type=text] {
  border-bottom: 1px solid #1C2331; }

.navbar-light form .form-control {
  color: #1C2331; }

@media (max-width: 991px) {
  .is-mobilenav .navbar-nav {
    max-width: 250px; } }

/* MDB HOVER EFFECTS */
.view {
  overflow: hidden;
  position: relative;
  cursor: default; }
  .view .mask,
  .view .content {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0; }
  .view img, .view video {
    display: block;
    position: relative; }

.full-bg-img {
  height: 100%;
  width: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0; }

.overlay:hover .mask {
  opacity: 1; }

.overlay img, .overlay video {
  transition: all 0.2s linear; }

.overlay .mask {
  opacity: 0;
  transition: all 0.4s ease-in-out; }

.hm-blue-light .mask,
.hm-blue-light .full-bg-img {
  background-color: rgba(3, 169, 244, 0.3); }

.hm-red-light .mask,
.hm-red-light .full-bg-img {
  background-color: rgba(244, 67, 54, 0.3); }

.hm-pink-light .mask,
.hm-pink-light .full-bg-img {
  background-color: rgba(233, 30, 99, 0.3); }

.hm-purple-light .mask,
.hm-purple-light .full-bg-img {
  background-color: rgba(156, 39, 176, 0.3); }

.hm-indigo-light .mask,
.hm-indigo-light .full-bg-img {
  background-color: rgba(63, 81, 181, 0.3); }

.hm-cyan-light .mask,
.hm-cyan-light .full-bg-img {
  background-color: rgba(0, 188, 212, 0.3); }

.hm-teal-light .mask,
.hm-teal-light .full-bg-img {
  background-color: rgba(0, 150, 136, 0.3); }

.hm-green-light .mask,
.hm-green-light .full-bg-img {
  background-color: rgba(76, 175, 80, 0.3); }

.hm-lime-light .mask,
.hm-lime-light .full-bg-img {
  background-color: rgba(205, 220, 57, 0.3); }

.hm-yellow-light .mask,
.hm-yellow-light .full-bg-img {
  background-color: rgba(255, 235, 59, 0.3); }

.hm-orange-light .mask,
.hm-orange-light .full-bg-img {
  background-color: rgba(255, 152, 0, 0.3); }

.hm-brown-light .mask,
.hm-brown-light .full-bg-img {
  background-color: rgba(121, 85, 72, 0.3); }

.hm-grey-light .mask,
.hm-grey-light .full-bg-img {
  background-color: rgba(158, 158, 158, 0.3); }

.hm-bluegrey-light .mask,
.hm-bluegrey-light .full-bg-img {
  background-color: rgba(96, 125, 139, 0.3); }

.hm-black-light .mask,
.hm-black-light .full-bg-img {
  background-color: rgba(0, 0, 0, 0.3); }

.hm-stylish-light .mask,
.hm-stylish-light .full-bg-img {
  background-color: rgba(62, 69, 81, 0.3); }

.hm-white-light .mask,
.hm-white-light .full-bg-img {
  background-color: rgba(255, 255, 255, 0.3); }

.hm-blue-strong .mask,
.hm-blue-strong .full-bg-img {
  background-color: rgba(3, 169, 244, 0.7); }

.hm-red-strong .mask,
.hm-red-strong .full-bg-img {
  background-color: rgba(244, 67, 54, 0.7); }

.hm-pink-strong .mask,
.hm-pink-strong .full-bg-img {
  background-color: rgba(233, 30, 99, 0.7); }

.hm-purple-strong .mask,
.hm-purple-strong .full-bg-img {
  background-color: rgba(156, 39, 176, 0.7); }

.hm-indigo-strong .mask,
.hm-indigo-strong .full-bg-img {
  background-color: rgba(63, 81, 181, 0.7); }

.hm-cyan-strong .mask,
.hm-cyan-strong .full-bg-img {
  background-color: rgba(0, 188, 212, 0.7); }

.hm-teal-strong .mask,
.hm-teal-strong .full-bg-img {
  background-color: rgba(0, 150, 136, 0.7); }

.hm-green-strong .mask,
.hm-green-strong .full-bg-img {
  background-color: rgba(76, 175, 80, 0.7); }

.hm-lime-strong .mask,
.hm-lime-strong .full-bg-img {
  background-color: rgba(205, 220, 57, 0.7); }

.hm-yellow-strong .mask,
.hm-yellow-strong .full-bg-img {
  background-color: rgba(255, 235, 59, 0.7); }

.hm-orange-strong .mask,
.hm-orange-strong .full-bg-img {
  background-color: rgba(255, 152, 0, 0.7); }

.hm-brown-strong .mask,
.hm-brown-strong .full-bg-img {
  background-color: rgba(121, 85, 72, 0.7); }

.hm-grey-strong .mask,
.hm-grey-strong .full-bg-img {
  background-color: rgba(158, 158, 158, 0.7); }

.hm-bluegrey-strong .mask,
.hm-bluegrey-strong .full-bg-img {
  background-color: rgba(96, 125, 139, 0.7); }

.hm-black-strong .mask,
.hm-black-strong .full-bg-img {
  background-color: rgba(0, 0, 0, 0.7); }

.hm-stylish-strong .mask,
.hm-stylish-strong .full-bg-img {
  background-color: rgba(62, 69, 81, 0.7); }

.hm-white-strong .mask,
.hm-white-strong .full-bg-img {
  background-color: rgba(255, 255, 255, 0.7); }

.hm-blue-slight .mask,
.hm-blue-slight .full-bg-img {
  background-color: rgba(3, 169, 244, 0.1); }

.hm-red-slight .mask,
.hm-red-slight .full-bg-img {
  background-color: rgba(244, 67, 54, 0.1); }

.hm-pink-slight .mask,
.hm-pink-slight .full-bg-img {
  background-color: rgba(233, 30, 99, 0.1); }

.hm-purple-slight .mask,
.hm-purple-slight .full-bg-img {
  background-color: rgba(156, 39, 176, 0.1); }

.hm-indigo-slight .mask,
.hm-indigo-slight .full-bg-img {
  background-color: rgba(63, 81, 181, 0.1); }

.hm-cyan-slight .mask,
.hm-cyan-slight .full-bg-img {
  background-color: rgba(0, 188, 212, 0.1); }

.hm-teal-slight .mask,
.hm-teal-slight .full-bg-img {
  background-color: rgba(0, 150, 136, 0.1); }

.hm-green-slight .mask,
.hm-green-slight .full-bg-img {
  background-color: rgba(76, 175, 80, 0.1); }

.hm-lime-slight .mask,
.hm-lime-slight .full-bg-img {
  background-color: rgba(205, 220, 57, 0.1); }

.hm-yellow-slight .mask,
.hm-yellow-slight .full-bg-img {
  background-color: rgba(255, 235, 59, 0.1); }

.hm-orange-slight .mask,
.hm-orange-slight .full-bg-img {
  background-color: rgba(255, 152, 0, 0.1); }

.hm-brown-slight .mask,
.hm-brown-slight .full-bg-img {
  background-color: rgba(121, 85, 72, 0.1); }

.hm-grey-slight .mask,
.hm-grey-slight .full-bg-img {
  background-color: rgba(158, 158, 158, 0.1); }

.hm-bluegrey-slight .mask,
.hm-bluegrey-slight .full-bg-img {
  background-color: rgba(96, 125, 139, 0.1); }

.hm-black-slight .mask,
.hm-black-slight .full-bg-img {
  background-color: rgba(0, 0, 0, 0.1); }

.hm-stylish-slight .mask,
.hm-stylish-slight .full-bg-img {
  background-color: rgba(62, 69, 81, 0.1); }

.hm-white-slight .mask,
.hm-white-slight .full-bg-img {
  background-color: rgba(255, 255, 255, 0.1); }

.hm-zoom img {
  transition: all 0.2s linear; }

.hm-zoom:hover img {
  transform: scale(1.1); }

.hm-zoom:hover .mask {
  opacity: 1; }

.carousel-control:hover {
  -webkit-transition-duration: 400ms;
  -moz-transition-duration: 400ms;
  -o-transition-duration: 400ms;
  -ms-transition-duration: 400ms;
  transition-duration: 400ms; }

.carousel-fade .carousel-inner .carousel-item {
  opacity: 0;
  transition-property: opacity; }

.carousel-fade .carousel-inner .active {
  opacity: 1; }

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1; }

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1; }

.carousel-fade .carousel-control {
  z-index: 2; }

@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-fade .carousel-inner > .carousel-item.next,
  .carousel-fade .carousel-inner > .carousel-item.active.right {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  .carousel-fade .carousel-inner > .carousel-item.prev,
  .carousel-fade .carousel-inner > .carousel-item.active.left {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  .carousel-fade .carousel-inner > .carousel-item.next.left,
  .carousel-fade .carousel-inner > .carousel-item.prev.right,
  .carousel-fade .carousel-inner > .carousel-item.active {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.nav-tabs {
  border: 0;
  padding: 0.7rem;
  margin-left: 1rem;
  margin-right: 1rem;
  margin-bottom: -20px;
  z-index: 2;
  position: relative; }
  .nav-tabs .nav-item + .nav-item {
    margin-left: 0; }
  .nav-tabs .nav-link {
    border: 0;
    color: #fff; }

.nav-tabs .nav-link.active, .nav-tabs .nav-link.active:focus, .nav-tabs .nav-link.active:hover,
.nav-tabs .nav-item.open .nav-link,
.nav-tabs .nav-item.open .nav-link:focus,
.nav-tabs .nav-item.open .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  -ms-transition: all 1s;
  transition: all 1s;
  border-radius: 2px; }

.md-pills li {
  padding: 10px; }

.md-pills .nav-link {
  color: #666;
  text-align: center; }

.md-pills .nav-item .nav-link {
  border-radius: 2px; }
  .md-pills .nav-item .nav-link:hover {
    background-color: rgba(158, 158, 158, 0.3);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s; }
  .md-pills .nav-item .nav-link.active {
    color: #fff;
    border-radius: 2px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s; }

.md-pills.pills-primary .nav-item .nav-link.active {
  background-color: #7159B5; }

.md-pills.pills-danger .nav-item .nav-link.active {
  background-color: #cc0000; }

.md-pills.pills-default .nav-item .nav-link.active {
  background-color: #00c853; }

.md-pills.pills-secondary .nav-item .nav-link.active {
  background-color: #6a6a6a; }

.md-pills.pills-success .nav-item .nav-link.active {
  background-color: #78cd62; }

.md-pills.pills-info .nav-item .nav-link.active {
  background-color: #7f93f3; }

.md-pills.pills-warning .nav-item .nav-link.active {
  background-color: #ff8800; }

.md-pills.pills-ins .nav-item .nav-link.active {
  background-color: #3f729b; }

.tab-content {
  padding: 1rem;
  padding-top: 2rem;
  z-index: 1; }
  .tab-content.vertical {
    padding-top: 0; }

.tabs-5 li {
  width: 20%;
  margin-left: 0; }

.tabs-4 li {
  width: 25%; }

.tabs-3 li {
  width: 33.3%; }

.tabs-2 li {
  width: 50%; }

.tabs-5,
.tabs-4,
.tabs-3,
.tabs-2 {
  text-align: center; }

.table .btn-sm, .table .btn-group-sm > .btn, .table .wizard > .actions .btn-group-sm > a, .wizard > .actions .table .btn-group-sm > a, .table #claimform .rev-btn-group .btn, #claimform .rev-btn-group .table .btn, .table #claimform .rev-btn-group .wizard > .actions a, #claimform .rev-btn-group .wizard > .actions .table a, .table .wizard > .actions #claimform .rev-btn-group a, .wizard > .actions #claimform .rev-btn-group .table a {
  margin: 0;
  padding: 0 0.7rem; }

.table a {
  margin-left: 1rem; }

.table fieldset {
  margin-bottom: 0; }
  .table fieldset label {
    height: 8px; }

.product-table img {
  max-height: 150px;
  min-width: 50px; }

.product-table td {
  vertical-align: middle; }

.inline-ul-img li {
  display: inline; }
  .inline-ul-img li img {
    max-width: 100px;
    margin: 8px; }

.progress {
  height: 4px;
  border-radius: 0;
  box-shadow: none;
  background: #d69930;
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden; }
  .progress .progress-bar {
    box-shadow: none; }
  .progress .progress-bar-animated {
    -webkit-transition: width 2s ease-in-out;
    transition: width 2s ease-in-out; }
  .progress .indeterminate {
    background-color: #90caf9; }
    .progress .indeterminate:before {
      content: '';
      position: absolute;
      background-color: inherit;
      top: 0;
      left: 0;
      bottom: 0;
      will-change: left, right;
      -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
      -moz-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
      -ms-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
      -o-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
      animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite; }
    .progress .indeterminate:after {
      content: '';
      position: absolute;
      background-color: inherit;
      top: 0;
      left: 0;
      bottom: 0;
      will-change: left, right;
      -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
      -moz-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
      -ms-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
      -o-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
      animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
      -webkit-animation-delay: 1.15s;
      -moz-animation-delay: 1.15s;
      -ms-animation-delay: 1.15s;
      -o-animation-delay: 1.15s;
      animation-delay: 1.15s; }

@-webkit-keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%; }
  60% {
    left: 100%;
    right: -90%; }
  100% {
    left: 100%;
    right: -90%; } }

@-moz-keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%; }
  60% {
    left: 100%;
    right: -90%; }
  100% {
    left: 100%;
    right: -90%; } }

@keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%; }
  60% {
    left: 100%;
    right: -90%; }
  100% {
    left: 100%;
    right: -90%; } }

@-webkit-keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%; }
  60% {
    left: 107%;
    right: -8%; }
  100% {
    left: 107%;
    right: -8%; } }

@-moz-keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%; }
  60% {
    left: 107%;
    right: -8%; }
  100% {
    left: 107%;
    right: -8%; } }

@keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%; }
  60% {
    left: 107%;
    right: -8%; }
  100% {
    left: 107%;
    right: -8%; } }

/*********************
  CIRCLE
**********************/
/*
    @license
    Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
    This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
    The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
    The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
    Code distributed by Google as part of the polymer project is also
    subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
 */
/**************************/
/* STYLES FOR THE SPINNER */
/**************************/
/*
 * Constants:
 *      STROKEWIDTH = 3px
 *      ARCSIZE     = 270 degrees (amount of circle the arc takes up)
 *      ARCTIME     = 1333ms (time it takes to expand and contract arc)
 *      ARCSTARTROT = 216 degrees (how much the start location of the arc
 *                                should rotate each time, 216 gives us a
 *                                5 pointed star shape (it's 360/5 * 3).
 *                                For a 7 pointed star, we might do
 *                                360/7 * 3 = 154.286)
 *      CONTAINERWIDTH = 28px
 *      SHRINK_TIME = 400ms
 */
.preloader-wrapper {
  display: inline-block;
  position: relative;
  width: 48px;
  height: 48px; }
  .preloader-wrapper.small {
    width: 36px;
    height: 36px; }
  .preloader-wrapper.big {
    width: 64px;
    height: 64px; }
  .preloader-wrapper.active {
    /* duration: 360 * ARCTIME / (ARCSTARTROT + (360-ARCSIZE)) */
    -webkit-animation: container-rotate 1568ms linear infinite;
    animation: container-rotate 1568ms linear infinite; }

@-webkit-keyframes container-rotate {
  to {
    -webkit-transform: rotate(360deg); } }

@keyframes container-rotate {
  to {
    transform: rotate(360deg); } }

.spinner-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0; }

.spinner-blue,
.spinner-blue-only {
  border-color: #4285f4; }

.spinner-red,
.spinner-red-only {
  border-color: #db4437; }

.spinner-yellow,
.spinner-yellow-only {
  border-color: #f4b400; }

.spinner-green,
.spinner-green-only {
  border-color: #0f9d58; }

/**
 * IMPORTANT NOTE ABOUT CSS ANIMATION PROPERTIES (keanulee):
 *
 * iOS Safari (tested on iOS 8.1) does not handle animation-delay very well - it doesn't
 * guarantee that the animation will start _exactly_ after that value. So we avoid using
 * animation-delay and instead set custom keyframes for each color (as redundant as it
 * seems).
 *
 * We write out each animation in full (instead of separating animation-name,
 * animation-duration, etc.) because under the polyfill, Safari does not recognize those
 * specific properties properly, treats them as -webkit-animation, and overrides the
 * other animation rules. See https://github.com/Polymer/platform/issues/53.
 */
.active .spinner-layer.spinner-blue {
  /* durations: 4 * ARCTIME */
  -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, blue-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, blue-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }

.active .spinner-layer.spinner-red {
  /* durations: 4 * ARCTIME */
  -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, red-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, red-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }

.active .spinner-layer.spinner-yellow {
  /* durations: 4 * ARCTIME */
  -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, yellow-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, yellow-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }

.active .spinner-layer.spinner-green {
  /* durations: 4 * ARCTIME */
  -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, green-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, green-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }

.active .spinner-layer.spinner-blue-only,
.active .spinner-layer.spinner-red-only,
.active .spinner-layer.spinner-yellow-only,
.active .spinner-layer.spinner-green-only {
  /* durations: 4 * ARCTIME */
  opacity: 1;
  -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }

@-webkit-keyframes fill-unfill-rotate {
  12.5% {
    -webkit-transform: rotate(135deg); }
  /* 0.5 * ARCSIZE */
  25% {
    -webkit-transform: rotate(270deg); }
  /* 1   * ARCSIZE */
  37.5% {
    -webkit-transform: rotate(405deg); }
  /* 1.5 * ARCSIZE */
  50% {
    -webkit-transform: rotate(540deg); }
  /* 2   * ARCSIZE */
  62.5% {
    -webkit-transform: rotate(675deg); }
  /* 2.5 * ARCSIZE */
  75% {
    -webkit-transform: rotate(810deg); }
  /* 3   * ARCSIZE */
  87.5% {
    -webkit-transform: rotate(945deg); }
  /* 3.5 * ARCSIZE */
  to {
    -webkit-transform: rotate(1080deg); }
  /* 4   * ARCSIZE */ }

@keyframes fill-unfill-rotate {
  12.5% {
    transform: rotate(135deg); }
  /* 0.5 * ARCSIZE */
  25% {
    transform: rotate(270deg); }
  /* 1   * ARCSIZE */
  37.5% {
    transform: rotate(405deg); }
  /* 1.5 * ARCSIZE */
  50% {
    transform: rotate(540deg); }
  /* 2   * ARCSIZE */
  62.5% {
    transform: rotate(675deg); }
  /* 2.5 * ARCSIZE */
  75% {
    transform: rotate(810deg); }
  /* 3   * ARCSIZE */
  87.5% {
    transform: rotate(945deg); }
  /* 3.5 * ARCSIZE */
  to {
    transform: rotate(1080deg); }
  /* 4   * ARCSIZE */ }

@-webkit-keyframes blue-fade-in-out {
  from {
    opacity: 1; }
  25% {
    opacity: 1; }
  26% {
    opacity: 0; }
  89% {
    opacity: 0; }
  90% {
    opacity: 1; }
  100% {
    opacity: 1; } }

@keyframes blue-fade-in-out {
  from {
    opacity: 1; }
  25% {
    opacity: 1; }
  26% {
    opacity: 0; }
  89% {
    opacity: 0; }
  90% {
    opacity: 1; }
  100% {
    opacity: 1; } }

@-webkit-keyframes red-fade-in-out {
  from {
    opacity: 0; }
  15% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  51% {
    opacity: 0; } }

@keyframes red-fade-in-out {
  from {
    opacity: 0; }
  15% {
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  51% {
    opacity: 0; } }

@-webkit-keyframes yellow-fade-in-out {
  from {
    opacity: 0; }
  40% {
    opacity: 0; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  76% {
    opacity: 0; } }

@keyframes yellow-fade-in-out {
  from {
    opacity: 0; }
  40% {
    opacity: 0; }
  50% {
    opacity: 1; }
  75% {
    opacity: 1; }
  76% {
    opacity: 0; } }

@-webkit-keyframes green-fade-in-out {
  from {
    opacity: 0; }
  65% {
    opacity: 0; }
  75% {
    opacity: 1; }
  90% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes green-fade-in-out {
  from {
    opacity: 0; }
  65% {
    opacity: 0; }
  75% {
    opacity: 1; }
  90% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/**
 * Patch the gap that appear between the two adjacent div.circle-clipper while the
 * spinner is rotating (appears on Chrome 38, Safari 7.1, and IE 11).
 */
.gap-patch {
  position: absolute;
  top: 0;
  left: 45%;
  width: 10%;
  height: 100%;
  overflow: hidden;
  border-color: inherit; }

.gap-patch .circle {
  width: 1000%;
  left: -450%; }

.circle-clipper {
  display: inline-block;
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-color: inherit; }
  .circle-clipper .circle {
    width: 200%;
    height: 100%;
    border-width: 3px;
    /* STROKEWIDTH */
    border-style: solid;
    border-color: inherit;
    border-bottom-color: transparent !important;
    border-radius: 50%;
    -webkit-animation: none;
    animation: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0; }
  .circle-clipper.left .circle {
    left: 0;
    border-right-color: transparent !important;
    -webkit-transform: rotate(129deg);
    transform: rotate(129deg); }
  .circle-clipper.right .circle {
    left: -100%;
    border-left-color: transparent !important;
    -webkit-transform: rotate(-129deg);
    transform: rotate(-129deg); }

.active .circle-clipper.left .circle {
  /* duration: ARCTIME */
  -webkit-animation: left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }

.active .circle-clipper.right .circle {
  /* duration: ARCTIME */
  -webkit-animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }

@-webkit-keyframes left-spin {
  from {
    -webkit-transform: rotate(130deg); }
  50% {
    -webkit-transform: rotate(-5deg); }
  to {
    -webkit-transform: rotate(130deg); } }

@keyframes left-spin {
  from {
    transform: rotate(130deg); }
  50% {
    transform: rotate(-5deg); }
  to {
    transform: rotate(130deg); } }

@-webkit-keyframes right-spin {
  from {
    -webkit-transform: rotate(-130deg); }
  50% {
    -webkit-transform: rotate(5deg); }
  to {
    -webkit-transform: rotate(-130deg); } }

@keyframes right-spin {
  from {
    transform: rotate(-130deg); }
  50% {
    transform: rotate(5deg); }
  to {
    transform: rotate(-130deg); } }

#spinnerContainer.cooldown {
  /* duration: SHRINK_TIME */
  -webkit-animation: container-rotate 1568ms linear infinite, fade-out 400ms cubic-bezier(0.4, 0, 0.2, 1);
  animation: container-rotate 1568ms linear infinite, fade-out 400ms cubic-bezier(0.4, 0, 0.2, 1); }

@-webkit-keyframes fade-out {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes fade-out {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

#mdb-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  /* change if the mask should have another color then white */
  z-index: 9998;
  /* makes sure it stays on top */
  height: 100%;
  width: 100%; }

.accordion .panel {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #eee; }

.accordion .fa-angle-down {
  float: right; }

.collapsible-body {
  display: none; }

/*********************
Additional button styles
**********************/
.btn-floating {
  display: inline-block;
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 37px;
  height: 37px;
  line-height: 37px;
  padding: 0;
  background-color: #6a6a6a;
  border-radius: 50%;
  transition: .3s;
  cursor: pointer;
  vertical-align: middle;
  margin: 10px; }
  .btn-floating i {
    width: inherit;
    display: inline-block;
    text-align: center;
    color: #fff;
    font-size: 1.6rem;
    line-height: 37px; }
  .btn-floating:before {
    border-radius: 0; }
  .btn-floating.btn-large {
    width: 55.5px;
    height: 55.5px; }
    .btn-floating.btn-large i {
      line-height: 55.5px; }
  .btn-floating.btn-small, .card .card-share .social-reveal .btn-floating {
    height: 47px;
    width: 47px;
    line-height: 0; }
    .btn-floating.btn-small .fa, .card .card-share .social-reveal .btn-floating .fa, .btn-floating.btn-small .material-icons, .card .card-share .social-reveal .btn-floating .material-icons {
      font-size: 18px;
      margin-top: 5px; }

.btn-fab {
  margin: 0;
  padding: 15px;
  font-size: 26px;
  width: 56px;
  height: 56px; }
  .btn-fab,
  .btn-fab .ripple-wrapper {
    border-radius: 100%; }
  .btn-fab.btn-mini {
    width: 40px;
    height: 40px;
    padding: 13px;
    font-size: 15px; }

.fixed-action-btn {
  position: fixed;
  right: 23px;
  bottom: 23px;
  padding-top: 15px;
  margin-bottom: 0; }
  .fixed-action-btn ul {
    left: 0;
    right: 0;
    text-align: center;
    position: absolute;
    bottom: 64px;
    margin: 0; }
    .fixed-action-btn ul li {
      margin-bottom: 15px; }
    .fixed-action-btn ul a.btn-floating {
      opacity: 0; }

.btn-flat {
  background-color: transparent;
  position: relative;
  padding: 8px 30px;
  border: none;
  margin: 10px;
  text-transform: uppercase;
  text-decoration: none;
  outline: none !important; }
  .btn-flat:focus {
    background-color: transparent; }

.btn-rounded, .btn, .wizard > .actions a,
.wizard > .actions a:hover,
.wizard > .actions a:active {
  border-radius: 10em; }

.nav-pills.md-pills .nav-item .active {
  border: none;
  background-color: #7159B5;
  color: #fff; }

.nav-pills.md-pills .nav-item:hover {
  background-color: red;
  color: #45526e;
  font-weight: 500;
  border-left: none; }

body.is-order .fixed-action-btn {
  display: none; }

.counter {
  position: absolute;
  margin-left: -23px;
  margin-top: -1px;
  background-color: red;
  color: #fff;
  padding: 1px 7px;
  font-size: 11px;
  z-index: 2;
  border-radius: 10rem; }

.social-counters .btn, .social-counters .wizard > .actions a, .wizard > .actions .social-counters a {
  margin-left: 9px; }

/* Buttons */
.btn-fb {
  background-color: #3b5998; }
  .btn-fb:hover, .btn-fb:focus {
    background-color: #4264aa; }

.btn-gplus {
  background-color: #dd4b39; }
  .btn-gplus:hover, .btn-gplus:focus {
    background-color: #e15f4f; }

.btn-tw {
  background-color: #55acee; }
  .btn-tw:hover, .btn-tw:focus {
    background-color: #6cb7f0; }

.btn-li {
  background-color: #0082ca; }
  .btn-li:hover, .btn-li:focus {
    background-color: #0092e4; }

.yt-bg {
  background-color: #cd201f; }
  .yt-bg:hover, .yt-bg:focus {
    background-color: #de2827; }

.ins-bg {
  background-color: #3f729b; }
  .ins-bg:hover, .ins-bg:focus {
    background-color: #467fad; }

.btn-pin {
  background-color: #c61118; }
  .btn-pin:hover, .btn-pin:focus {
    background-color: #dd131b; }

.btn-ins {
  background-color: #3f729b; }
  .btn-ins:hover, .btn-ins:focus {
    background-color: #467fad; }

.btn-yt {
  background-color: #cd201f; }
  .btn-yt:hover, .btn-yt:focus {
    background-color: #de2827; }

.btn-vk {
  background-color: #4c75a3; }
  .btn-vk:hover, .btn-vk:focus {
    background-color: #5882b1; }

.btn-git {
  background-color: #4183c4; }
  .btn-git:hover, .btn-git:focus {
    background-color: #5490ca; }

.btn-comm {
  background-color: #30cfc0; }
  .btn-comm:hover, .btn-comm:focus {
    background-color: #45d4c6; }

.btn-email {
  background-color: #4b515d; }
  .btn-email:hover, .btn-email:focus {
    background-color: #565d6b; }

.btn-dribbble {
  background-color: #c32361; }
  .btn-dribbble:hover, .btn-dribbble:focus {
    background-color: #d8276c; }

/* Icons */
.icons-sm {
  padding: 0.5rem;
  margin: 0.5rem;
  font-size: 1.5rem; }

.fb-ic {
  color: #3b5998; }
  .fb-ic:hover, .fb-ic:focus {
    color: #3b5998; }

.gplus-ic {
  color: #dd4b39; }
  .gplus-ic:hover, .gplus-ic:focus {
    color: #dd4b39; }

.tw-ic {
  color: #55acee; }
  .tw-ic:hover, .tw-ic:focus {
    color: #55acee; }

.li-ic {
  color: #0082ca; }
  .li-ic:hover, .li-ic:focus {
    color: #0082ca; }

.yt-ic {
  color: #cd201f; }
  .yt-ic:hover, .yt-ic:focus {
    color: #cd201f; }

.dribbble-ic {
  color: #c32361; }
  .dribbble-ic:hover, .dribbble-ic:focus {
    color: #c32361; }

.ins-ic {
  color: #3f729b; }
  .ins-ic:hover, .ins-ic:focus {
    color: #3f729b; }

.pin-ic {
  color: #c61118; }
  .pin-ic:hover, .pin-ic:focus {
    color: #c61118; }

.vk-ic {
  color: #4c75a3; }
  .vk-ic:hover, .vk-ic:focus {
    color: #4c75a3; }

.git-ic {
  color: #4183c4; }
  .git-ic:hover, .git-ic:focus {
    color: #4183c4; }

.email-ic {
  color: #4b515d; }
  .email-ic:hover, .email-ic:focus {
    color: #4b515d; }

.comm-ic {
  color: #30cfc0; }
  .comm-ic:hover, .comm-ic:focus {
    color: #30cfc0; }

.drib-ic {
  color: #c32361; }
  .drib-ic:hover, .drib-ic:focus {
    color: #c32361; }

/* Social list */
.social-list {
  width: auto;
  padding: 1rem; }
  .social-list li {
    margin-top: 15px; }
  .social-list .fa {
    margin-right: 20px;
    font-size: 20px; }
  .social-list .fa-facebook {
    margin-right: 26px; }
  .social-list a {
    font-size: 20px; }

.personal-sm {
  margin-bottom: 10px; }
  .personal-sm a {
    padding: 5px; }
    .personal-sm a:first-of-type {
      padding-left: 0; }
    .personal-sm a .fa {
      -webkit-transition-duration: 0.2s;
      -moz-transition-duration: 0.2s;
      -o-transition-duration: 0.2s;
      -ms-transition-duration: 0.2s;
      transition-duration: 0.2s; }
    .personal-sm a:hover .fa {
      -webkit-transform: scale(1.2);
      -moz-transform: scale(1.2);
      -ms-transform: scale(1.2);
      -o-transform: scale(1.2);
      transform: scale(1.2); }

@media only screen and (max-width: 500px) {
  .personal-sm a {
    padding: 2px; } }

.card .card-data {
  background-color: #3e4551;
  color: #fff;
  text-align: center;
  height: auto;
  padding: 10px; }
  .card .card-data ul {
    margin-bottom: 0;
    font-size: 0.9rem; }
    .card .card-data ul li {
      display: inline; }
      .card .card-data ul li .fa-clock-o {
        margin-left: 10px; }
    .card .card-data ul a {
      color: #fff; }
      .card .card-data ul a .fa {
        margin-left: 5px;
        margin-right: 3px; }

.card .rating {
  color: #ffa000; }

.card .btn-action {
  margin: -23px 20px;
  float: right;
  background-color: #4b515d;
  height: 47px;
  width: 47px;
  line-height: 0; }
  .card .btn-action .fa,
  .card .btn-action .material-icons {
    font-size: 18px;
    margin-top: 5px; }

.card .card-review {
  margin-top: -1px;
  background-color: #000;
  color: #fff;
  padding: 50px 20px 20px 20px; }
  .card .card-review ul {
    margin-bottom: 0;
    font-size: 0.9rem; }
    .card .card-review ul li {
      display: inline; }
    .card .card-review ul a {
      color: #fff; }
      .card .card-review ul a .fa {
        margin-left: 5px;
        margin-right: 3px; }

.card .activator {
  float: right;
  padding: 1rem;
  margin-right: 10px;
  font-size: 1.2rem;
  color: #000; }

.card .link-text {
  text-align: right;
  color: #000; }
  .card .link-text i {
    margin-left: 4px; }

.card.card-dark .activator {
  color: #fff; }

.card.card-dark .card-block {
  background-color: #2e2e2e;
  color: #fff; }
  .card.card-dark .card-block hr {
    background-color: #666; }
  .card.card-dark .card-block a {
    color: #fff; }

.card .card-reveal {
  position: absolute;
  background-color: #fff;
  width: 100%;
  overflow-y: auto;
  top: 100%;
  height: 100%;
  z-index: 1;
  display: none;
  padding: 1rem; }
  .card .card-reveal .card-title {
    cursor: pointer; }
    .card .card-reveal .card-title i {
      color: #9e9e9e;
      position: absolute;
      right: 10px; }
  .card .card-reveal .content {
    position: relative; }
    .card .card-reveal .content h4 {
      margin-top: 20px;
      margin-bottom: 15px; }
    .card .card-reveal .content h5 {
      margin-top: 30px; }

.card .card-share {
  position: relative; }
  .card .card-share .social-reveal {
    position: absolute;
    top: -28px;
    right: 30px;
    visibility: hidden;
    width: auto;
    transform: translateZ(0);
    transform: translateX(0px);
    transition: transform 0.35s ease; }
    .card .card-share .social-reveal .btn-floating {
      margin: 0.3rem; }
  .card .card-share .social-reveal-active {
    z-index: 11;
    visibility: visible;
    /*z-index: 3;*/
    transform: translateZ(0);
    transform: translateX(-48px);
    transition: transform 0.35s ease; }

.card.ovf-hidden {
  overflow: hidden; }

.card .card-footer {
  font-size: 1.3rem;
  background-color: transparent;
  padding-bottom: 2rem; }
  .card .card-footer .left {
    float: left; }
    .card .card-footer .left .discount {
      text-decoration: line-through;
      color: #9e9e9e;
      font-size: 1.1rem; }
  .card .card-footer .right {
    float: right;
    display: flex; }
    .card .card-footer .right a {
      color: #9e9e9e;
      margin-left: 1rem;
      -webkit-transition: 0.4s;
      -moz-transition: 0.4s;
      -o-transition: 0.4s;
      -ms-transition: 0.4s;
      transition: 0.4s; }
      .card .card-footer .right a:hover {
        color: #d50000;
        -webkit-transition: 0.4s;
        -moz-transition: 0.4s;
        -o-transition: 0.4s;
        -ms-transition: 0.4s;
        transition: 0.4s; }
      .card .card-footer .right a.active {
        color: #d50000; }

.card-wrapper {
  margin: 0.5rem 0 1rem 0;
  height: 500px;
  position: relative;
  perspective: 800px;
  /* Front side */
  /* Card with rotate on click */
  /* Rotate icons */
  /* Animation */
  /* Click effect */ }
  .card-wrapper .face {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff; }
    .card-wrapper .face h4 {
      margin-bottom: 15px; }
    .card-wrapper .face h5 {
      margin-top: 30px; }
    .card-wrapper .face .content {
      text-align: left;
      padding: 15px; }
      .card-wrapper .face .content p {
        margin-bottom: 30px; }
      .card-wrapper .face .content .rotate-btn {
        padding: 1rem;
        margin-right: -8px;
        float: right;
        font-size: 1.2rem;
        color: #000; }
  .card-wrapper .card-up {
    overflow: hidden;
    height: 50%; }
  .card-wrapper .card-up img {
    min-width: 400px; }
  .card-wrapper .avatar {
    border-radius: 50%;
    display: block;
    height: 120px;
    margin: -65px auto 0;
    overflow: hidden;
    width: 120px; }
  .card-wrapper .avatar img {
    border: 5px solid #fff;
    background: none repeat scroll 0 0 #FFFFFF;
    width: 100%; }
  .card-wrapper .card-rotating {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%; }
  .card-wrapper .fa-repeat,
  .card-wrapper .fa-undo {
    font-size: 20px;
    margin-top: 30px; }
  .card-wrapper .fa-undo {
    margin-top: 30px; }
  .card-wrapper .card-rotating {
    transform-style: preserve-3d; }
  .card-wrapper .front,
  .card-wrapper .back {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform 1.0s;
    transition: transform 1.0s; }
  .card-wrapper .back {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    padding: 1rem; }
    .card-wrapper .back .card-title {
      cursor: pointer; }
      .card-wrapper .back .card-title i {
        color: #9e9e9e;
        position: absolute;
        right: 20px; }
  .card-wrapper .card-rotating.effect__click.flipped .front {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg); }
  .card-wrapper .card-rotating.effect__click.flipped .back {
    -webkit-transform: rotateY(0);
    transform: rotateY(0); }

.card-data {
  height: auto;
  padding: 10px;
  padding-left: 0; }
  .card-data ul {
    margin-bottom: 0;
    font-size: 0.9rem; }
    .card-data ul li {
      display: inline; }
    .card-data ul a {
      color: #666; }
      .card-data ul a .fa {
        margin-left: 5px;
        margin-right: 3px; }

.card-overlay {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding: 1.5rem;
  border-radius: 2px; }
  .card-overlay p {
    margin-bottom: 1rem; }

.section-heading {
  text-align: center; }
  .section-heading h1 {
    margin-top: 2rem;
    margin-bottom: 3rem; }
  .section-heading p {
    margin-bottom: 3rem;
    margin-right: 15%;
    margin-left: 15%; }

.card-cascade {
  display: inline-block; }
  .card-cascade .view {
    border-radius: 4px; }
  .card-cascade.narrower {
    margin-top: 20px; }
    .card-cascade.narrower .view {
      margin-left: 4%;
      margin-right: 4%;
      margin-top: -20px; }
  .card-cascade.wider .card-block {
    margin-left: 4%;
    margin-right: 4%; }

.card-cascade-2 {
  display: inline-block; }
  .card-cascade-2 .view {
    margin-left: 0;
    margin-right: 0;
    margin-top: -20px;
    border-radius: 4px; }
  .card-cascade-2 .card-block {
    margin-left: 10px;
    margin-right: 10px; }

.dropdown-content {
  overflow-x: hidden;
  background-color: #fff;
  margin: 0;
  display: none;
  min-width: 100px;
  max-height: 650px;
  overflow-y: auto;
  opacity: 0;
  position: absolute;
  z-index: 999;
  will-change: width, height; }
  .dropdown-content li {
    clear: both;
    color: rgba(0, 0, 0, 0.87);
    cursor: pointer;
    line-height: 1.5rem;
    width: 100%;
    text-align: left;
    text-transform: none; }
    .dropdown-content li:hover, .dropdown-content li.active {
      background-color: #eee; }
    .dropdown-content li > a,
    .dropdown-content li > span {
      font-size: 1.2rem;
      color: #7159B5;
      display: block;
      padding: 1rem 1rem; }
    .dropdown-content li > a > i {
      height: inherit;
      line-height: inherit; }

.colorful-select .dropdown-content {
  padding: 0.5rem; }
  .colorful-select .dropdown-content li.active span {
    color: #fff !important; }
  .colorful-select .dropdown-content li a:hover,
  .colorful-select .dropdown-content li span:hover {
    color: #fff !important;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    -ms-transition: all 0.1s linear;
    transition: all 0.1s linear;
    border-radius: 2px; }

.dropdown-primary .dropdown-content li.active {
  background-color: #7159B5; }

.dropdown-primary .dropdown-content li a:hover,
.dropdown-primary .dropdown-content li span:hover {
  background-color: #7159B5; }

.dropdown-danger .dropdown-content li.active {
  background-color: #cc0000; }

.dropdown-danger .dropdown-content li a:hover,
.dropdown-danger .dropdown-content li span:hover {
  background-color: #cc0000; }

.dropdown-default .dropdown-content li.active {
  background-color: #00c853; }

.dropdown-default .dropdown-content li a:hover,
.dropdown-default .dropdown-content li span:hover {
  background-color: #00c853; }

.dropdown-secondary .dropdown-content li.active {
  background-color: #6a6a6a; }

.dropdown-secondary .dropdown-content li a:hover,
.dropdown-secondary .dropdown-content li span:hover {
  background-color: #6a6a6a; }

.dropdown-success .dropdown-content li.active {
  background-color: #78cd62; }

.dropdown-success .dropdown-content li a:hover,
.dropdown-success .dropdown-content li span:hover {
  background-color: #78cd62; }

.dropdown-info .dropdown-content li.active {
  background-color: #7f93f3; }

.dropdown-info .dropdown-content li a:hover,
.dropdown-info .dropdown-content li span:hover {
  background-color: #7f93f3; }

.dropdown-warning .dropdown-content li.active {
  background-color: #ffb900; }

.dropdown-warning .dropdown-content li a:hover,
.dropdown-warning .dropdown-content li span:hover {
  background-color: #ffb900; }

.dropdown-ins .dropdown-content li.active {
  background-color: #3f729b; }

.dropdown-ins .dropdown-content li a:hover,
.dropdown-ins .dropdown-content li span:hover {
  background-color: #3f729b; }

.dropdown-dark .dropdown-content li.active {
  background-color: #2e2e2e; }

.dropdown-dark .dropdown-content li a:hover,
.dropdown-dark .dropdown-content li span:hover {
  background-color: #2e2e2e; }

.dropdown .dropdown-menu {
  padding: 0.5rem; }
  .dropdown .dropdown-menu.dd-right {
    left: -100px; }
  .dropdown .dropdown-menu.dropdown-primary .dropdown-item:hover {
    background-color: #7159B5; }
  .dropdown .dropdown-menu.dropdown-danger .dropdown-item:hover {
    background-color: #cc0000; }
  .dropdown .dropdown-menu.dropdown-default .dropdown-item:hover {
    background-color: #00c853; }
  .dropdown .dropdown-menu.dropdown-secondary .dropdown-item:hover {
    background-color: #6a6a6a; }
  .dropdown .dropdown-menu.dropdown-success .dropdown-item:hover {
    background-color: #78cd62; }
  .dropdown .dropdown-menu.dropdown-info .dropdown-item:hover {
    background-color: #7f93f3; }
  .dropdown .dropdown-menu.dropdown-warning .dropdown-item:hover {
    background-color: #ff8800; }
  .dropdown .dropdown-menu.dropdown-ins .dropdown-item:hover {
    background-color: #3f729b; }
  .dropdown .dropdown-menu.dropdown-dark .dropdown-item:hover {
    background-color: #2e2e2e; }
  .dropdown .dropdown-menu .dropdown-item {
    padding: 1rem; }
    .dropdown .dropdown-menu .dropdown-item:hover {
      background: transparent; }

.dropdown-menu.animated, div.dropdown-menu.add-feature-price {
  /* Speed up animations */
  -webkit-animation-duration: 0.55s;
  animation-duration: 0.55s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease; }

div.select-wrapper.mdb-select ul.select-dropdown.dropdown-content > li[class] > span {
  font-size: .95rem;
  padding: .6rem 1rem;
  display: block;
  transition: all .2s ease; }
  div.select-wrapper.mdb-select ul.select-dropdown.dropdown-content > li[class] > span:hover {
    transform: translateX(0.5rem);
    color: #252525;
    background: #fafafa; }

div.select-wrapper.mdb-select ul.select-dropdown.dropdown-content > li.active > span {
  background: #7159B5;
  color: #ffffff;
  font-size: 1rem;
  font-weight: bold; }

div.select-wrapper.mdb-select ul.select-dropdown.dropdown-content > li:first-child.disabled span {
  text-align: center;
  font-weight: bold;
  font-size: .85rem !important;
  padding: .4rem 0; }

header#masthead #main-actions i.fa-user {
  font-size: .9rem; }

header#masthead.site-header nav.navbar.top-nav-collapse {
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.1), 0 2px 25px -5px rgba(0, 0, 0, 0.07), 0 1px 1px rgba(0, 0, 0, 0.03); }

header#masthead .header-overlay.top-nav-collapse .container {
  padding: 5px 1rem; }

header#masthead .header-overlay .container {
  padding: 8.75px 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: all .2s ease; }
  header#masthead .header-overlay .container .main-nav-container {
    flex: 1; }

header#masthead .header-overlay nav#main-nav {
  padding: 0; }
  header#masthead .header-overlay nav#main-nav a.navbar-brand {
    margin: 0;
    padding: 0; }
    header#masthead .header-overlay nav#main-nav a.navbar-brand img, header#masthead .header-overlay nav#main-nav a.navbar-brand svg {
      top: 0; }

@media (max-width: 991px) {
  body.is-mobilenav header#masthead div.main-nav-container {
    min-height: 640px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding: 4rem 2rem;
    background: #ffffff; }
    body.is-mobilenav header#masthead div.main-nav-container ul {
      width: auto; }
      body.is-mobilenav header#masthead div.main-nav-container ul li.nav-item {
        padding: .4rem 0; }
        body.is-mobilenav header#masthead div.main-nav-container ul li.nav-item a.nav-link {
          font-weight: 400;
          font-size: 1.4rem;
          text-align: center;
          text-transform: none !important;
          display: block;
          margin: 0 auto; }
          body.is-mobilenav header#masthead div.main-nav-container ul li.nav-item a.nav-link.zopim-toggler {
            font-size: .9rem;
            letter-spacing: 1px; }
            body.is-mobilenav header#masthead div.main-nav-container ul li.nav-item a.nav-link.zopim-toggler i.fa-life-ring {
              color: red !important; }
        body.is-mobilenav header#masthead div.main-nav-container ul li.nav-item hr {
          display: none; }
    body.is-mobilenav header#masthead div.main-nav-container a#main-actions {
      padding: .5rem 1rem !important;
      white-space: nowrap !important;
      overflow: hidden;
      text-overflow: ellipsis;
      margin: 0;
      border-radius: 2rem; }
      body.is-mobilenav header#masthead div.main-nav-container a#main-actions[aria-expanded="true"] + .dropdown-menu {
        display: flex;
        flex-flow: column wrap;
        justify-content: center;
        padding: 4rem 2rem; }
    body.is-mobilenav header#masthead div.main-nav-container a.zopim-toggler.nav-support {
      font-size: 12px;
      opacity: .75;
      display: block;
      margin-top: 1.5rem;
      text-align: center;
      font-weight: 400; }
    body.is-mobilenav header#masthead div.main-nav-container .navbar-nav .nav-item a {
      transform: translateY(0) !important; }
      body.is-mobilenav header#masthead div.main-nav-container .navbar-nav .nav-item a.nav-link {
        text-transform: none; }
        body.is-mobilenav header#masthead div.main-nav-container .navbar-nav .nav-item a.nav-link[href="/anfrage"], body.is-mobilenav header#masthead div.main-nav-container .navbar-nav .nav-item a.nav-link[href="/anfrage"]:hover, body.is-mobilenav header#masthead div.main-nav-container .navbar-nav .nav-item a.nav-link[href="/order"], body.is-mobilenav header#masthead div.main-nav-container .navbar-nav .nav-item a.nav-link[href="/order"]:hover {
          background: #7159B5;
          color: #ffffff; }
        body.is-mobilenav header#masthead div.main-nav-container .navbar-nav .nav-item a.nav-link, body.is-mobilenav header#masthead div.main-nav-container .navbar-nav .nav-item a.nav-link:hover {
          color: #010648; }
        body.is-mobilenav header#masthead div.main-nav-container .navbar-nav .nav-item a.nav-link:hover {
          background: transparent; }
          body.is-mobilenav header#masthead div.main-nav-container .navbar-nav .nav-item a.nav-link:hover:before, body.is-mobilenav header#masthead div.main-nav-container .navbar-nav .nav-item a.nav-link:hover:after {
            background: transparent; } }

.carousel-multi-item {
  margin-bottom: 100px; }
  .carousel-multi-item .carousel-indicators li {
    height: 20px;
    width: 20px;
    background-color: #7159B5;
    margin-bottom: -60px; }
  .carousel-multi-item .carousel-indicators .active {
    height: 25px;
    width: 25px;
    background-color: #7159B5; }
  .carousel-multi-item .controls-top {
    text-align: center;
    margin-bottom: 30px; }
    .carousel-multi-item .controls-top .btn-floating {
      background: #7159B5; }
  .carousel-multi-item .carousel-indicators {
    margin-bottom: -2em; }
  .carousel-multi-item .card {
    margin: 1px; }
  .carousel-multi-item .card-cascade.narrower {
    margin-top: 20px;
    margin-bottom: 5px; }

@media only screen and (max-width: 992px) {
  .carousel-multi-item .carousel-indicators li {
    margin-bottom: -30px; } }

.carousel-thumbnails {
  margin-bottom: 80px; }
  .carousel-thumbnails .carousel-indicators {
    margin-bottom: -90px;
    position: absolute; }
    .carousel-thumbnails .carousel-indicators li {
      height: auto;
      width: auto;
      border: none; }
    .carousel-thumbnails .carousel-indicators .active {
      height: auto;
      width: auto;
      background-color: #fff;
      opacity: 0.5; }
    .carousel-thumbnails .carousel-indicators img {
      width: 100px;
      height: 50px;
      overflow: hidden; }

@media only screen and (max-width: 600px) {
  .carousel-thumbnails {
    margin-bottom: 60px; }
    .carousel-thumbnails .carousel-indicators {
      margin-bottom: -60px; }
      .carousel-thumbnails .carousel-indicators img {
        width: 50px;
        height: 25px; } }

/*********************
 Modals
**********************/
.modal-ext .modal-content .modal-header {
  text-align: center; }

.modal-ext .modal-content .options {
  float: left; }

.modal-ext .modal-content .modal-body .text-xs-center fieldset {
  margin-top: 20px; }

.modal-ext .modal-content .call {
  margin-top: 1rem; }

.modal-ext .modal-content .modal-body {
  padding: 2rem 2rem 1rem 2rem; }

.modal-cart li p {
  margin: 5px;
  font-weight: 400; }
  .modal-cart li p .label {
    margin-left: 10px;
    margin-top: 3px;
    font-weight: 400;
    position: absolute; }
  .modal-cart li p .quantity {
    font-size: 16px;
    margin-right: 7px;
    font-weight: 300; }

.modal-cart .cartPageLink {
  margin-left: 10px; }
  .modal-cart .cartPageLink a {
    text-decoration: underline;
    color: #666; }

.modal-cart .total {
  float: right;
  font-weight: 400; }

.cf-phone {
  margin-left: 7px; }

.modal-test {
  position: absolute;
  top: 70%;
  right: 80%; }
  .modal-test .modal-dialog {
    position: relative;
    width: auto;
    margin: 10px; }
  .modal-test .modal-content {
    border: none; }
    .modal-test .modal-content .modal-header {
      background-color: blue; }

.modal-test.fade:not(.in) .modal-dialog {
  -webkit-transform: translate3d(-25%, 0, 0);
  transform: translate3d(-25%, 0, 0); }

.toast-title {
  font-weight: bold; }

.toast-message {
  -ms-word-wrap: break-word;
  word-wrap: break-word; }

.toast-message a,
.toast-message label {
  color: #ffffff; }

.toast-message a:hover {
  color: #cccccc;
  text-decoration: none; }

.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  -webkit-text-shadow: 0 1px 0 #ffffff;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80); }

.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  filter: alpha(opacity=40); }

/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none; }

.toast-top-center {
  top: 0;
  right: 0;
  width: 100%; }

.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%; }

.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%; }

.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%; }

.toast-top-left {
  top: 12px;
  left: 12px; }

.toast-top-right {
  top: 12px;
  right: 12px; }

.toast-bottom-right {
  right: 12px;
  bottom: 12px; }

.toast-bottom-left {
  bottom: 12px;
  left: 12px; }

#toast-container {
  position: fixed;
  z-index: 999999;
  /*overrides*/ }

#toast-container * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

#toast-container > div {
  position: relative;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  background-position: 15px center;
  background-repeat: no-repeat;
  color: #ffffff;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80); }

#toast-container > :hover {
  transition: .45s;
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);
  cursor: pointer; }

#toast-container > .toast-info {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=") !important; }

#toast-container > .toast-error {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important; }

#toast-container > .toast-success {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important; }

#toast-container > .toast-warning {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important; }

#toast-container.toast-top-center > div,
#toast-container.toast-bottom-center > div {
  width: 300px;
  margin: auto; }

#toast-container.toast-top-full-width > div,
#toast-container.toast-bottom-full-width > div {
  width: 96%;
  margin: auto; }

.toast {
  background-color: #030303; }

.toast-success {
  background-color: #51a351; }

.toast-error {
  background-color: #bd362f; }

.toast-info {
  background-color: #2f96b4; }

.toast-warning {
  background-color: #f89406; }

.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  filter: alpha(opacity=40); }

/*Responsive Design*/
@media all and (max-width: 240px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 11em; }
  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em; } }

@media all and (min-width: 241px) and (max-width: 480px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 18em; }
  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em; } }

@media all and (min-width: 481px) and (max-width: 768px) {
  #toast-container > div {
    padding: 15px 15px 15px 50px;
    width: 25em; } }

.nav-pills .nav-item a {
  color: #666; }

.nav-pills .nav-item .active {
  background-color: transparent;
  color: #45526e;
  border-left: 2px solid #45526e;
  font-weight: 500; }
  .nav-pills .nav-item .active:hover, .nav-pills .nav-item .active:active, .nav-pills .nav-item .active:focus {
    background-color: transparent;
    color: #45526e;
    font-weight: 500; }

.nav-pills .nav-item:hover {
  background-color: transparent;
  color: #45526e;
  font-weight: 500;
  border-left: 1px solid #45526e; }

.nav-pills .nav-item + .nav-item {
  margin-left: 0; }

@media only screen and (max-width: 760px) {
  .sticky,
  .sticky-placeholder {
    display: none; } }

#scrollspy {
  width: 120px; }

@media only screen and (max-width: 992px) {
  .col-md-4 .sticky {
    width: 200px; } }

@media only screen and (min-width: 992px) {
  .col-md-4 .sticky {
    width: 240px; } }

@media only screen and (min-width: 1200px) {
  .col-md-4 .sticky {
    width: 300px; } }

@media only screen and (min-width: 1400px) {
  .col-md-4 .sticky {
    width: 350px; } }

.rotate-element {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg); }

.fa-angle-down.rotate-icon {
  -webkit-transition: all 150ms ease-in 0s;
  -moz-transition: all 150ms ease-in 0s;
  -o-transition: all 150ms ease-in 0s;
  -ms-transition: all 150ms ease-in 0s;
  transition: all 150ms ease-in 0s; }

/* Remove default Radio Buttons */
input {
  z-index: 5; }

[type="radio"]:not(:checked),
[type="radio"]:checked {
  position: absolute;
  left: -9999px;
  visibility: hidden; }

[type="radio"]:not(:checked) + label,
[type="radio"]:checked + label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  display: inline-block;
  height: 25px;
  line-height: 25px;
  font-size: 1rem;
  -webkit-transition: 0.28s ease;
  -moz-transition: 0.28s ease;
  -o-transition: 0.28s ease;
  -ms-transition: 0.28s ease;
  transition: 0.28s ease;
  -webkit-user-select: none;
  /* webkit (safari, chrome) browsers */
  -moz-user-select: none;
  /* mozilla browsers */
  -khtml-user-select: none;
  /* webkit (konqueror) browsers */
  -ms-user-select: none;
  /* IE10+ */ }

[type="radio"] + label:before,
[type="radio"] + label:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  margin: 4px;
  width: 16px;
  height: 16px;
  z-index: 0;
  -webkit-transition: 0.28s ease;
  -moz-transition: 0.28s ease;
  -o-transition: 0.28s ease;
  -ms-transition: 0.28s ease;
  transition: 0.28s ease; }

/* Unchecked styles */
[type="radio"]:not(:checked) + label:before {
  border-radius: 50%;
  border: 2px solid #5a5a5a; }

[type="radio"]:not(:checked) + label:after {
  border-radius: 50%;
  border: 2px solid #5a5a5a;
  z-index: -1;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0); }

/* Checked styles */
[type="radio"]:checked + label:before {
  border-radius: 50%;
  border: 2px solid transparent; }

[type="radio"]:checked + label:after {
  border-radius: 50%;
  border: 2px solid #7159B5;
  background-color: #7159B5;
  z-index: 0;
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  -o-transform: scale(1.02);
  transform: scale(1.02); }

/* Radio With gap */
[type="radio"].with-gap:checked + label:before {
  border-radius: 50%;
  border: 2px solid #7159B5; }

[type="radio"].with-gap:checked + label:after {
  border-radius: 50%;
  border: 2px solid #7159B5;
  background-color: #7159B5;
  z-index: 0;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  transform: scale(0.5); }

/* Disabled Radio With gap */
[type="radio"].with-gap:disabled:checked + label:before {
  border: 2px solid rgba(0, 0, 0, 0.46); }

[type="radio"].with-gap:disabled:checked + label:after {
  border: none;
  background-color: rgba(0, 0, 0, 0.46); }

/* Disabled style */
[type="radio"]:disabled:not(:checked) + label:before,
[type="radio"]:disabled:checked + label:before {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.46); }

[type="radio"]:disabled + label {
  color: rgba(0, 0, 0, 0.46); }

[type="radio"]:disabled:not(:checked) + label:before {
  border-color: rgba(0, 0, 0, 0.46); }

[type="radio"]:disabled:checked + label:after {
  background-color: rgba(0, 0, 0, 0.46);
  border-color: #BDBDBD; }

/***************
   Checkboxes
***************/
/* Remove default checkbox */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
  visibility: hidden; }

[type="checkbox"]:not(.custom-checkbox) {
  /* checkbox aspect */ }
  [type="checkbox"]:not(.custom-checkbox) + label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    display: inline-block;
    height: 25px;
    line-height: 25px;
    font-size: 1rem;
    -webkit-user-select: none;
    /* webkit (safari, chrome) browsers */
    -moz-user-select: none;
    /* mozilla browsers */
    -khtml-user-select: none;
    /* webkit (konqueror) browsers */
    -ms-user-select: none;
    /* IE10+ */ }
  [type="checkbox"]:not(.custom-checkbox) + label:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    z-index: 0;
    border: 2px solid #5a5a5a;
    border-radius: 1px;
    margin-top: 2px;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -ms-transition: 0.2s;
    transition: 0.2s; }
  [type="checkbox"]:not(.custom-checkbox):not(:checked):disabled + label:before {
    border: none;
    background-color: rgba(0, 0, 0, 0.46); }

[type="checkbox"]:checked + label:before {
  top: -4px;
  left: -3px;
  width: 12px;
  height: 22px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #7159B5;
  border-bottom: 2px solid #7159B5;
  -webkit-transform: rotate(40deg);
  -moz-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  -o-transform: rotate(40deg);
  transform: rotate(40deg);
  -webkit-backface-visibility: hidden;
  -webkit-transform-origin: 100% 100%;
  -moz-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  -o-transform-origin: 100% 100%;
  transform-origin: 100% 100%; }

[type="checkbox"]:checked:disabled + label:before {
  border-right: 2px solid rgba(0, 0, 0, 0.46);
  border-bottom: 2px solid rgba(0, 0, 0, 0.46); }

/* Indeterminate checkbox */
[type="checkbox"]:indeterminate + label:before {
  left: -10px;
  top: -11px;
  width: 10px;
  height: 22px;
  border-top: none;
  border-left: none;
  border-right: 2px solid #7159B5;
  border-bottom: none;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-backface-visibility: hidden;
  -webkit-transform-origin: 100% 100%;
  -moz-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  -o-transform-origin: 100% 100%;
  transform-origin: 100% 100%; }

[type="checkbox"]:indeterminate:disabled + label:before {
  border-right: 2px solid rgba(0, 0, 0, 0.46);
  background-color: transparent; }

[type="checkbox"].filled-in + label:after {
  border-radius: 2px; }

[type="checkbox"].filled-in + label:before,
[type="checkbox"].filled-in + label:after {
  content: '';
  left: 0;
  position: absolute;
  /* .1s delay is for check animation */
  transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
  z-index: 1; }

[type="checkbox"].filled-in:not(:checked) + label:before {
  width: 0;
  height: 0;
  border: 3px solid transparent;
  left: 6px;
  top: 10px;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 20% 40%;
  transform-origin: 100% 100%; }

[type="checkbox"].filled-in:not(:checked) + label:after {
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 2px solid #5a5a5a;
  top: 0px;
  z-index: 0; }

[type="checkbox"].filled-in:checked + label:before {
  top: 0;
  left: 1px;
  width: 8px;
  height: 13px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%; }

[type="checkbox"].filled-in:checked + label:after {
  top: 0px;
  width: 20px;
  height: 20px;
  border: 2px solid #6a6a6a;
  background-color: #6a6a6a;
  z-index: 0; }

[type="checkbox"].filled-in:disabled:not(:checked) + label:before {
  background-color: transparent;
  border: 2px solid transparent; }

[type="checkbox"].filled-in:disabled:not(:checked) + label:after {
  border-color: transparent;
  background-color: #BDBDBD; }

[type="checkbox"].filled-in:disabled:checked + label:before {
  background-color: transparent; }

[type="checkbox"].filled-in:disabled:checked + label:after {
  background-color: #BDBDBD;
  border-color: #BDBDBD; }

[type="checkbox"].filled-in-danger + label:after {
  border-radius: 2px; }

[type="checkbox"].filled-in-danger + label:before,
[type="checkbox"].filled-in-danger + label:after {
  content: '';
  left: 0;
  position: absolute;
  /* .1s delay is for check animation */
  transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
  z-index: 1; }

[type="checkbox"].filled-in-danger:not(:checked) + label:before {
  width: 0;
  height: 0;
  border: 3px solid transparent;
  left: 6px;
  top: 10px;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 20% 40%;
  transform-origin: 100% 100%; }

[type="checkbox"].filled-in-danger:not(:checked) + label:after {
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 2px solid #5a5a5a;
  top: 0px;
  z-index: 0; }

[type="checkbox"].filled-in-danger:checked + label:before {
  top: 0;
  left: 1px;
  width: 8px;
  height: 13px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%; }

[type="checkbox"].filled-in-danger:checked + label:after {
  top: 0px;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  background-color: red;
  z-index: 0; }

/***************
  Select Field
***************/
.select-label {
  position: absolute; }

.select-wrapper {
  position: relative; }
  .select-wrapper input.select-dropdown {
    position: relative;
    cursor: pointer;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    outline: none;
    height: 3rem;
    line-height: 3rem;
    width: 100%;
    font-size: 1rem;
    margin: 0 0 15px 0;
    padding: 0;
    display: block; }
  .select-wrapper span.caret {
    color: initial;
    position: absolute;
    right: 0;
    top: 16px;
    font-size: 10px; }
    .select-wrapper span.caret.disabled {
      color: rgba(0, 0, 0, 0.46); }
  .select-wrapper + label {
    position: absolute;
    top: -14px;
    font-size: 0.8rem; }

select:not(.select-native) {
  display: none; }

select.browser-default {
  display: block; }

select:disabled {
  color: rgba(0, 0, 0, 0.3); }

.select-wrapper input.select-dropdown:disabled {
  color: rgba(0, 0, 0, 0.3);
  cursor: default;
  -webkit-user-select: none;
  /* webkit (safari, chrome) browsers */
  -moz-user-select: none;
  /* mozilla browsers */
  -ms-user-select: none;
  /* IE10+ */
  border-bottom: 1px solid rgba(0, 0, 0, 0.3); }

.select-wrapper i {
  color: rgba(0, 0, 0, 0.3); }

.select-dropdown li.disabled,
.select-dropdown li.disabled > span,
.select-dropdown li.optgroup {
  color: rgba(0, 0, 0, 0.3);
  background-color: transparent !important;
  cursor: context-menu; }

.select-dropdown li img {
  height: 40px;
  width: 40px;
  margin: 5px 15px;
  float: right; }

.select-dropdown li.optgroup {
  border-top: 1px solid #eee; }
  .select-dropdown li.optgroup.selected > span {
    color: rgba(0, 0, 0, 0.7); }
  .select-dropdown li.optgroup > span {
    color: rgba(0, 0, 0, 0.4); }
  .select-dropdown li.optgroup ~ li:not(.optgroup) {
    padding-left: 1rem; }

.multiple-select-dropdown li [type="checkbox"] + label {
  height: 10px; }

select {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }

/***************
     Switch
***************/
.switch,
.switch * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -ms-user-select: none; }

.switch label {
  cursor: pointer; }

.switch label input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0; }

.switch label input[type=checkbox]:checked + .lever {
  background-color: #aaaaaa; }

.switch label input[type=checkbox]:checked + .lever:after {
  background-color: #6a6a6a; }

.switch label .lever {
  content: "";
  display: inline-block;
  position: relative;
  width: 40px;
  height: 15px;
  background-color: #818181;
  border-radius: 15px;
  margin-right: 10px;
  transition: background 0.3s ease;
  vertical-align: middle;
  margin: 0 16px; }

.switch label .lever:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 21px;
  height: 21px;
  background-color: #F1F1F1;
  border-radius: 21px;
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4);
  left: -5px;
  top: -3px;
  transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease; }

input[type=checkbox]:checked:not(:disabled) ~ .lever:active:after {
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(106, 106, 106, 0.1); }

input[type=checkbox]:not(:disabled) ~ .lever:active:after {
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 0, 0, 0.08); }

.switch label input[type=checkbox]:checked + .lever:after {
  left: 24px; }

.switch input[type=checkbox][disabled] + .lever {
  cursor: default; }

.switch label input[type=checkbox][disabled] + .lever:after,
.switch label input[type=checkbox][disabled]:checked + .lever:after {
  background-color: #BDBDBD; }

/*********************
      File Input
**********************/
.file-field {
  position: relative; }
  .file-field .file-path-wrapper {
    overflow: hidden;
    padding-left: 10px;
    height: 2.5rem; }
  .file-field input.file-path {
    width: 100%;
    height: 2.1rem; }
  .file-field .btn, .file-field .wizard > .actions a, .wizard > .actions .file-field a {
    float: left;
    line-height: 3rem; }
  .file-field span {
    cursor: pointer; }
  .file-field input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 1px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0); }

.btn-file {
  padding-top: 1px; }

/***************
      Range
***************/
.range-field {
  position: relative; }

input[type=range],
input[type=range] + .thumb {
  cursor: pointer; }

input[type=range] {
  position: relative;
  background-color: transparent;
  border: none;
  outline: none;
  width: 100%;
  margin: 20px 0;
  padding: 0; }

input[type=range] + .thumb {
  position: absolute;
  border: none;
  height: 0;
  width: 0;
  border-radius: 50%;
  background-color: #7159B5;
  top: 10px;
  margin-left: -6px;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg); }
  input[type=range] + .thumb .value {
    display: block;
    width: 30px;
    text-align: center;
    color: #7159B5;
    font-size: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg); }
  input[type=range] + .thumb.active {
    border-radius: 50% 50% 50% 0; }
    input[type=range] + .thumb.active .value {
      color: #fff;
      margin-left: -1px;
      margin-top: 8px;
      font-size: 10px; }

input[type=range]:focus {
  outline: none; }

input[type=range] {
  -webkit-appearance: none; }

input[type=range]::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 4px;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.02);
  border: none;
  transition: height .2s ease; }

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #7159B5;
  transform-origin: 50% 50%;
  margin: -9.09091px 0 0 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s; }

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #fafafa; }

input[type=range] {
  /* fix for FF unable to apply focus style bug  */
  border: none;
  /*required for proper track sizing in FF*/ }

input[type=range]::-moz-range-track {
  height: 3px;
  background: #ddd;
  border: none; }

input[type=range]::-moz-range-thumb {
  border: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #7159B5;
  margin-top: -9.09091px; }

/*hide the outline behind the border*/
input[type=range]:-moz-focusring {
  outline: 1px solid white;
  outline-offset: -1px; }

input[type=range]:focus::-moz-range-track {
  background: #ccc; }

input[type=range]::-ms-track {
  height: 3px;
  /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
  background: transparent;
  /*leave room for the larger thumb to overflow with a transparent border */
  border-color: transparent;
  border-width: 6px 0;
  /*remove default tick marks*/
  color: transparent; }

input[type=range]::-ms-fill-lower {
  background: #777; }

input[type=range]::-ms-fill-upper {
  background: #ddd; }

input[type=range]::-ms-thumb {
  border: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #7159B5; }

input[type=range]:focus::-ms-fill-lower {
  background: #888; }

input[type=range]:focus::-ms-fill-upper {
  background: #ccc; }

input[type=range]::-ms-track {
  height: 3px;
  /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
  background: transparent;
  /*leave room for the larger thumb to overflow with a transparent border */
  border-color: transparent;
  border-width: 6px 0;
  /*remove default tick marks*/
  color: transparent; }

input[type=range]::-ms-fill-lower {
  background: #777; }

input[type=range]::-ms-fill-upper {
  background: #ddd; }

input[type=range]::-ms-thumb {
  border: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #7159B5; }

input[type=range]:focus::-ms-fill-lower {
  background: #888; }

input[type=range]:focus::-ms-fill-upper {
  background: #ccc; }

.input-group .input-group-addon {
  background-color: #e0e0e0; }
  .input-group .input-group-addon [type="checkbox"] + label {
    padding-left: 18px;
    height: 13px; }
  .input-group .input-group-addon [type="radio"] + label {
    padding-left: 24px;
    height: 13px; }

.input-group ::-webkit-input-placeholder {
  padding-left: 1rem; }

.input-group :-moz-placeholder {
  /* Firefox 18- */
  padding-left: 1rem; }

.input-group ::-moz-placeholder {
  /* Firefox 19+ */
  padding-left: 1rem; }

.input-group :-ms-input-placeholder {
  padding-left: 1rem; }

.input-group span {
  z-index: 10; }

.input-group .form-control {
  margin-top: 3px; }

/* ==========================================================================
   $BASE-PICKER
   ========================================================================== */
/**
 * Note: the root picker element should *NOT* be styled more than what's here.
 */
.picker {
  font-size: 16px;
  text-align: left;
  line-height: 1.2;
  color: #000000;
  position: absolute;
  z-index: 10000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

/**
 * The picker input element.
 */
.picker__input {
  cursor: default; }

/**
 * When the picker is opened, the input element is "activated".
 */
.picker__input.picker__input--active {
  border-color: #0089ec; }

/** 
 * The holder is the only "scrollable" top-level container element.
 */
.picker__holder {
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }

/*!
 * Default mobile-first, responsive styling for pickadate.js
 * Demo: http://amsul.github.io/pickadate.js
 */
/**
 * Note: the root picker element should *NOT* be styled more than what's here.
 */
/**
 * Make the holder and frame fullscreen.
 */
.picker__holder,
.picker__frame {
  bottom: 0;
  left: 0;
  right: 0;
  top: 100%; }

/**
 * The holder should overlay the entire screen.
 */
.picker__holder {
  position: fixed;
  -webkit-transition: background 0.15s ease-out, top 0s 0.15s;
  -moz-transition: background 0.15s ease-out, top 0s 0.15s;
  transition: background 0.15s ease-out, top 0s 0.15s;
  -webkit-backface-visibility: hidden; }

/**
 * The frame that bounds the box contents of the picker.
 */
.picker__frame {
  position: absolute;
  margin: 0 auto;
  min-width: 256px;
  width: 300px;
  max-height: 350px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out; }

@media (min-height: 28.875em) {
  .picker__frame {
    overflow: visible;
    top: auto;
    bottom: -100%;
    max-height: 80%; } }

@media (min-height: 40.125em) {
  .picker__frame {
    margin-bottom: 7.5%; } }

/**
 * The wrapper sets the stage to vertically align the box contents.
 */
.picker__wrap {
  display: table;
  width: 100%;
  height: 100%; }

@media (min-height: 28.875em) {
  .picker__wrap {
    display: block; } }

/**
 * The box contains all the picker contents.
 */
.picker__box {
  background: #ffffff;
  display: table-cell;
  vertical-align: middle; }

@media (min-height: 28.875em) {
  .picker__box {
    display: block;
    border: 1px solid #777777;
    border-top-color: #898989;
    border-bottom-width: 0;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    -webkit-box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24);
    box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24); } }

/**
 * When the picker opens...
 */
.picker--opened .picker__holder {
  top: 0;
  background: transparent;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#1E000000,endColorstr=#1E000000)";
  zoom: 1;
  background: rgba(0, 0, 0, 0.32);
  -webkit-transition: background 0.15s ease-out;
  -moz-transition: background 0.15s ease-out;
  transition: background 0.15s ease-out; }

.picker--opened .picker__frame {
  top: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1; }

@media (min-height: 35.875em) {
  .picker--opened .picker__frame {
    top: 10%;
    bottom: 20%auto; } }

/**
 * For `large` screens, transform into an inline picker.
 */
/* ==========================================================================
   CUSTOM MATERIALIZE STYLES
   ========================================================================== */
.picker__input.picker__input--active {
  border-color: #e3f2fd; }

.picker__frame {
  margin: 0 auto;
  max-width: 325px; }

@media (min-height: 38.875em) {
  .picker--opened .picker__frame {
    top: 10%;
    bottom: auto; } }

/* ==========================================================================
   $BASE-DATE-PICKER
   ========================================================================== */
/**
 * The picker box.
 */
.picker__box {
  padding: 0; }

/**
 * The header containing the month and year stuff.
 */
.picker__header {
  text-align: center;
  position: relative;
  margin-bottom: 20px; }

/**
 * The month and year labels.
 */
.picker__month,
.picker__year {
  display: inline-block;
  margin-left: .25em;
  margin-right: .25em; }

/**
 * The month and year selectors.
 */
.picker__select--month,
.picker__select--year {
  height: 2em;
  padding: 0;
  margin-left: .25em;
  margin-right: .25em;
  margin-top: 1rem; }

.picker__select--month.browser-default {
  display: inline;
  background-color: #FFFFFF;
  width: 40%; }

.picker__select--year.browser-default {
  display: inline;
  background-color: #FFFFFF;
  width: 25%; }

.picker__select--month:focus,
.picker__select--year:focus {
  border-color: rgba(0, 0, 0, 0.05); }

/**
 * The month navigation buttons.
 */
.picker__nav--prev,
.picker__nav--next {
  position: absolute;
  padding: .5em 1.55em;
  width: 1em;
  height: 1em;
  box-sizing: content-box;
  bottom: 0; }

.picker__nav--prev {
  left: -1em;
  padding-right: 1.25em; }

.picker__nav--next {
  right: -1em;
  padding-left: 1.25em; }

.picker__nav--disabled,
.picker__nav--disabled:hover,
.picker__nav--disabled:before,
.picker__nav--disabled:before:hover {
  cursor: default;
  background: none;
  border-right-color: #f5f5f5;
  border-left-color: #f5f5f5; }

/**
 * The calendar table of dates
 */
.picker__table {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-size: 1rem;
  width: 100%;
  margin-top: .75em;
  margin-bottom: .5em; }

.picker__table th,
.picker__table td {
  text-align: center; }

.picker__table td {
  margin: 0;
  padding: 0; }

/**
 * The weekday labels
 */
.picker__weekday {
  width: 14.285714286%;
  font-size: .75em;
  padding-bottom: .25em;
  color: #999999;
  font-weight: 500;
  /* Increase the spacing a tad */ }

@media (min-height: 33.875em) {
  .picker__weekday {
    padding-bottom: .5em; } }

/**
 * The days on the calendar
 */
.picker__day--today {
  position: relative;
  color: #595959;
  letter-spacing: -.3;
  padding: .75rem 0;
  font-weight: 400;
  border: 1px solid transparent; }

.picker__day--disabled:before {
  border-top-color: #aaaaaa; }

.picker__day--infocus:hover {
  cursor: pointer;
  color: #000;
  font-weight: 500; }

.picker__day--outfocus {
  display: none;
  padding: .75rem 0;
  color: #fff; }

.picker__day--outfocus:hover {
  cursor: pointer;
  color: #dddddd;
  font-weight: 500; }

.picker__day--highlighted:hover,
.picker--focused .picker__day--highlighted {
  cursor: pointer; }

.picker__day--selected,
.picker__day--selected:hover,
.picker--focused .picker__day--selected {
  border-radius: 5px;
  -webkit-transform: scale(0.75);
  -moz-transform: scale(0.75);
  -ms-transform: scale(0.75);
  -o-transform: scale(0.75);
  transform: scale(0.75);
  background: #0089ec;
  color: #ffffff; }

.picker__day--disabled,
.picker__day--disabled:hover,
.picker--focused .picker__day--disabled {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;
  cursor: default; }

.picker__day--highlighted.picker__day--disabled,
.picker__day--highlighted.picker__day--disabled:hover {
  background: #bbbbbb; }

/**
 * The footer containing the "today", "clear", and "close" buttons.
 */
.picker__footer {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between; }

.picker__button--today,
.picker__button--clear,
.picker__button--close {
  border: 1px solid #ffffff;
  background: #ffffff;
  font-size: .8em;
  padding: 1rem 0 0.7rem 0;
  font-weight: bold;
  width: 33%;
  display: inline-block;
  vertical-align: bottom;
  text-transform: uppercase; }

.picker__button--today:hover,
.picker__button--clear:hover,
.picker__button--close:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
  border-bottom-color: #b1dcfb; }

.picker__button--today:focus,
.picker__button--clear:focus,
.picker__button--close:focus {
  background: #b1dcfb;
  border-color: rgba(0, 0, 0, 0.05);
  outline: none; }

.picker__button--today:before,
.picker__button--clear:before,
.picker__button--close:before {
  position: relative;
  display: inline-block;
  height: 0; }

.picker__button--today:before,
.picker__button--clear:before {
  content: " ";
  margin-right: .45em; }

.picker__button--today:before {
  top: -0.05em;
  width: 0;
  border-top: 0.66em solid #0059bc;
  border-left: .66em solid transparent; }

.picker__button--clear:before {
  top: -0.25em;
  width: .66em;
  border-top: 3px solid #ee2200; }

.picker__button--close:before {
  content: "\D7";
  top: -0.1em;
  vertical-align: top;
  font-size: 1.1em;
  margin-right: .35em;
  color: #777777; }

.picker__button--today[disabled],
.picker__button--today[disabled]:hover {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;
  cursor: default; }

.picker__button--today[disabled]:before {
  border-top-color: #aaaaaa; }

/* ==========================================================================
   CUSTOM MATERIALIZE STYLES
   ========================================================================== */
.picker__box {
  border-radius: 2px;
  overflow: hidden; }

.picker__date-display {
  text-align: center;
  background-color: #7159B5;
  color: #fff;
  padding-bottom: 15px;
  font-weight: 300; }

.picker__nav--prev:hover,
.picker__nav--next:hover {
  cursor: pointer;
  color: #000000;
  background: #ddd9e7; }

.picker__weekday-display {
  background-color: #6048a2;
  padding: 10px;
  font-weight: 200;
  letter-spacing: .5;
  font-size: 1rem;
  margin-bottom: 15px; }

.picker__month-display {
  text-transform: uppercase;
  font-size: 2rem; }

.picker__day-display {
  font-size: 4.5rem;
  font-weight: 400; }

.picker__year-display {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.4); }

.picker__calendar-container {
  padding: 0 1rem; }
  .picker__calendar-container thead {
    border: none; }

.picker__table {
  margin-top: 0;
  margin-bottom: .5em; }

.picker__day--infocus {
  color: #595959;
  letter-spacing: -.3;
  padding: .75rem 0;
  font-weight: 400;
  border: 1px solid transparent; }

.picker__day.picker__day--today {
  color: #7159B5; }

.picker__day.picker__day--today.picker__day--selected {
  color: #fff; }

.picker__weekday {
  font-size: .9rem; }

.picker__day--selected,
.picker__day--selected:hover,
.picker--focused .picker__day--selected {
  border-radius: 5px;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  background-color: #7159B5;
  color: #ffffff; }
  .picker__day--selected.picker__day--outfocus,
  .picker__day--selected:hover.picker__day--outfocus,
  .picker--focused .picker__day--selected.picker__day--outfocus {
    background-color: #ddd9e7; }

.picker__footer {
  text-align: right;
  padding: 5px 10px; }

.picker__close,
.picker__today {
  font-size: 1.1rem;
  padding: 0 0;
  color: #7159B5; }

.picker__nav--prev:before,
.picker__nav--next:before {
  content: " ";
  border-top: .5em solid transparent;
  border-bottom: .5em solid transparent;
  border-right: 0.75em solid #676767;
  width: 0;
  height: 0;
  display: block;
  margin: 0 auto; }

.picker__nav--next:before {
  border-right: 0;
  border-left: 0.75em solid #676767; }

button.picker__today:focus,
button.picker__clear:focus,
button.picker__close:focus {
  background-color: #ddd9e7; }

.picker__select--month,
.picker__select--year {
  display: inline-block; }

.picker__select--year {
  width: 30%; }

.author-box {
  padding: 3rem; }

@media (max-width: 772px) {
  .author-box {
    text-align: center; }
    .author-box img {
      margin-bottom: 2rem;
      display: inline; } }

.comments-list,
.reply-form {
  margin-bottom: 3rem; }
  .comments-list img,
  .reply-form img {
    max-width: 100px;
    border-radius: 50%; }
  .comments-list .row,
  .reply-form .row {
    margin-bottom: 2rem; }
  .comments-list .user-name,
  .reply-form .user-name {
    color: #000; }
  .comments-list .comment-date,
  .reply-form .comment-date {
    color: #666; }
  .comments-list .comment-text,
  .reply-form .comment-text {
    color: #9e9e9e; }
  .comments-list h4,
  .reply-form h4 {
    text-align: center; }
  @media (max-width: 543px) {
    .comments-list,
    .reply-form {
      text-align: center; }
      .comments-list img,
      .reply-form img {
        display: inline;
        margin-bottom: 1rem; }
      .comments-list .md-form,
      .reply-form .md-form {
        text-align: left; } }

.section-blog-fw .jumbotron, .section-blog-fw .author-box {
  text-align: center; }

.section-blog-fw h2 {
  margin-bottom: 1rem; }
  .section-blog-fw h2 a {
    color: #424242;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -ms-transition: 0.2s;
    transition: 0.2s; }
    .section-blog-fw h2 a:hover {
      color: #616161;
      -webkit-transition: 0.2s;
      -moz-transition: 0.2s;
      -o-transition: 0.2s;
      -ms-transition: 0.2s;
      transition: 0.2s; }

.section-blog-fw .excerpt, .section-blog-fw .post-text {
  margin-left: 10%;
  margin-right: 10%;
  text-align: justify; }
  @media (max-width: 992px) {
    .section-blog-fw .excerpt, .section-blog-fw .post-text {
      margin-left: 5%;
      margin-right: 5%; } }

.section-blog-fw hr {
  display: block; }

/* @import "mdb/pro/sections/pricing"; */
.testimonial-card .card-up {
  overflow: hidden;
  height: 120px; }

.testimonial-card .avatar {
  border-radius: 50%;
  height: 120px;
  width: 120px;
  margin: -65px auto 0;
  overflow: hidden; }

.testimonial-card .avatar img {
  border: 5px solid #fff;
  background: none repeat scroll 0 0 #FFFFFF;
  width: 100%; }

.testimonial-card .card-block {
  text-align: center; }

.testimonial-carousel, .question-carousel {
  text-align: center; }
  .testimonial-carousel .carousel-control, .question-carousel .carousel-control {
    background-image: none;
    color: black; }
    .testimonial-carousel .carousel-control span, .question-carousel .carousel-control span {
      font-size: 5rem; }
  .testimonial-carousel .testimonial, .question-carousel .testimonial, .testimonial-carousel .question-carousel .question, .question-carousel .testimonial-carousel .question, .question-carousel .question {
    margin-right: 15%;
    margin-left: 15%; }
    .testimonial-carousel .testimonial .avatar, .question-carousel .testimonial .avatar, .question-carousel .question .avatar {
      margin-bottom: 2rem; }
      .testimonial-carousel .testimonial .avatar img, .question-carousel .testimonial .avatar img, .question-carousel .question .avatar img {
        max-width: 170px; }
    .testimonial-carousel .testimonial h4, .question-carousel .testimonial h4, .testimonial-carousel .question-carousel .question h4, .question-carousel .testimonial-carousel .question h4, .question-carousel .question h4 {
      margin-bottom: 1.3rem;
      font-weight: 500; }
    .testimonial-carousel .testimonial h5, .question-carousel .testimonial h5, .testimonial-carousel .question-carousel .question h5, .question-carousel .testimonial-carousel .question h5, .question-carousel .question h5 {
      margin-bottom: 0.9rem;
      color: #424242;
      font-weight: 400; }
    .testimonial-carousel .testimonial p, .question-carousel .testimonial p, .testimonial-carousel .question-carousel .question p, .question-carousel .testimonial-carousel .question p, .question-carousel .question p {
      color: #666; }

.feature-box, .section-features {
  text-align: center; }
  .feature-box .feature-title, .section-features .feature-title {
    font-weight: 500;
    margin-bottom: 1rem; }
  .feature-box .features-big .feature-title, .section-features .features-big .feature-title {
    margin-top: 2rem;
    margin-bottom: 1rem; }
  .feature-box .features-big .fa, .section-features .features-big .fa {
    font-size: 4rem; }
  .feature-box .features-small, .section-features .features-small {
    text-align: left; }
    .feature-box .features-small .fa, .section-features .features-small .fa {
      font-size: 2rem; }

.card .form-header {
  color: #fff;
  text-align: center;
  margin-top: -50px;
  margin-bottom: 3rem;
  padding: 1rem;
  border-radius: 2px; }
  .card .form-header h3 {
    margin: 0;
    padding: 0.7rem; }

.call .fa {
  margin-right: 5px; }

:focus {
  outline: none !important; }

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

.btn.btn-radio.active, .wizard > .actions a.btn-radio.active {
  background: linear-gradient(45deg, #4ca8c5 0%, #76c7e8 100%) !important; }

.btn, .wizard > .actions a,
.wizard > .actions a:hover,
.wizard > .actions a:active {
  font-weight: 500; }
  .btn:active,
  .wizard > .actions a:active {
    transition: all .1s ease; }
  .site-header .btn, .site-header .wizard > .actions a, .wizard > .actions .site-header a {
    box-shadow: none; }
  .btn.btn-primary[href], .fso-widget .btn.btn-submit[href], .fso-widget .wizard > .actions a.btn-submit[href], .wizard > .actions a[href] {
    background: linear-gradient(0, #7159B5 0%, #76c7e8 100%);
    box-shadow: 0 4px 14px -4px rgba(113, 89, 181, 0.5), 0 2px 25px -5px rgba(113, 89, 181, 0.1), 0 1px 1px rgba(113, 89, 181, 0.05); }
  .btn.btn-success, .wizard .actions a.btn[href$='#finish'], .wizard > .actions .actions a[href$='#finish'], .wizard > .actions a.btn-success {
    box-shadow: 0 10px 14px -4px rgba(120, 205, 98, 0.5), 0 2px 25px -5px rgba(120, 205, 98, 0.1), 0 1px 1px rgba(120, 205, 98, 0.05); }
    .btn.btn-success:hover, .wizard .actions a.btn:hover[href$='#finish'], .wizard > .actions .actions a:hover[href$='#finish'],
    .wizard > .actions a.btn-success:hover {
      box-shadow: 0 15px 14px -4px rgba(120, 205, 98, 0.5), 0 2px 25px -5px #78cd62, 0 1px 1px #78cd62; }
  .btn.btn-info, .wizard > .actions a.btn-info {
    box-shadow: 0 10px 14px -4px rgba(127, 147, 243, 0.5), 0 2px 25px -5px rgba(127, 147, 243, 0.1), 0 1px 1px rgba(127, 147, 243, 0.05); }
    .btn.btn-info:hover,
    .wizard > .actions a.btn-info:hover {
      box-shadow: 0 15px 14px -4px rgba(127, 147, 243, 0.5), 0 2px 25px -5px #7f93f3, 0 1px 1px #7f93f3; }
  .btn.btn-white:not(.btn-clr), .wizard > .actions a.btn-white:not(.btn-clr), .btn.btn-default, .wizard > .actions a.btn-default {
    box-shadow: 0 4px 14px -4px rgba(21, 88, 168, 0.2), 0 2px 25px -5px rgba(21, 88, 168, 0.1), 0 1px 1px rgba(21, 88, 168, 0.05);
    border: none !important;
    color: #69828e; }
  .btn.btn-decorated, .wizard > .actions a.btn-decorated {
    position: relative;
    overflow: visible;
    margin-bottom: 2rem; }
    .btn.btn-decorated:hover,
    .wizard > .actions a.btn-decorated:hover {
      transform: translateY(-2px); }
      .btn.btn-decorated:hover:before, .wizard > .actions a.btn-decorated:hover:before {
        transform: translateX(-110%) scale(1.1); }
      .btn.btn-decorated:hover:after, .wizard > .actions a.btn-decorated:hover:after {
        transform: translateX(110%) scale(1.1); }
    .btn.btn-decorated:active,
    .wizard > .actions a.btn-decorated:active {
      background: transparent !important;
      box-shadow: 0 0 0 4px #59d053;
      color: #59d053;
      transform: translateY(0); }
    .btn.btn-decorated:before, .wizard > .actions a.btn-decorated:before, .btn.btn-decorated:after, .wizard > .actions a.btn-decorated:after {
      content: '';
      display: block;
      position: absolute;
      top: -1rem;
      bottom: -1rem;
      width: 2rem;
      background-repeat: no-repeat;
      transition: all 0.1s ease; }
    .btn.btn-decorated:before, .wizard > .actions a.btn-decorated:before {
      left: 0;
      transform: translateX(-100%);
      background-position: left center;
      background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDIzLjAuMywgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAzMy42IDk1LjEiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMzLjYgOTUuMTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOnVybCgjU1ZHSURfMV8pO30KCS5zdDF7ZmlsbDp1cmwoI1NWR0lEXzJfKTt9Cgkuc3Qye2ZpbGw6dXJsKCNTVkdJRF8zXyk7fQo8L3N0eWxlPgo8Zz4KCQoJCTxsaW5lYXJHcmFkaWVudCBpZD0iU1ZHSURfMV8iIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iLTEyLjIxMTUiIHkxPSItMTYuNzA1MiIgeDI9IjEyMy4wODkxIiB5Mj0iMzU1LjAzMDEiIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoMSAwIDAgLTEgMCA5NS45MTU2KSI+CgkJPHN0b3AgIG9mZnNldD0iMCIgc3R5bGU9InN0b3AtY29sb3I6I0I5NDFEQyIvPgoJCTxzdG9wICBvZmZzZXQ9IjAuNSIgc3R5bGU9InN0b3AtY29sb3I6Izc4NzVGRiIvPgoJCTxzdG9wICBvZmZzZXQ9IjEiIHN0eWxlPSJzdG9wLWNvbG9yOiM3NkY3RUYiLz4KCTwvbGluZWFyR3JhZGllbnQ+Cgk8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMjMuNywxYy0xLTEtMi43LTEuMy0zLjktMC41Yy0xLjYsMS4xLTEuOCwzLjMtMC41LDQuNmw5LjIsOS4yYzEuMiwxLjIsMywxLjEsNC4yLDBsMCwwYzEuMi0xLjIsMS4yLTMsMC00LjIKCQlMMjMuNywxeiIvPgoJCgkJPGxpbmVhckdyYWRpZW50IGlkPSJTVkdJRF8yXyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSItMy4wNDU1IiB5MT0iMTMuOTY1MiIgeDI9IjgzLjQzOTMiIHkyPSIyNTEuNTgwNCIgZ3JhZGllbnRUcmFuc2Zvcm09Im1hdHJpeCgxIDAgMCAtMSAwIDk1LjkxNTYpIj4KCQk8c3RvcCAgb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojQjk0MURDIi8+CgkJPHN0b3AgIG9mZnNldD0iMC41IiBzdHlsZT0ic3RvcC1jb2xvcjojNzg3NUZGIi8+CgkJPHN0b3AgIG9mZnNldD0iMSIgc3R5bGU9InN0b3AtY29sb3I6Izc2RjdFRiIvPgoJPC9saW5lYXJHcmFkaWVudD4KCTxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0xOSw0Ny41TDE5LDQ3LjVjMC0xLjctMS4zLTMtMi45LTNIM2MtMS43LDAtMy4xLDEuNC0zLDMuMmMwLjEsMS42LDEuNSwyLjgsMy4yLDIuOGgxMi45CgkJQzE3LjcsNTAuNSwxOSw0OS4yLDE5LDQ3LjVDMTksNDcuNiwxOSw0Ny42LDE5LDQ3LjV6Ii8+CgkKCQk8bGluZWFyR3JhZGllbnQgaWQ9IlNWR0lEXzNfIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjE5LjYzNjIiIHkxPSItOS4xMDg4IiB4Mj0iMTIwLjg1OCIgeTI9IjI2OC45OTU5IiBncmFkaWVudFRyYW5zZm9ybT0ibWF0cml4KDEgMCAwIC0xIDAgOTUuOTE1NikiPgoJCTxzdG9wICBvZmZzZXQ9IjAiIHN0eWxlPSJzdG9wLWNvbG9yOiNCOTQxREMiLz4KCQk8c3RvcCAgb2Zmc2V0PSIwLjUiIHN0eWxlPSJzdG9wLWNvbG9yOiM3ODc1RkYiLz4KCQk8c3RvcCAgb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNzZGN0VGIi8+Cgk8L2xpbmVhckdyYWRpZW50PgoJPHBhdGggY2xhc3M9InN0MiIgZD0iTTMyLjcsODAuOGMtMS4yLTEuMi0zLTEuMi00LjIsMEwxOS4zLDkwYy0xLjIsMS4yLTEuMiwzLjEsMCw0LjJjMC42LDAuNiwxLjMsMC45LDIuMSwwLjlzMS41LTAuMywyLjEtMC45CgkJbDkuMi05LjJDMzQsODMuOCwzMy45LDgyLDMyLjcsODAuOEMzMi44LDgwLjgsMzIuOCw4MC44LDMyLjcsODAuOHoiLz4KPC9nPgo8L3N2Zz4K"); }
    .btn.btn-decorated:after, .wizard > .actions a.btn-decorated:after {
      right: 0;
      background-position: right center;
      transform: translateX(100%);
      background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDIzLjAuMywgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAzMy43IDk1LjEiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMzLjcgOTUuMTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOnVybCgjU1ZHSURfMV8pO30KCS5zdDF7ZmlsbDp1cmwoI1NWR0lEXzJfKTt9Cgkuc3Qye2ZpbGw6dXJsKCNTVkdJRF8zXyk7fQo8L3N0eWxlPgo8Zz4KCQoJCTxsaW5lYXJHcmFkaWVudCBpZD0iU1ZHSURfMV8iIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iLTg0LjUwMTQiIHkxPSItMjQ0LjcwNzUiIHgyPSI1MC43OTkxIiB5Mj0iMTI3LjAyNzgiIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoMSAwIDAgLTEgMCA5NikiPgoJCTxzdG9wICBvZmZzZXQ9IjAiIHN0eWxlPSJzdG9wLWNvbG9yOiNCOTQxREMiLz4KCQk8c3RvcCAgb2Zmc2V0PSIwLjUiIHN0eWxlPSJzdG9wLWNvbG9yOiM3ODc1RkYiLz4KCQk8c3RvcCAgb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNzZGN0VGIi8+Cgk8L2xpbmVhckdyYWRpZW50PgoJPHBhdGggY2xhc3M9InN0MCIgZD0iTTUuMSw4MC43Yy0xLjItMS4yLTMtMS4xLTQuMiwwbDAsMGMtMS4yLDEuMi0xLjIsMywwLDQuMmw5LjIsOS4yYzEsMSwyLjcsMS4zLDMuOSwwLjUKCQljMS42LTEuMSwxLjgtMy4zLDAuNS00LjZMNS4xLDgwLjd6Ii8+CgkKCQk8bGluZWFyR3JhZGllbnQgaWQ9IlNWR0lEXzJfIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9Ii00Ni42MzUyIiB5MT0iLTE0Ni4xMDc4IiB4Mj0iMzkuODQ5NyIgeTI9IjkxLjUwNzQiIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoMSAwIDAgLTEgMCA5NikiPgoJCTxzdG9wICBvZmZzZXQ9IjAiIHN0eWxlPSJzdG9wLWNvbG9yOiNCOTQxREMiLz4KCQk8c3RvcCAgb2Zmc2V0PSIwLjUiIHN0eWxlPSJzdG9wLWNvbG9yOiM3ODc1RkYiLz4KCQk8c3RvcCAgb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojNzZGN0VGIi8+Cgk8L2xpbmVhckdyYWRpZW50PgoJPHBhdGggY2xhc3M9InN0MSIgZD0iTTMwLjUsNDQuNUgxNy42Yy0xLjYsMC0yLjksMS4zLTIuOSwzbDAsMGwwLDBjMCwxLjYsMS4zLDMsMi45LDNoMTMuMWMxLjcsMCwzLjEtMS40LDMtMy4yCgkJQzMzLjYsNDUuOCwzMi4yLDQ0LjUsMzAuNSw0NC41eiIvPgoJCgkJPGxpbmVhckdyYWRpZW50IGlkPSJTVkdJRF8zXyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSItODMuNDg4MSIgeTE9Ii0xNjIuMDY5MiIgeDI9IjE3LjczMzciIHkyPSIxMTYuMDM1NSIgZ3JhZGllbnRUcmFuc2Zvcm09Im1hdHJpeCgxIDAgMCAtMSAwIDk2KSI+CgkJPHN0b3AgIG9mZnNldD0iMCIgc3R5bGU9InN0b3AtY29sb3I6I0I5NDFEQyIvPgoJCTxzdG9wICBvZmZzZXQ9IjAuNSIgc3R5bGU9InN0b3AtY29sb3I6Izc4NzVGRiIvPgoJCTxzdG9wICBvZmZzZXQ9IjEiIHN0eWxlPSJzdG9wLWNvbG9yOiM3NkY3RUYiLz4KCTwvbGluZWFyR3JhZGllbnQ+Cgk8cGF0aCBjbGFzcz0ic3QyIiBkPSJNMSwxNC4zYzEuMiwxLjIsMywxLjIsNC4yLDBsOS4yLTkuMmMxLjItMS4yLDEuMi0zLjEsMC00LjJDMTMuOCwwLjMsMTMuMSwwLDEyLjMsMHMtMS41LDAuMy0yLjEsMC45TDEsMTAuMQoJCUMtMC4zLDExLjMtMC4yLDEzLjEsMSwxNC4zQzAuOSwxNC4zLDAuOSwxNC4zLDEsMTQuM3oiLz4KPC9nPgo8L3N2Zz4K"); }
  .btn.btn-radio, .wizard > .actions a.btn-radio {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 2px;
    text-shadow: 0 1px 0 #fff;
    box-shadow: none; }
    .btn.btn-radio.active, .wizard > .actions a.btn-radio.active {
      text-shadow: none; }

.currency, .table-price .order-now {
  white-space: nowrap;
  color: #78cd62;
  font-weight: 500; }
  .currency:before, .table-price .order-now:before {
    content: '\f155';
    font-family: 'fontawesome';
    display: inline-block;
    color: rgba(0, 0, 0, 0.3);
    margin-right: 0.2rem; }

@media (min-width: 768px) {
  hr.p-col {
    display: none; } }

.is-single .site-header .navbar {
  background-color: #fff; }

.is-single .main-content {
  overflow-x: hidden;
  padding: 110px 1rem 80px;
  flex: 1 0 auto; }

.is-single .page-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%; }

.is-single.is-topbar .main-content {
  padding: 145px 0 80px; }

.tab-content {
  padding: 0.7rem 1rem; }

.nav-tabs {
  padding: 0;
  margin: 0; }

.table-price {
  color: gray;
  font-size: 1.2rem; }
  .table-price thead td,
  .table-price thead th {
    text-align: center; }
  .table-price .order-now {
    font-size: 1.3rem;
    margin: 0;
    font-weight: 500;
    display: block; }
    .table-price .order-now .price-decimal {
      font-size: 0.9rem;
      position: relative;
      top: -5px;
      left: 2px;
      color: rgba(0, 0, 0, 0.6);
      border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .table-price tr td {
    transition: all 0.2s ease-in-out; }
    .table-price tr td:nth-child(2) {
      color: red; }
    .table-price tr td:hover {
      background: #7159B5;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); }
      .table-price tr td:hover .order-now {
        color: #ffffff; }
  .table-price tr:hover td:first-child {
    background: #7159B5;
    color: #ffffff; }

blockquote.blockquote {
  border-color: #7159B5; }

.discounts-banner {
  padding: 1rem 2.8rem;
  font-size: 1.8rem;
  background: rgba(0, 0, 0, 0.02); }
  .discounts-banner .display-3 {
    color: #cc3032; }
  .discounts-banner h3 {
    text-transform: uppercase;
    font-size: 2.5rem; }
  .discounts-banner p {
    margin: 0;
    font-size: 0.8rem;
    color: gray; }
  .discounts-banner .row {
    padding-bottom: 1rem;
    margin-bottom: 1rem; }

.set-background-elegant {
  background: rgba(0, 0, 0, 0.03); }
  .set-background-elegant h1 {
    font-size: 2rem;
    color: grey;
    text-shadow: 0 1px 0 #fff; }

@media (max-width: 543px) {
  .block-xs {
    display: block; } }

.is-faq .faq-title {
  margin: 2.5rem 0 1rem;
  text-transform: uppercase;
  font-size: 1.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07); }

.is-faq .accordion .panel {
  padding-left: 0; }
  .is-faq .accordion .panel-collapse {
    font-size: 1.1rem;
    box-sizing: border-box; }

.is-faq .accordion .panel-title .fa.fa-angle-down.rotate-icon {
  position: relative;
  right: -30px;
  color: silver; }

.is-faq .accordion .panel-title a {
  color: #323232;
  display: block;
  font-size: 1.3rem; }
  .is-faq .accordion .panel-title a:not(.collapsed) {
    font-weight: 400; }

.is-order .btn-group {
  margin-bottom: 3px; }

.btn-group-justified {
  display: flex;
  flex-direction: row;
  flex-flow: row wrap; }
  .btn-group-justified label {
    flex-grow: 1; }

.aside-title {
  line-height: 1em;
  text-align: right;
  color: gray;
  padding-top: 3px; }
  @media (max-width: 767px) {
    .aside-title {
      text-align: center;
      margin: 10px 0; } }
  .aside-title span.primary-text {
    font-weight: 500; }

.full-width {
  width: 100%; }

.map-overlay #map {
  position: relative;
  width: 100%;
  height: 430px;
  background: silver; }
  .map-overlay #map img {
    box-shadow: none !important; }

img:not([class*='z-depth']) {
  box-shadow: none !important; }

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

.is-contacts .fixed-action__contacts {
  display: none; }

.is-order .fixed-action__order {
  display: none; }

.is-loggedin .fixed-action__signin {
  display: none; }

.icon-lg {
  font-size: 90px; }

.icon-md {
  font-size: 60px; }

.icon-sm {
  font-size: 40px; }

.divider-new.divider-light:after, .divider-new.divider-light:before {
  height: 1px;
  background: #ccc; }

.seo-item-description {
  text-align: left;
  opacity: 0.65;
  font-size: 1.1rem; }

.is-single img[style*='float: right'] {
  margin-left: 1.3rem;
  margin-top: 1rem; }

.is-single img[style*='float: left'] {
  margin-right: 1.3rem;
  margin-top: 1rem; }

input[type='text'], input[type='password'], input[type='email'], input[type='tel'] {
  padding: 0 0.4rem; }

.bootbox.modal .modal-dialog {
  z-index: 1000;
  padding: 15vh 0; }
  .bootbox.modal .modal-dialog .modal-content {
    border-radius: 5px;
    border: none; }

input[name='discount-code'] {
  padding: 0.31rem 0; }

.fullreg {
  display: none; }

a.link-decoration {
  border-bottom: 1px dashed silver; }

.tab-content .aside-title {
  padding-top: 1rem; }

.nav-tabs.tabs-order {
  box-shadow: none;
  margin-top: 2rem; }
  .nav-tabs.tabs-order .nav-item {
    text-align: center;
    color: grey; }
    #orderform .nav-tabs.tabs-order .nav-item {
      width: 50%; }
  .nav-tabs.tabs-order a.nav-link {
    color: grey;
    border-bottom: 2px solid transparent; }
    .nav-tabs.tabs-order a.nav-link.active, .nav-tabs.tabs-order a.nav-link.active:focus {
      background: rgba(0, 0, 0, 0.02);
      color: #252525;
      border-color: #7159B5;
      border-radius: 0; }

.intl-tel-input.allow-dropdown.separate-dial-code {
  position: absolute;
  line-height: 2.1em; }
  .intl-tel-input.allow-dropdown.separate-dial-code div.selected-flag {
    position: absolute;
    top: 0;
    min-width: 100px;
    background: transparent;
    font-size: 1.6em; }
  .intl-tel-input.allow-dropdown.separate-dial-code .iti-arrow {
    right: 0;
    display: none; }

.hide {
  display: none; }

.error-ico {
  position: relative;
  top: 10px;
  display: inline-block;
  width: 49px;
  height: 38px; }

a.user-actions {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  white-space: nowrap !important;
  padding-right: 15px; }
  @media (min-width: 992px) {
    a.user-actions {
      max-width: 160px; } }
  a.user-actions:after {
    display: none; }

/* add icons for file formats */
a.download {
  position: relative; }

a[href^='/download'].download:before {
  font-family: 'essay';
  display: inline-block;
  margin-right: 7px; }

.file-upl {
  cursor: pointer;
  font-size: 0.75rem;
  margin: 0 3px;
  border-radius: 4px;
  padding: 1px 10px 0 4px;
  animation-duration: 0.4s !important; }
  .file-upl__remove:before {
    content: '\f0c6';
    font-family: 'fontawesome';
    display: inline-block;
    transition: all 0.2s ease-out;
    border-radius: 50%;
    text-align: center;
    font-size: 1.2rem;
    transform: scale(1);
    position: relative;
    top: 2px;
    border: 1px solid transparent; }
  .file-upl:hover {
    color: darkred; }
    .file-upl:hover .file-upl__remove:before {
      transform: rotate(90deg) scale(0.9);
      border-color: #f34235;
      color: #f34235;
      content: '\f00d'; }
  .file-upl:active {
    transform: scale(0.97);
    opacity: 0.75; }

.tabs-default {
  box-shadow: none; }
  .tabs-default li.nav-item a {
    font-size: 1.4rem;
    font-weight: normal; }
    .tabs-default li.nav-item a {
      box-shadow: inset 0 -2px 0 -1px #7159B5;
      transition: all 0.2s ease;
      color: #000; }
    .tabs-default li.nav-item a.active, .tabs-default li.nav-item a.active:focus, .tabs-default li.nav-item a.active:hover {
      border-radius: 0;
      box-shadow: inset 0 -4px 0 -1px #7159B5;
      color: #252525; }
  .tabs-default + .tab-content {
    padding: 2.4rem;
    background: #fbfbfb;
    border-bottom: 1px solid #eeeeee;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1); }

.bootbox .modal-body {
  font-size: 1.04em; }

.file-input {
  border-radius: 5px; }
  .file-input .kv-fileinput-caption {
    border: none; }
  .file-input .btn .hidden-xs, .file-input .wizard > .actions a .hidden-xs, .wizard > .actions .file-input a .hidden-xs {
    display: none; }
  .file-input .btn.btn-primary, .file-input .fso-widget .btn.btn-submit, .fso-widget .file-input .btn.btn-submit, .file-input .fso-widget .wizard > .actions a.btn-submit, .fso-widget .wizard > .actions .file-input a.btn-submit, .file-input .wizard > .actions a, .wizard > .actions .file-input a, .file-input .btn.btn-default, .file-input .wizard > .actions a.btn-default, .wizard > .actions .file-input a.btn-default {
    border-radius: 10px;
    width: 110px; }
    .file-input .btn.btn-primary:after, .file-input .fso-widget .btn.btn-submit:after, .fso-widget .file-input .btn.btn-submit:after, .file-input .fso-widget .wizard > .actions a.btn-submit:after, .fso-widget .wizard > .actions .file-input a.btn-submit:after, .file-input .wizard > .actions a:after, .wizard > .actions .file-input a:after, .file-input .btn.btn-default:after, .file-input .wizard > .actions a.btn-default:after, .wizard > .actions .file-input a.btn-default:after {
      display: inline-block;
      padding-top: 5px;
      content: 'Browse'; }
    .file-input .btn.btn-primary:before, .file-input .fso-widget .btn.btn-submit:before, .fso-widget .file-input .btn.btn-submit:before, .file-input .fso-widget .wizard > .actions a.btn-submit:before, .fso-widget .wizard > .actions .file-input a.btn-submit:before, .file-input .wizard > .actions a:before, .wizard > .actions .file-input a:before, .file-input .btn.btn-default:before, .file-input .wizard > .actions a.btn-default:before, .wizard > .actions .file-input a.btn-default:before {
      font-family: 'fontawesome';
      content: '\f115'; }
  .file-input .btn.btn-default, .file-input .wizard > .actions a.btn-default, .wizard > .actions .file-input a.btn-default {
    width: 34px;
    height: 34px;
    border-radius: 50% !important;
    box-shadow: none;
    padding: 0; }
    .file-input .btn.btn-default:hover,
    .file-input .wizard > .actions a.btn-default:hover, .wizard > .actions .file-input a.btn-default:hover {
      position: relative;
      background: #fff !important;
      color: #dd4e42; }
    .file-input .btn.btn-default:after, .file-input .wizard > .actions a.btn-default:after, .wizard > .actions .file-input a.btn-default:after {
      content: ''; }
    .file-input .btn.btn-default:before, .file-input .wizard > .actions a.btn-default:before, .wizard > .actions .file-input a.btn-default:before {
      content: '\f1f8'; }

#claimform .aside-title {
  font-size: 1rem;
  color: #252525; }

#claimform .rev-btn-group {
  margin: 0 0 10px; }
  #claimform .rev-btn-group .btn, #claimform .rev-btn-group .wizard > .actions a, .wizard > .actions #claimform .rev-btn-group a {
    border-radius: 2px;
    margin: 2px 0;
    box-shadow: none;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: grey; }
    #claimform .rev-btn-group .btn:hover,
    #claimform .rev-btn-group .wizard > .actions a:hover, .wizard > .actions #claimform .rev-btn-group a:hover {
      color: #252525; }
    #claimform .rev-btn-group .btn.active, #claimform .rev-btn-group .wizard > .actions a.active, .wizard > .actions #claimform .rev-btn-group a.active {
      background: #7159B5 !important;
      color: #ffffff;
      box-shadow: inset 0 5px 7px rgba(0, 0, 0, 0.2); }

@keyframes e-loading {
  from {
    transform: scale(1) translateY(0); }
  30% {
    transform: scale(0) translateY(30px); }
  60% {
    transform: scale(1) translateY(0); } }

.loading-animation i {
  transform: scale(1);
  display: inline-block;
  margin-left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: e-loading 1.5s ease-out infinite both; }
  .loading-animation i:nth-child(1) {
    animation-delay: 0.1s;
    background-color: #d83437 !important; }
  .loading-animation i:nth-child(2) {
    animation-delay: 0.2s;
    background-color: #4bae4f !important; }
  .loading-animation i:nth-child(3) {
    animation-delay: 0.3s;
    background-color: #02a8f3 !important; }
  .loading-animation i:nth-child(4) {
    animation-delay: 0.4s;
    background-color: #ffcc00 !important; }

.is-order a[href='/order#auth_customer?action=register'] {
  display: none; }

.order-details {
  padding: 50px 60px; }

.select-livesearch {
  width: 100%; }

.clickable, #gift [data-role="banner-close"] {
  cursor: pointer; }
  .clickable:hover, #gift :hover[data-role="banner-close"] {
    opacity: 0.75; }

.required:after {
  content: ' *';
  color: red; }

i.tip {
  opacity: 0;
  display: inline-block;
  cursor: pointer;
  font-size: 1rem !important;
  transition: all 0.2s ease-in-out;
  color: silver;
  transform: scale(0.1) rotate(-15deg);
  padding: 1px; }

#orderform .row:hover i.tip,
#edit-order-modal .row:hover i.tip {
  opacity: 1;
  animation: bounceIn 0.45s ease-in-out both; }
  #orderform .row:hover i.tip:hover,
  #edit-order-modal .row:hover i.tip:hover {
    color: red !important; }

.view.overlay > img {
  max-width: 100%; }

.select2-container--default .select2-results__option[aria-disabled='true'] {
  display: none; }

.is-login .article-header {
  visibility: hidden; }

.article-thumbnail {
  display: inline-block;
  margin-right: 1.2rem;
  border-radius: 2px; }
  @media (max-width: 991px) {
    .article-thumbnail {
      display: block;
      width: 100%;
      float: none;
      margin: 0 0 1rem; } }

#modal-signin .modal-dialog {
  margin-top: 0;
  margin-bottom: 0; }

#modal-signin input {
  max-width: 200px; }

.order-pay,
.order-view {
  margin: 0 auto; }

@media (max-width: 1199px) {
  .order-view {
    display: block;
    margin-top: 13px; }
  .order-pay {
    display: block; }
  .order-download,
  .btn.download-button,
  .wizard > .actions a.download-button {
    display: block; } }

body.is-mobile .hide-on-mobiles {
  display: none; }

.select2.btn-lock .select2-selection__arrow {
  display: none; }

.dropdown-toggle.clr-caret:after {
  display: none; }

.text-nowrap {
  white-space: nowrap !important; }

.legal-info {
  font-size: 11px;
  color: grey; }

textarea.textarea {
  overflow-y: auto;
  resize: vertical;
  transition: none; }

@media (max-width: 543px) {
  .user-nav {
    text-align: center; }
    .user-nav li {
      margin: 0 0 11px; }
      .user-nav li a {
        font-size: 1.1rem; } }

#paperType + .select2,
#subj + .select2 {
  width: 100% !important; }

.hide {
  display: none !important; }

.transparent-bg {
  background-color: transparent !important; }

body.is-order .aside-title .primary-text {
  color: #000 !important; }

.order-total-price {
  font-weight: 700; }
  .order-total-price ~ .fa {
    display: inline-block;
    transform: scale(0.75) rotate(-5deg); }

.main-nav-container {
  transition: all 0.15s ease; }
  .main-nav-container a.nav-link {
    position: relative; }

.marker-icon {
  background: #7159B5;
  color: #ffffff;
  display: inline-block;
  border-radius: 50%;
  padding: 0.3rem; }

.page-footer.site-footer_3 {
  border-top: 2px solid #7159B5;
  box-shadow: none; }
  .page-footer.site-footer_3 .column-title {
    opacity: 0.8; }
  .page-footer.site-footer_3 i[class^='icon-'] {
    color: #7159B5; }

.page-footer .footer-copyright .opacity-5 {
  opacity: 1; }

h1.article-heading {
  font-size: 1.8rem;
  line-height: 1.2em;
  font-weight: 700;
  position: relative; }
  body.is-single h1.article-heading {
    margin-bottom: 2rem; }
  h1.article-heading:after {
    display: none; }

a.nav-link.nav-phone span.phone__icon .fa {
  left: 1px;
  top: -1px; }

.featured-icon {
  display: inline-block;
  min-height: 85px;
  min-width: 85px;
  color: #ffffff;
  padding: 1.4rem;
  border-radius: 20px 0;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.1);
  background: linear-gradient(to bottom, #21c4e1 0%, #288dd1 100%); }

body.is-contacts form[action='/contacts'] {
  box-shadow: 0 4px 15px -5px rgba(0, 0, 0, 0.1);
  padding: 3rem 2rem 2rem;
  border: 1px solid #fafafa; }

#init-chat {
  position: relative;
  z-index: 1001 !important; }
  #init-chat span {
    font-size: 0.9rem;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1); }
    #init-chat span:before {
      content: '';
      width: 100%;
      height: 2px;
      mix-blend-mode: overlay;
      background: linear-gradient(to left, transparent 0%, white 50%, transparent 100%);
      position: absolute;
      display: inline-block;
      top: 0;
      left: 50%;
      transform: translateX(-50%); }

.input[type=number].number-for-range {
  font-weight: bold !important; }

.is-about.is-tpl-about .aditional-content div[class^="col"] i[class*="ico"] {
  background: #7159B5; }

/* 
 * Unique styles for landing page
 * Url: /referral-program
 */
.is-landing-referral-program img[data-lazy]:not([data-aos]), .is-landing-referral-program .section-promo .section__content .col-right, .is-landing-referral-program .section-benefits .benefits__icon, .is-landing-referral-program .things-to-keep .things__icon, .is-landing-referral-program .section-pre-footer .section__fallback {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.is-landing-referral-program .things-to-keep .things__item::after {
  content: '';
  width: 10px;
  height: 10px;
  background: linear-gradient(70deg, #b941dc 0%, #7875ff 50%, #76f7ef 100%) no-repeat center top;
  border-radius: 50%;
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease-out; }

.is-landing-referral-program .things-to-keep .things__item:hover::after, .is-landing-referral-program .things-to-keep .active.things__item::after {
  transform: scale(1);
  opacity: 1; }

.is-landing-referral-program .section-benefits .benefits__item::after {
  counter-increment: section;
  content: counter(section);
  color: #9bacb6;
  font-size: 20px;
  font-size: 1.42857rem;
  font-weight: 600;
  line-height: 1.1em;
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  transition: all 0.2s ease-out; }
  @media (max-width: 767px) {
    .is-landing-referral-program .section-benefits .benefits__item::after {
      color: #5eb3dc; } }

.is-landing-referral-program .section-benefits .benefits__item:hover::after, .is-landing-referral-program .section-benefits .active.benefits__item::after {
  color: #76ccf6; }

.section__heading {
  font-size: 30px;
  font-size: 2.14286rem;
  font-weight: bold;
  line-height: 1.3;
  color: #3b454b; }
  @media (max-width: 767px) {
    .section__heading {
      font-size: 25px;
      font-size: 1.78571rem; } }
  @media (max-width: 543px) {
    .section__heading {
      font-size: 23px;
      font-size: 1.64286rem; } }
  .section__heading em {
    display: inline-block;
    background-repeat: no-repeat;
    background-image: linear-gradient(#7ac8ed, #7ac8ed);
    background-position-x: 0;
    background-position-y: 1ch;
    background-size: 160px 14px;
    transition: background-size 0.4s ease;
    color: inherit; }

.section__button-cta {
  white-space: nowrap !important; }

.is-landing-referral-program .main-content {
  padding-bottom: 0 !important; }

.is-landing-referral-program img[data-lazy]:not([data-aos]) {
  opacity: 0;
  transition: opacity 0.3s ease; }
  .is-landing-referral-program img[data-lazy]:not([data-aos]).loaded {
    opacity: 1; }

.is-landing-referral-program .section-promo {
  background: linear-gradient(70deg, #bb4adb 10%, #7673eb 50%, #8bebe5 100%) center;
  transition: background-size 1s ease;
  color: #fff;
  padding: 105px 0;
  position: relative; }
  .is-landing-referral-program .section-promo::before {
    content: '';
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMjg0NS44IDMyOCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjg0NS44IDMyODsiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+LnN0MHtmaWxsLXJ1bGU6ZXZlbm9kZDtjbGlwLXJ1bGU6ZXZlbm9kZDtmaWxsOiNGRkZGRkY7fTwvc3R5bGU+PHBhdGggY2xhc3M9InN0MCIgZD0iTS0yLjYsMGM1NjYuNCw1NjMuMywyODUzLDE5MiwyODUzLDE5MnYzMHYxMDZILTIuNlYwIi8+PC9zdmc+) no-repeat center 100.1%/101vw;
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 100vh;
    display: block; }
  .is-landing-referral-program .section-promo .section__heading {
    font-size: 44px;
    font-size: 3.14286rem;
    font-weight: bold;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 3rem; }
    @media (max-width: 991px) {
      .is-landing-referral-program .section-promo .section__heading {
        font-size: 36px;
        font-size: 2.57143rem; } }
    @media (max-width: 767px) {
      .is-landing-referral-program .section-promo .section__heading {
        font-size: 42px;
        font-size: 3rem; } }
    @media (max-width: 543px) {
      .is-landing-referral-program .section-promo .section__heading {
        font-size: 38px;
        font-size: 2.71429rem; } }
    .is-landing-referral-program .section-promo .section__heading em {
      background-position-x: 1.5ch;
      background-size: 218px 14px; }
      @media (max-width: 991px) {
        .is-landing-referral-program .section-promo .section__heading em {
          background-size: 170px 14px; } }
      @media (max-width: 767px) {
        .is-landing-referral-program .section-promo .section__heading em {
          background-size: 196px 14px; } }
      @media (max-width: 543px) {
        .is-landing-referral-program .section-promo .section__heading em {
          background-size: 178px 14px; } }
  .is-landing-referral-program .section-promo .section__subheading {
    font-size: 16px;
    font-size: 1.14286rem;
    font-weight: 400;
    line-height: 1.3;
    max-width: 730px; }
    @media (max-width: 543px) {
      .is-landing-referral-program .section-promo .section__subheading {
        font-size: 1rem; } }
  .is-landing-referral-program .section-promo .section__content {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    min-height: 680px;
    height: 70vh; }
    @media (max-width: 991px) {
      .is-landing-referral-program .section-promo .section__content {
        min-height: 500px;
        padding-top: 50px;
        height: auto; } }
    @media (max-width: 767px) {
      .is-landing-referral-program .section-promo .section__content {
        padding: 0;
        min-height: unset; } }
    .is-landing-referral-program .section-promo .section__content .col-left {
      position: relative;
      z-index: 1; }
      @media (max-width: 991px) {
        .is-landing-referral-program .section-promo .section__content .col-left {
          flex: 1 0 40%; } }
      @media (max-width: 767px) {
        .is-landing-referral-program .section-promo .section__content .col-left {
          margin-bottom: 60px; } }
      @media (max-width: 543px) {
        .is-landing-referral-program .section-promo .section__content .col-left {
          margin-bottom: 30px; } }
    .is-landing-referral-program .section-promo .section__content .col-right {
      position: relative;
      flex: 0 0 430px; }
      @media (max-width: 1199px) {
        .is-landing-referral-program .section-promo .section__content .col-right {
          flex-basis: 380px; } }
      @media (max-width: 991px) {
        .is-landing-referral-program .section-promo .section__content .col-right {
          flex-basis: 300px;
          margin-right: -4rem; } }
      @media (max-width: 767px) {
        .is-landing-referral-program .section-promo .section__content .col-right {
          display: none; } }
      .is-landing-referral-program .section-promo .section__content .col-right .character {
        position: relative; }
        @media (max-width: 1199px) {
          .is-landing-referral-program .section-promo .section__content .col-right .character {
            left: 30px; } }
        @media (max-width: 991px) {
          .is-landing-referral-program .section-promo .section__content .col-right .character {
            left: 0; } }
        .is-landing-referral-program .section-promo .section__content .col-right .character__body {
          width: 430px;
          max-width: 100%;
          margin: 0 auto;
          position: relative; }
        .is-landing-referral-program .section-promo .section__content .col-right .character__overlay {
          position: absolute;
          top: 120px;
          left: 20px;
          max-width: 500px;
          width: 451px; }
          .is-landing-referral-program .section-promo .section__content .col-right .character__overlay:nth-child(1) {
            z-index: 0; }
          @media (max-width: 1199px) {
            .is-landing-referral-program .section-promo .section__content .col-right .character__overlay {
              top: 106px;
              width: 410px;
              left: 14px; } }
          @media (max-width: 991px) {
            .is-landing-referral-program .section-promo .section__content .col-right .character__overlay {
              top: 85px;
              width: 107%;
              left: 11px; } }
        .is-landing-referral-program .section-promo .section__content .col-right .character__overlay_1 {
          position: absolute;
          top: -50px;
          left: 33px;
          max-width: 430px;
          width: 430px; }
          .is-landing-referral-program .section-promo .section__content .col-right .character__overlay_1:nth-child(1) {
            z-index: 0; }
          @media (max-width: 1199px) {
            .is-landing-referral-program .section-promo .section__content .col-right .character__overlay_1 {
              top: -48px;
              left: 14px;
              width: 400px; } }
          @media (max-width: 991px) {
            .is-landing-referral-program .section-promo .section__content .col-right .character__overlay_1 {
              top: -35px;
              width: 100%; } }
  .is-landing-referral-program .section-promo .section__trees {
    position: absolute;
    right: 0;
    transform: translate(25%, 0); }
    @media (max-width: 1199px) {
      .is-landing-referral-program .section-promo .section__trees {
        transform: translate(30%, 0); } }
    @media (max-width: 991px) {
      .is-landing-referral-program .section-promo .section__trees {
        transform: translate(35%, -25%) scale(0.9); } }
    @media (max-width: 767px) {
      .is-landing-referral-program .section-promo .section__trees {
        transform: translate(40%, 0) scale(0.7); } }
  @media (max-width: 767px) {
    .is-landing-referral-program .section-promo .section__character {
      transform: translateX(120px); } }

.is-landing-referral-program .section-benefits .benefits__wrapper {
  counter-reset: section;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.5rem;
  overflow-x: auto;
  padding: 1.2rem 1rem;
  margin-top: -18rem;
  /* Let's get this party started */
  /* Track */
  /* Handle */ }
  .is-landing-referral-program .section-benefits .benefits__wrapper::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
    height: 7px; }
  .is-landing-referral-program .section-benefits .benefits__wrapper::-webkit-scrollbar-track {
    background: #fff;
    box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    background: transparent;
    visibility: visible; }
  .is-landing-referral-program .section-benefits .benefits__wrapper:hover::-webkit-scrollbar-track {
    visibility: visible; }
  .is-landing-referral-program .section-benefits .benefits__wrapper::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: linear-gradient(70deg, #b941dc 0%, #7875ff 50%, #76f7ef 100%) no-repeat center top;
    visibility: visible; }
  .is-landing-referral-program .section-benefits .benefits__wrapper:hover::-webkit-scrollbar-thumb {
    visibility: visible; }
  @media (max-width: 991px) {
    .is-landing-referral-program .section-benefits .benefits__wrapper {
      margin-top: -14rem; }
      html:not(.iPhone):not(.iPad) .is-landing-referral-program .section-benefits .benefits__wrapper {
        scroll-snap-points-y: repeat(100vw);
        scroll-snap-type: x mandatory; } }

.is-landing-referral-program .section-benefits .benefits__item {
  background: #f7f9fa;
  padding: 2rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease-in;
  position: relative;
  min-width: unset;
  background: #fff;
  box-shadow: 0 5px 20px rgba(12, 104, 127, 0.15); }
  html:not(.iPhone):not(.iPad) .is-landing-referral-program .section-benefits .benefits__item {
    scroll-snap-align: center; }
  @media (max-width: 991px) {
    .is-landing-referral-program .section-benefits .benefits__item {
      min-width: 520px; } }
  @media (max-width: 767px) {
    .is-landing-referral-program .section-benefits .benefits__item {
      background: #fff;
      box-shadow: 0 4px 14px -4px rgba(21, 88, 168, 0.2), 0 2px 25px -5px rgba(21, 88, 168, 0.1), 0 1px 1px rgba(21, 88, 168, 0.05);
      flex-flow: column;
      min-width: unset;
      width: 85vw;
      max-width: 380px; } }
  .is-landing-referral-program .section-benefits .benefits__item:nth-of-type(2) .benefits__icon {
    max-width: 88px; }
  .is-landing-referral-program .section-benefits .benefits__item:hover {
    transform: translateY(-5px); }
    .is-landing-referral-program .section-benefits .benefits__item:hover .benefits__heading {
      color: #5eb3dc; }
    .is-landing-referral-program .section-benefits .benefits__item:hover .benefits__icon img:nth-child(2) {
      display: block; }
    @media (max-width: 767px) {
      .is-landing-referral-program .section-benefits .benefits__item:hover .benefits__icon img:nth-child(1) {
        display: block; } }

.is-landing-referral-program .section-benefits .benefits__icon {
  position: relative;
  margin-right: 1rem;
  max-width: 105px;
  width: 105px;
  padding-bottom: 1em;
  transition: all 0.2s ease; }
  @media (max-width: 767px) {
    .is-landing-referral-program .section-benefits .benefits__icon {
      margin: 0 auto;
      margin-bottom: 1rem; } }
  .is-landing-referral-program .section-benefits .benefits__icon img {
    transition: all 0.2s ease; }
  .is-landing-referral-program .section-benefits .benefits__icon img:nth-child(1) {
    display: block; }
  .is-landing-referral-program .section-benefits .benefits__icon img:nth-child(2) {
    display: none;
    position: absolute;
    top: 0;
    left: 0; }
    @media (max-width: 767px) {
      .is-landing-referral-program .section-benefits .benefits__icon img:nth-child(2) {
        display: block; } }

.is-landing-referral-program .section-benefits .benefits__heading {
  transition: all 0.2s ease;
  font-size: 20px;
  font-size: 1.42857rem;
  font-weight: 600;
  line-height: 1.1em;
  text-align: center; }
  @media (max-width: 767px) {
    .is-landing-referral-program .section-benefits .benefits__heading {
      color: #5eb3dc; } }

.is-landing-referral-program .section-benefits .benefits__subheading {
  font-size: 16px;
  font-size: 1.14286rem;
  font-weight: 600;
  line-height: 1.1em;
  color: #656667;
  margin: 0.5rem auto;
  font-weight: 500;
  text-align: center; }

.is-landing-referral-program .how-work {
  padding-top: 3.5rem; }
  @media (max-width: 991px) {
    .is-landing-referral-program .how-work {
      padding-top: 3.5rem; } }
  @media (max-width: 543px) {
    .is-landing-referral-program .how-work {
      padding-top: 1.5rem;
      padding-bottom: 0; } }
  .is-landing-referral-program .how-work .section__wrapper {
    display: flex;
    justify-content: space-between; }
    @media (max-width: 991px) {
      .is-landing-referral-program .how-work .section__wrapper {
        flex-direction: column-reverse; } }
    .is-landing-referral-program .how-work .section__wrapper .col__left {
      flex: 0 0 50%;
      max-width: 560px; }
      @media (max-width: 991px) {
        .is-landing-referral-program .how-work .section__wrapper .col__left {
          flex: 0 0 100%;
          max-width: 100%; } }
      @media (max-width: 767px) {
        .is-landing-referral-program .how-work .section__wrapper .col__left {
          display: none; } }
    .is-landing-referral-program .how-work .section__wrapper .col__right {
      padding-left: 50px; }
      @media (max-width: 991px) {
        .is-landing-referral-program .how-work .section__wrapper .col__right {
          padding-left: 0;
          margin-bottom: 3.5rem;
          min-width: unset; } }
      @media (max-width: 767px) {
        .is-landing-referral-program .how-work .section__wrapper .col__right {
          margin-bottom: 0; } }
  .is-landing-referral-program .how-work .section__heading {
    font-weight: bold;
    margin-bottom: 1em; }
    .is-landing-referral-program .how-work .section__heading em {
      background-size: 117px 14px; }
      @media (max-width: 991px) {
        .is-landing-referral-program .how-work .section__heading em {
          background-size: 107px 14px; } }
      @media (max-width: 991px) {
        .is-landing-referral-program .how-work .section__heading em {
          background-size: 92px 14px; } }
      @media (max-width: 991px) {
        .is-landing-referral-program .how-work .section__heading em {
          background-size: 86px 14px; } }
  .is-landing-referral-program .how-work__list {
    counter-reset: section; }
  .is-landing-referral-program .how-work__item {
    position: relative;
    font-size: 18px;
    font-size: 1.28571rem;
    font-weight: 400;
    line-height: 1.1em;
    padding-left: 50px;
    margin-bottom: 1em;
    max-width: 535px; }
    @media (max-width: 543px) {
      .is-landing-referral-program .how-work__item {
        max-width: 500px; } }
    @media screen and (max-width: 425px) {
      .is-landing-referral-program .how-work__item {
        max-width: 350px; } }
    @media screen and (max-width: 370px) {
      .is-landing-referral-program .how-work__item {
        width: 315px; } }
    @media screen and (max-width: 340px) {
      .is-landing-referral-program .how-work__item {
        width: 295px; } }
    .is-landing-referral-program .how-work__item:hover, .is-landing-referral-program .how-work__item.active {
      font-size: 18px;
      font-size: 1.28571rem;
      font-weight: 500;
      line-height: 1.1em; }
    .is-landing-referral-program .how-work__item::after {
      counter-increment: section;
      content: counter(section);
      color: #ffffff;
      font-size: 16px;
      font-size: 1.14286rem;
      font-weight: 600;
      line-height: 1.1em;
      position: absolute;
      left: 0;
      top: 0;
      border-radius: 4px;
      background-color: #baced9;
      padding: 4px;
      width: 24px;
      height: 25px;
      text-align: center;
      transition: all 0.2s ease-out; }
    .is-landing-referral-program .how-work__item:hover::after, .is-landing-referral-program .how-work__item.active::after {
      background: linear-gradient(70deg, #7875ff 0%, #51b9fa 100%);
      width: 40px;
      text-align: left;
      padding-left: 5px; }

.is-landing-referral-program .things-to-keep {
  padding-top: 76px; }
  @media (max-width: 1199px) {
    .is-landing-referral-program .things-to-keep {
      padding-top: 3rem; } }
  @media (max-width: 543px) {
    .is-landing-referral-program .things-to-keep {
      padding-top: 2rem; } }
  .is-landing-referral-program .things-to-keep .section__heading {
    text-align: center;
    font-weight: bold;
    margin-bottom: 1em; }
    .is-landing-referral-program .things-to-keep .section__heading em {
      background-size: 117px 14px; }
      @media (max-width: 991px) {
        .is-landing-referral-program .things-to-keep .section__heading em {
          background-size: 110px 14px; } }
      @media (max-width: 991px) {
        .is-landing-referral-program .things-to-keep .section__heading em {
          background-size: 92px 14px; } }
      @media (max-width: 991px) {
        .is-landing-referral-program .things-to-keep .section__heading em {
          background-size: 84px 14px; } }
      @media screen and (max-width: 337px) {
        .is-landing-referral-program .things-to-keep .section__heading em {
          background-position-x: 14%; } }
  .is-landing-referral-program .things-to-keep .things__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    grid-gap: 2rem 1.5rem;
    overflow-x: auto;
    padding: 1rem;
    margin-left: -1rem;
    /* Let's get this party started */
    /* Track */
    /* Handle */ }
    .is-landing-referral-program .things-to-keep .things__wrapper::-webkit-scrollbar {
      -webkit-appearance: none;
      width: 7px;
      height: 7px; }
    .is-landing-referral-program .things-to-keep .things__wrapper::-webkit-scrollbar-track {
      background: #fff;
      box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.07);
      border-radius: 10px;
      background: transparent;
      visibility: visible; }
    .is-landing-referral-program .things-to-keep .things__wrapper:hover::-webkit-scrollbar-track {
      visibility: visible; }
    .is-landing-referral-program .things-to-keep .things__wrapper::-webkit-scrollbar-thumb {
      border-radius: 10px;
      background: linear-gradient(70deg, #b941dc 0%, #7875ff 50%, #76f7ef 100%) no-repeat center top;
      visibility: visible; }
    .is-landing-referral-program .things-to-keep .things__wrapper:hover::-webkit-scrollbar-thumb {
      visibility: visible; }
    @media (max-width: 991px) {
      .is-landing-referral-program .things-to-keep .things__wrapper {
        grid-template-columns: repeat(6, 1fr);
        grid-gap: 2rem; }
        html:not(.iPhone):not(.iPad) .is-landing-referral-program .things-to-keep .things__wrapper {
          scroll-snap-points-y: repeat(100vw);
          scroll-snap-type: x mandatory; } }
    @media (max-width: 767px) {
      .is-landing-referral-program .things-to-keep .things__wrapper {
        margin-left: 0; } }
  .is-landing-referral-program .things-to-keep .things__item {
    background: #f7f9fa;
    padding: 20px 28px 20px 12px;
    border-radius: 16px;
    display: flex;
    transition: all 0.15s ease-in;
    position: relative;
    min-width: unset; }
    html:not(.iPhone):not(.iPad) .is-landing-referral-program .things-to-keep .things__item {
      scroll-snap-align: center; }
    @media (max-width: 991px) {
      .is-landing-referral-program .things-to-keep .things__item {
        min-width: 340px; } }
    @media (max-width: 767px) {
      .is-landing-referral-program .things-to-keep .things__item {
        background: #fff;
        box-shadow: 0 4px 14px -4px rgba(21, 88, 168, 0.2), 0 2px 25px -5px rgba(21, 88, 168, 0.1), 0 1px 1px rgba(21, 88, 168, 0.05);
        flex-flow: column;
        display: flex;
        padding: 20px 28px 20px 28px;
        align-items: center;
        min-width: unset;
        width: 85vw;
        max-width: 380px; } }
    .is-landing-referral-program .things-to-keep .things__item:hover {
      background: #fff;
      box-shadow: 0 5px 20px rgba(12, 104, 127, 0.15);
      transform: translateY(-5px); }
      .is-landing-referral-program .things-to-keep .things__item:hover .things__heading {
        color: #5eb3dc; }
      .is-landing-referral-program .things-to-keep .things__item:hover .things__icon {
        filter: unset; }
  .is-landing-referral-program .things-to-keep .things__icon {
    margin-right: 1rem;
    margin-top: 0.5em;
    min-width: 27px;
    width: 27px;
    transition: all 0.2s ease;
    filter: sepia(1) hue-rotate(157deg) grayscale(0.8) brightness(0.9); }
    @media (max-width: 767px) {
      .is-landing-referral-program .things-to-keep .things__icon {
        margin: 0 auto;
        margin-bottom: 1rem;
        filter: unset; } }
  .is-landing-referral-program .things-to-keep .things__heading {
    transition: all 0.2s ease;
    font-size: 17px;
    font-size: 1.21429rem;
    font-weight: 600;
    line-height: 1.1em; }
  .is-landing-referral-program .things-to-keep .things__subheading {
    color: #9bacb6;
    margin: 0.5rem auto;
    font-weight: 500; }
  .is-landing-referral-program .things-to-keep .things__description {
    font-size: 15px; }

.is-landing-referral-program .faq {
  padding-top: 85px; }

@media (min-width: 992px) and (max-width: 1199px) {
  .is-landing-referral-program .faq {
    padding-top: 80px; } }

@media (min-width: 768px) and (max-width: 991px) {
  .is-landing-referral-program .faq {
    padding-top: 70px; } }
  @media (max-width: 543px) {
    .is-landing-referral-program .faq {
      padding-top: 40px; } }
  .is-landing-referral-program .faq .section__header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 8px;
    background-color: #f7f9fa;
    text-align: center;
    margin-bottom: 36px;
    padding: 0.8rem 1rem;
    min-height: 72px; }
  .is-landing-referral-program .faq .section__img {
    position: absolute;
    top: -10px;
    left: 25px;
    width: 125px; }
    @media (max-width: 1199px) {
      .is-landing-referral-program .faq .section__img {
        top: -20px;
        left: -45px; } }
    @media (max-width: 991px) {
      .is-landing-referral-program .faq .section__img {
        left: -55px;
        width: 90px; } }
    @media (max-width: 991px) {
      .is-landing-referral-program .faq .section__img {
        top: -30px; } }
    @media (max-width: 543px) {
      .is-landing-referral-program .faq .section__img {
        display: none; } }
  .is-landing-referral-program .faq .section__heading {
    margin-bottom: 0;
    font-size: 30px;
    font-weight: bold; }
    @media (max-width: 1199px) {
      .is-landing-referral-program .faq .section__heading {
        font-size: 28px; } }
    @media (max-width: 991px) {
      .is-landing-referral-program .faq .section__heading {
        font-size: 25px; } }
    @media (max-width: 543px) {
      .is-landing-referral-program .faq .section__heading {
        font-size: 22px; } }
  .is-landing-referral-program .faq .accordion {
    position: relative;
    z-index: 1; }
    @media (min-width: 992px) {
      .is-landing-referral-program .faq .accordion {
        display: flex;
        justify-content: space-between; } }
    .is-landing-referral-program .faq .accordion .container__left,
    .is-landing-referral-program .faq .accordion .container__right {
      flex: 0 0 calc(50% - 8px); }
    .is-landing-referral-program .faq .accordion .panel {
      border-bottom: 0;
      box-shadow: 0 10px 35px #d9e3e7;
      border-radius: 8px;
      background-color: #ffffff;
      margin-bottom: 24px;
      padding: 0 1.5rem; }
      @media (max-width: 543px) {
        .is-landing-referral-program .faq .accordion .panel {
          margin-bottom: 15px; } }
    .is-landing-referral-program .faq .accordion .panel-title {
      margin-bottom: 0; }
      .is-landing-referral-program .faq .accordion .panel-title a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem 0;
        color: #3b454b;
        font-size: 18px;
        font-weight: 600;
        min-height: 82px; }
        @media (max-width: 767px) {
          .is-landing-referral-program .faq .accordion .panel-title a {
            font-size: 16px;
            min-height: 60px; } }
        .is-landing-referral-program .faq .accordion .panel-title a i {
          width: 26px;
          min-width: 26px;
          height: 16px;
          margin: 0 0 0 80px;
          background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMjYuNSAxNy41IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNi41IDE3LjU7IiB4bWw6c3BhY2U9InByZXNlcnZlIj48c3R5bGUgdHlwZT0idGV4dC9jc3MiPi5zdDB7ZmlsbDojOUJBQ0I2O308L3N0eWxlPjxnPjxnPjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0yNS4xLDJjMS4xLDEuMSwxLjIsMi45LDAsNC4xYzAsMCwwLDAsMCwwbC05LjgsOS42Yy0xLjIsMS4xLTMsMS4xLTQuMiwwTDEuNCw2LjFDMC4zLDUsMC4yLDMuMiwxLjQsMmMwLDAsMCwwLDAsMGMxLjItMS4xLDMtMS4xLDQuMiwwbDcuNyw3LjZMMjAuOSwyQzIyLjEsMC44LDI0LDAuOCwyNS4xLDJMMjUuMSwyeiIvPjwvZz48L2c+PC9zdmc+) no-repeat center; }
          @media (max-width: 543px) {
            .is-landing-referral-program .faq .accordion .panel-title a i {
              width: 20px;
              min-width: 20px;
              margin: 0 0 0 10px; } }
          .is-landing-referral-program .faq .accordion .panel-title a i::before {
            content: ""; }
        .is-landing-referral-program .faq .accordion .panel-title a i.rotate-element {
          background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMjYuNSAxNy41IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNi41IDE3LjU7IiB4bWw6c3BhY2U9InByZXNlcnZlIj48c3R5bGUgdHlwZT0idGV4dC9jc3MiPi5zdDB7ZmlsbDojN0Y3RkZEO308L3N0eWxlPjxnPjxnPjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0yNS4xLDJjMS4xLDEuMSwxLjIsMi45LDAsNC4xbDAsMGwtOS44LDkuNmMtMS4yLDEuMS0zLDEuMS00LjIsMEwxLjQsNi4xQzAuMyw1LDAuMiwzLjIsMS40LDJsMCwwYzEuMi0xLjEsMy0xLjEsNC4yLDBsNy43LDcuNkwyMC45LDJDMjIuMSwwLjgsMjQsMC44LDI1LjEsMkwyNS4xLDJ6Ii8+PC9nPjwvZz48L3N2Zz4=) no-repeat center; }
    .is-landing-referral-program .faq .accordion .panel-collapse p {
      border-top: 3px solid #7ac8ed;
      line-height: 22px;
      padding: 1rem 0 1.2rem;
      margin-bottom: 0; }

.is-landing-referral-program .section-pre-footer {
  position: relative;
  padding: .4rem;
  margin-top: -5em; }
  @media screen and (min-width: 2100px) {
    .is-landing-referral-program .section-pre-footer {
      margin-top: -100px; } }
  @media (max-width: 991px) {
    .is-landing-referral-program .section-pre-footer {
      margin-top: -7em; } }
  .is-landing-referral-program .section-pre-footer .section__fallback {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    top: 0;
    background: url("../img/landing/referral-program/bg-purple.svg") no-repeat center bottom/cover; }
    @media screen and (min-width: 2100px) {
      .is-landing-referral-program .section-pre-footer .section__fallback {
        background: url("../img/landing/referral-program/bg-purple.svg") no-repeat center 50px/100vw auto; } }
    .is-landing-referral-program .section-pre-footer .section__fallback img {
      position: absolute;
      bottom: 35%;
      max-width: 951px;
      width: 48vw; }
      .is-landing-referral-program .section-pre-footer .section__fallback img:nth-of-type(1) {
        left: -23%; }
        @media (max-width: 991px) {
          .is-landing-referral-program .section-pre-footer .section__fallback img:nth-of-type(1) {
            left: calc(50% - 685px); } }
        @media (max-width: 767px) {
          .is-landing-referral-program .section-pre-footer .section__fallback img:nth-of-type(1) {
            display: none; } }
      .is-landing-referral-program .section-pre-footer .section__fallback img:nth-of-type(2) {
        right: -23%;
        max-width: 890px; }
        @media (max-width: 991px) {
          .is-landing-referral-program .section-pre-footer .section__fallback img:nth-of-type(2) {
            right: calc(50% - 685px); } }
        @media (max-width: 767px) {
          .is-landing-referral-program .section-pre-footer .section__fallback img:nth-of-type(2) {
            display: none; } }
  .is-landing-referral-program .section-pre-footer .section__wrapper {
    text-align: center;
    margin-bottom: 2rem;
    padding: 3rem 4rem 2rem;
    position: relative;
    transform: translateY(1vw);
    margin-top: 10vw; }
    @media (max-width: 991px) {
      .is-landing-referral-program .section-pre-footer .section__wrapper {
        padding: 5rem 4rem 2rem; } }
    @media (min-width: 1200px) {
      .is-landing-referral-program .section-pre-footer .section__wrapper {
        max-width: calc(1180px - 2rem); } }
    @media (max-width: 767px) {
      .is-landing-referral-program .section-pre-footer .section__wrapper {
        margin-bottom: 0; }
        .is-landing-referral-program .section-pre-footer .section__wrapper:after {
          display: none; } }
    @media (max-width: 543px) {
      .is-landing-referral-program .section-pre-footer .section__wrapper {
        padding: 7rem 0 2rem; } }
  .is-landing-referral-program .section-pre-footer .section__heading {
    font-size: 30px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 3rem; }
    @media (max-width: 991px) {
      .is-landing-referral-program .section-pre-footer .section__heading {
        font-size: 25px; } }
    @media (max-width: 767px) {
      .is-landing-referral-program .section-pre-footer .section__heading {
        font-size: 20px;
        margin-bottom: 2rem; } }
    @media (max-width: 543px) {
      .is-landing-referral-program .section-pre-footer .section__heading {
        font-size: 16px; } }
    .is-landing-referral-program .section-pre-footer .section__heading span {
      color: #9cdcfa; }
  .is-landing-referral-program .section-pre-footer .section__button-cta {
    padding: 1rem 7.7rem; }
    @media (max-width: 1199px) {
      .is-landing-referral-program .section-pre-footer .section__button-cta {
        padding: 1rem 6rem; } }
    @media (max-width: 767px) {
      .is-landing-referral-program .section-pre-footer .section__button-cta {
        padding: 1rem 4rem; } }
    .is-landing-referral-program .section-pre-footer .section__button-cta:before {
      background: url("../img/landing/referral-program/btn-decor-white.svg") no-repeat;
      background-size: cover;
      width: 123%;
      height: 96px;
      transform: translate(-9%, -5%); }
      @media (max-width: 1199px) {
        .is-landing-referral-program .section-pre-footer .section__button-cta:before {
          background-size: contain;
          height: auto;
          transform: translate(-9%, 5%); } }
      @media (max-width: 767px) {
        .is-landing-referral-program .section-pre-footer .section__button-cta:before {
          transform: translate(-9%, 11%); } }
    .is-landing-referral-program .section-pre-footer .section__button-cta:after {
      background: none; }

.is-landing-referral-program img[data-lazy]:not([data-aos]), .is-landing-referral-program .section-promo .section__content .col-right, .is-landing-referral-program .section-benefits .benefits__icon, .is-landing-referral-program .things-to-keep .things__icon, .is-landing-referral-program .section-pre-footer .section__fallback {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.is-tpl-uniquelanding-referral-program .section-promo {
  padding-top: 3.5rem; }
  .is-tpl-uniquelanding-referral-program .section-promo .section__heading {
    white-space: normal;
    text-transform: capitalize; }
  .is-tpl-uniquelanding-referral-program .section-promo .section__wrapper {
    display: grid;
    grid-template-columns: auto 550px;
    grid-gap: 40px;
    align-items: center; }
    @media (max-width: 991px) {
      .is-tpl-uniquelanding-referral-program .section-promo .section__wrapper {
        display: block; } }
  .is-tpl-uniquelanding-referral-program .section-promo .section__content {
    margin-bottom: 2rem; }
    @media (max-width: 991px) {
      .is-tpl-uniquelanding-referral-program .section-promo .section__content {
        max-width: 580px; } }
  .is-tpl-uniquelanding-referral-program .section-promo .section__image .figure-compound {
    margin-left: auto;
    margin-right: auto; }

.is-tpl-uniquelanding-referral-program .section-how-it-works .section__image {
  padding-top: 100px; }
  @media (max-width: 991px) {
    .is-tpl-uniquelanding-referral-program .section-how-it-works .section__image {
      padding-top: 0;
      margin: 0 auto; } }
  @media (max-width: 543px) {
    .is-tpl-uniquelanding-referral-program .section-how-it-works .section__image .image_desktop {
      display: none; } }
  .is-tpl-uniquelanding-referral-program .section-how-it-works .section__image .image_mob {
    display: none; }
    @media (max-width: 543px) {
      .is-tpl-uniquelanding-referral-program .section-how-it-works .section__image .image_mob {
        display: block; } }

.is-tpl-uniquelanding-referral-program .section-how-it-works .section__heading {
  text-align: center;
  margin-bottom: 90px; }
  @media (max-width: 991px) {
    .is-tpl-uniquelanding-referral-program .section-how-it-works .section__heading {
      margin-bottom: 70px;
      text-align: start; } }
  @media (max-width: 543px) {
    .is-tpl-uniquelanding-referral-program .section-how-it-works .section__heading {
      margin-bottom: 30px;
      text-align: center; } }

.is-tpl-uniquelanding-referral-program .section-how-it-works .section__content {
  display: flex;
  align-items: flex-start;
  gap: 40px; }
  @media (max-width: 991px) {
    .is-tpl-uniquelanding-referral-program .section-how-it-works .section__content {
      flex-direction: column; } }

.is-tpl-uniquelanding-referral-program .section-subscribe .section__button-cta {
  margin-top: 4px; }

.is-tpl-uniquelanding-referral-program .section-subscribe .section__sub {
  margin-top: 1rem; }

.is-tpl-uniquelanding-referral-program .steps-list__item {
  padding-left: 120px; }
  @media (max-width: 991px) {
    .is-tpl-uniquelanding-referral-program .steps-list__item {
      padding-left: 90px; } }
  @media (max-width: 543px) {
    .is-tpl-uniquelanding-referral-program .steps-list__item {
      padding-left: 50px; } }
  .is-tpl-uniquelanding-referral-program .steps-list__item:nth-child(even) .steps-list__inner {
    margin-left: 0; }
    @media (max-width: 767px) {
      .is-tpl-uniquelanding-referral-program .steps-list__item:nth-child(even) .steps-list__inner {
        margin-left: 0; } }
  .is-tpl-uniquelanding-referral-program .steps-list__item:not(:last-child):after {
    left: 15px; }

@media (max-width: 991px) {
  .is-tpl-uniquelanding-referral-program .steps-list__inner {
    max-width: none; } }

.is-tpl-uniquelanding-referral-program .steps-list__title {
  font-weight: 600 !important;
  font-size: 22px;
  line-height: 33px; }

.is-tpl-uniquelanding-referral-program .steps-list__text a {
  text-decoration: underline; }

.is-tpl-uniquelanding-referral-program .steps-list__mark {
  left: 0;
  transform: none;
  top: 0; }

.is-landing-referral-program img[data-lazy]:not([data-aos]), .is-landing-referral-program .section-promo .section__content .col-right, .is-landing-referral-program .section-benefits .benefits__icon, .is-landing-referral-program .things-to-keep .things__icon, .is-landing-referral-program .section-pre-footer .section__fallback {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.is-tpl-uniquelanding-welcome .section-promo {
  padding-top: 3.5rem; }
  .is-tpl-uniquelanding-welcome .section-promo .section__heading {
    white-space: normal;
    text-transform: capitalize; }
  .is-tpl-uniquelanding-welcome .section-promo .section__wrapper {
    display: grid;
    grid-template-columns: auto 500px;
    grid-gap: 40px;
    align-items: center; }
    @media (max-width: 991px) {
      .is-tpl-uniquelanding-welcome .section-promo .section__wrapper {
        display: block; } }
  .is-tpl-uniquelanding-welcome .section-promo .section__content {
    margin-bottom: 2rem; }
    @media (max-width: 991px) {
      .is-tpl-uniquelanding-welcome .section-promo .section__content {
        max-width: 580px; } }
  .is-tpl-uniquelanding-welcome .section-promo .section__image .figure-compound {
    margin-left: auto;
    margin-right: auto; }

@media (max-width: 991px) {
  .is-tpl-uniquelanding-welcome .section-how-it-works .section__image {
    padding-top: 0;
    margin: 0 auto; } }

@media (max-width: 543px) {
  .is-tpl-uniquelanding-welcome .section-how-it-works .section__image .image_desktop {
    display: none; } }

.is-tpl-uniquelanding-welcome .section-how-it-works .section__image .image_mob {
  display: none; }
  @media (max-width: 543px) {
    .is-tpl-uniquelanding-welcome .section-how-it-works .section__image .image_mob {
      display: block; } }

.is-tpl-uniquelanding-welcome .section-how-it-works .section__heading {
  text-align: center;
  margin-bottom: 90px; }
  @media (max-width: 991px) {
    .is-tpl-uniquelanding-welcome .section-how-it-works .section__heading {
      margin-bottom: 70px;
      text-align: start; } }
  @media (max-width: 543px) {
    .is-tpl-uniquelanding-welcome .section-how-it-works .section__heading {
      margin-bottom: 30px;
      text-align: center; } }

.is-tpl-uniquelanding-welcome .section-how-it-works .section__content {
  display: flex;
  align-items: center;
  gap: 40px; }
  @media (max-width: 991px) {
    .is-tpl-uniquelanding-welcome .section-how-it-works .section__content {
      flex-direction: column; } }

.is-tpl-uniquelanding-welcome .section-subscribe .section__subheading {
  margin-bottom: 20px; }

.is-tpl-uniquelanding-welcome .section-subscribe .section__button-cta {
  margin-top: 4px; }

.is-tpl-uniquelanding-welcome .section-subscribe .section__sub {
  margin-top: 1rem; }

.is-tpl-uniquelanding-welcome .steps-list__item {
  padding-left: 120px; }
  .is-tpl-uniquelanding-welcome .steps-list__item:last-child {
    margin-bottom: 0; }
  @media (max-width: 991px) {
    .is-tpl-uniquelanding-welcome .steps-list__item {
      padding-left: 90px; } }
  @media (max-width: 543px) {
    .is-tpl-uniquelanding-welcome .steps-list__item {
      padding-left: 50px; } }
  .is-tpl-uniquelanding-welcome .steps-list__item:nth-child(even) .steps-list__inner {
    margin-left: 0; }
    @media (max-width: 767px) {
      .is-tpl-uniquelanding-welcome .steps-list__item:nth-child(even) .steps-list__inner {
        margin-left: 0; } }
  .is-tpl-uniquelanding-welcome .steps-list__item:not(:last-child):after {
    left: 15px; }

@media (max-width: 991px) {
  .is-tpl-uniquelanding-welcome .steps-list__inner {
    max-width: none; } }

.is-tpl-uniquelanding-welcome .steps-list__title {
  font-weight: 600 !important;
  font-size: 22px;
  line-height: 33px; }

.is-tpl-uniquelanding-welcome .steps-list__text a {
  text-decoration: underline; }

.is-tpl-uniquelanding-welcome .steps-list__mark {
  left: 0;
  transform: none;
  top: 0; }

.is-tpl-uniquelanding-welcome .students-testimonials {
  padding: 7rem 0 3rem; }
  .is-tpl-uniquelanding-welcome .students-testimonials .section__wrapper {
    position: relative; }
  .is-tpl-uniquelanding-welcome .students-testimonials .section__header {
    text-align: center;
    margin-bottom: 45px; }
    @media (max-width: 767px) {
      .is-tpl-uniquelanding-welcome .students-testimonials .section__header {
        margin-bottom: 1rem; } }
  .is-tpl-uniquelanding-welcome .students-testimonials .section__subheading {
    max-width: 836px;
    margin-left: auto;
    margin-right: auto; }
  .is-tpl-uniquelanding-welcome .students-testimonials .section__logos {
    display: flex;
    align-items: center;
    justify-content: center; }
    @media (max-width: 543px) {
      .is-tpl-uniquelanding-welcome .students-testimonials .section__logos {
        flex-wrap: wrap; } }
  .is-tpl-uniquelanding-welcome .students-testimonials .section__logo {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-bottom: 20px; }
    @media (max-width: 767px) {
      .is-tpl-uniquelanding-welcome .students-testimonials .section__logo {
        font-size: 14px; } }
    @media (max-width: 767px) {
      .is-tpl-uniquelanding-welcome .students-testimonials .section__logo {
        margin-left: 20px;
        margin-right: 20px; } }
    .is-tpl-uniquelanding-welcome .students-testimonials .section__logo:not(:last-child) {
      margin-right: 80px; }
      @media (max-width: 767px) {
        .is-tpl-uniquelanding-welcome .students-testimonials .section__logo:not(:last-child) {
          margin-right: 20px; } }
    .is-tpl-uniquelanding-welcome .students-testimonials .section__logo span {
      display: inline-block;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      padding: 7px;
      font-size: 0;
      margin-right: 10px; }
      .is-tpl-uniquelanding-welcome .students-testimonials .section__logo span img {
        max-width: 100%;
        max-height: 100%; }
  .is-tpl-uniquelanding-welcome .students-testimonials .section__shape-1 {
    position: absolute;
    left: 30px;
    top: -30px;
    width: 54px; }
    @media (min-width: 768px) {
      .is-tpl-uniquelanding-welcome .students-testimonials .section__shape-1 {
        animation: strokeAnimation2 10s infinite linear; } }
    .is-tpl-uniquelanding-welcome .students-testimonials .section__shape-1 svg {
      max-width: 100%;
      stroke: #7867C0; }
  .is-tpl-uniquelanding-welcome .students-testimonials .section__shape-2 {
    position: absolute;
    right: -5px;
    top: -95px;
    transform: rotate(15deg);
    width: 65px; }
    @media (min-width: 768px) {
      .is-tpl-uniquelanding-welcome .students-testimonials .section__shape-2 {
        animation: strokeAnimation2 10s infinite linear; } }
    .is-tpl-uniquelanding-welcome .students-testimonials .section__shape-2 svg {
      max-width: 100%;
      stroke: #FF7F56; }

.payment-icons {
  display: flex;
  flex-wrap: wrap; }
  .payment-icons .payment-icon {
    margin-right: 12px;
    margin-bottom: 12px; }
    .payment-icons .payment-icon svg {
      width: 64px;
      height: 44px;
      fill: #AFBBE8; }
      @media (max-width: 543px) {
        .payment-icons .payment-icon svg {
          width: 44px;
          height: 30px; } }

.figure-compound {
  position: relative;
  width: 510px;
  height: 510px; }
  @media (max-width: 991px) {
    .figure-compound {
      margin-left: auto;
      margin-right: auto; } }
  @media (max-width: 543px) {
    .figure-compound {
      width: 300px;
      height: 300px; } }
  .figure-compound .figure-mask {
    position: absolute;
    width: 100%;
    height: auto;
    left: 0; }
  .figure-compound .figure-mask-top {
    top: 0;
    transform: scale(1, -1);
    z-index: 0; }
  .figure-compound .figure-mask-bottom {
    bottom: 0;
    z-index: 1; }
  .figure-compound__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(90deg, #6F65E6 8.65%, #7FDDE2 105.61%);
    border-radius: 100px; }
    @media (max-width: 543px) {
      .figure-compound__bg {
        border-radius: 60px; } }
  .figure-compound__img-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden; }
    .figure-compound__img-wrapper img {
      position: relative;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: bottom center;
      z-index: 1; }
      .is-single .article-content .figure-compound__img-wrapper img {
        height: 100% !important; }
  .figure-compound__img {
    width: 100%;
    height: 100%;
    overflow: hidden; }
  .figure-compound__circle {
    position: absolute;
    width: 160px;
    height: 160px;
    transform: rotate(45deg);
    z-index: 1;
    overflow: hidden; }
    @media (max-width: 543px) {
      .figure-compound__circle {
        width: 100px;
        height: 100px; } }
  .figure-compound__circle-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #7DD4E2;
    border-radius: 50%; }
  .figure-compound__circle-half {
    position: absolute;
    width: 73px;
    height: 73px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #FECBCE;
    overflow: hidden;
    z-index: 2; }
    @media (max-width: 543px) {
      .figure-compound__circle-half {
        width: 46px;
        height: 46px; } }
    .figure-compound__circle-half::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #FECBCE;
      transform: rotate(45deg) translate(0, -50%); }
  .figure-compound__circle-outline {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #84CEAF;
    z-index: 1; }
    @media (max-width: 543px) {
      .figure-compound__circle-outline {
        top: 20px; } }
  .figure-compound__line-1 {
    position: absolute;
    right: 166px;
    top: 26px;
    width: 50px;
    height: 58px;
    z-index: 1; }
    @media (max-width: 543px) {
      .figure-compound__line-1 {
        right: 70px;
        top: -10px; } }
    .figure-compound__line-1 svg {
      max-width: 100%;
      max-height: 100%;
      stroke: #FDD554;
      stroke-width: 2px; }
  .figure-compound__line-2 {
    position: absolute;
    bottom: 170px;
    right: -28px;
    width: 58px;
    height: 47px;
    transform: rotate(16deg);
    stroke-width: 2px;
    z-index: 1; }
    @media (max-width: 543px) {
      .figure-compound__line-2 {
        bottom: 75px;
        right: -15px; } }
    .figure-compound__line-2 svg {
      max-width: 100%;
      max-height: 100%;
      stroke: #00B67A; }
  .figure-compound__line-3 {
    position: absolute;
    top: 165px;
    left: 0;
    width: 60px;
    height: 32px;
    z-index: 1; }
    @media (max-width: 543px) {
      .figure-compound__line-3 {
        top: 110px; } }
    .figure-compound__line-3 svg {
      max-width: 100%;
      max-height: 100%;
      stroke: #7867C0; }
  .figure-compound__text-box {
    position: absolute;
    left: 25px;
    bottom: 0;
    width: 300px;
    border-radius: 12px;
    padding: 25px;
    background-image: linear-gradient(180deg, #FDFDFD 0%, #FFFFFF 100%);
    border: 1px solid #FFFFFF;
    box-shadow: 0 4.28003px 21.4002px rgba(134, 111, 232, 0.15);
    z-index: 2; }
    @media (max-width: 543px) {
      .figure-compound__text-box {
        padding: 10px;
        width: 250px;
        left: 25px; } }
  .figure-compound__dialogs {
    position: absolute;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    top: 135px;
    right: 65px; }
    @media (max-width: 543px) {
      .figure-compound__dialogs {
        top: 80px;
        right: 40px; } }
  .figure-compound--1 .figure-compound__circle {
    right: -27px;
    top: 13px; }
    @media (max-width: 543px) {
      .figure-compound--1 .figure-compound__circle {
        top: -4px;
        right: -15px; } }
  .figure-compound--1 .figure-compound__circle-inner {
    top: 55px; }
  .figure-compound--1 .figure-compound__circle-half {
    bottom: 138px;
    left: 44px;
    border: none; }
    @media (max-width: 543px) {
      .figure-compound--1 .figure-compound__circle-half {
        bottom: 85px;
        left: 18px; } }
  .figure-compound--1 .figure-compound__circle-outline {
    top: 70px;
    left: 20px; }
  .figure-compound--1 .figure-compound__img img {
    right: -9%;
    top: -11%; }
  .figure-compound--1 .figure-compound__line-1,
  .figure-compound--1 .figure-compound__line-2,
  .figure-compound--1 .figure-compound__line-3,
  .figure-compound--1 .figure-compound__circle-outline {
    opacity: 0; }
  .figure-compound--1.is-loaded .figure-compound__line-1 {
    opacity: 1;
    transition: opacity 0s 1.2s; }
    @media (min-width: 768px) {
      .figure-compound--1.is-loaded .figure-compound__line-1 {
        animation: strokeAnimation2 4s 1.2s infinite linear; } }
  .figure-compound--1.is-loaded .figure-compound__line-2 {
    opacity: 1;
    transition: opacity 0s 1s; }
    @media (min-width: 768px) {
      .figure-compound--1.is-loaded .figure-compound__line-2 {
        animation: strokeAnimation3 6s 1s infinite linear; } }
  .figure-compound--1.is-loaded .figure-compound__line-3 {
    opacity: 1;
    transition: opacity 0s 0.6s; }
    @media (min-width: 768px) {
      .figure-compound--1.is-loaded .figure-compound__line-3 {
        animation: strokeAnimation1 6s 0.6s infinite linear; } }
  .figure-compound--1.is-loaded .figure-compound__circle-outline {
    opacity: 1;
    transition: opacity 0s 0.6s; }
    @media (min-width: 768px) {
      .figure-compound--1.is-loaded .figure-compound__circle-outline {
        animation: orbitAnimation 10s 0.6s infinite linear; } }
  .figure-compound--2 {
    width: 450px;
    height: 450px; }
    @media (max-width: 543px) {
      .figure-compound--2 {
        width: 310px;
        height: 310px; } }
    .figure-compound--2 .figure-compound__circle-outline {
      top: 40px;
      left: auto;
      right: 35px;
      width: 25px;
      height: 25px; }
    .figure-compound--2 .figure-compound__circle-half {
      width: 95px;
      height: 95px;
      border: 1px solid #7066E6;
      left: auto;
      bottom: 80px;
      right: 50px; }
      @media (max-width: 543px) {
        .figure-compound--2 .figure-compound__circle-half {
          bottom: 20px;
          right: 75px;
          width: 60px;
          height: 60px; } }
      .figure-compound--2 .figure-compound__circle-half::before {
        transform: rotate(-45deg) translate(0, -50%);
        background-color: #7066E6; }
    .figure-compound--2 .figure-compound__circle {
      left: 0;
      top: 73px;
      width: 88px;
      height: 88px; }
      @media (max-width: 543px) {
        .figure-compound--2 .figure-compound__circle {
          top: 51px;
          left: 0;
          width: 60px;
          height: 60px; } }
    .figure-compound--2 .figure-compound__lines {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      transform: scale(0);
      z-index: 1; }
    .figure-compound--2 .figure-compound__circle-inner {
      background-color: #FDD554;
      left: 35px; }
      @media (max-width: 543px) {
        .figure-compound--2 .figure-compound__circle-inner {
          left: 25px; } }
    .figure-compound--2 .figure-compound__line-1 {
      right: auto;
      left: -56px;
      top: 32px;
      width: 35px;
      transform: rotate(65deg);
      opacity: 1; }
      .figure-compound--2 .figure-compound__line-1 svg {
        stroke: #7066E6;
        stroke-width: 2px; }
      @media (max-width: 543px) {
        .figure-compound--2 .figure-compound__line-1 {
          left: 0;
          top: -10px; } }
    .figure-compound--2 .figure-compound__line-2 {
      bottom: 80px;
      right: -80px;
      opacity: 1; }
      @media (max-width: 543px) {
        .figure-compound--2 .figure-compound__line-2 {
          bottom: 0;
          right: -25px; } }
    .figure-compound--2 .figure-compound__line-3 {
      top: auto;
      bottom: 85px;
      left: -50px;
      transform: rotate(-30deg);
      opacity: 1; }
      @media (max-width: 543px) {
        .figure-compound--2 .figure-compound__line-3 {
          left: 0;
          bottom: 35px; } }
      .figure-compound--2 .figure-compound__line-3 svg {
        stroke: #FDD554;
        stroke-width: 2px; }
    @media (max-width: 543px) {
      .figure-compound--2 .figure-compound__bg {
        width: 97%;
        height: 97%; } }
    .figure-compound--2.is-loaded .figure-compound__lines {
      transition: transform 0.5s 1.2s;
      transform: scale(1); }
  .figure-compound--3 {
    width: 494px;
    height: 494px; }
    @media (max-width: 543px) {
      .figure-compound--3 {
        height: 280px;
        width: 280px; } }
    .figure-compound--3 .figure-compound__circle-outline {
      top: 200px;
      left: 20px; }
    .figure-compound--3 .figure-compound__circle-half {
      width: 70px;
      height: 70px;
      left: auto;
      bottom: 69px;
      right: 110px; }
      @media (max-width: 543px) {
        .figure-compound--3 .figure-compound__circle-half {
          bottom: 40px;
          right: 30px; } }
      .figure-compound--3 .figure-compound__circle-half::before {
        transform: rotate(-45deg) translate(0, -50%); }
    .figure-compound--3 .figure-compound__circle {
      left: 25px;
      top: 30px;
      width: 112px;
      height: 112px; }
      @media (max-width: 543px) {
        .figure-compound--3 .figure-compound__circle {
          top: 11px;
          left: -9px;
          width: 80px;
          height: 80px; } }
    .figure-compound--3 .figure-compound__circle-inner {
      background-color: #FDD554;
      left: 40px; }
    .figure-compound--3 .figure-compound__line {
      position: absolute;
      top: 40px;
      right: 0;
      opacity: 0; }
      .figure-compound--3 .figure-compound__line svg {
        stroke: #7066E6;
        stroke-width: 2px; }
      @media (max-width: 543px) {
        .figure-compound--3 .figure-compound__line {
          left: 0;
          top: -10px; } }
    .figure-compound--3.is-loaded .figure-compound__line {
      transition: opacity 0s 0.6s;
      opacity: 1; }
      @media (min-width: 768px) {
        .figure-compound--3.is-loaded .figure-compound__line {
          animation: strokeAnimation3 10s 0.6s infinite linear; } }
    @media (min-width: 768px) {
      .figure-compound--3.is-loaded .figure-compound__circle-outline {
        animation: orbitAnimation 5s 0.6s infinite linear; } }
  .figure-compound--4 {
    width: 600px;
    height: 560px; }
    @media (max-width: 991px) {
      .figure-compound--4 {
        left: 5%; } }
    @media (max-width: 543px) {
      .figure-compound--4 {
        width: 300px;
        height: 338px;
        left: 25px; } }
    .figure-compound--4 .figure-compound__img-group {
      position: relative;
      height: 100%;
      z-index: 1; }
    .figure-compound--4 .figure-compound__img {
      width: 516px;
      height: 540px;
      position: relative;
      top: -15px;
      left: 30px;
      clip-path: url("#promo-clip-desk");
      z-index: 2;
      transform: scale(0); }
      @media (max-width: 543px) {
        .figure-compound--4 .figure-compound__img {
          width: 280px;
          height: 294px;
          clip-path: url("#promo-clip-mob");
          left: 10px;
          top: 36px; } }
      .figure-compound--4 .figure-compound__img svg {
        width: 100%;
        height: 100%; }
      .figure-compound--4 .figure-compound__img img {
        object-fit: cover;
        width: 100%;
        height: 100% !important; }
        .is-single .figure-compound--4 .figure-compound__img img {
          height: 100% !important; }
    .figure-compound--4 .figure-compound__square-wrapper {
      transform: translateX(-20px); }
    .figure-compound--4 .figure-compound__square {
      position: absolute;
      bottom: 80px;
      left: 25px;
      width: 400px;
      height: 400px;
      border-radius: 60px;
      opacity: 0;
      transform: rotate(-45deg);
      background-image: linear-gradient(-179.08deg, #6F65E6 8.65%, #7FDDE2 105.61%); }
      @media (max-width: 543px) {
        .figure-compound--4 .figure-compound__square {
          left: 0;
          bottom: 48px;
          width: 230px;
          height: 230px;
          transform: rotate(-45deg) translate(25px, 25px); } }
    .figure-compound--4 .figure-compound__circle {
      width: 180px;
      height: 180px;
      right: 60px;
      top: 50px; }
      @media (max-width: 543px) {
        .figure-compound--4 .figure-compound__circle {
          width: 130px;
          height: 130px;
          top: 45px;
          right: 20px; } }
    .figure-compound--4 .figure-compound__circle-half {
      width: 98px;
      height: 98px;
      background-color: transparent;
      bottom: 70px;
      left: 130px; }
      @media (max-width: 543px) {
        .figure-compound--4 .figure-compound__circle-half {
          width: 70px;
          height: 70px;
          bottom: 24px;
          left: 55px;
          background-color: #fff; } }
    .figure-compound--4 .figure-compound__line-1 {
      top: auto;
      bottom: 80px;
      right: 60px;
      transform: rotate(15deg);
      width: 60px; }
      @media (max-width: 543px) {
        .figure-compound--4 .figure-compound__line-1 {
          bottom: 25px;
          right: 20px; } }
      .figure-compound--4 .figure-compound__line-1 svg {
        stroke: #00B67A; }
    .figure-compound--4 .figure-compound__line-2 {
      bottom: auto;
      top: 150px;
      left: -50px;
      transform: none; }
      @media (max-width: 543px) {
        .figure-compound--4 .figure-compound__line-2 {
          top: 80px;
          left: -30px; } }
      .figure-compound--4 .figure-compound__line-2 svg {
        stroke: #7867C0; }
    .figure-compound--4 .figure-compound__circle-outline {
      width: 37px;
      height: 37px;
      top: 24px;
      left: 70px; }
      @media (max-width: 543px) {
        .figure-compound--4 .figure-compound__circle-outline {
          top: 20px;
          left: 0; } }
    .figure-compound--4.is-loaded .figure-compound__img {
      transition: transform 0.5s;
      transform: scale(1); }
    @media (min-width: 768px) {
      .figure-compound--4.is-loaded .figure-compound__img-group {
        animation: figureCompoundImageSquare 10s 0.8s infinite linear; } }
    .figure-compound--4.is-loaded .figure-compound__line-1 {
      opacity: 1;
      transition: opacity 0s 1.2s; }
      @media (min-width: 768px) {
        .figure-compound--4.is-loaded .figure-compound__line-1 {
          animation: strokeAnimation3 5s 1.2s infinite linear; } }
    .figure-compound--4.is-loaded .figure-compound__line-2 {
      opacity: 1;
      transition: opacity 0s 0.6s; }
      @media (min-width: 768px) {
        .figure-compound--4.is-loaded .figure-compound__line-2 {
          animation: strokeAnimation3 5s 0.6s infinite linear; } }
    .figure-compound--4.is-loaded .figure-compound__square {
      transition: transform 0.5s 0.9s, opacity 0.5s 0.4s;
      transform: rotate(-45deg);
      opacity: 1; }
    @media (min-width: 768px) {
      .figure-compound--4.is-loaded .figure-compound__square-wrapper {
        animation: figureCompoundImageBg 20s 1.2s infinite linear; } }
    @media (min-width: 768px) {
      .figure-compound--4.is-loaded .figure-compound__circle-outline {
        animation: orbitAnimation 20s 0.8s infinite linear; } }
  .figure-compound--5 {
    width: 510px;
    height: 510px; }
    @media (max-width: 543px) {
      .figure-compound--5 {
        height: 280px;
        width: 280px; } }
    .figure-compound--5 .figure-compound__circle-outline {
      top: 245px;
      left: 15px;
      z-index: 1; }
      @media (max-width: 543px) {
        .figure-compound--5 .figure-compound__circle-outline {
          top: 130px;
          left: 0; } }
    .figure-compound--5 .figure-compound__circle-half {
      width: 70px;
      height: 70px;
      left: auto;
      bottom: 80px;
      right: 105px; }
      @media (max-width: 543px) {
        .figure-compound--5 .figure-compound__circle-half {
          bottom: 35px;
          right: 36px; } }
      .figure-compound--5 .figure-compound__circle-half::before {
        transform: rotate(-45deg) translate(0, -50%); }
    .figure-compound--5 .figure-compound__circle {
      left: 32px;
      top: 30px;
      width: 112px;
      height: 112px; }
      @media (max-width: 543px) {
        .figure-compound--5 .figure-compound__circle {
          top: 0;
          left: -14px;
          width: 90px;
          height: 90px; } }
    .figure-compound--5 .figure-compound__circle-inner {
      left: 25px;
      background-color: #FDD554; }
    .figure-compound--5 .figure-compound__line {
      position: absolute;
      top: auto;
      right: auto;
      bottom: 70px;
      left: 20px;
      z-index: 1;
      opacity: 0; }
      .figure-compound--5 .figure-compound__line svg {
        stroke: #7066E6;
        stroke-width: 2px; }
      @media (max-width: 543px) {
        .figure-compound--5 .figure-compound__line {
          left: 0;
          bottom: 20px; } }
    .figure-compound--5 .figure-compound__line-2 {
      top: 100px;
      left: -75px;
      transform: none; }
      .figure-compound--5 .figure-compound__line-2 svg {
        stroke: #7066E6; }
    .figure-compound--5 .figure-compound__line-3 {
      top: 60px;
      left: auto;
      right: 65px;
      transform: rotate(15deg);
      width: 60px;
      height: 45px; }
      @media (max-width: 543px) {
        .figure-compound--5 .figure-compound__line-3 {
          right: 20px;
          top: 25px; } }
      .figure-compound--5 .figure-compound__line-3 svg {
        stroke: #00B67A; }
    .figure-compound--5 .figure-compound__line-4 {
      position: absolute;
      top: -25px;
      left: 80px;
      width: 50px;
      height: 100px;
      transform: rotate(-20deg);
      opacity: 0; }
      @media (max-width: 543px) {
        .figure-compound--5 .figure-compound__line-4 {
          top: -50px;
          left: 40px; } }
      .figure-compound--5 .figure-compound__line-4 svg {
        width: 100%;
        stroke: #FDD554; }
    .figure-compound--5.is-loaded .figure-compound__line {
      transition: opacity 0s 0.6s;
      opacity: 1; }
      @media (min-width: 768px) {
        .figure-compound--5.is-loaded .figure-compound__line {
          animation: strokeAnimation3 5s 0.6s infinite linear; } }
    .figure-compound--5.is-loaded .figure-compound__line-2 {
      transition: opacity 0s 1.2s;
      opacity: 1; }
      @media (min-width: 768px) {
        .figure-compound--5.is-loaded .figure-compound__line-2 {
          animation: strokeAnimation3 5s 1.2s infinite linear; } }
    .figure-compound--5.is-loaded .figure-compound__line-3 {
      transition: opacity 0s 0.8s;
      opacity: 1; }
      @media (min-width: 768px) {
        .figure-compound--5.is-loaded .figure-compound__line-3 {
          animation: strokeAnimation3 5s 0.8s infinite linear; } }
    .figure-compound--5.is-loaded .figure-compound__line-4 {
      transition: opacity 0s 0.8s;
      opacity: 1; }
    @media (min-width: 768px) {
      .figure-compound--5.is-loaded .figure-compound__circle-outline {
        animation: orbitAnimation 20s 0.8s infinite linear; } }
  .figure-compound--6 {
    width: 600px;
    height: 560px;
    transform: scale(0.8); }
    @media (max-width: 767px) {
      .figure-compound--6 {
        transform: scale(0.5);
        margin-top: -150px;
        margin-bottom: -110px; } }
    .figure-compound--6 .figure-compound__img-group {
      position: relative;
      height: 100%;
      z-index: 1; }
    .figure-compound--6 .figure-compound__img {
      width: 516px;
      height: 540px;
      position: relative;
      top: -15px;
      left: 30px;
      clip-path: url("#promo-clip-desk");
      z-index: 2;
      transform: scale(0); }
      .figure-compound--6 .figure-compound__img svg {
        width: 100%;
        height: 100%; }
      .figure-compound--6 .figure-compound__img img {
        object-fit: cover;
        width: 100%;
        height: 100% !important; }
        .is-single .figure-compound--6 .figure-compound__img img {
          height: 100% !important; }
    .figure-compound--6 .figure-compound__square-wrapper {
      transform: translateX(-20px);
      animation: none !important; }
    .figure-compound--6 .figure-compound__square {
      position: absolute;
      bottom: 80px;
      right: 50px;
      width: 400px;
      height: 400px;
      border-radius: 60px;
      opacity: 0;
      transform: rotate(-45deg);
      background-image: linear-gradient(-179.08deg, #6F65E6 8.65%, #7FDDE2 105.61%); }
    .figure-compound--6 .figure-compound__circle {
      width: 100px;
      height: 100px;
      right: 22px;
      top: 76px;
      overflow: hidden; }
      .figure-compound--6 .figure-compound__circle-inner {
        background-color: #FC9D8A;
        top: 35px; }
    .figure-compound--6 .figure-compound__line-1 {
      bottom: auto;
      top: 100px;
      left: 45px;
      transform: none; }
      .figure-compound--6 .figure-compound__line-1 svg {
        stroke: #7867C0; }
    .figure-compound--6 .figure-compound__circle-outline {
      width: 30px;
      height: 30px;
      top: 40%;
      right: -10%; }
    .figure-compound--6 .figure-compound__circle-outline-2 {
      position: absolute;
      left: 0;
      right: 0;
      width: 60px;
      height: 60px;
      top: 40%;
      right: -10%;
      border: 1px solid #F1A5A9;
      border-radius: 50%;
      opacity: 0; }
    .figure-compound--6.is-loaded .figure-compound__img {
      transition: transform 0.5s;
      transform: scale(1); }
    @media (min-width: 768px) {
      .figure-compound--6.is-loaded .figure-compound__img-group {
        animation: figureCompoundImageSquare 10s 0.8s infinite linear; } }
    .figure-compound--6.is-loaded .figure-compound__line-1 {
      opacity: 1;
      transition: opacity 0s 1.2s; }
      @media (min-width: 768px) {
        .figure-compound--6.is-loaded .figure-compound__line-1 {
          animation: strokeAnimation3 5s 1.2s infinite linear; } }
    .figure-compound--6.is-loaded .figure-compound__line-2 {
      opacity: 1;
      transition: opacity 0s 0.6s; }
      @media (min-width: 768px) {
        .figure-compound--6.is-loaded .figure-compound__line-2 {
          animation: strokeAnimation3 5s 0.6s infinite linear; } }
    .figure-compound--6.is-loaded .figure-compound__square {
      transition: transform 0.5s 0.9s, opacity 0.5s 0.4s;
      transform: rotate(-45deg);
      opacity: 1; }
    @media (min-width: 768px) {
      .figure-compound--6.is-loaded .figure-compound__square-wrapper {
        animation: figureCompoundImageBg 20s 1.2s infinite linear; } }
    @media (min-width: 768px) {
      .figure-compound--6.is-loaded .figure-compound__circle-outline {
        animation: orbitAnimation 20s 0.8s infinite linear; } }
    .figure-compound--6.is-loaded .figure-compound__circle-outline-2 {
      opacity: 1; }
      @media (min-width: 768px) {
        .figure-compound--6.is-loaded .figure-compound__circle-outline-2 {
          animation: orbitAnimation 20s 0.8s infinite linear; } }
  .figure-compound__circle, .figure-compound__circle-outline, .figure-compound__circle-half, .figure-compound__line-1, .figure-compound__line-2, .figure-compound__line-3 {
    opacity: 0; }
  .figure-compound__bg {
    transform: rotate(45deg) scale(0); }
  .figure-compound__img-wrapper img {
    opacity: 0;
    transform: translateY(20px); }
  .figure-compound__dialogs .speech-buble {
    transform: rotate(90deg) scale(0);
    transform-origin: bottom right; }
  .figure-compound.is-loaded .figure-compound__bg {
    transition: transform 0.5s;
    transform: rotate(45deg) scale(0.75); }
    @media (max-width: 543px) {
      .figure-compound.is-loaded .figure-compound__bg {
        transform: rotate(45deg) scale(0.8); } }
  .figure-compound.is-loaded .figure-compound__img-wrapper img {
    transition: opacity 0.3s 0.5s, transform 0.5s 0.5s;
    opacity: 1;
    transform: translateY(0); }
  .figure-compound.is-loaded .figure-compound__text-box {
    transition: opacity 0.3s 0.6s, transform 0.5s 0.6s;
    opacity: 1;
    transform: translateY(0); }
  .figure-compound.is-loaded .figure-compound__dialogs .speech-buble {
    transform: rotate(0) scale(1);
    transform-origin: bottom right;
    transition: transform 0.5s 0.8s; }
    .figure-compound.is-loaded .figure-compound__dialogs .speech-buble:first-child {
      transition: transform 0.75s 1s; }
  .figure-compound.is-loaded .figure-compound__circle,
  .figure-compound.is-loaded .figure-compound__circle-outline,
  .figure-compound.is-loaded .figure-compound__circle-half {
    transition: opacity 0.25s 1s;
    opacity: 1; }

.is-single .article-content .figure-compound--4 .figure-compound__img img {
  height: 100% !important; }

.speech-buble {
  position: relative;
  color: #444189;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 17px;
  border-radius: 8px 16px 0;
  background-color: #F1F4FC;
  margin-bottom: 23px; }
  @media (max-width: 543px) {
    .speech-buble {
      font-size: 10px;
      padding: 8px 13px; } }
  .speech-buble::after {
    content: '';
    position: absolute;
    top: calc(100% - 1px);
    right: 0;
    width: 23px;
    height: 20px;
    background-position: top right;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC4AAAAoCAMAAAC2PjgYAAAAolBMVEUAAACYmJiOjpydnaWbm6yhnqqamqbz8vWVlajk4+fKx8/IyNCWk6b4+PmUkZ6vrLnx8fTl5eujn63////y8vWsrLzl5enR0Nf///+alqLR0di5t8XY2N+4tr/Y1t6ioK7Ly9Krp7DMydTJydPd3eO/u8iZlaKioqj////19fb////29vf8/Pz9/f75+fr7+vv39/fy8vPy8vTo5+vRz9W4tsDDYQJmAAAAKXRSTlMAAgQIDwsU+yH30EYf/f369O3l4Nza2NjSw8C1qKicjoiId2hTPDwpCDPLBGoAAAE5SURBVDjLldIHc4JAEIbhW7gzWNJ774WVOyHl//+1bCDwiQqL74wD4zx7rooJXOZDPq9L07R1n/6XsTF2dnp9dchSVg80WuQKlxzFhkZn5UBt/i7yggYnMuXUXT1QmTkgeBkl1WUqA4sKlVObOYpvmH0O0MFRdCIfoHJEzxfe5zqnZqOPYx9UjuhFFtI5/JN4naNpkF9U5cgesIcHjzq8+xSvcmR34MG7i+F1LlnsA95//kLfHdld8frp8EG8yvEEvTKHZU7K+Q/ydcHV6Fw8uJr94gxc777gsAWnfeZ8C+4msj641lsi6/dxav/X0VHg0OZudYAMSn5knf5lYqJmYrT3zZm6O+H2suAArja6Ze/BdT9mBtd7D8N4XF1oMoxTPVZ082idGzeIo/FmS0QujoiW3pkZ6dH8Ak/FadclhWMoAAAAAElFTkSuQmCC"); }

.calculate-clean {
  padding-top: 30px;
  padding-bottom: 100px; }
  @media (max-width: 991px) {
    .calculate-clean {
      padding-bottom: 50px; } }
  @media (max-width: 543px) {
    .calculate-clean {
      padding-bottom: 30px; } }
  .calculate-clean .section__wrapper {
    box-shadow: 0 4.82614px 20px rgba(134, 111, 232, 0.15);
    border-radius: 13px;
    background: linear-gradient(180deg, #FDFDFD 0%, #FFFFFF 100%);
    display: flex;
    justify-content: space-between;
    padding: 32px 50px 27px; }

.benefit-card {
  box-shadow: 0 4.82614px 20px rgba(134, 111, 232, 0.15);
  border-radius: 13px;
  padding: 45px 40px 45px 28px; }
  .benefit-card__icon {
    height: 50px;
    margin-bottom: 25px; }
    .benefit-card__icon img {
      max-height: 50px;
      max-width: 50px; }
  .benefit-card__heading {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 20px;
    font-weight: 600; }
    @media (max-width: 543px) {
      .benefit-card__heading {
        font-size: 1.25rem; } }

.work-types-list {
  column-count: 2;
  margin-bottom: 0;
  padding: 25px 12px 10px;
  box-shadow: 0 4.82614px 20px rgba(134, 111, 232, 0.15);
  border-radius: 13px;
  background-color: #fff; }
  @media (max-width: 991px) {
    .work-types-list {
      padding: 25px 30px; } }
  @media (max-width: 543px) {
    .work-types-list {
      column-count: 1; } }
  .work-types-list > li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px; }
    .work-types-list > li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 5px;
      width: 10px;
      height: 10px;
      background-color: #FF7F56;
      border-radius: 50%; }

.assignment-process {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 70px;
  counter-reset: assignment-process-item; }
  @media (max-width: 767px) {
    .assignment-process {
      grid-gap: 30px; } }
  .assignment-process__item {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 70px;
    counter-increment: assignment-process-item; }
    .assignment-process__item::before {
      content: counter(assignment-process-item);
      position: absolute;
      top: 0;
      left: 0;
      width: 50px;
      height: 50px;
      background-color: #FF7F56;
      color: #fff;
      border-radius: 50%;
      font-size: 30px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center; }
    @media (max-width: 767px) {
      .assignment-process__item {
        flex-direction: column-reverse;
        gap: 30px; } }
  .assignment-process__content {
    padding-top: 70px; }
    @media (max-width: 767px) {
      .assignment-process__content {
        padding-top: 0;
        width: 100%; } }
  .assignment-process__heading {
    margin-bottom: 16px;
    font-size: 30px;
    font-weight: 700; }
    @media (max-width: 543px) {
      .assignment-process__heading {
        font-size: 24px;
        font-weight: 600; } }
  .assignment-process__image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    flex-shrink: 0; }
    @media (max-width: 767px) {
      .assignment-process__image-wrap {
        padding-top: 70px;
        margin-left: auto;
        margin-right: auto; } }
  .assignment-process__image {
    padding: 22px 23px;
    box-shadow: 0 4.4099px 18.2751px rgba(134, 111, 232, 0.15);
    border-radius: 27.4126px; }
    .assignment-process__image--1 img {
      width: 297px; }
      @media (max-width: 991px) {
        .assignment-process__image--1 img {
          width: 150px; } }
      @media (max-width: 767px) {
        .assignment-process__image--1 img {
          width: 130px; } }
    .assignment-process__image--2 img {
      width: 168px; }
      @media (max-width: 991px) {
        .assignment-process__image--2 img {
          width: 120px; } }
    .assignment-process__image--3 img {
      width: 297px; }
      @media (max-width: 991px) {
        .assignment-process__image--3 img {
          width: 150px; } }
      @media (max-width: 767px) {
        .assignment-process__image--3 img {
          width: 130px; } }

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0px 4.82614px 20px rgba(134, 111, 232, 0.15);
  border-radius: 13px;
  padding: 25px 30px;
  background-color: #fff; }
  .review-card__header {
    display: flex;
    align-items: center;
    margin-bottom: 20px; }
  .review-card__name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1;
    display: block; }
    .review-card__name img {
      border-radius: 0; }
  .review-card__logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 13px;
    margin-right: 16px; }
  .review-card__footer {
    display: flex;
    justify-content: space-between;
    color: #999; }
  .review-card .review-card__text {
    background: transparent;
    border-left: none;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
    box-shadow: none;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px; }
    @media (max-width: 543px) {
      .review-card .review-card__text {
        font-size: 14px;
        line-height: 1.5; } }
  .review-card__text::before {
    display: none; }
  .review-card__rating-stars {
    display: flex;
    gap: 2px;
    font-size: 0; }
    .review-card__rating-stars > img {
      width: 19px !important;
      height: 18px;
      object-fit: contain; }
  .review-card__star-half {
    margin-left: -4px; }
  .review-card__rating-value {
    font-weight: 700;
    position: relative;
    top: -2px; }

.testimonials-slider.owl-carousel {
  user-select: none;
  position: relative; }
  .testimonials-slider.owl-carousel .owl-stage {
    display: flex; }
    .testimonials-slider.owl-carousel .owl-stage .review-card {
      height: 100%; }
  .testimonials-slider.owl-carousel .owl-item {
    padding: 20px 14px; }
    @media (max-width: 543px) {
      .testimonials-slider.owl-carousel .owl-item {
        padding: 20px 10px; } }
  .testimonials-slider.owl-carousel .owl-nav {
    display: none; }
  .testimonials-slider.owl-carousel .owl-dots {
    margin: 20px 0;
    text-align: center; }
    @media (max-width: 991px) {
      .testimonials-slider.owl-carousel .owl-dots {
        display: flex;
        flex-wrap: wrap;
        justify-content: center; } }
  .testimonials-slider.owl-carousel .owl-dot {
    width: 12px;
    height: 12px;
    background-color: #F3F6FF !important;
    border-radius: 50%;
    margin: 7px; }
    @media (max-width: 991px) {
      .testimonials-slider.owl-carousel .owl-dot {
        order: 1; } }
    .testimonials-slider.owl-carousel .owl-dot.active {
      background-color: #866FE8 !important; }
    @media (max-width: 991px) {
      .testimonials-slider.owl-carousel .owl-dot:last-child {
        order: 0; } }

.figure-compound-square {
  position: relative;
  width: 470px;
  height: 500px; }
  @media (max-width: 991px) {
    .figure-compound-square {
      margin-left: auto;
      margin-right: auto; } }
  @media (max-width: 543px) {
    .figure-compound-square {
      width: 250px;
      height: 265px; } }
  .figure-compound-square img {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20%;
    transform: scale(0); }
  .figure-compound-square__circle {
    position: absolute;
    bottom: 0;
    left: -62px;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background-color: #7DD4E2;
    opacity: 0; }
    @media (max-width: 543px) {
      .figure-compound-square__circle {
        width: 85px;
        height: 85px;
        left: -40px; } }
  .figure-compound-square__circle-outline {
    position: absolute;
    top: 0;
    right: -40px;
    width: 106px;
    height: 106px;
    border-radius: 50%;
    border: 1px solid #84CEAF;
    opacity: 0; }
    @media (max-width: 543px) {
      .figure-compound-square__circle-outline {
        width: 70px;
        height: 70px;
        right: -20px; } }
  .figure-compound-square__line {
    position: absolute;
    left: 0;
    top: 0;
    transform: rotate(53deg);
    opacity: 0; }
    .figure-compound-square__line svg {
      width: 108px;
      height: 26px;
      stroke: #FDD554; }
      @media (max-width: 543px) {
        .figure-compound-square__line svg {
          width: 54px;
          height: 13px; } }
  .figure-compound-square.is-loaded img {
    transition: transform 1s;
    transform: scale(1); }
  .figure-compound-square.is-loaded .figure-compound-square__line {
    transition: opacity 0.25s 1s;
    opacity: 1; }
    @media (min-width: 768px) {
      .figure-compound-square.is-loaded .figure-compound-square__line {
        animation: strokeAnimation1 6s 2s infinite linear; } }
  .figure-compound-square.is-loaded .figure-compound-square__circle-outline {
    transition: opacity 0.25s 1s;
    opacity: 1; }
    @media (min-width: 768px) {
      .figure-compound-square.is-loaded .figure-compound-square__circle-outline {
        animation: figureCompoundImageSquare 10s 0.6s infinite linear; } }
  .figure-compound-square.is-loaded .figure-compound-square__circle {
    transition: opacity 0.25s 1s;
    opacity: 1; }
    @media (min-width: 768px) {
      .figure-compound-square.is-loaded .figure-compound-square__circle {
        animation: figureCompoundImageBg 10s 0.6s infinite linear; } }

.figure-compound-error {
  position: relative;
  width: 300px;
  height: 470px;
  padding-top: 40px;
  margin-bottom: -40px; }
  @media (max-width: 767px) {
    .figure-compound-error {
      width: 280px;
      padding-top: 75px;
      margin-top: -70px; } }
  .figure-compound-error__heading {
    font-size: 96px;
    font-size: 6.85714rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    margin-bottom: 1rem;
    white-space: nowrap; }
    .article-content .figure-compound-error__heading {
      font-weight: 700; }
    @media (max-width: 767px) {
      .figure-compound-error__heading {
        font-size: 31.5px;
        font-size: 2.25rem;
        margin-bottom: 1rem; } }
  .figure-compound-error__text {
    font-size: 18px; }
    .figure-compound-error__text p {
      margin-bottom: 0.5rem; }
  .figure-compound-error__btn.btn-main, .section .figure-compound-error__btn.section__button-cta {
    padding: 0 50px; }
  .figure-compound-error__figures {
    opacity: 0;
    animation: errorOpacity 0.3s 0.5s forwards; }
  .figure-compound-error__inner {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-top: 30px; }
    @media (max-width: 767px) {
      .figure-compound-error__inner {
        padding-top: 0; } }
    .figure-compound-error__inner > * {
      opacity: 0;
      animation: errorOpacity 0.3s 0.5s forwards; }
    .figure-compound-error__inner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 380px;
      height: 380px;
      border-radius: 90px;
      background-image: linear-gradient(-179.08deg, #6F65E6 8.65%, #7FDDE2 105.61%);
      transform: rotate(-45deg) translate(-50px, 0);
      box-shadow: 0 4.8px 20px rgba(134, 111, 232, 0.15);
      z-index: -1; }
      @media (min-width: 768px) {
        .figure-compound-error__inner::before {
          animation: errorBgScale 0.5s forwards; } }
      @media (max-width: 767px) {
        .figure-compound-error__inner::before {
          width: 280px;
          height: 280px;
          transform: rotate(-45deg);
          border-radius: 60px;
          top: 50px; } }
  .figure-compound-error__circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: #FDD554;
    position: absolute;
    top: 70px;
    left: -60px; }
    @media (min-width: 768px) {
      .figure-compound-error__circle {
        animation: circleAnimation 20s 0.8s infinite linear; } }
    @media (max-width: 767px) {
      .figure-compound-error__circle {
        width: 90px;
        height: 90px;
        top: 115px;
        left: 0; } }
  .figure-compound-error__circle-outline {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid #F1A5A9;
    bottom: 20px;
    right: -20px; }
    @media (min-width: 768px) {
      .figure-compound-error__circle-outline {
        animation: circleAnimation 20s 0.8s infinite linear; } }
    @media (max-width: 767px) {
      .figure-compound-error__circle-outline {
        bottom: 60px;
        right: 5px; } }
  .figure-compound-error__circle-outline-sm {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #84CEAF;
    left: -95px;
    top: 260px;
    z-index: 2; }
    @media (min-width: 768px) {
      .figure-compound-error__circle-outline-sm {
        animation: orbitAnimation 20s 0.8s infinite linear; } }
    @media (max-width: 767px) {
      .figure-compound-error__circle-outline-sm {
        left: -50px;
        top: 200px; } }
  .figure-compound-error__svg {
    position: absolute; }
    .figure-compound-error__svg svg {
      width: 100%;
      height: auto; }
    .figure-compound-error__svg--1 {
      width: 50px;
      top: 40px;
      left: 10px; }
      .figure-compound-error__svg--1 svg {
        stroke: #FDD554; }
      @media (min-width: 768px) {
        .figure-compound-error__svg--1 {
          animation: strokeAnimation2 5s 0.8s infinite linear; } }
    .figure-compound-error__svg--2 {
      top: 60px;
      right: -35%;
      width: 60px; }
      .figure-compound-error__svg--2 svg {
        stroke: #00B67A; }
      @media (max-width: 767px) {
        .figure-compound-error__svg--2 {
          top: 90px;
          right: -20px; } }
      @media (min-width: 768px) {
        .figure-compound-error__svg--2 {
          animation: strokeAnimation3 5s 0.8s infinite linear; } }
    .figure-compound-error__svg--3 {
      width: 60px;
      top: 50%;
      left: -70%; }
      @media (min-width: 768px) {
        .figure-compound-error__svg--3 {
          animation: strokeAnimation1 6s 3s infinite linear; } }
      @media (max-width: 767px) {
        .figure-compound-error__svg--3 {
          left: -40%; } }
      .figure-compound-error__svg--3 svg {
        stroke: #7867C0; }
    .figure-compound-error__svg--4 {
      width: 60px;
      top: 80%;
      right: -70%; }
      @media (min-width: 768px) {
        .figure-compound-error__svg--4 {
          animation: strokeAnimation1 6s 3s infinite linear; } }
      @media (max-width: 767px) {
        .figure-compound-error__svg--4 {
          right: -40%; } }
      .figure-compound-error__svg--4 svg {
        stroke: #7867C0; }
    .figure-compound-error__svg--5 {
      width: 60px;
      bottom: 20%;
      left: -40%; }
      @media (min-width: 768px) {
        .figure-compound-error__svg--5 {
          animation: strokeAnimation1 6s 0s infinite linear; } }
      @media (max-width: 767px) {
        .figure-compound-error__svg--5 {
          left: -20%; } }
      .figure-compound-error__svg--5 svg {
        stroke: #7867C0; }

@keyframes circleAnimation {
  0% {
    transform: rotate(360deg) translateX(20%) rotate(-360deg); }
  100% {
    transform: rotate(0deg) translateX(20%) rotate(0deg); } }

@keyframes errorBgScale {
  0% {
    transform: rotate(-45deg) translate(-56px, 0) scale(0); }
  100% {
    transform: rotate(-45deg) translate(-56px, 0) scale(1); } }

@keyframes errorOpacity {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.advantages-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px 30px; }
  @media (max-width: 991px) {
    .advantages-list {
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 543px) {
    .advantages-list {
      grid-template-columns: 1fr; } }
  .advantages-list__img {
    width: 70px;
    height: 70px;
    background-color: #FFF4EA;
    border-radius: 50%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px; }
    @media (max-width: 543px) {
      .advantages-list__img {
        margin-left: auto;
        margin-right: auto; } }
    .advantages-list__img img {
      max-width: 100%; }
  .advantages-list__title {
    font-size: 24px;
    font-weight: 700 !important;
    margin-bottom: 20px; }
    @media (max-width: 543px) {
      .advantages-list__title {
        font-size: 1.25rem; } }
  .advantages-list__text {
    margin-bottom: 0; }
    @media (max-width: 543px) {
      .advantages-list__text {
        max-width: 75%;
        margin-left: auto;
        margin-right: auto; } }
  @media (max-width: 543px) {
    .advantages-list__item {
      text-align: center; } }
  @media (min-width: 768px) {
    .advantages-list--secondary {
      grid-template-columns: repeat(4, 1fr); } }
  .advantages-list--secondary .advantages-list__img {
    margin-left: auto;
    margin-right: auto; }
  .advantages-list--secondary .advantages-list__item {
    text-align: center; }
  .advantages-list--secondary .advantages-list__title {
    font-size: 18px;
    margin-bottom: 9px; }

.service-card {
  position: relative;
  padding: 30px 30px 35px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  transition: box-shadow 0.25s; }
  .service-card:hover {
    box-shadow: 0 4.82614px 20px rgba(134, 111, 232, 0.15); }
    .service-card:hover .service-card__btn {
      color: #fff;
      background-color: #FF7F56; }
  .service-card__title {
    position: relative;
    padding-bottom: 8px;
    font-weight: 700;
    border-bottom: 1px solid #DFE4EA; }
    .article-content .service-card__title {
      font-weight: 700; }
    @media (max-width: 543px) {
      .service-card__title {
        font-size: 1.25rem; } }
  .service-card__text {
    margin-bottom: 32px; }
  .service-card__btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #FF7F56;
    border: 1px solid #FF7F56;
    padding: 10px 20px;
    border-radius: 5px;
    transition: color 0.25s, background-color 0.25s; }
  .service-card__link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    font-size: 0; }

.list-bulleted > li {
  position: relative;
  padding-left: 48px;
  font-size: 24px;
  font-weight: 700; }
  @media (max-width: 991px) {
    .list-bulleted > li {
      padding-left: 30px;
      font-size: 20px; } }
  @media (max-width: 543px) {
    .list-bulleted > li {
      font-size: 18px;
      padding-left: 20px; } }
  .list-bulleted > li::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #FF7F56; }
    @media (max-width: 991px) {
      .list-bulleted > li::before {
        top: 6px; } }
    @media (max-width: 543px) {
      .list-bulleted > li::before {
        width: 10px;
        height: 10px; } }

.steps-list__item {
  position: relative;
  margin-bottom: 60px; }
  .steps-list__item:nth-child(even) .steps-list__inner {
    margin-left: auto; }
    @media (max-width: 767px) {
      .steps-list__item:nth-child(even) .steps-list__inner {
        margin-left: 0; } }
  .steps-list__item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: calc(100% + 30px);
    background-image: linear-gradient(0, #E9E9E9 70%, transparent 30%);
    background-size: 4px 14px;
    background-repeat: repeat-y;
    background-position: 0 0;
    animation: borderGradient 5s infinite linear; }
    @media (max-width: 767px) {
      .steps-list__item:not(:last-child)::after {
        left: 20px;
        top: 35px; } }
    @media (max-width: 767px) {
      .steps-list__item:not(:last-child)::after {
        top: 28px; } }
  @media (max-width: 767px) {
    .steps-list__item {
      padding-left: 50px; } }

.steps-list__inner {
  max-width: 470px; }
  @media (max-width: 1199px) {
    .steps-list__inner {
      max-width: 350px; } }
  @media (max-width: 991px) {
    .steps-list__inner {
      max-width: 300px; } }

.steps-list__title {
  font-weight: 700 !important;
  font-size: 2.2rem;
  margin-bottom: 1rem; }
  @media (max-width: 543px) {
    .steps-list__title {
      font-size: 1.6rem; } }

.steps-list__mark {
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-image: linear-gradient(31.17deg, #D2A4FF 0%, #8EC5FC 100%);
  z-index: 1; }
  @media (max-width: 767px) {
    .steps-list__mark {
      left: 20px;
      top: 4px; } }
  @media (max-width: 543px) {
    .steps-list__mark {
      top: -3px; } }
  .steps-list__mark::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(31.17deg, #D2A4FF 0%, #8EC5FC 100%);
    opacity: 0;
    animation: markGlow 2s infinite linear; }

@keyframes markGlow {
  0% {
    transform: translateX(-50%) scale(0);
    opacity: 0; }
  70% {
    transform: translateX(-50%) scale(1);
    opacity: 0.3; }
  90% {
    transform: translateX(-50%) scale(1);
    opacity: 0; } }

@keyframes borderGradient {
  0% {
    background-position: 0 0; }
  100% {
    background-position: 0 100%; } }

.pricing-feature {
  box-shadow: 0 4.82614px 20px rgba(134, 111, 232, 0.15);
  border-radius: 30px;
  padding: 20px 20px 30px;
  background-color: #fff; }
  .pricing-feature__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 17px; }
  .pricing-feature__title {
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 600;
    text-align: left; }
    @media (max-width: 543px) {
      .pricing-feature__title {
        font-size: 18px; } }
    .article-content .pricing-feature__title {
      font-weight: 600; }
  .pricing-feature__badge {
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    padding: 7px 14px;
    background-color: #FF7F56;
    color: #fff;
    border-radius: 5px; }
  .pricing-feature__dl {
    display: grid;
    grid-template-columns: auto 63px;
    grid-gap: 10px;
    margin-bottom: 0; }
  .pricing-feature__dt {
    text-align: left;
    font-weight: 400; }
  .pricing-feature__dd {
    text-align: center;
    margin-bottom: 0; }
    .pricing-feature__dd--striked {
      text-decoration: line-through; }

.site-blog__top {
  margin-bottom: 40px; }
  @media (max-width: 991px) {
    .site-blog__top {
      display: block; } }

.site-blog__heading {
  display: flex;
  justify-content: space-between; }
  @media (max-width: 1199px) {
    .site-blog__heading {
      display: block;
      margin-bottom: 16px; } }
  @media (max-width: 991px) {
    .site-blog__heading {
      display: flex;
      margin-bottom: 0; } }
  @media (max-width: 767px) {
    .site-blog__heading {
      display: block;
      margin-bottom: 16px; } }

.site-blog__title {
  color: #121C42;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 16px; }
  @media (max-width: 543px) {
    .site-blog__title {
      font-size: 24px; } }

.site-blog__subtitle {
  color: #121C42;
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
  margin-bottom: 16px; }
  @media (max-width: 543px) {
    .site-blog__subtitle {
      font-size: 18px;
      line-height: 24px; } }

.site-blog__top-left {
  width: 100%;
  display: flex;
  flex-direction: column; }

.site-blog__top-right {
  padding-left: 30px;
  width: 392px;
  flex-shrink: 0;
  min-height: 500px; }
  @media (max-width: 1199px) {
    .site-blog__top-right {
      width: 310px; } }
  @media (max-width: 991px) {
    .site-blog__top-right {
      padding-left: 0;
      width: 100%;
      min-height: auto;
      margin-top: 16px; } }

@media (max-width: 991px) {
  .site-blog__top-articles {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; } }

@media (max-width: 991px) {
  .site-blog__top-articles .top-article-preview {
    width: 45%; } }

@media (max-width: 767px) {
  .site-blog__top-articles .top-article-preview {
    width: 100%; } }

.site-blog__main-article {
  flex: 1; }

.site-blog__articles {
  display: flex;
  flex-wrap: wrap; }

.site-blog__article {
  width: calc(33.333% - 20px);
  margin-bottom: 30px;
  margin-right: 30px; }
  .site-blog__article .blog-preview-card {
    height: 100%; }
  .site-blog__article:nth-child(3n) {
    margin-right: 0; }
  @media (max-width: 991px) {
    .site-blog__article {
      margin-right: 0;
      width: calc(50% - 15px); }
      .site-blog__article:nth-child(odd) {
        margin-right: 30px; } }
  @media (max-width: 543px) {
    .site-blog__article {
      width: 100%; }
      .site-blog__article:nth-child(n) {
        margin-right: 0; } }

.site-blog__category-description {
  margin-bottom: 0; }

.site-blog__categories-list {
  position: relative;
  z-index: 1;
  width: 200px; }
  .site-blog__categories-list .category-wrapper .select2.select2-container {
    padding: 0;
    border: none; }
    .site-blog__categories-list .category-wrapper .select2.select2-container .select2-selection__rendered {
      padding: 8px 20px;
      font-size: 15px;
      color: #1A2430; }
      .site-blog__categories-list .category-wrapper .select2.select2-container .select2-selection__rendered::before {
        display: none; }
    .site-blog__categories-list .category-wrapper .select2.select2-container .select2-selection--single {
      background-color: #F7F6FA;
      border-radius: 5px;
      border: none; }
    .site-blog__categories-list .category-wrapper .select2.select2-container .select2-selection__arrow {
      top: 16px;
      right: 10px;
      width: 14px;
      height: 14px; }
      .site-blog__categories-list .category-wrapper .select2.select2-container .select2-selection__arrow::before, .site-blog__categories-list .category-wrapper .select2.select2-container .select2-selection__arrow::after {
        content: '';
        position: absolute;
        top: 3px;
        left: 3px;
        width: 6px;
        height: 2px;
        background-color: #1A2430; }
      .site-blog__categories-list .category-wrapper .select2.select2-container .select2-selection__arrow::before {
        transform: rotate(45deg);
        transform-origin: left center; }
      .site-blog__categories-list .category-wrapper .select2.select2-container .select2-selection__arrow::after {
        left: 5px;
        transform: rotate(-45deg);
        transform-origin: right center; }
      .site-blog__categories-list .category-wrapper .select2.select2-container .select2-selection__arrow b {
        display: none; }
  .site-blog__categories-list .select2-results__option {
    font-size: 15px; }

.top-article-preview {
  display: flex;
  position: relative;
  margin-bottom: 18px; }
  .top-article-preview__link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0; }
  .top-article-preview__thumb {
    width: 70px;
    height: 70px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 30px;
    flex-shrink: 0; }
    .top-article-preview__thumb img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover; }
      .is-single .article-content .top-article-preview__thumb img {
        height: 100% !important; }
  .top-article-preview__title {
    font-size: 18px;
    line-height: 24px;
    color: #414656;
    margin-bottom: 5px; }
  .top-article-preview__date {
    color: #BABDC8;
    font-size: 14px; }

.blog-preview-card {
  position: relative;
  border-radius: 12px;
  border: 1px solid #DAE1F2;
  background: #fff;
  display: flex;
  flex-direction: column; }
  .blog-preview-card--big {
    height: 100%;
    border: none;
    box-shadow: 0px 1px 1px rgba(21, 88, 168, 0.05), 0px 2px 25px -5px rgba(21, 88, 168, 0.05), 0px 4px 14px -4px rgba(21, 88, 168, 0.1); }
    @media (max-width: 991px) {
      .blog-preview-card--big {
        display: block;
        height: auto; } }
    .blog-preview-card--big .blog-preview-card__img {
      padding-bottom: 0;
      height: 100%; }
      @media (max-width: 991px) {
        .blog-preview-card--big .blog-preview-card__img {
          padding-bottom: 45%;
          height: 0; } }
    .blog-preview-card--big .blog-preview-card__info {
      padding: 20px 44px; }
  .blog-preview-card__link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1; }
  .blog-preview-card__img {
    position: relative;
    padding-bottom: 75%;
    border-radius: 12px 12px 0 0;
    overflow: hidden; }
    @media (max-width: 543px) {
      .blog-preview-card__img {
        padding-bottom: 50%; } }
    .blog-preview-card__img img {
      border-radius: 0 !important;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      object-fit: cover; }
      .is-single .article-content .blog-preview-card__img img {
        height: 100% !important; }
  .blog-preview-card__info {
    background-color: #fff;
    padding: 15px 20px;
    padding-right: 30px;
    border-radius: 0 0 12px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    @media (max-width: 543px) {
      .blog-preview-card__info {
        padding: 10px 20px; } }
  .blog-preview-card__title {
    color: #121C42;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 5px;
    max-width: 525px;
    font-weight: 600; }
    @media (max-width: 543px) {
      .blog-preview-card__title {
        font-size: 18px;
        line-height: 24px; } }
  .blog-preview-card__date {
    font-size: 14px;
    color: #BABDC8; }
    @media (max-width: 543px) {
      .blog-preview-card__date {
        font-size: 12px; } }
  .blog-preview-card__details {
    padding-top: 10px;
    position: relative;
    z-index: 3; }
  .blog-preview-card__detail {
    display: block; }
  .blog-preview-card__categories {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 4;
    display: flex;
    flex-wrap: wrap; }
  .blog-preview-card__category {
    padding: 6px 20px;
    display: block;
    background-color: #F7F6FA;
    border-radius: 4px;
    margin-right: 5px;
    margin-bottom: 5px; }
    .blog-preview-card__category.is-link-active {
      pointer-events: auto;
      opacity: 1 !important; }

::selection {
  background-color: #FF7F56;
  color: white; }

.is-landing-referral-program .things-to-keep .things__item::after {
  content: '';
  width: 10px;
  height: 10px;
  background: linear-gradient(70deg, #b941dc 0%, #7875ff 50%, #76f7ef 100%) no-repeat center top;
  border-radius: 50%;
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease-out; }

.is-landing-referral-program .things-to-keep .things__item:hover::after, .is-landing-referral-program .things-to-keep .active.things__item::after {
  transform: scale(1);
  opacity: 1; }

body {
  color: #010648; }

.section .section__heading {
  font-size: 42px;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.125;
  color: #010648;
  margin-bottom: 16px; }
  @media (max-width: 767px) {
    .section .section__heading {
      font-size: 31.5px;
      font-size: 2.25rem; } }
  @media (max-width: 543px) {
    .section .section__heading {
      font-size: 21px;
      font-size: 1.5rem; } }

.section .section__subheading {
  font-size: 16px;
  line-height: 1.5; }

.section .section__button-cta {
  margin-top: 1.5rem;
  white-space: nowrap !important;
  display: inline-block;
  font-size: 18px;
  padding: 15px 50px;
  min-width: 190px; }
  @media (max-width: 543px) {
    .section .section__button-cta {
      margin-top: 1rem;
      font-size: 16px;
      padding: 10px 30px; } }

.section-promo .section__heading {
  font-size: 63px;
  font-size: 4.5rem;
  font-weight: bold;
  line-height: 1;
  color: #010648;
  margin-bottom: 2rem;
  white-space: nowrap; }
  @media (max-width: 767px) {
    .section-promo .section__heading {
      font-size: 42px;
      font-size: 3rem;
      margin-bottom: 1rem; } }
  @media (max-width: 543px) {
    .section-promo .section__heading {
      font-size: 31.5px;
      font-size: 2.25rem; } }

.section-promo .section__subheading {
  font-size: 18px; }
  .section-promo .section__subheading p {
    margin-bottom: 0.5rem; }

.section-subscribe {
  position: relative; }
  .section-subscribe .section__heading {
    font-size: 2.4rem;
    line-height: 1.2; }
    @media (max-width: 543px) {
      .section-subscribe .section__heading {
        font-size: 2rem; } }
  .section-subscribe .section__inner {
    display: grid;
    padding-left: 65px;
    padding-right: 50px;
    grid-gap: 40px;
    grid-template-columns: 495px auto;
    align-items: center;
    border-radius: 13px;
    box-shadow: 0 4.82614px 20px rgba(134, 111, 232, 0.15); }
    @media (max-width: 1199px) {
      .section-subscribe .section__inner {
        display: block;
        padding: 40px 20px;
        max-width: 640px;
        margin-left: auto;
        margin-right: auto; }
        .section-subscribe .section__inner .figure-compound {
          margin-left: auto;
          margin-right: auto; } }
  @media (max-width: 1199px) {
    .section-subscribe .section__button-cta {
      margin-right: auto;
      margin-left: auto; } }
  @media (max-width: 1199px) {
    .section-subscribe .section__col:last-child {
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
      text-align: center; } }

.calculate-clean {
  position: relative;
  z-index: 2;
  padding-top: 15px;
  padding-bottom: 70px; }
  .calculate-clean .section__wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 30px;
    padding: 32px 50px 28px; }
    @media (max-width: 991px) {
      .calculate-clean .section__wrapper {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
        padding: 1.5rem 1.7rem; } }
  .calculate-clean .section__control label {
    font-size: 15px;
    font-weight: 600;
    color: #1A2430;
    margin-bottom: 0.8rem;
    white-space: nowrap; }
    @media (max-width: 543px) {
      .calculate-clean .section__control label {
        font-size: 12px;
        margin-bottom: 0.4rem; } }
  .calculate-clean .section__control .select-wrapper {
    background: #F7F6FA;
    border-radius: 5px;
    max-width: 190px;
    position: relative; }
    @media (max-width: 991px) {
      .calculate-clean .section__control .select-wrapper {
        max-width: 100%; } }
    .calculate-clean .section__control .select-wrapper input {
      border-bottom: none;
      height: 54px;
      line-height: 54px;
      padding: 20px;
      padding-right: 30px;
      font-size: 15px;
      margin-bottom: 0;
      overflow: hidden;
      text-overflow: ellipsis; }
      @media (max-width: 543px) {
        .calculate-clean .section__control .select-wrapper input {
          font-size: 14px; } }
    .calculate-clean .section__control .select-wrapper .caret {
      font-size: 0; }
      .calculate-clean .section__control .select-wrapper .caret::before, .calculate-clean .section__control .select-wrapper .caret::after {
        content: '';
        position: absolute;
        top: 11px;
        left: -23px;
        width: 6px;
        height: 2px;
        background-color: #1A2430;
        transform-origin: top center; }
      .calculate-clean .section__control .select-wrapper .caret::before {
        transform: rotate(45deg); }
      .calculate-clean .section__control .select-wrapper .caret::after {
        left: -21px;
        transform: rotate(-45deg); }
  .calculate-clean .section__control div.select-wrapper.mdb-select ul.select-dropdown.dropdown-content > li:first-child.disabled span {
    text-align: left;
    color: #1A2430;
    padding-left: 1rem;
    padding-right: 1rem; }
  .calculate-clean .section__control .count-of-pages {
    position: relative;
    background: #F7F6FA;
    border-radius: 5px;
    max-width: 190px;
    height: 54px;
    line-height: 54px;
    padding: 0 30px; }
    @media (max-width: 991px) {
      .calculate-clean .section__control .count-of-pages {
        max-width: 100%; } }
    .calculate-clean .section__control .count-of-pages input {
      border-bottom: none;
      padding: 20px 0;
      height: 100%;
      font-size: 15px;
      text-align: center;
      -moz-appearance: textfield;
      appearance: textfield; }
      .calculate-clean .section__control .count-of-pages input::-webkit-outer-spin-button, .calculate-clean .section__control .count-of-pages input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0; }
      @media (max-width: 543px) {
        .calculate-clean .section__control .count-of-pages input {
          font-size: 14px; } }
    .calculate-clean .section__control .count-of-pages .fa {
      font-size: 10px;
      position: absolute;
      top: 0;
      height: 100%;
      line-height: 54px;
      width: 30px;
      text-align: center;
      cursor: pointer; }
      .calculate-clean .section__control .count-of-pages .fa-minus {
        left: 0; }
      .calculate-clean .section__control .count-of-pages .fa-plus {
        right: 0; }
      .calculate-clean .section__control .count-of-pages .fa.disabled {
        color: #BABDC8; }
  .calculate-clean .section__control .urgency__wrapper {
    position: relative;
    background: #F7F6FA;
    border-radius: 5px;
    max-width: 190px;
    height: 54px;
    line-height: 54px; }
    @media (max-width: 991px) {
      .calculate-clean .section__control .urgency__wrapper {
        max-width: 100%; } }
    @media (max-width: 543px) {
      .calculate-clean .section__control .urgency__wrapper .select2-selection__rendered {
        font-size: 14px !important; } }
  .calculate-clean .section__control .urgency__choice .urgency__decrease,
  .calculate-clean .section__control .urgency__choice .urgency__increase {
    font-size: 10px; }
  .calculate-clean .section__control .urgency__select.select2-dropdown--below {
    margin-top: -2rem; }
  .calculate-clean .section__control .select2-selection__rendered {
    padding-left: 30px;
    padding-right: 30px; }
    @media (max-width: 543px) {
      .calculate-clean .section__control .select2-selection__rendered {
        font-size: 14px; } }
  .calculate-clean .section__control .select2-container--default .select2-selection--single {
    border-bottom: none; }
  .calculate-clean .section__control .dropdown-content {
    border-radius: 5px; }
  .calculate-clean .section__btn {
    min-width: 190px; }
    @media (max-width: 543px) {
      .calculate-clean .section__btn {
        min-width: auto; } }
  .calculate-clean .select--submit {
    text-align: center;
    margin-top: -10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    @media (max-width: 991px) {
      .calculate-clean .select--submit {
        grid-column: 1/-1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px;
        margin-top: 0;
        align-items: center; } }
  .calculate-clean .order-total-price {
    font-size: 26px;
    font-weight: 600;
    color: #1A2430; }
    @media (max-width: 991px) {
      .calculate-clean .order-total-price {
        display: block;
        overflow: hidden; } }
    @media (max-width: 543px) {
      .calculate-clean .order-total-price {
        font-size: 20px; } }
    .calculate-clean .order-total-price::before {
      content: '$';
      font-family: 'Gilroy', sans-serif;
      font-size: 26px;
      font-weight: 600;
      color: #1A2430; }
      @media (max-width: 543px) {
        .calculate-clean .order-total-price::before {
          font-size: 20px; } }
  .calculate-clean .select2-results__group {
    display: none; }
  .calculate-clean .select2-results__option {
    height: auto;
    line-height: initial; }

.btn-blank {
  border: 1px solid #FF7F56;
  color: #FF7F56;
  box-shadow: none;
  border-radius: 5px;
  padding: 7px 20px;
  background: #fff; }
  .btn-blank:hover {
    background: #FF7F56;
    color: #fff; }

.btn-main, .section .section__button-cta {
  display: inline-block;
  background-color: #FF7F56;
  color: #fff;
  border-radius: 5px;
  padding: 0 20px;
  height: 54px;
  line-height: 54px;
  box-shadow: 0 4px 10px rgba(255, 125, 86, 0.3);
  transition: background-color 0.25s ease;
  text-align: center; }
  .btn-main:hover, .section .section__button-cta:hover {
    color: #fff;
    background-color: #7159B5;
    box-shadow: 0 4px 10px rgba(130, 86, 255, 0.3); }

.btn-alt, .site-header .main-nav__items.col-right #main-actions, .site-header .main-nav__link.link-order, .site-header .main-nav .main-nav__link.nav-link.btn-order, .site-header .main-nav .main-nav__link.nav-link.btn-dashboard {
  display: inline-block;
  background-color: transparent;
  color: #FF7F56 !important;
  font-size: 16px !important;
  height: 42px;
  line-height: 42px;
  border-radius: 5px;
  border: 1px solid #FF7F56;
  padding-top: 0;
  padding-bottom: 0;
  transition: background-color 0.25s ease;
  width: 115px;
  text-align: center;
  font-weight: 400 !important; }
  .btn-alt:hover, .site-header .main-nav__items.col-right #main-actions:hover, .site-header .main-nav__link.link-order:hover, .site-header .main-nav .main-nav__link.nav-link.btn-order:hover, .site-header .main-nav .main-nav__link.nav-link.btn-dashboard:hover {
    color: #fff !important;
    background-color: #FF7F56 !important; }

.error-page {
  min-height: 470px;
  height: calc(100vh - 520px);
  display: flex;
  align-items: center;
  justify-content: center; }
  @media (max-width: 767px) {
    .error-page {
      min-height: 390px; } }

body.is-single .breadcrumbs-nav {
  padding-top: 40px;
  padding-bottom: 40px; }
  @media (max-width: 991px) {
    body.is-single .breadcrumbs-nav {
      padding-top: 30px;
      padding-bottom: 30px; } }
  @media (max-width: 543px) {
    body.is-single .breadcrumbs-nav {
      padding-top: 20px;
      padding-bottom: 20px; } }

.breadcrumbs-nav__list .fa {
  display: none; }

.breadcrumbs-nav__list.list-inline li {
  display: inline; }

.breadcrumbs-nav__list .nav-item a {
  color: #010648;
  font-size: 1rem; }
  .breadcrumbs-nav__list .nav-item a::after {
    content: '>' !important;
    font-size: 0.8rem;
    position: relative;
    top: -2px; }
  .breadcrumbs-nav__list .nav-item a:hover {
    text-decoration: none;
    color: #7159B5; }
    .breadcrumbs-nav__list .nav-item a:hover span {
      text-decoration: none; }

@media (max-width: 543px) {
  .is-500 .site-footer,
  .is-404 .site-footer {
    margin-top: -140px; } }

@keyframes strokeAnimation1 {
  0% {
    stroke-dasharray: 63;
    stroke-dashoffset: 63; }
  30% {
    stroke-dasharray: 63;
    stroke-dashoffset: 0; }
  50% {
    stroke-dasharray: 63;
    stroke-dashoffset: 0; }
  80% {
    stroke-dasharray: 63;
    stroke-dashoffset: -63; }
  100% {
    stroke-dasharray: 185;
    stroke-dashoffset: -185; } }

@keyframes strokeAnimation2 {
  0% {
    stroke-dasharray: 185;
    stroke-dashoffset: 185; }
  30% {
    stroke-dasharray: 185;
    stroke-dashoffset: 0; }
  50% {
    stroke-dasharray: 185;
    stroke-dashoffset: 0; }
  80% {
    stroke-dasharray: 185;
    stroke-dashoffset: -185; }
  100% {
    stroke-dasharray: 185;
    stroke-dashoffset: -185; } }

@keyframes strokeAnimation3 {
  0% {
    stroke-dasharray: 191;
    stroke-dashoffset: 191; }
  30% {
    stroke-dasharray: 191;
    stroke-dashoffset: 0; }
  50% {
    stroke-dasharray: 191;
    stroke-dashoffset: 0; }
  80% {
    stroke-dasharray: 191;
    stroke-dashoffset: -191; }
  100% {
    stroke-dasharray: 191;
    stroke-dashoffset: -191; } }

@keyframes orbitAnimation {
  0% {
    transform: rotate(0deg) translateX(100%) rotate(0deg); }
  100% {
    transform: rotate(360deg) translateX(100%) rotate(-360deg); } }

@keyframes figureCompoundImageSquare {
  0% {
    transform: rotate(0deg) translateX(10px) rotate(0deg); }
  100% {
    transform: rotate(360deg) translateX(10px) rotate(-360deg); } }

@keyframes figureCompoundImageBg {
  0% {
    transform: rotate(0deg) translateX(-20px) rotate(0deg); }
  100% {
    transform: rotate(360deg) translateX(-20px) rotate(-360deg); } }

div.select-wrapper.mdb-select ul.dropdown-content li:hover {
  background: #fff;
  color: #1A2430; }
  @media (hover: hover) {
    div.select-wrapper.mdb-select ul.dropdown-content li:hover {
      color: #ffffff; } }

div.select-wrapper.mdb-select ul.dropdown-content li span {
  position: relative; }
  div.select-wrapper.mdb-select ul.dropdown-content li span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -0.5rem;
    width: 0.5rem;
    height: 100%;
    background-color: #7159B5; }

div.select-wrapper.mdb-select ul.select-dropdown.dropdown-content > li[class] > span:hover {
  transform: none;
  color: #1A2430;
  background: #fff; }
  @media (hover: hover) {
    div.select-wrapper.mdb-select ul.select-dropdown.dropdown-content > li[class] > span:hover {
      transform: translateX(0.5rem);
      color: #252525;
      background: #fafafa; } }

@keyframes select2-dropdownBelow {
  from {
    opacity: 0;
    max-height: 0; }
  to {
    opacity: 1;
    max-height: 242px; } }

@keyframes select2-dropdownAbove {
  from {
    opacity: 0;
    max-height: 0; }
  to {
    opacity: 1;
    max-height: 242px; } }

.urgency__wrapper .select2-container {
  top: 0 !important; }

.urgency__wrapper .select2-container--default .select2-results__group {
  text-align: left;
  color: #1A2430;
  padding: .8rem 1rem;
  font-weight: bold;
  font-size: .85rem !important;
  letter-spacing: 0;
  border: none;
  background: transparent; }

.urgency__wrapper .select2-container--default .select2-results > .select2-results__options {
  height: 242px;
  max-height: none; }
  .urgency__wrapper .select2-container--default .select2-results > .select2-results__options > .select2-results__option .select2-results__group {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    background: #fff;
    height: 38px;
    white-space: nowrap; }
    @media (max-width: 361px) {
      .urgency__wrapper .select2-container--default .select2-results > .select2-results__options > .select2-results__option .select2-results__group {
        height: 54px;
        white-space: normal; } }
  .urgency__wrapper .select2-container--default .select2-results > .select2-results__options > .select2-results__option:first-child {
    position: static; }

.urgency__wrapper .select2-container--default .select2-results__option {
  font-size: .95rem;
  padding: .6rem 1rem;
  display: block;
  transition: all .2s ease;
  position: relative;
  padding-left: 1rem; }
  .urgency__wrapper .select2-container--default .select2-results__option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0.5rem;
    background-color: #7159B5;
    transform: scaleX(0);
    transition: transform 0.2s ease;
    transform-origin: left center; }
  .urgency__wrapper .select2-container--default .select2-results__option[aria-selected=true] {
    font-weight: 600;
    background-color: #7159B5;
    color: #ffffff; }
  .urgency__wrapper .select2-container--default .select2-results__option--highlighted {
    background-color: #fafafa !important;
    color: #252525 !important;
    font-weight: 400 !important;
    padding-left: 1.5rem !important; }
    .urgency__wrapper .select2-container--default .select2-results__option--highlighted::before {
      transform: scaleX(1); }
    .urgency__wrapper .select2-container--default .select2-results__option--highlighted[aria-selected=true] {
      font-weight: 600 !important;
      background-color: #7159B5 !important;
      color: #ffffff !important;
      padding-left: 1rem !important; }

.urgency__wrapper .select2-results__options.select2-results__options--nested {
  padding-top: 38px; }
  @media (max-width: 361px) {
    .urgency__wrapper .select2-results__options.select2-results__options--nested {
      padding-top: 54px; } }

.urgency__wrapper .select2-dropdown--below {
  margin-top: 0 !important;
  top: -45px; }

.urgency__choice + span.select2-container.select2-container--default.select2-container--open .select2-dropdown {
  border-radius: 5px; }
  .urgency__choice + span.select2-container.select2-container--default.select2-container--open .select2-dropdown::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 38px;
    background-color: #fff;
    top: 0;
    left: 0; }

.select--urgency .urgency__choice + span.select2-container.select2-container--default.select2-container--open .select2-dropdown--above {
  top: -168px;
  animation: select2-dropdownAbove 0.2s;
  opacity: 1; }
  .select--urgency .urgency__choice + span.select2-container.select2-container--default.select2-container--open .select2-dropdown--above .select2-results__options::before {
    animation: select2-dropdownBefore forwards 0.3s; }

.select--urgency .urgency__choice + span.select2-container.select2-container--default.select2-container--open .select2-dropdown--below {
  top: 0;
  animation: select2-dropdownBelow 0.2s;
  opacity: 1; }
  .select--urgency .urgency__choice + span.select2-container.select2-container--default.select2-container--open .select2-dropdown--below .select2-results__options::before {
    animation: select2-dropdownBefore forwards 0.3s; }

.aditional-content > p:first-child:first-letter {
  text-transform: uppercase; }

.is-index.is-simpledesign .seo-item-content p {
  text-align: justify;
  color: rgba(0, 0, 0, 0.8); }

.text-strong {
  font-weight: 600; }

.text-normal {
  font-weight: 300; }

.section-seo a:not(.btn) {
  position: relative;
  color: black;
  text-shadow: 1px 1px 0px 5px white;
  border-bottom: 1px dashed silver; }
  .section-seo a:not(.btn):hover {
    color: #7159B5; }

.lead-responsive {
  font-size: 1.25rem; }
  @media (max-width: 767px) {
    .lead-responsive {
      font-size: 1.15rem; } }

@media (max-width: 767px) {
  .text-sm-justify {
    text-align: justify !important; } }

@font-face {
  font-family: "Gilroy";
  src: local("Gilroy Regular"), local("Gilroy-Regular"), url("/static/fonts/Gilroy-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "Gilroy";
  src: local("Gilroy Medium"), local("Gilroy-Medium"), url("/static/fonts/Gilroy-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "Gilroy";
  src: local("Gilroy SemiBold"), local("Gilroy-SemiBold"), url("/static/fonts/Gilroy-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "Gilroy";
  src: local("Gilroys Bold"), local("Gilroy-Bold"), url("/static/fonts/Gilroy-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap; }

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000; }
  .site-header .main-nav {
    transition: padding 0.1s ease-in-out;
    padding: 1.25rem 0;
    position: relative;
    background: #fff; }
    .site-header .main-nav .nav-link.btn-order, .site-header .main-nav .nav-link.btn-dashboard {
      margin: 0; }
    @media (max-width: 991px) {
      .site-header .main-nav {
        padding: 0.75rem 0; } }
    .site-header .main-nav.top-nav-collapse {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
    .site-header .main-nav__phone {
      display: none; }
      @media (max-width: 991px) {
        .site-header .main-nav__phone {
          display: block;
          justify-self: flex-end;
          font-size: 1rem;
          margin-right: 0.75rem; } }
      .site-header .main-nav__phone .main-nav__link {
        font-size: 1rem; }
    .site-header .main-nav__btns {
      display: flex;
      align-items: center;
      margin-left: auto; }
      @media (max-width: 543px) {
        .site-header .main-nav__btns {
          display: none; } }
    @media (max-width: 991px) {
      .site-header .main-nav__conversion {
        padding-right: 3.5rem;
        display: flex !important; } }
    .site-header .main-nav__container {
      position: relative;
      display: flex;
      max-width: 100%; }
      @media (min-width: 544px) {
        .site-header .main-nav__container {
          max-width: 100%; } }
      @media (min-width: 768px) {
        .site-header .main-nav__container {
          max-width: 945px; } }
      @media (min-width: 992px) {
        .site-header .main-nav__container {
          max-width: 1180px; } }
      body.is-mobilenav .site-header .main-nav__container {
        position: unset; }
    .site-header .main-nav__wrapper {
      display: flex;
      flex: 1 0 auto;
      z-index: 1; }
      @media (max-width: 991px) {
        .site-header .main-nav__wrapper {
          overflow-y: auto;
          padding: 42px 1rem 35px;
          flex-flow: column nowrap;
          justify-content: center;
          transform: translateY(-100%);
          position: fixed;
          top: 0;
          bottom: 0;
          right: 0;
          width: 300px;
          background: #fff;
          opacity: 0; }
          body.is-mobilenav .site-header .main-nav__wrapper {
            transition: opacity 0.2s ease-in-out, transform 0.25s ease;
            transform: translateY(0);
            opacity: 1;
            box-shadow: -10px 0 20px rgba(1, 6, 72, 0.1), 0 -10px 5px rgba(0, 0, 0, 0.1); } }
      @media (max-width: 767px) {
        .site-header .main-nav__wrapper {
          width: 100%; } }
    .site-header .main-nav__items {
      display: flex;
      align-items: center;
      flex: 1 0 auto;
      margin: 0;
      text-align: center; }
      @media (max-width: 991px) {
        .site-header .main-nav__items {
          flex-flow: column nowrap;
          gap: 15px; } }
      .site-header .main-nav__items.col-left {
        flex: 1 0 auto;
        justify-content: center; }
        @media (min-width: 992px) {
          .site-header .main-nav__items.col-left {
            justify-content: flex-end; } }
        @media (max-width: 991px) {
          .site-header .main-nav__items.col-left {
            flex: none;
            margin-bottom: 1rem; } }
        @media (max-width: 991px) {
          .site-header .main-nav__items.col-left .main-nav__link.link-order, .site-header .main-nav__items.col-left .main-nav .main-nav__link.nav-link.btn-order, .site-header .main-nav .main-nav__items.col-left .main-nav__link.nav-link.btn-order, .site-header .main-nav__items.col-left .main-nav .main-nav__link.nav-link.btn-dashboard, .site-header .main-nav .main-nav__items.col-left .main-nav__link.nav-link.btn-dashboard {
            margin-left: 0.5rem;
            margin-bottom: 0.75rem;
            color: #fff !important;
            background-color: #ff7f56 !important; } }
        @media (max-width: 767px) {
          .site-header .main-nav__items.col-left .main-nav__link.link-order, .site-header .main-nav__items.col-left .main-nav .main-nav__link.nav-link.btn-order, .site-header .main-nav .main-nav__items.col-left .main-nav__link.nav-link.btn-order, .site-header .main-nav__items.col-left .main-nav .main-nav__link.nav-link.btn-dashboard, .site-header .main-nav .main-nav__items.col-left .main-nav__link.nav-link.btn-dashboard {
            margin-left: auto;
            margin-right: auto; } }
      .site-header .main-nav__items.col-right {
        justify-content: flex-end;
        flex: 0 0 auto;
        margin-left: 1rem; }
        @media (max-width: 991px) {
          .site-header .main-nav__items.col-right {
            align-items: flex-start;
            animation-delay: 0.45s;
            position: relative; }
            .site-header .main-nav__items.col-right .nav-item {
              padding: 0; } }
        @media (max-width: 767px) {
          .site-header .main-nav__items.col-right {
            align-items: center;
            margin-left: 0; } }
        @media (max-width: 543px) {
          .site-header .main-nav__items.col-right #main-actions {
            font-size: 1rem; } }
        .site-header .main-nav__items.col-right .btn, .site-header .main-nav__items.col-right .wizard > .actions a, .wizard > .actions .site-header .main-nav__items.col-right a {
          margin: 0; }
          .site-header .main-nav__items.col-right .btn.btn-cta, .site-header .main-nav__items.col-right .wizard > .actions a.btn-cta, .wizard > .actions .site-header .main-nav__items.col-right a.btn-cta, .site-header .main-nav__items.col-right .btn.user-actions, .site-header .main-nav__items.col-right .wizard > .actions a.user-actions, .wizard > .actions .site-header .main-nav__items.col-right a.user-actions {
            color: #010648;
            max-width: 158px; }
            @media (max-width: 991px) {
              .site-header .main-nav__items.col-right .btn.btn-cta .btn-cta, .site-header .main-nav__items.col-right .wizard > .actions a.btn-cta .btn-cta, .wizard > .actions .site-header .main-nav__items.col-right a.btn-cta .btn-cta, .site-header .main-nav__items.col-right .btn.user-actions .btn-cta, .site-header .main-nav__items.col-right .wizard > .actions a.user-actions .btn-cta, .wizard > .actions .site-header .main-nav__items.col-right a.user-actions .btn-cta {
                font-size: 18px; } }
            @media (max-width: 991px) {
              .site-header .main-nav__items.col-right .btn.btn-cta, .site-header .main-nav__items.col-right .wizard > .actions a.btn-cta, .wizard > .actions .site-header .main-nav__items.col-right a.btn-cta, .site-header .main-nav__items.col-right .btn.user-actions, .site-header .main-nav__items.col-right .wizard > .actions a.user-actions, .wizard > .actions .site-header .main-nav__items.col-right a.user-actions {
                max-width: 310px; } }
          .site-header .main-nav__items.col-right .btn.user-actions + .dropdown-menu, .site-header .main-nav__items.col-right .wizard > .actions a.user-actions + .dropdown-menu, .wizard > .actions .site-header .main-nav__items.col-right a.user-actions + .dropdown-menu {
            padding: 0.2rem; }
            @media (max-width: 991px) {
              .site-header .main-nav__items.col-right .btn.user-actions + .dropdown-menu, .site-header .main-nav__items.col-right .wizard > .actions a.user-actions + .dropdown-menu, .wizard > .actions .site-header .main-nav__items.col-right a.user-actions + .dropdown-menu {
                padding-left: 25px; } }
            @media (max-width: 767px) {
              .site-header .main-nav__items.col-right .btn.user-actions + .dropdown-menu, .site-header .main-nav__items.col-right .wizard > .actions a.user-actions + .dropdown-menu, .wizard > .actions .site-header .main-nav__items.col-right a.user-actions + .dropdown-menu {
                padding-left: 0.2rem; }
                .site-header .main-nav__items.col-right .btn.user-actions + .dropdown-menu .dropdown-item, .site-header .main-nav__items.col-right .wizard > .actions a.user-actions + .dropdown-menu .dropdown-item, .wizard > .actions .site-header .main-nav__items.col-right a.user-actions + .dropdown-menu .dropdown-item {
                  text-align: center; } }
            .site-header .main-nav__items.col-right .btn.user-actions + .dropdown-menu .dropdown-item, .site-header .main-nav__items.col-right .wizard > .actions a.user-actions + .dropdown-menu .dropdown-item, .wizard > .actions .site-header .main-nav__items.col-right a.user-actions + .dropdown-menu .dropdown-item {
              border-radius: 10px;
              margin: 0.2rem auto; }
          @media (max-width: 991px) {
            .site-header .main-nav__items.col-right .btn, .site-header .main-nav__items.col-right .wizard > .actions a, .wizard > .actions .site-header .main-nav__items.col-right a {
              font-size: 1.2rem; } }
    .site-header .main-nav__item {
      position: relative; }
      @media (max-width: 991px) {
        .site-header .main-nav__item {
          align-items: center;
          width: 100%;
          max-width: 300px;
          line-height: 1.6em;
          padding: 0.5rem;
          text-align: left; }
          body.is-mobilenav .site-header .main-nav__item {
            animation: fadeInDown 0.2s ease 0.1s both; }
            body.is-mobilenav .site-header .main-nav__item:nth-child(1) {
              animation-delay: 0.05s; }
            body.is-mobilenav .site-header .main-nav__item:nth-child(2) {
              animation-delay: 0.1s; }
            body.is-mobilenav .site-header .main-nav__item:nth-child(3) {
              animation-delay: 0.15s; }
            body.is-mobilenav .site-header .main-nav__item:nth-child(4) {
              animation-delay: 0.2s; }
            body.is-mobilenav .site-header .main-nav__item:nth-child(5) {
              animation-delay: 0.25s; }
            body.is-mobilenav .site-header .main-nav__item:nth-child(6) {
              animation-delay: 0.3s; }
            body.is-mobilenav .site-header .main-nav__item:nth-child(7) {
              animation-delay: 0.35s; }
            body.is-mobilenav .site-header .main-nav__item:nth-child(8) {
              animation-delay: 0.4s; }
            body.is-mobilenav .site-header .main-nav__item:nth-child(9) {
              animation-delay: 0.45s; }
            body.is-mobilenav .site-header .main-nav__item:nth-child(10) {
              animation-delay: 0.5s; } }
      @media (max-width: 767px) {
        .site-header .main-nav__item {
          max-width: 100%;
          text-align: center; } }
      .site-header .main-nav__item.phone-number .phone__wrapper {
        color: #010648;
        margin-right: 1.5rem; }
      .site-header .main-nav__item.phone-number .phone__code {
        font-size: 0.9rem;
        letter-spacing: -1px;
        opacity: 0.75; }
      .site-header .main-nav__item.phone-number .phone__icon {
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
        border-radius: 35px;
        display: inline-block;
        width: 1.17rem;
        height: 1.17rem; }
      .site-header .main-nav__item.phone-number .phone__number {
        font-weight: 400; }
    .site-header .main-nav #main-actions {
      box-shadow: none;
      background: transparent !important; }
      .site-header .main-nav #main-actions .fa-user {
        color: #ff7f56;
        opacity: 1; }
      .site-header .main-nav #main-actions .fa-lock {
        display: none; }
      .site-header .main-nav #main-actions:hover .fa-user {
        color: #fff; }
    .site-header .main-nav__link {
      color: #010648;
      display: flex;
      align-items: center;
      padding: 0.5rem;
      font-weight: 400;
      margin: 0 0.5rem;
      font-size: 0.875rem;
      transition: all 0.2s ease;
      position: relative; }
      .site-header .main-nav__link svg {
        fill: #010648;
        margin-right: 5px; }
      @media (max-width: 1199px) {
        .site-header .main-nav__link {
          margin: 0 0.25rem; } }
      @media (max-width: 991px) {
        .site-header .main-nav__link {
          font-size: 1.2rem;
          margin: 0 0.5rem;
          padding: 0; } }
      @media (max-width: 767px) {
        .site-header .main-nav__link {
          justify-content: center; } }
      @media (max-width: 543px) {
        .site-header .main-nav__link {
          font-size: 1rem; } }
      .site-header .main-nav__link.link-order, .site-header .main-nav .main-nav__link.nav-link.btn-order, .site-header .main-nav .main-nav__link.nav-link.btn-dashboard {
        position: relative;
        margin-left: 0.75rem; }
        @media (max-width: 1199px) {
          .site-header .main-nav__link.link-order, .site-header .main-nav .main-nav__link.nav-link.btn-order, .site-header .main-nav .main-nav__link.nav-link.btn-dashboard {
            margin-left: 1.25rem; } }
        @media (max-width: 991px) {
          .site-header .main-nav__link.link-order, .site-header .main-nav .main-nav__link.nav-link.btn-order, .site-header .main-nav .main-nav__link.nav-link.btn-dashboard {
            margin-left: 0;
            font-size: 0.875rem; } }
        .site-header .main-nav__link.link-order:focus, .site-header .main-nav .main-nav__link.nav-link.btn-order:focus, .site-header .main-nav .main-nav__link.nav-link.btn-dashboard:focus {
          color: #fff; }
      .site-header .main-nav__link:hover, .site-header .main-nav__link:focus {
        color: #7159B5; }
        .site-header .main-nav__link:hover svg, .site-header .main-nav__link:focus svg {
          fill: #7159B5; }
    .site-header .main-nav__toggler {
      position: absolute;
      border: none;
      z-index: 1000;
      top: 0;
      bottom: 0;
      right: 1rem;
      padding: 0;
      width: 45px;
      height: 45px;
      cursor: pointer;
      transform: rotate(0deg);
      border-radius: 3px 0 0 3px;
      background-color: transparent;
      transition: 0.25s cubic-bezier(0.05, 0.69, 0.14, 1); }
      @media (max-width: 543px) {
        .site-header .main-nav__toggler {
          top: -5px; } }
      .site-header .main-nav__toggler span {
        position: absolute;
        display: block;
        left: 4px;
        right: 4px;
        height: 2px;
        transition: all 0.5s ease;
        transform: rotate(0deg);
        opacity: 1;
        border-radius: 6px;
        background: #3b454b; }
        .site-header .main-nav__toggler span:nth-child(1) {
          top: 14px; }
        .site-header .main-nav__toggler span:nth-child(2) {
          top: 22px;
          transition: all 0.2s ease; }
        .site-header .main-nav__toggler span:nth-child(3) {
          top: 31px; }
      body.is-mobilenav .site-header .main-nav__toggler {
        transform: rotate(90deg);
        top: 0.75rem; }
        body.is-mobilenav .site-header .main-nav__toggler span:nth-child(1) {
          top: 25px;
          transform: rotate(135deg); }
        body.is-mobilenav .site-header .main-nav__toggler span:nth-child(2) {
          left: 0;
          transform: scale(0.1);
          opacity: 0; }
        body.is-mobilenav .site-header .main-nav__toggler span:nth-child(3) {
          top: 25px;
          transform: rotate(-135deg); }
    .site-header .main-nav__logo {
      display: flex;
      align-items: center;
      position: relative;
      z-index: 1; }
      @media (min-width: 992px) {
        .site-header .main-nav__logo {
          margin-right: 0.5rem; } }
      .site-header .main-nav__logo > img,
      .site-header .main-nav__logo svg {
        width: 100px;
        height: 35px; }
      @media (max-width: 1199px) {
        .site-header .main-nav__logo {
          flex-basis: 120px; } }
  .site-header .dropdown-menu .dropdown-item {
    color: #010648;
    font-weight: 400;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    text-align: left; }
    .site-header .dropdown-menu .dropdown-item:hover {
      background: transparent !important;
      color: #7159b5 !important; }
    .site-header .dropdown-menu .dropdown-item i {
      transition: all 0.2s ease; }
    .site-header .dropdown-menu .dropdown-item:hover, .site-header .dropdown-menu .dropdown-item:focus {
      color: #7159b5; }
  .site-header [class^="dropdown"].open .dropdown-top .dropdown-menu a.dropdown-item:hover,
  .site-header [class^="dropdown"].open .dropdown-menu:not(.dropdown-download) a.dropdown-item:hover {
    color: #7159b5 !important; }

body.is-mobilenav .site-header .col-right #main-actions {
  animation: fadeInDown 0.2s ease 0.45s both; }

body.is-nav-collapsed .main-nav__conversion .link-order, body.is-nav-collapsed .main-nav__conversion .site-header .main-nav .nav-link.btn-order, .site-header .main-nav body.is-nav-collapsed .main-nav__conversion .nav-link.btn-order, body.is-nav-collapsed .main-nav__conversion .site-header .main-nav .nav-link.btn-dashboard, .site-header .main-nav body.is-nav-collapsed .main-nav__conversion .nav-link.btn-dashboard {
  color: #fff !important;
  background-color: #ff7f56 !important; }

@media (min-width: 992px) {
  body.is-nav-collapsed .col-left .link-order, body.is-nav-collapsed .col-left .site-header .main-nav .nav-link.btn-order, .site-header .main-nav body.is-nav-collapsed .col-left .nav-link.btn-order, body.is-nav-collapsed .col-left .site-header .main-nav .nav-link.btn-dashboard, .site-header .main-nav body.is-nav-collapsed .col-left .nav-link.btn-dashboard {
    color: #fff !important;
    background-color: #ff7f56 !important; } }

@media (max-width: 991px) {
  body.is-nav-collapsed .col-left .link-order, body.is-nav-collapsed .col-left .site-header .main-nav .nav-link.btn-order, .site-header .main-nav body.is-nav-collapsed .col-left .nav-link.btn-order, body.is-nav-collapsed .col-left .site-header .main-nav .nav-link.btn-dashboard, .site-header .main-nav body.is-nav-collapsed .col-left .nav-link.btn-dashboard {
    text-align: center; } }

.site-footer {
  position: relative;
  color: #fff;
  z-index: 999;
  pointer-events: none; }
  .site-footer__scroll-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2.8px 11.7px rgba(59, 37, 152, 0.15);
    z-index: 1;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto; }
    .site-footer__scroll-top svg {
      max-width: 100%;
      animation: uparrow 0.6s infinite alternate ease-in-out; }
    @media (max-width: 543px) {
      .site-footer__scroll-top {
        width: 50px;
        height: 50px;
        top: 100px; }
        .site-footer__scroll-top svg {
          max-width: 40%; } }
  .site-footer__container {
    position: relative;
    padding-top: 140px; }
    @media (max-width: 543px) {
      .site-footer__container {
        margin-top: -90px; } }
  .site-footer__bg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; }
  .site-footer__bg {
    width: 200%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%); }
    @media (max-width: 543px) {
      .site-footer__bg {
        top: 20%; } }
    .site-footer__bg img {
      width: 100%; }
      @media screen and (max-width: 340px) {
        .site-footer__bg img {
          width: 120%; } }
  .site-footer__inner {
    position: relative;
    z-index: 1;
    pointer-events: auto; }
  .site-footer .footer-nav__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; }
    @media (max-width: 767px) {
      .site-footer .footer-nav__items {
        display: block;
        column-count: 2; } }
  .site-footer .footer-nav__item {
    flex-shrink: 0;
    text-align: center; }
    .site-footer .footer-nav__item .btn-group .dropdown-toggle {
      color: #fff;
      transition: all 0.15s ease; }
      .site-footer .footer-nav__item .btn-group .dropdown-toggle a.dropdown-item {
        color: #242424; }
  .site-footer .footer-nav__link,
  .site-footer .footer-nav .nav-link {
    display: block;
    padding: 0.2rem 1rem;
    font-size: 16px;
    color: #fff;
    transition: color 0.2s ease, opacity 0.2s ease; }
    @media (max-width: 543px) {
      .site-footer .footer-nav__link,
      .site-footer .footer-nav .nav-link {
        font-size: 14px; } }
    .site-footer .footer-nav__link:hover,
    .site-footer .footer-nav .nav-link:hover {
      color: #fff;
      opacity: 0.4; }
  .site-footer .phone-number .phone__icon {
    display: none; }
  .site-footer .phone-number .phone__number {
    font-weight: 700; }
  .site-footer .infos {
    padding: 1rem 0; }
    .site-footer .infos__heading {
      font-size: 14px;
      font-size: 1rem;
      font-weight: 600;
      line-height: 1;
      font-size: 10pt;
      flex-basis: 100% !important;
      min-width: 100%;
      display: block;
      text-align: center;
      font-weight: 600;
      margin-bottom: 0.5rem; }
    .site-footer .infos__icons {
      display: flex;
      justify-content: center;
      align-items: center; }
      .site-footer .infos__icons .payment-icon {
        display: flex; }
      .site-footer .infos__icons i {
        color: #fff;
        margin: .2rem .2rem 0;
        line-height: 1;
        font-size: 2.7rem;
        transition: color 0.25s;
        display: block; }
        @media (max-width: 1199px) {
          .site-footer .infos__icons i {
            font-size: 2.4rem; } }
      .site-footer .infos__icons a:hover i {
        color: rgba(255, 255, 255, 0.8); }
      .site-footer .infos__icons svg {
        margin: .2rem .2rem 0;
        width: 55px;
        height: 45px;
        fill: #fff;
        transition: fill 0.25s; }
        .site-footer .infos__icons svg:hover {
          fill: rgba(255, 255, 255, 0.8); }
        @media (max-width: 1199px) {
          .site-footer .infos__icons svg {
            width: 50px; } }
        @media (max-width: 991px) {
          .site-footer .infos__icons svg {
            width: 38px;
            height: 40px; } }
    .site-footer .infos__container {
      display: flex;
      max-width: 800px;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      justify-content: space-between;
      margin-bottom: 1rem; }
      @media (max-width: 767px) {
        .site-footer .infos__container {
          display: block; } }
    @media (max-width: 767px) {
      .site-footer .infos__sb {
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 20px; } }
    .site-footer .infos__paysystems img[data-lazy] {
      mix-blend-mode: luminosity;
      width: 200px;
      max-width: 100%; }
    .site-footer .infos__secured {
      text-align: center;
      font-size: 2rem; }
    .site-footer .infos__socials {
      font-size: 2rem; }
      .site-footer .infos__socials div {
        flex: 1 0 33%;
        text-align: center;
        max-width: 180px;
        margin: 0 auto; }
  .site-footer .copyrights {
    padding: 1rem 0; }
    .site-footer .copyrights__container {
      font-size: 13px;
      font-size: 0.92857rem;
      font-weight: 400;
      text-align: center; }
      .site-footer .copyrights__container p {
        margin: 0; }
      .site-footer .copyrights__container a {
        color: rgba(255, 255, 255, 0.8); }
      .site-footer .copyrights__container .company__wrapper {
        justify-content: center; }
        .site-footer .copyrights__container .company__wrapper span.text-muted {
          color: rgba(255, 255, 255, 0.8) !important; }
  .site-footer__picture-info img {
    max-width: 470px; }
    @media (max-width: 543px) {
      .site-footer__picture-info img {
        max-width: 300px; } }
  .site-footer .legal-info {
    color: #fff; }

@keyframes uparrow {
  0% {
    transform: translateY(0); }
  100% {
    transform: translateY(5%); } }

#masthead svg {
  max-width: 100%;
  transition: all .2s ease; }

#masthead.top-nav-collapse svg {
  position: relative;
  top: 4px; }

.page-footer svg {
  max-width: 83.33333px;
  max-height: 29.16667px; }

@media (max-width: 991px) {
  .page-footer {
    padding-top: 30px; }
    .page-footer svg {
      max-width: 160px;
      max-height: 35px; } }

.footer-copyright .white-svg svg path, .footer-copyright .white-svg svg rect {
  fill: #d0cfff; }

.footer-copyright .white-svg svg path[fill="#441B43"] {
  fill: #474588; }

a.navbar-brand {
  padding-top: 0;
  min-height: 48px; }

.is-ready .site-header g[class^="svg-"] {
  transform-origin: 50% 50%; }

.is-ready .site-header g.svg-pencil {
  animation: pop 1s ease .75s both; }

.is-ready .site-header g.svg-write {
  animation: pop 1s ease both; }

.is-ready .site-header g.svg-mypaper {
  animation: pop 1s ease .25s both; }

.is-ready .site-header g.svg-4me {
  animation: pop 1s ease .45s both; }

@keyframes pop {
  from {
    opacity: 0;
    transform: scale(0.8); }
  60% {
    opacity: 1;
    transform: scale(1); }
  75% {
    transform: scale(0.95); }
  to {
    transform: scale(1); } }

.btn[class*="-outline"], .wizard > .actions a[class*="-outline"] {
  background: transparent !important; }

.btn.btn-default, .wizard > .actions a.btn-default {
  background: #fff;
  color: #252525; }
  .btn.btn-default:hover,
  .wizard > .actions a.btn-default:hover, .btn.btn-default:focus, .wizard > .actions a.btn-default:focus {
    background-color: #fff !important; }
  .btn.btn-default:active,
  .wizard > .actions a.btn-default:active {
    opacity: .75; }

.btn.btn-accent, .wizard > .actions a.btn-accent {
  background: #49cf43;
  color: #fff; }

.btn.btn-elegant, .wizard > .actions a.btn-elegant {
  background: #252525;
  color: #fff; }

.btn.btn-yellow, .wizard > .actions a.btn-yellow {
  background: #FEA52D;
  color: #fff; }

.btn.btn-danger, .wizard > .actions a.btn-danger {
  color: #fff; }

.btn.btn-clr, .wizard > .actions a.btn-clr {
  box-shadow: none !important;
  border: none !important;
  color: #55595c; }
  .btn.btn-clr:hover,
  .wizard > .actions a.btn-clr:hover, .btn.btn-clr:focus, .wizard > .actions a.btn-clr:focus, .btn.btn-clr:active,
  .wizard > .actions a.btn-clr:active, .btn.btn-clr, .wizard > .actions a.btn-clr {
    background: transparent !important;
    transition: none; }

.btn.btn-white, .wizard > .actions a.btn-white {
  background: #fff;
  color: #55595c; }
  .btn.btn-white:not(.btn-clr), .wizard > .actions a.btn-white:not(.btn-clr) {
    border: 1px solid #efefef; }
    .btn.btn-white:not(.btn-clr):hover,
    .wizard > .actions a.btn-white:not(.btn-clr):hover {
      border-color: transparent; }

.btn.btn-primary, .fso-widget .btn.btn-submit, .fso-widget .wizard > .actions a.btn-submit, .wizard > .actions a,
.wizard > .actions a:hover,
.wizard > .actions a:active {
  color: #ffffff !important;
  background: #7159B5; }

.btn.btn-primary-outline:hover, .wizard > .actions a.btn-primary-outline:hover, .btn.btn-primary-outline:focus, .wizard > .actions a.btn-primary-outline:focus {
  border-color: #7159B5; }

.btn.btn-xlg, .wizard > .actions a.btn-xlg {
  font-size: 1.5rem;
  padding: .5rem 2rem; }

.btn-floating.btn-large i {
  line-height: 58px; }

.fixed-action-btn {
  z-index: 16; }
  .fixed-action-btn .fa-plus {
    transition: transform .25s ease-in-out .1s; }
  .fixed-action-btn a {
    background-color: rgba(0, 0, 0, 0.5); }
  .fixed-action-btn ul {
    visibility: hidden; }
  .fixed-action-btn.active .fa-plus {
    transform: rotate(45deg) scale(1.2); }
  .fixed-action-btn.active ul {
    visibility: visible; }
  .fixed-action-btn.active [class^="fa "] {
    font-size: 1.1rem; }
  .fixed-action-btn ul li {
    transition: all .2s ease-in-out;
    display: block; }
    .fixed-action-btn ul li:hover {
      transform: scale(1.1); }
    .fixed-action-btn ul li .btn-floating .fa-plus {
      padding-top: 3px; }

.btn-radio {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 1rem;
  text-shadow: 0 1px 0 #fff;
  color: grey;
  box-shadow: none;
  font-size: .85rem; }
  .btn-radio:hover {
    color: #000; }
  .btn-radio.active {
    text-shadow: none;
    background-color: #7159B5;
    color: #ffffff;
    box-shadow: inset 0 1px 8px rgba(0, 0, 0, 0.2); }

.btn-group-justified {
  display: flex;
  flex-direction: row;
  flex-flow: row wrap; }
  .btn-group-justified label {
    flex-grow: 1; }

.testimonial-carousel .testimonial .avatar img, .question-carousel .testimonial .avatar img, .question-carousel .question .avatar img {
  max-width: 170px;
  max-height: 170px;
  border-radius: 50%; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .testimonial-carousel .testimonial .avatar img, .question-carousel .testimonial .avatar img, .question-carousel .question .avatar img {
      /* Retina-specific stuff here */
      max-width: 120px;
      max-height: 120px; } }

@media (max-width: 767px) {
  .testimonial-carousel .testimonial p, .question-carousel .testimonial p, .testimonial-carousel .question-carousel .question p, .question-carousel .testimonial-carousel .question p, .question-carousel .question p {
    display: block !important; } }

.testimonial-carousel .t-rating, .question-carousel .t-rating {
  font-size: 1.2rem; }
  .testimonial-carousel .t-rating i[class*='fa-star'], .question-carousel .t-rating i[class*='fa-star'], .testimonial-carousel .t-rating i[class*='icon-star'], .question-carousel .t-rating i[class*='icon-star'] {
    color: #ff9800; }

.mdb-select ul.dropdown-content li:not(.disabled):not(.optgroup) span {
  color: #000;
  padding: 0 2px;
  font-size: 1rem;
  transition: all .2s ease; }
  .is-index .mdb-select ul.dropdown-content li:not(.disabled):not(.optgroup) span {
    font-size: 1.2rem;
    padding: .3rem 1rem; }

.mdb-select ul.dropdown-content li:hover {
  background: #7159B5;
  color: #ffffff; }

.select2-container.select2-container--open .select2-results .disabled-paper-type {
  margin: -.4rem -.5rem;
  padding: .4rem .5rem;
  background: #fff;
  opacity: .2;
  cursor: not-allowed; }

@font-face {
  font-family: 'essay';
  src: url("/static/fonts/essay.eot");
  src: url("/static/fonts/essay.eot?#iefix") format("embedded-opentype"), url("/static/fonts/essay.ttf") format("truetype"), url("/static/fonts/essay.woff") format("woff"), url("/static/fonts/essay.svg?#essay") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block; }

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'essay' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-dmca:before {
  content: "\e99c"; }

.icon-visa-card:before {
  content: "\e9ac"; }

.icon-paypal-card:before {
  content: "\e9ad"; }

.icon-master-card:before {
  content: "\e9ae"; }

.icon-mcfee:before {
  content: "\e9af"; }

.icon-star2:before {
  content: "\e93e"; }

.icon-writepaper:before {
  content: "\e93d"; }

.icon-users-thin:before {
  content: "\e93c"; }

.icon-facebook-circle:before {
  content: "\e954"; }

.icon-googleplus-circle:before {
  content: "\e955"; }

.icon-skype-circle:before {
  content: "\e956"; }

.icon-twitter-circle:before {
  content: "\e957"; }

.icon-pencil3:before {
  content: "\e930"; }

.icon-pencil-styled:before {
  content: "\e931"; }

.icon-quill:before {
  content: "\e932"; }

.icon-pen:before {
  content: "\e933"; }

.icon-image:before {
  content: "\e934"; }

.icon-images:before {
  content: "\e935"; }

.icon-camera-fill:before {
  content: "\e936"; }

.icon-book:before {
  content: "\e958"; }

.icon-books:before {
  content: "\e959"; }

.icon-file-empty:before {
  content: "\e95a"; }

.icon-files-empty:before {
  content: "\e95b"; }

.icon-file-text2:before {
  content: "\e95c"; }

.icon-file-picture:before {
  content: "\e95d"; }

.icon-file-zip:before {
  content: "\e937"; }

.icon-copy:before {
  content: "\e938"; }

.icon-paste:before {
  content: "\e939"; }

.icon-folder:before {
  content: "\e93a"; }

.icon-folder-open:before {
  content: "\e93b"; }

.icon-credit-card:before {
  content: "\e93f"; }

.icon-calculator:before {
  content: "\e940"; }

.icon-lifebuoy:before {
  content: "\e941"; }

.icon-bell:before {
  content: "\e95e"; }

.icon-user:before {
  content: "\e971"; }

.icon-users:before {
  content: "\e972"; }

.icon-user-plus:before {
  content: "\e973"; }

.icon-user-minus:before {
  content: "\e974"; }

.icon-user-check:before {
  content: "\e975"; }

.icon-quotes-left:before {
  content: "\e977"; }

.icon-quotes-right:before {
  content: "\e978"; }

.icon-spinner:before {
  content: "\e97a"; }

.icon-spinner3:before {
  content: "\e97c"; }

.icon-spinner6:before {
  content: "\e97f"; }

.icon-spinner10:before {
  content: "\e983"; }

.icon-key3:before {
  content: "\e98d"; }

.icon-masterkey:before {
  content: "\e98e"; }

.icon-trophy2:before {
  content: "\e99e"; }

.icon-gift2:before {
  content: "\e99f"; }

.icon-shield2:before {
  content: "\e9b4"; }

.icon-star-empty:before {
  content: "\e9d7"; }

.icon-star-half:before {
  content: "\e9d8"; }

.icon-star-full:before {
  content: "\e9d9"; }

.icon-heart3:before {
  content: "\e9da"; }

.icon-heart-broken:before {
  content: "\e9db"; }

.icon-warning:before {
  content: "\ea07"; }

.icon-notification:before {
  content: "\ea08"; }

.icon-question:before {
  content: "\ea09"; }

.icon-plus:before {
  content: "\ea0a"; }

.icon-minus:before {
  content: "\ea0b"; }

.icon-checkbox-checked:before {
  content: "\ea52"; }

.icon-checkbox-unchecked:before {
  content: "\ea53"; }

.icon-share2:before {
  content: "\ea82"; }

.icon-mail-envelope-open:before {
  content: "\e942"; }

.icon-mail-envelope-closed:before {
  content: "\e943"; }

.icon-mail-envelope-open2:before {
  content: "\e944"; }

.icon-mail-error:before {
  content: "\e945"; }

.icon-mail-checked:before {
  content: "\e946"; }

.icon-star3:before {
  content: "\e947"; }

.icon-star4:before {
  content: "\e948"; }

.icon-key4:before {
  content: "\e949"; }

.icon-key5:before {
  content: "\e94a"; }

.icon-trash-can:before {
  content: "\e94b"; }

.icon-information:before {
  content: "\e94c"; }

.icon-information2:before {
  content: "\e94d"; }

.icon-information3:before {
  content: "\e94e"; }

.icon-lock3:before {
  content: "\e94f"; }

.icon-lock4:before {
  content: "\e950"; }

.icon-lock-open:before {
  content: "\e951"; }

.icon-lock-open2:before {
  content: "\e952"; }

.icon-lock-open3:before {
  content: "\e953"; }

.icon-lock-stripes:before {
  content: "\e95f"; }

.icon-lock-rounded:before {
  content: "\e960"; }

.icon-document-certificate:before {
  content: "\e961"; }

.icon-trophy3:before {
  content: "\e962"; }

.icon-trophy-one:before {
  content: "\e963"; }

.icon-trophy-one2:before {
  content: "\e964"; }

.icon-trophy4:before {
  content: "\e965"; }

.icon-trophy5:before {
  content: "\e966"; }

.icon-award:before {
  content: "\e967"; }

.icon-award2:before {
  content: "\e968"; }

.icon-award3:before {
  content: "\e969"; }

.icon-award4:before {
  content: "\e96a"; }

.icon-medal:before {
  content: "\e96b"; }

.icon-checkered-flag:before {
  content: "\e96c"; }

.icon-warning2:before {
  content: "\e96d"; }

.icon-thermometer:before {
  content: "\e96e"; }

.icon-thermometer-low:before {
  content: "\e96f"; }

.icon-thermometer-quarter:before {
  content: "\e970"; }

.icon-thermometer-half:before {
  content: "\e976"; }

.icon-thermometer-three-quarters:before {
  content: "\e979"; }

.icon-thermometer-full:before {
  content: "\e97b"; }

.icon-thumb-up:before {
  content: "\e97d"; }

.icon-thumb-up2:before {
  content: "\e97e"; }

.icon-thumb-down:before {
  content: "\e980"; }

.icon-thumb-down2:before {
  content: "\e981"; }

.icon-file-jpg:before {
  content: "\e982"; }

.icon-file-jpg2:before {
  content: "\e984"; }

.icon-file-doc:before {
  content: "\e985"; }

.icon-file-doc2:before {
  content: "\e986"; }

.icon-file-odt:before {
  content: "\e987"; }

.icon-file-odt2:before {
  content: "\e988"; }

.icon-file-xls:before {
  content: "\e989"; }

.icon-file-xls2:before {
  content: "\e98a"; }

.icon-file-docx:before {
  content: "\e98b"; }

.icon-file-docx2:before {
  content: "\e98c"; }

.icon-file-txt:before {
  content: "\e98f"; }

.icon-file-txt2:before {
  content: "\e990"; }

.icon-file-zip2:before {
  content: "\e991"; }

.icon-file-zip3:before {
  content: "\e992"; }

.icon-document-file-png:before {
  content: "\e993"; }

.icon-document-file-pdf:before {
  content: "\e994"; }

.icon-document-file-jpg:before {
  content: "\e995"; }

.icon-document-file-doc:before {
  content: "\e996"; }

.icon-document-file-odt:before {
  content: "\e997"; }

.icon-document-file-xlsx:before {
  content: "\e998"; }

.icon-document-file-txt:before {
  content: "\e999"; }

.icon-document-file-rtf:before {
  content: "\e99a"; }

.icon-document-file-zip:before {
  content: "\e99b"; }

.icon-mobile:before {
  content: "\e000"; }

.icon-laptop:before {
  content: "\e001"; }

.icon-desktop:before {
  content: "\e002"; }

.icon-tablet:before {
  content: "\e003"; }

.icon-phone:before {
  content: "\e004"; }

.icon-document:before {
  content: "\e005"; }

.icon-documents:before {
  content: "\e006"; }

.icon-search:before {
  content: "\e007"; }

.icon-clipboard:before {
  content: "\e008"; }

.icon-newspaper:before {
  content: "\e009"; }

.icon-notebook:before {
  content: "\e00a"; }

.icon-book-open:before {
  content: "\e00b"; }

.icon-browser:before {
  content: "\e00c"; }

.icon-calendar:before {
  content: "\e00d"; }

.icon-presentation:before {
  content: "\e00e"; }

.icon-picture:before {
  content: "\e00f"; }

.icon-pictures:before {
  content: "\e010"; }

.icon-video:before {
  content: "\e011"; }

.icon-camera:before {
  content: "\e012"; }

.icon-printer:before {
  content: "\e013"; }

.icon-toolbox:before {
  content: "\e014"; }

.icon-briefcase:before {
  content: "\e015"; }

.icon-wallet:before {
  content: "\e016"; }

.icon-gift:before {
  content: "\e017"; }

.icon-bargraph:before {
  content: "\e018"; }

.icon-expand:before {
  content: "\e01a"; }

.icon-focus:before {
  content: "\e01b"; }

.icon-edit:before {
  content: "\e01c"; }

.icon-adjustments:before {
  content: "\e01d"; }

.icon-ribbon:before {
  content: "\e01e"; }

.icon-hourglass:before {
  content: "\e01f"; }

.icon-lock:before {
  content: "\e020"; }

.icon-megaphone:before {
  content: "\e021"; }

.icon-shield:before {
  content: "\e022"; }

.icon-trophy:before {
  content: "\e023"; }

.icon-flag:before {
  content: "\e024"; }

.icon-map:before {
  content: "\e025"; }

.icon-puzzle:before {
  content: "\e026"; }

.icon-basket:before {
  content: "\e027"; }

.icon-envelope:before {
  content: "\e028"; }

.icon-streetsign:before {
  content: "\e029"; }

.icon-telescope:before {
  content: "\e02a"; }

.icon-gears:before {
  content: "\e02b"; }

.icon-key:before {
  content: "\e02c"; }

.icon-paperclip:before {
  content: "\e02d"; }

.icon-attachment:before {
  content: "\e02e"; }

.icon-pricetags:before {
  content: "\e02f"; }

.icon-lightbulb:before {
  content: "\e030"; }

.icon-layers:before {
  content: "\e031"; }

.icon-pencil:before {
  content: "\e032"; }

.icon-tools:before {
  content: "\e033"; }

.icon-tools-2:before {
  content: "\e034"; }

.icon-scissors:before {
  content: "\e035"; }

.icon-paintbrush:before {
  content: "\e036"; }

.icon-magnifying-glass:before {
  content: "\e037"; }

.icon-circle-compass:before {
  content: "\e038"; }

.icon-linegraph:before {
  content: "\e039"; }

.icon-mic:before {
  content: "\e03a"; }

.icon-strategy:before {
  content: "\e03b"; }

.icon-beaker:before {
  content: "\e03c"; }

.icon-caution:before {
  content: "\e03d"; }

.icon-recycle:before {
  content: "\e03e"; }

.icon-anchor:before {
  content: "\e03f"; }

.icon-profile-male:before {
  content: "\e040"; }

.icon-profile-female:before {
  content: "\e041"; }

.icon-bike:before {
  content: "\e042"; }

.icon-wine:before {
  content: "\e043"; }

.icon-hotairballoon:before {
  content: "\e044"; }

.icon-globe:before {
  content: "\e045"; }

.icon-genius:before {
  content: "\e046"; }

.icon-map-pin:before {
  content: "\e047"; }

.icon-dial:before {
  content: "\e048"; }

.icon-chat:before {
  content: "\e049"; }

.icon-heart:before {
  content: "\e04a"; }

.icon-target:before {
  content: "\e04e"; }

.icon-piechart:before {
  content: "\e050"; }

.icon-speedometer:before {
  content: "\e051"; }

.icon-global:before {
  content: "\e052"; }

.icon-compass:before {
  content: "\e053"; }

.icon-lifesaver:before {
  content: "\e054"; }

.icon-clock:before {
  content: "\e055"; }

.icon-quote:before {
  content: "\e057"; }

.icon-scope:before {
  content: "\e058"; }

.icon-alarmclock:before {
  content: "\e059"; }

.icon-refresh:before {
  content: "\e05a"; }

.icon-happy:before {
  content: "\e05b"; }

.icon-sad:before {
  content: "\e05c"; }

.icon-facebook:before {
  content: "\e05d"; }

.icon-twitter:before {
  content: "\e05e"; }

.icon-googleplus:before {
  content: "\e05f"; }

.icon-rss:before {
  content: "\e060"; }

.icon-tumblr:before {
  content: "\e061"; }

.icon-linkedin:before {
  content: "\e062"; }

.icon-dribbble:before {
  content: "\e063"; }

.icon-heart2:before {
  content: "\e900"; }

.icon-cloud2:before {
  content: "\e901"; }

.icon-star:before {
  content: "\e902"; }

.icon-tv:before {
  content: "\e903"; }

.icon-sound:before {
  content: "\e904"; }

.icon-video2:before {
  content: "\e905"; }

.icon-trash:before {
  content: "\e906"; }

.icon-user2:before {
  content: "\e907"; }

.icon-key2:before {
  content: "\e908"; }

.icon-search2:before {
  content: "\e909"; }

.icon-settings:before {
  content: "\e90a"; }

.icon-camera3:before {
  content: "\e90b"; }

.icon-tag:before {
  content: "\e90c"; }

.icon-lock2:before {
  content: "\e90d"; }

.icon-bulb:before {
  content: "\e90e"; }

.icon-pen2:before {
  content: "\e90f"; }

.icon-diamond:before {
  content: "\e910"; }

.icon-display:before {
  content: "\e911"; }

.icon-location:before {
  content: "\e912"; }

.icon-eye:before {
  content: "\e913"; }

.icon-bubble:before {
  content: "\e914"; }

.icon-stack:before {
  content: "\e915"; }

.icon-cup:before {
  content: "\e916"; }

.icon-phone2:before {
  content: "\e917"; }

.icon-news:before {
  content: "\e918"; }

.icon-mail:before {
  content: "\e919"; }

.icon-like:before {
  content: "\e91a"; }

.icon-photo:before {
  content: "\e91b"; }

.icon-note:before {
  content: "\e91c"; }

.icon-clock2:before {
  content: "\e91d"; }

.icon-paperplane:before {
  content: "\e91e"; }

.icon-params:before {
  content: "\e91f"; }

.icon-banknote:before {
  content: "\e920"; }

.icon-data:before {
  content: "\e921"; }

.icon-music:before {
  content: "\e922"; }

.icon-megaphone2:before {
  content: "\e923"; }

.icon-study:before {
  content: "\e924"; }

.icon-lab:before {
  content: "\e925"; }

.icon-food:before {
  content: "\e926"; }

.icon-t-shirt:before {
  content: "\e927"; }

.icon-fire:before {
  content: "\e928"; }

.icon-clip:before {
  content: "\e929"; }

.icon-shop:before {
  content: "\e92a"; }

.icon-calendar2:before {
  content: "\e92b"; }

.icon-wallet2:before {
  content: "\e92c"; }

.icon-vynil:before {
  content: "\e92d"; }

.icon-truck:before {
  content: "\e92e"; }

.icon-world:before {
  content: "\e92f"; }

input[type='text'], input[type='password'], input[type='email'], input[type='tel'] {
  padding: 0 0.4rem; }

.md-form label {
  top: .5rem; }

.picker__day.picker__day--today {
  color: #000;
  font-weight: 500;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.04); }
  .picker__day.picker__day--today:not(.picker__day--highlighted) {
    border-radius: 0;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1), inset 0 0 10px 3px rgba(255, 255, 255, 0.1); }

body:not(.is-orderinfo) #deadline {
  cursor: pointer;
  text-align: center;
  font-size: 1.4rem;
  width: 100%;
  max-width: 230px;
  margin: 4px auto; }
  @media (max-width: 991px) {
    body:not(.is-orderinfo) #deadline {
      font-size: 1.2rem; } }
  body:not(.is-orderinfo) #deadline:hover {
    background: white; }
  body:not(.is-orderinfo) #deadline ~ .deadline_selected {
    color: grey; }

textarea.textarea {
  overflow-y: auto;
  resize: vertical;
  transition: none; }

.md-pills.pills-default .nav-item .nav-link {
  text-transform: uppercase; }
  .md-pills.pills-default .nav-item .nav-link.active {
    background: #7159B5;
    color: #ffffff; }

.tab-content {
  padding: 0.7rem 1rem; }
  body.is-order .tab-content {
    min-height: 258px; }

.nav-tabs {
  padding: 0;
  margin: 0; }

body:not(.is-orderinfo) #deadline {
  border-color: #ccc; }

.deadline_selected {
  font-size: 11px;
  text-align: center; }

.picker__day--selected,
.picker__day--selected:hover,
.picker--focused .picker__day--selected {
  background: #cc3032; }

.picker__date-display {
  color: #ffffff; }

.picker__year-display {
  color: rgba(255, 255, 255, 0.9); }

.picker__date-display, .picker__year-display {
  text-shadow: 0 1px rgba(0, 0, 0, 0.3); }

.picker__nav--next:before {
  border-left-color: #ffffff; }

.picker__nav--prev:before {
  border-right-color: #ffffff; }

[class^="picker__select-"] {
  border: none;
  background: transparent; }

.md-form .btn.dropdown-toggle, .md-form .wizard > .actions a.dropdown-toggle, .wizard > .actions .md-form a.dropdown-toggle {
  margin-bottom: 0; }
  .md-form .btn.dropdown-toggle.dropdown-outline, .md-form .wizard > .actions a.dropdown-toggle.dropdown-outline, .wizard > .actions .md-form a.dropdown-toggle.dropdown-outline {
    color: #6a6a6a;
    border-bottom: 1px solid rgba(106, 106, 106, 0.2);
    background: transparent;
    box-shadow: none; }
    .md-form .btn.dropdown-toggle.dropdown-outline:hover,
    .md-form .wizard > .actions a.dropdown-toggle.dropdown-outline:hover, .wizard > .actions .md-form a.dropdown-toggle.dropdown-outline:hover {
      color: #6a6a6a;
      border-color: #7159B5;
      background: transparent; }

div.range-field span.thumb.active,
div.range-field span.thumb.selected {
  display: none !important;
  z-index: 500; }
  div.range-field span.thumb.active > span.value,
  div.range-field span.thumb.selected > span.value {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    font-weight: 500;
    padding: 3px;
    display: inline-block;
    transition: all .2s ease; }

div.range-field span.thumb.active {
  transform: translateY(-8px) scale(0.8) rotate(-45deg); }

div.range-field span.thumb.selected {
  border-radius: 50% 50% 50% 0;
  transition: transform .2s ease .1s;
  transform: translateY(-13px) rotate(-45deg); }
  div.range-field span.thumb.selected > span.value {
    color: rgba(0, 0, 0, 0.7); }

div.range-field.no-thumb span.thumb {
  display: none; }

input[type=range]::-webkit-slider-thumb {
  width: 28px;
  height: 28px;
  margin-top: -14px;
  transition: all .2s ease;
  box-sizing: inherit; }
  input[type=range]::-webkit-slider-thumb:active {
    transform: scale(0.9);
    border-width: 0; }
  .is-IE input[type=range]::-webkit-slider-thumb {
    margin-top: 0 !important; }

input[type=range]::-moz-range-thumb {
  width: 28px;
  height: 28px;
  margin-top: -14px;
  transition: all .2s ease;
  box-sizing: inherit; }
  input[type=range]::-moz-range-thumb:active {
    transform: scale(0.9);
    border-width: 0; }
  .is-IE input[type=range]::-moz-range-thumb {
    margin-top: 0 !important; }

input[type=range]::-ms-thumb {
  width: 28px;
  height: 28px;
  margin-top: -14px;
  transition: all .2s ease;
  box-sizing: inherit; }
  input[type=range]::-ms-thumb:active {
    transform: scale(0.9);
    border-width: 0; }
  .is-IE input[type=range]::-ms-thumb {
    margin-top: 0 !important; }

input[type=range]::-ms-thumb {
  width: 28px;
  height: 28px;
  margin-top: -14px;
  transition: all .2s ease;
  box-sizing: inherit; }
  input[type=range]::-ms-thumb:active {
    transform: scale(0.9);
    border-width: 0; }
  .is-IE input[type=range]::-ms-thumb {
    margin-top: 0 !important; }

.is-IE input[type=range] {
  top: 0 !important;
  height: 28px !important;
  margin-top: 0 !important; }

.switch {
  min-height: 39px; }
  .switch span {
    display: inline-block;
    transition: all .2s ease;
    font-size: 1.3em; }
    @media (max-width: 991px) {
      .switch span:not(.currency) {
        font-size: .8rem; } }
  .switch .off {
    color: #252525;
    font-weight: 500; }
  .switch .on {
    color: rgba(0, 0, 0, 0.3);
    font-weight: 400; }
  .switch.state-on .off {
    color: rgba(0, 0, 0, 0.3);
    font-weight: 400; }
  .switch.state-on .on {
    color: #252525;
    font-weight: 500; }
  .switch label input[type=checkbox] + .lever {
    background: rgba(0, 0, 0, 0.3); }
  .switch label input[type=checkbox]:checked + .lever {
    background: rgba(0, 0, 0, 0.1); }
    .switch label input[type=checkbox]:checked + .lever:after {
      background-color: #7159B5; }

.currency-switcher {
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid white;
  background: #78cd62;
  color: white;
  font-weight: 400;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  text-align: center; }
  .currency-switcher option {
    text-align: center;
    color: black;
    background: white; }
  .currency-switcher__wrapper .currency-loading,
  .currency-switcher__wrapper label {
    font-size: 1rem; }

.p-loading {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-size: 3rem;
  padding: 5vh;
  z-index: 5; }
  .p-loading__wrapper {
    position: relative; }
  .p-loading:after {
    content: "Loading..."; }
  .p-loading:before {
    content: "";
    font-family: 'fontawesome';
    animation: fa-spin 1.2s linear infinite;
    display: inline-block;
    margin: 0 12px; }

@media (max-width: 543px) {
  .xs-block {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-right: 0; } }

.is-order #auth_customer .tab-pane {
  border-radius: 15px; }

.is-order #auth_customer .nav-link {
  position: relative;
  padding-left: 0;
  padding-right: 0; }
  @media (max-width: 543px) {
    .is-order #auth_customer .nav-link {
      font-size: 12px; } }
  .is-order #auth_customer .nav-link .tab-icon {
    border-radius: 50%;
    display: block;
    transition: all .2s ease;
    width: 1.6rem;
    height: 1.6rem;
    padding: .3rem;
    margin: auto;
    background: #fafafa; }
  .is-order #auth_customer .nav-link.active {
    border: 0;
    background: transparent; }
    .is-order #auth_customer .nav-link.active .tab-icon {
      background: #78cd62;
      color: white;
      transform: scale(1.5) translateY(-7px); }
    .is-order #auth_customer .nav-link.active:after {
      font-family: "fontawesome";
      content: "\f0d7";
      position: absolute;
      bottom: -.7rem;
      left: 50%;
      transform: translateX(-50%);
      color: silver; }

.is-order #auth_customer .label-wrapper,
.is-order #auth_customer .label-wrapper ~ [class^=col-] input,
.is-order #auth_customer .label-wrapper + div {
  padding-right: 0;
  padding-left: 0; }

.is-order #auth_customer .control-label {
  padding-top: 0.7rem; }

.is-order #auth_customer .row sup {
  position: absolute;
  top: 0;
  right: 0; }

.is-order #auth_customer .row sup > i.tip {
  opacity: 1;
  padding: .45rem .2rem;
  transform: scale(1); }

.is-order .how-it-works-cta {
  margin: 0 auto;
  padding-bottom: 0; }
  .is-order .how-it-works-cta .row .col-md-3 .ico-wrapper {
    padding: 1rem .4rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: silver;
    line-height: 1em; }
    .is-order .how-it-works-cta .row .col-md-3 .ico-wrapper .ico {
      margin: 1.5rem auto;
      display: block;
      font-size: 1.6rem;
      width: 2.5rem;
      height: 2.5rem;
      line-height: 1.6em;
      border-radius: 50%;
      margin: auto;
      color: rgba(0, 0, 0, 0.6);
      background: #fafafa;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.04);
      border-bottom: 1px solid #fafafa;
      transition: all .2s ease; }
      .is-order .how-it-works-cta .row .col-md-3 .ico-wrapper .ico.fa-cc-bank {
        display: flex;
        justify-content: center;
        align-items: center; }
        .is-order .how-it-works-cta .row .col-md-3 .ico-wrapper .ico.fa-cc-bank:before {
          color: #fafafa;
          background: rgba(0, 0, 0, 0.6);
          height: 1.4rem;
          width: 2.1rem; }
        .is-order .how-it-works-cta .row .col-md-3 .ico-wrapper .ico.fa-cc-bank.safecharge:before {
          background: rgba(0, 0, 0, 0.6) url("/static/img/payment/safecharge.svg"); }
        .is-order .how-it-works-cta .row .col-md-3 .ico-wrapper .ico.fa-cc-bank.fondy:before {
          background: rgba(0, 0, 0, 0.6) url("/static/img/payment/fondy.svg"); }
        .is-order .how-it-works-cta .row .col-md-3 .ico-wrapper .ico.fa-cc-bank.paysera:before {
          background: rgba(0, 0, 0, 0.6) url("/static/img/payment/paysera.svg"); }
        .is-order .how-it-works-cta .row .col-md-3 .ico-wrapper .ico.fa-cc-bank.paymentwall:before {
          background: rgba(0, 0, 0, 0.6) url("/static/img/payment/paymentwall.svg"); }
        .is-order .how-it-works-cta .row .col-md-3 .ico-wrapper .ico.fa-cc-bank.paycoreio:before {
          background: rgba(0, 0, 0, 0.6) url("/static/img/payment/paycore.svg"); }
    .is-order .how-it-works-cta .row .col-md-3 .ico-wrapper .ico-text {
      transition: all .5s ease;
      margin-top: 1rem;
      white-space: nowrap; }
    @media (min-width: 768px) {
      .is-order .how-it-works-cta .row .col-md-3 .ico-wrapper:after {
        font-family: "fontawesome";
        content: "\f101";
        position: absolute;
        top: 30%;
        left: 0;
        width: 0.8rem;
        height: 0.8rem;
        font-size: 0.7rem;
        line-height: 1.2em;
        color: rgba(0, 0, 0, 0.1);
        display: inline-block; } }
    .is-order .how-it-works-cta .row .col-md-3 .ico-wrapper.active .ico {
      transform: scale(2) rotate(-5deg);
      background: #7159B5;
      color: #ffffff;
      z-index: 1000; }
      .is-order .how-it-works-cta .row .col-md-3 .ico-wrapper.active .ico.fa-cc-bank:before {
        color: #7159B5;
        background: #ffffff; }
      .is-order .how-it-works-cta .row .col-md-3 .ico-wrapper.active .ico.fa-cc-bank.safecharge:before {
        background: #7159B5 url("/static/img/payment/safecharge.svg");
        border: 1px solid #ffffff; }
      .is-order .how-it-works-cta .row .col-md-3 .ico-wrapper.active .ico.fa-cc-bank.fondy:before {
        background: #7159B5 url("/static/img/payment/fondy.svg");
        border: 1px solid #ffffff; }
      .is-order .how-it-works-cta .row .col-md-3 .ico-wrapper.active .ico.fa-cc-bank.paysera:before {
        background: #7159B5 url("/static/img/payment/paysera.svg");
        border: 1px solid #ffffff; }
      .is-order .how-it-works-cta .row .col-md-3 .ico-wrapper.active .ico.fa-cc-bank.paymentwall:before {
        background: #7159B5 url("/static/img/payment/paymentwall.svg");
        border: 1px solid #ffffff; }
      .is-order .how-it-works-cta .row .col-md-3 .ico-wrapper.active .ico.fa-cc-bank.paycoreio:before {
        background: #7159B5 url("/static/img/payment/paycore.svg");
        border: 1px solid #ffffff; }
    .is-order .how-it-works-cta .row .col-md-3 .ico-wrapper.active .ico-text {
      transform: translateY(15px) scale(1.2); }
  .is-order .how-it-works-cta .row .col-md-3:first-child .ico-wrapper:after {
    display: none; }

.is-dashboard .orders-search__wrapper {
  float: right;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: .2rem; }
  @media (max-width: 767px) {
    .is-dashboard .orders-search__wrapper {
      width: 100%;
      margin-top: 1rem;
      margin-bottom: 0.5rem; } }

.is-dashboard .orders-search__input {
  max-width: 445px;
  min-width: 400px;
  max-height: 36px;
  width: 100%;
  padding: .6rem 2rem .6rem .7rem;
  border: 1px solid #e5e8f2;
  border-radius: 3px;
  background-color: #fafafa;
  color: #202020;
  font-size: 14px;
  font-weight: 400; }
  .is-dashboard .orders-search__input::placeholder {
    color: #9e9e9e; }
  @media (max-width: 991px) {
    .is-dashboard .orders-search__input {
      min-width: auto;
      width: 180px; } }
  @media (max-width: 767px) {
    .is-dashboard .orders-search__input {
      max-width: 100%;
      width: 100%; } }

.is-dashboard .orders-search__button {
  position: absolute;
  right: 0;
  height: 36px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: none;
  z-index: 5;
  border-radius: 3px;
  transition: .2s ease; }
  .is-dashboard .orders-search__button .fa {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #747676;
    transition: .2s ease; }
  .is-dashboard .orders-search__button:hover, .is-dashboard .orders-search__button:focus {
    background-color: #4bae4f; }
    .is-dashboard .orders-search__button:hover .fa, .is-dashboard .orders-search__button:focus .fa {
      color: #fff; }
  .is-dashboard .orders-search__button:active {
    background-color: #75d179; }

.modal {
  z-index: 16000002; }
  .modal.bootbox {
    transition: none !important; }
  .modal .modal-footer,
  .modal .modal-header {
    position: relative; }
    .modal .modal-footer button.close,
    .modal .modal-header button.close {
      float: none;
      position: absolute;
      right: 0;
      top: 0; }
    .modal .modal-footer a,
    .modal .modal-header a {
      color: #9e9e9e; }
      .modal .modal-footer a:hover,
      .modal .modal-header a:hover {
        color: #1e88e5; }
  .modal#modal-signin {
    min-height: 460px;
    background: white;
    transform: translate(0, 0); }
    .modal#modal-signin ~ .modal-backdrop.fade {
      background: transparent; }
    .modal#modal-signin .modal-header,
    .modal#modal-signin .modal-footer {
      text-align: center;
      border: none; }
    .modal#modal-signin .modal-body {
      max-width: 360px;
      margin: auto; }
    .modal#modal-signin .modal-content {
      background: transparent; }
    .modal#modal-signin .modal-footer a {
      font-size: 1rem; }
      .modal#modal-signin .modal-footer a:hover {
        color: #242424; }
    .modal#modal-signin img {
      max-width: 274px;
      margin: 0 auto;
      width: 100%; }
    .modal#modal-signin a:hover {
      text-decoration: underline; }
    .modal#modal-signin input {
      border-radius: 35px;
      padding: 0.2rem 1rem;
      line-height: 1;
      background: #fff;
      box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
      max-width: unset;
      border: none; }
      .modal#modal-signin input:focus {
        box-shadow: inset 0 2px 0px rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.1); }
      .modal#modal-signin input + label {
        margin: -0.2rem 0 0 3.5rem; }
    .modal#modal-signin i {
      opacity: 0.2; }
    .modal#modal-signin button.close:before, .modal#modal-signin button.close:after {
      background: #000; }

body.is-login .modal-footer, body.is-login .modal-header {
  border: 0; }

body.modal-open .modal {
  background: rgba(0, 0, 0, 0.6); }
  body.modal-open .modal-content {
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.28); }
  body.modal-open .modal-content {
    box-shadow: none !important; }

@media (min-width: 992px) {
  body.modal-open .page-wrapper {
    transition: filter 2s ease; } }

@keyframes close-show {
  from {
    opacity: 0;
    transform: translateY(-80px) scale(0.5); }
  to {
    opacity: 1;
    transform: translateY(-50px) scale(1); } }

button.close[data-dismiss='modal'] {
  font-size: 0px;
  display: block;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  transform-origin: right bottom;
  animation: close-show 0.4s cubic-bezier(0.16, 0.07, 0.68, 0.94) both; }
  button.close[data-dismiss='modal']:after, button.close[data-dismiss='modal']:before {
    content: '';
    display: inline-block;
    height: 100%;
    position: absolute;
    top: 0px;
    width: 3px;
    border-radius: 3px;
    background: #6a6a6a;
    transform: scale(1);
    transition: all 0.15s ease; }
  button.close[data-dismiss='modal']:after {
    transform: rotate(45deg); }
  button.close[data-dismiss='modal']:before {
    transform: rotate(-45deg); }
  button.close[data-dismiss='modal']:hover:after, button.close[data-dismiss='modal']:hover:before {
    background: white; }
  button.close[data-dismiss='modal']:hover:after {
    transform: rotate(50deg) scale(1.1); }
  button.close[data-dismiss='modal']:hover:before {
    transform: rotate(-40deg) scale(1.1); }

@media (max-width: 543px) {
  #modal-deactivate .modal-dialog {
    height: auto; } }

#modal-deactivate .modal-dialog .modal-content {
  margin-top: 4rem; }

#modal-deactivate .modal-dialog #commentArea {
  display: none;
  margin-top: 4rem; }
  @media (max-width: 543px) {
    #modal-deactivate .modal-dialog #commentArea {
      margin-top: 2rem; } }
  #modal-deactivate .modal-dialog #commentArea #deactivateComment {
    height: 100px; }
    @media (max-width: 543px) {
      #modal-deactivate .modal-dialog #commentArea #deactivateComment {
        height: 120px; } }

.global-search__container {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100vh;
  z-index: 5000;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s; }
  .global-search__container.visible {
    opacity: 1;
    pointer-events: auto; }

.global-search__outer-wrapper {
  height: 100%;
  padding: 80px 0; }
  @media (max-width: 767px) {
    .global-search__outer-wrapper {
      padding: 70px 15px; } }

.global-search__inner-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  transform: translateY(-150px);
  transition: 0.2s; }
  .global-search__inner-wrapper.slide {
    transform: translateY(0); }

.global-search__field {
  position: relative;
  background-color: #fff;
  padding: 0.5rem;
  border-radius: 5px; }

.global-search__input {
  padding-right: 40px !important; }

.global-search__close-btn {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  box-shadow: none;
  background-color: transparent;
  transition: 0.25s; }
  .global-search__close-btn:hover {
    color: #5ba7ca; }

.global-search__dropdown {
  background-color: #fff;
  border-radius: 5px;
  padding: 1rem;
  margin-top: 5px;
  max-height: calc(100% - 65px);
  height: 800px; }
  .global-search__dropdown.hidden {
    display: none; }

.global-search__list {
  overflow-y: auto;
  height: 100%;
  padding-right: 10px;
  /* Let's get this party started */
  /* Track */
  /* Handle */ }
  .global-search__list::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 5px;
    height: 5px; }
  .global-search__list::-webkit-scrollbar-track {
    background: #fff;
    box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    background: #fbfbfb;
    visibility: visible; }
  .global-search__list:hover::-webkit-scrollbar-track {
    visibility: visible; }
  .global-search__list::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #5ba7ca;
    visibility: visible; }
  .global-search__list:hover::-webkit-scrollbar-thumb {
    visibility: visible; }

.global-search__item {
  padding: 1rem 0;
  list-style: none; }
  .global-search__item:not(:last-child) {
    border-bottom: 1px solid #656577; }

.global-search__title {
  color: #4f4b62;
  margin-bottom: 0;
  font-size: 24px; }
  @media (max-width: 767px) {
    .global-search__title {
      font-size: 22px; } }
  @media (max-width: 543px) {
    .global-search__title {
      font-size: 20px; } }
  .global-search__title.center {
    text-align: center;
    padding: 1.5rem; }

.global-search__url {
  color: #5ba7ca;
  font-size: 14px; }
  @media (max-width: 767px) {
    .global-search__url {
      line-height: 15px; } }
  @media (max-width: 543px) {
    .global-search__url {
      font-size: 13px; } }

.global-search__description {
  color: #656577;
  margin: 0.8rem 0 0; }

@keyframes Notify {
  from {
    opacity: 0;
    transform: translateY(25px); }
  85% {
    transform: translateY(-5px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

@keyframes Notify-hide {
  from {
    transform: translateY(0); }
  to {
    transform: translateY(100%) scale(0.97);
    opacity: 0; } }

@keyframes Notify-hide-left {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-100%) scale(0.8);
    opacity: 0; } }

@keyframes Notify-hide-right {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(100%) scale(0.8);
    opacity: 0; } }

@keyframes Notify-pop {
  from {
    transform: scaleY(0.3) scaleX(1.2);
    opacity: 0; }
  75% {
    transform: scaleY(1.1) scaleX(0.9); }
  to {
    transform: scale(1);
    opacity: 1; } }

@keyframes Notify-price {
  from {
    transform: scaleY(0.3) scaleX(1.2);
    opacity: 0; }
  75% {
    transform: scaleY(1.1) scaleX(0.9); }
  to {
    transform: scale(0.7);
    opacity: 1; } }

@keyframes Notify-price-hide {
  from {
    transform: scale(0.7);
    opacity: 1; }
  to {
    transform: scale(0);
    opacity: 0; } }

@keyframes Notify-fadeIn {
  to {
    opacity: 1; } }

@keyframes swipe {
  from {
    transform: translateX(-200px);
    opacity: 1; }
  to {
    transform: translateX(0);
    opacity: 0; } }

#single-notify {
  z-index: 160000000;
  font: 100 0.54167 "Gilroy", "Helvetica Neue", Arial, sans-serif;
  position: fixed;
  bottom: 2vh;
  left: 1vw;
  background: seagreen;
  color: #fff;
  max-width: 480px;
  width: auto;
  line-height: 1.4em;
  height: auto;
  animation: Notify .3s ease both;
  border-radius: 6px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
  visibility: visible;
  font-size: 1rem;
  padding: .7rem 1rem; }
  @media (max-width: 991px) {
    #single-notify {
      padding: .7rem 1rem; } }
  #single-notify .h5, #single-notify input.number-for-range[type=number] {
    font-size: 1.1rem;
    font-weight: bold; }
  #single-notify .notify__close {
    width: 38px;
    height: 38px;
    cursor: pointer;
    background: transparent;
    color: #fff;
    border: none;
    position: absolute;
    display: inline-block;
    position: absolute;
    top: -.5rem;
    right: -.5rem;
    font-size: .7rem;
    opacity: .5; }
    #single-notify .notify__close:hover {
      opacity: 1; }
    #single-notify .notify__close:active {
      transform: scale(0.9); }
    #single-notify .notify__close:before {
      font-family: "fontawesome";
      display: block;
      content: "\f00d"; }
  #single-notify .notify__message {
    display: block;
    padding-right: 1.2rem; }
    @media (max-width: 767px) {
      #single-notify .notify__message {
        padding-right: 0; } }
  #single-notify .notify__heading {
    margin: 0;
    font-size: 1.1em;
    font-weight: bold;
    margin: 0 !important;
    margin-bottom: .5rem; }
    @media (max-width: 767px) {
      #single-notify .notify__heading {
        font-size: 1em;
        line-height: 1; } }
  @media (max-width: 767px) {
    #single-notify {
      max-width: 340px; }
      #single-notify .h5, #single-notify input.number-for-range[type=number] {
        font-size: 1rem;
        font-weight: bold; } }
  #single-notify.brand-notify {
    background-color: #7159B5;
    color: rgba(255, 255, 255, 0.8); }
    #single-notify.brand-notify .notify__message {
      padding: 0; }
    #single-notify.brand-notify .notify__close {
      display: none; }
    #single-notify.brand-notify .fa {
      opacity: .6;
      display: inline-block;
      margin-right: 5px; }
    #single-notify.brand-notify .h2 {
      transition: all .2s ease;
      font-weight: 400;
      display: inline-block;
      text-shadow: 0 1px rgba(120, 120, 120, 0.2); }
  #single-notify.wait-notify .notify__close {
    display: none; }
  #single-notify.wait-notify p {
    margin: 0; }
  #single-notify.notify-hide {
    animation: Notify-hide .55s ease both; }
    #single-notify.notify-hide.brand-notify:not(.notify-hide-right):not(.notify-hide-left) {
      animation: Notify-price-hide .55s ease both; }
  #single-notify.notify-hide-left {
    animation: Notify-hide-left .45s ease both; }
  #single-notify.notify-hide-right {
    animation: Notify-hide-right .45s ease both; }

.usd {
  position: relative;
  display: inline-block; }
  .usd:before {
    display: inline-block;
    transform: rotate(-5deg) scale(0.75);
    content: "$";
    opacity: .65; }
  .usd .price-decimal {
    position: relative;
    top: -10px;
    left: 2px;
    font-size: .8rem;
    text-decoration: underline; }

/* order list (orderinfo|dashboard table) */
.is-dashboard tr.status--unpaid td:first-child,
.is-dashboard tr.status--unbezahlt td:first-child {
  font-weight: bold;
  color: #d83437; }

.is-dashboard tr.status--completed td:first-child,
.is-dashboard tr.status--fertig td:first-child {
  color: #64b45c; }

.is-dashboard tr.row-status td:last-child {
  text-align: left; }

.is-dashboard tr.row-status:not(.status--unpaid) td:nth-child(3) span,
.is-dashboard tr.row-status:not(.status--unbezahlt) td:nth-child(3) span {
  font-size: 0.9rem;
  color: #898b8b; }
  .is-dashboard tr.row-status:not(.status--unpaid) td:nth-child(3) span.price-val > span.price-decimal,
  .is-dashboard tr.row-status:not(.status--unbezahlt) td:nth-child(3) span.price-val > span.price-decimal {
    font-size: 0.65rem;
    top: -0.2rem; }

.is-dashboard tr.row-status td:nth-child(3) span.installment span {
  font-size: 1.4rem; }

.is-dashboard tr.row-status.status--unpaid td:nth-child(3) span,
.is-dashboard tr.row-status.status--unbezahlt td:nth-child(3) span {
  font-size: 1.4rem;
  color: #65b55d; }

.is-dashboard tr.row-status td:first-child {
  font-weight: bold;
  white-space: nowrap; }

.is-dashboard span[class^="status-info__"] {
  padding: 2px 5px;
  white-space: nowrap;
  border-radius: 3px; }

.is-dashboard span[class^="status-info__"]:before {
  margin-right: 3px;
  /*add whitespace after icon*/ }

.is-dashboard span[class^="status-info__"]:before {
  margin-right: 3px;
  /*add whitespace after icon*/ }

.is-dashboard td.order-price__wrapper {
  position: relative; }
  .is-dashboard td.order-price__wrapper sup.tag.order-price__discount {
    font-weight: bold;
    display: inline-block;
    font-size: 0.7rem; }

.is-dashboard .status-info__unpaid,
.is-dashboard .status-info__unbezahlt {
  color: #747676; }
  .is-dashboard .status-info__unpaid a:not(.btn),
  .is-dashboard .status-info__unbezahlt a:not(.btn) {
    color: darkred; }

.is-dashboard .status--paid,
.is-dashboard .status--bezahlt {
  color: #4fac54; }
  .is-dashboard .status--paid a:not(.btn),
  .is-dashboard .status--bezahlt a:not(.btn) {
    color: #181818; }

.is-dashboard tr.row-status td:nth-child(4) span {
  font-size: 0.8rem; }

.is-dashboard tr.order-premium {
  border-left: 4px solid #ffb300; }

.is-dashboard td.order-actions span.all_payments {
  display: inline-flex;
  flex-direction: column; }
  .is-dashboard td.order-actions span.all_payments a {
    min-width: 124px; }
  .is-dashboard td.order-actions span.all_payments .order-price__installment {
    text-align: center;
    margin-top: 10px; }

.is-dashboard .icon-document-certificate.files {
  font-size: 1.3rem;
  margin-left: -2px; }

.is-dashboard .dropdown-download {
  max-height: 170px;
  overflow-y: scroll;
  /* Let's get this party started */
  /* Track */
  /* Handle */ }
  .is-dashboard .dropdown-download::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 6px;
    height: 6px; }
  .is-dashboard .dropdown-download::-webkit-scrollbar-track {
    background: #fff;
    box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    background: #fbfbfb;
    visibility: hidden; }
  .is-dashboard .dropdown-download:hover::-webkit-scrollbar-track {
    visibility: visible; }
  .is-dashboard .dropdown-download::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #7159B5;
    visibility: hidden; }
  .is-dashboard .dropdown-download:hover::-webkit-scrollbar-thumb {
    visibility: visible; }

/*
  unpaid - unbezahlt
  paid - bezahlt
  in-progress - in-bearbeitung
  verifying - wird-überprüft
  completed - fertig
  undone
  refunded - zurückerstattet
  canceled
  on-hold - angehalten
 */
[class^="status-info__"]:before {
  font-family: "fontawesome";
  text-align: center; }

.status-info__unpaid:before,
.status-info__unbezahlt:before {
  font-size: 1.1em; }

/* icons */
.status-info__unpaid:before,
.status-info__unbezahlt:before {
  content: "\f023"; }

.status-info__paid:before,
.status-info__bezahlt:before {
  content: "\f07a"; }

.status-info__in-progress:before,
.status-info__in-bearbeitung:before {
  content: "\f044"; }

.status-info__verifying:before,
.status-info__wird-überprüft:before {
  display: inline-block;
  content: "\f110";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear; }

.status-info__completed:before,
.status-info__fertig:before {
  content: "\f00c"; }

.status-info__undone:before {
  content: "\f00d"; }

.status-info__refunded:before,
.status-info__zurückerstattet:before {
  content: "\f01e"; }

.status-info__canceled:before {
  content: "\f1f8"; }

.status-info__offered:before {
  content: "\f254";
  color: #7f93f3; }

.status-info__on-hold:before,
.status-info__angehalten:before {
  content: "\f254"; }

/* status labels */
.status-info__completed,
.status-info__fertig {
  color: #65b55d;
  /* color: #fff; */ }

.status-info__canceled {
  color: #d83437;
  border: 1px solid #d83437; }

@keyframes hover-show {
  from {
    transform: scale(0.4) translateX(-40px);
    opacity: 0; }
  to {
    opacity: 1;
    transform: scale(1); } }

@media (min-width: 768px) {
  .is-dashboard .row-status td,
  .is-dashboard tr td {
    padding-top: 0.9rem; }
  .is-dashboard .row-status .hover-show,
  .is-dashboard tr .hover-show {
    display: inline-block;
    opacity: 0; }
    .is-dashboard .row-status .hover-show + .hover-show,
    .is-dashboard tr .hover-show + .hover-show {
      animation-delay: 0.15s !important; }
  .is-dashboard .row-status:hover .hover-show,
  .is-dashboard tr:hover .hover-show {
    animation: hover-show 0.2s ease both; } }

.table-cabinet {
  box-shadow: 0 34px 25px -26px rgba(0, 0, 0, 0.1); }
  .table-cabinet .currency:before, .table-cabinet .table-price .order-now:before, .table-price .table-cabinet .order-now:before {
    content: "\f155";
    font-family: "fontawesome";
    font-size: 0.9rem; }
  .table-cabinet .currency.euro:before, .table-cabinet .table-price .euro.order-now:before, .table-price .table-cabinet .euro.order-now:before {
    content: "\f153"; }
  .table-cabinet .tag-xs {
    margin: 2px auto 3px;
    font-weight: normal; }
  .table-cabinet .small {
    font-size: 0.75rem; }

@media (max-width: 767px) {
  .table-cabinet {
    counter-reset: order; }
  .table-cabinet tbody tr {
    counter-increment: order; }
  .table-cabinet tr td:first-child:before {
    content: counter(order);
    position: absolute;
    left: 5px;
    margin-top: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
    background: white;
    color: #969696;
    display: inline-block;
    min-width: 1rem;
    height: 1rem;
    text-align: center;
    border-radius: 4px;
    font-size: 0.7rem;
    font-family: sans-serif;
    font-weight: 100; } }

.is-dashboard h1.article-heading:after {
  display: none; }

.is-dashboard .breadcrumbs-nav {
  display: none; }

.is-dashboard nav .pagination {
  display: flex;
  border-radius: 0;
  justify-content: space-between;
  width: 100%;
  max-width: 240px;
  margin: 1rem auto 0;
  background: #fff; }
  .is-dashboard nav .pagination > li.page-item {
    flex: 1 0 auto; }
    .is-dashboard nav .pagination > li.page-item > a.page-link {
      width: 2.4rem;
      height: 2.4rem;
      border-radius: 50% !important; }
      .is-dashboard nav .pagination > li.page-item > a.page-link.active {
        opacity: 1 !important;
        transform: scale(1.1); }

tbody#load_files td .js-removefilecustomer {
  max-height: 33px; }

.awesome-progress {
  height: 4px;
  background-color: #fafafa;
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.12); }
  .awesome-progress span {
    transition: all 0.5s ease-in-out 0.4s;
    height: 100%;
    width: 0;
    display: block;
    background: #71bf61;
    background: linear-gradient(to right, #71bf61 0%, #4fac54 100%); }
  .awesome-progress,
  .awesome-progress span {
    border-radius: 10px; }

@media (max-width: 1199px) {
  #orders-list td.order-actions .btn, #orders-list td.order-actions .wizard > .actions a, .wizard > .actions #orders-list td.order-actions a,
  #orders-list td.order-actions .btn-group {
    margin: 0.5rem 0.2rem;
    display: block;
    float: none; } }

body.is-orderinfo tr.revision-status__requested .revision-status {
  color: #7f93f3;
  font-weight: bold; }

@media (max-width: 991px) {
  body.is-orderinfo tr.revision-status__in-progress {
    border: 1px solid #7f93f3 !important;
    background: rgba(127, 147, 243, 0.01) !important; } }

body.is-orderinfo tr.revision-status__in-progress .revision-status {
  color: #78cd62; }

@media (max-width: 991px) {
  body.is-orderinfo tr.revision-status__completed {
    border: 1px solid #78cd62 !important;
    background: rgba(120, 205, 98, 0.01) !important; } }

body.is-orderinfo tr.revision-status__completed .revision-status {
  color: #78cd62;
  font-weight: bold; }

body.is-orderinfo tr.revision-status__canceled .revision-status {
  color: #cc3032; }

body.is-orderinfo tr.revision-status__closed .revision-status {
  color: silver; }

body.is-orderinfo tr.revision-status__failed .revision-status {
  color: #cc3032; }

input.hidden-order-checkbox + label.card.hidden-order {
  display: block;
  background: #fafafa;
  padding: .2rem 1rem 1.8rem;
  border-radius: 5px;
  transition: all .15s ease-in-out !important;
  border: 1px solid transparent;
  cursor: pointer;
  color: #717171;
  text-shadow: 0 1px 0 white;
  font-size: .9rem;
  line-height: 1.1em;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.05);
  position: relative; }
  input.hidden-order-checkbox + label.card.hidden-order .pt-1 {
    padding-top: .2rem; }
  input.hidden-order-checkbox + label.card.hidden-order .pt-2 {
    padding-top: .8rem; }
  input.hidden-order-checkbox + label.card.hidden-order sub.tag {
    font-size: .7rem;
    padding: 0 .2rem .1rem; }
  input.hidden-order-checkbox + label.card.hidden-order .currency, input.hidden-order-checkbox + label.card.hidden-order .table-price .order-now, .table-price input.hidden-order-checkbox + label.card.hidden-order .order-now {
    color: silver;
    position: absolute;
    bottom: .4rem;
    right: 1rem;
    left: 1rem; }
  input.hidden-order-checkbox + label.card.hidden-order:hover {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    color: #252525; }

input.hidden-order-checkbox:checked ~ label.card.hidden-order {
  background: #fcfff9;
  box-shadow: 0 0 10px rgba(0, 128, 0, 0.8);
  box-shadow: none;
  border-color: #44ce44;
  color: black !important;
  transform: translateY(0) !important; }
  input.hidden-order-checkbox:checked ~ label.card.hidden-order:hover {
    box-shadow: none; }
  input.hidden-order-checkbox:checked ~ label.card.hidden-order .currency, input.hidden-order-checkbox:checked ~ label.card.hidden-order .table-price .order-now, .table-price input.hidden-order-checkbox:checked ~ label.card.hidden-order .order-now {
    color: #78cd62; }

blockquote:not(.testimonial) {
  clear: both;
  display: block;
  background: #fff;
  padding: 10px 25px 10px 25px;
  margin: 20px 0 20px;
  position: relative;
  /*Font*/
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.3em;
  color: #252525;
  text-align: justify;
  /*Borders - (Optional)*/
  border-left: 3px solid #7159B5;
  box-shadow: 0 0 15px rgba(41, 171, 198, 0.1);
  /*Box Shadow - (Optional)*/ }
  blockquote:not(.testimonial):before {
    content: "\201C";
    /*Unicode for Left Double Quote*/
    font-style: normal;
    /*Font*/
    font-size: 40px;
    font-weight: bold;
    color: #7159B5;
    /*Positioning*/
    position: absolute;
    left: 10px;
    top: 0; }
  blockquote:not(.testimonial) > cite {
    font-size: 1rem; }
    blockquote:not(.testimonial) > cite:before {
      content: "\2014\20"; }
  blockquote:not(.testimonial)::after {
    /*Reset to make sure*/
    content: ""; }
  blockquote:not(.testimonial) em {
    font-style: italic; }

.msg {
  background: #fafafa;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 400;
  padding: .75rem 1rem;
  line-height: 1.2em;
  position: relative;
  box-shadow: 1px 1px rgba(0, 0, 0, 0.1);
  padding-left: 2rem; }
  .msg .icon {
    font-size: 2rem;
    display: inline-block;
    position: absolute;
    left: -1rem;
    border-radius: 50%;
    background: #fafafa; }
  .msg.msg-success {
    border-left: 2px solid #78cd62; }
  .msg.msg-danger {
    border-left: 2px solid #cc3032; }
  .msg.msg-info {
    border-left: 2px solid #7f93f3; }
  .msg.msg-warning {
    border-left: 2px solid #ffb900; }

.textinfo-wrapper .order-status-msg {
  margin-bottom: 1rem; }

.orderfeatures {
  display: flex;
  text-align: center;
  padding: 0; }
  @media (max-width: 991px) {
    .orderfeatures {
      width: 100%; } }
  @media (max-width: 543px) {
    .orderfeatures {
      flex-flow: column; } }
  .orderfeatures .orderfeature__wrapper {
    flex: 1 0 auto;
    max-width: 260px;
    width: 30%; }
    .orderfeatures .orderfeature__wrapper .blue {
      background-color: #7f93f3 !important; }
    @media (max-width: 543px) {
      .orderfeatures .orderfeature__wrapper {
        width: 100%;
        margin: 0 auto; } }
  .is-orderinfo .orderfeatures {
    min-width: 100%;
    padding: 0; }
    .is-orderinfo .orderfeatures .orderfeature {
      margin: 0 .1rem; }
      .is-orderinfo .orderfeatures .orderfeature__heading {
        font-size: .9rem; }

.orderfeature {
  margin-top: -0.2rem;
  border-radius: 15px;
  margin: 0.75rem 0.75rem 0;
  padding: 0.5rem;
  position: relative; }
  .orderfeature__heading {
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 500;
    margin: 1.5rem auto 1rem;
    color: #373a3c; }
  .orderfeature i[class*='icon-'] {
    padding: 0.75rem;
    border-radius: 50%;
    display: inline-block;
    margin-top: -0.5rem;
    box-shadow: -2px 2px 1px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    transform: scale(0.9) translateY(15px); }
  .orderfeature.disabled {
    opacity: 0.35; }
  .orderfeature.state-on .add-feature-price {
    opacity: 1;
    transform: translate(50px, -5px) rotate(5deg); }
    .orderfeature.state-on .add-feature-price:before {
      animation: rotateIn 0.6s ease 0.4s both; }
  .orderfeature.state-on i[class*='icon-'] {
    transform: scale(1.3) translateY(8px); }
    body.is-orderinfo .orderfeature.state-on i[class*='icon-'] {
      transform: scale(1.15) translateY(6px); }
  .orderfeature.state-on.disabled .add-feature-price {
    display: none; }
  .orderfeature > label:first-child {
    display: block;
    transition: all 0.15s ease-in-out; }
    .orderfeature > label:first-child div.h3-responsive {
      transition: all 0.15s ease-in-out; }
  .orderfeature-wrapper {
    padding: 1rem 0;
    border-radius: 10px;
    box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.06); }

.select-preferred-writers ~ footer label[for] {
  line-height: 1.1;
  text-align: left;
  padding-top: .3rem;
  font-size: .9rem;
  white-space: nowrap; }

@media (min-width: 768px) and (max-width: 1199px) {
  .select-preferred-writers ~ footer label[for] {
    margin-top: .5rem;
    font-size: .9rem; } }
  @media (max-width: 767px) {
    .select-preferred-writers ~ footer label[for] {
      margin-top: 1rem; } }

.select-preferred-writers + .select2.select2-container--default {
  position: relative;
  padding: 0;
  max-width: 240px;
  line-height: 1.1;
  margin: -1rem auto .2rem; }
  .select-preferred-writers + .select2.select2-container--default.select2-container--open.select2-container--searching .select2-status {
    background: red;
    z-index: -1; }
  .select-preferred-writers + .select2.select2-container--default.select2-container--open.select2-container--focus .select2-search input[type="search"] {
    box-shadow: 0 -5px 10px rgba(21, 88, 168, 0.1); }
  .select-preferred-writers + .select2.select2-container--default .select2-status {
    position: absolute;
    top: 4px;
    bottom: 1px;
    right: 1.5rem;
    left: .5rem;
    display: flex;
    align-items: center;
    justify-content: center; }
  .select-preferred-writers + .select2.select2-container--default .selection {
    display: block; }
    .select-preferred-writers + .select2.select2-container--default .selection .select2-selection {
      min-width: 100%; }
      .select-preferred-writers + .select2.select2-container--default .selection .select2-selection__rendered {
        padding: 0;
        font-size: 1rem;
        overflow: visible; }
      .select-preferred-writers + .select2.select2-container--default .selection .select2-selection__choice {
        display: none; }
      .select-preferred-writers + .select2.select2-container--default .selection .select2-selection__clear {
        position: absolute;
        right: 0;
        top: .3rem;
        bottom: .2rem;
        z-index: 10;
        width: 25px;
        height: 25px;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: silver;
        font-size: 1rem;
        background: #fff;
        border-radius: 50%; }
        .select-preferred-writers + .select2.select2-container--default .selection .select2-selection__clear:hover {
          color: #252525; }
      .select-preferred-writers + .select2.select2-container--default .selection .select2-selection .select2-search {
        min-width: 100%;
        margin-top: .3rem; }
        .select-preferred-writers + .select2.select2-container--default .selection .select2-selection .select2-search input {
          text-align: center;
          transition: all .2s ease;
          border-bottom: 1px solid #dedede;
          max-width: 100%;
          min-height: 100%;
          margin: 0;
          min-width: 100%;
          padding: .5rem 1.6rem .5rem .5rem; }

.select-preferred-writers ~ .select2-container {
  display: block; }
  .select-preferred-writers ~ .select2-container.select2-container--open .select2-dropdown.select2-dropdown--above {
    transform: translateY(1.5rem);
    box-shadow: 0 -4px 14px -4px rgba(21, 88, 168, 0.2), 0 -2px 25px -5px rgba(21, 88, 168, 0.1), 0 -1px 1px rgba(21, 88, 168, 0.05); }
  .select-preferred-writers ~ .select2-container.select2-container--open .select2-dropdown.select2-dropdown--below {
    transform: translateY(1.25rem); }
  .select-preferred-writers ~ .select2-container .select2-dropdown .select2-results {
    display: block; }
    .select-preferred-writers ~ .select2-container .select2-dropdown .select2-results__option {
      transition: all .1s ease-in;
      text-align: left;
      white-space: nowrap; }
      .select-preferred-writers ~ .select2-container .select2-dropdown .select2-results__option--highlighted, .select-preferred-writers ~ .select2-container .select2-dropdown .select2-results__option:hover {
        color: #ffffff !important;
        background: #7159B5 !important; }
      .select-preferred-writers ~ .select2-container .select2-dropdown .select2-results__option[aria-selected] {
        display: flex;
        justify-content: flex-start;
        font-size: 1rem;
        position: relative; }
        .select-preferred-writers ~ .select2-container .select2-dropdown .select2-results__option[aria-selected] div {
          flex: 1 0 auto;
          display: flex;
          justify-content: space-between;
          align-items: center; }
        .select-preferred-writers ~ .select2-container .select2-dropdown .select2-results__option[aria-selected] .is-premium {
          line-height: 1;
          background: #fff;
          padding: .1rem .2rem;
          font-weight: bold;
          font-size: .9rem;
          border-radius: 1rem;
          color: grey;
          margin-left: .5rem;
          display: flex;
          align-items: center; }

@media (min-width: 768px) and (max-width: 991px) {
  .select-preferred-writers ~ .select2-container .select2-dropdown .select2-results__option[aria-selected] .is-premium {
    font-size: .8rem; } }

@media (min-width: 544px) and (max-width: 767px) {
  .select-preferred-writers ~ .select2-container .select2-dropdown .select2-results__option[aria-selected] .is-premium {
    flex-flow: column;
    font-size: 0;
    background: transparent;
    box-shadow: none; } }
          .select-preferred-writers ~ .select2-container .select2-dropdown .select2-results__option[aria-selected] .is-premium i {
            margin-right: .2rem; }
            .select-preferred-writers ~ .select2-container .select2-dropdown .select2-results__option[aria-selected] .is-premium i:before {
              color: #cc3032;
              width: auto;
              height: auto;
              transform: scale(1);
              font-size: 1rem; }
        .select-preferred-writers ~ .select2-container .select2-dropdown .select2-results__option[aria-selected]:before {
          width: 1.5rem;
          height: 1.5rem;
          content: " ";
          font-family: "fontawesome";
          margin-right: .1rem;
          transition: all 0.3s cubic-bezier(0.73, 0.13, 0, 1.1); }
      .select-preferred-writers ~ .select2-container .select2-dropdown .select2-results__option[aria-selected="false"] {
        color: grey; }
        .select-preferred-writers ~ .select2-container .select2-dropdown .select2-results__option[aria-selected="false"]:before {
          width: 0;
          opacity: 0;
          transform: scale(0.2) rotate(-10deg) translate(-10px, 10px); }
      .select-preferred-writers ~ .select2-container .select2-dropdown .select2-results__option[aria-selected="true"] {
        font-weight: 500; }
        .select-preferred-writers ~ .select2-container .select2-dropdown .select2-results__option[aria-selected="true"], .select-preferred-writers ~ .select2-container .select2-dropdown .select2-results__option[aria-selected="true"]:hover {
          background: #fff;
          color: #252525; }
        .select-preferred-writers ~ .select2-container .select2-dropdown .select2-results__option[aria-selected="true"]:before {
          content: "\f00c";
          transform: scale(1.2) translateX(3px);
          color: #78cd62; }

@media (min-width: 544px) and (max-width: 991px) {
  .select-preferred-writers ~ .select2-container .select2-dropdown .select2-results__option[aria-selected="true"]:before {
    transform: scale(1.2) translateX(-3px); } }

.modal-dialog div.add-feature-price {
  font-size: 1rem; }

div.add-feature-price {
  font-size: 0.9rem;
  letter-spacing: -1px;
  transition: all 0.2s ease-in-out;
  padding: 0 5px;
  position: absolute;
  top: 2%;
  right: 30%;
  opacity: 0;
  transform: translate(-20px, 5px) scale(0.55) rotate(-20deg); }
  div.add-feature-price span.currency .price-val, div.add-feature-price .table-price span.order-now .price-val, .table-price div.add-feature-price span.order-now .price-val {
    font-weight: bold;
    font-size: 1.2rem; }
    @media (min-width: 992px) {
      div.add-feature-price span.currency .price-val, div.add-feature-price .table-price span.order-now .price-val, .table-price div.add-feature-price span.order-now .price-val {
        font-size: 1.7rem;
        font-weight: 600; } }
    div.add-feature-price span.currency .price-val .price-decimal, div.add-feature-price .table-price span.order-now .price-val .price-decimal, .table-price div.add-feature-price span.order-now .price-val .price-decimal {
      font-size: 0.75rem;
      font-weight: 100;
      border-bottom: 1px solid rgba(0, 0, 0, 0.2);
      position: relative;
      top: -0.4rem;
      left: 0.2rem;
      color: rgba(0, 0, 0, 0.5); }
  div.add-feature-price span.currency:before, div.add-feature-price .table-price span.order-now:before, .table-price div.add-feature-price span.order-now:before {
    font-size: 1.2rem; }
  div.add-feature-price:before {
    content: '\f067';
    font-family: 'fontawesome';
    position: relative;
    top: -2px;
    right: 2px;
    font-size: 0.6rem;
    color: rgba(0, 0, 0, 0.2);
    display: inline-block;
    transform: scale(1); }

.tag.tag-feature {
  font-size: 0.75rem;
  margin: 3px 3px 0 0;
  font-weight: bold; }

body.is-order .accent-text {
  color: black;
  font-weight: bold; }

@media (max-width: 543px) {
  body.is-order .control-label {
    margin-bottom: 1rem; } }

body.is-order .auth-customer {
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.01); }

body.is-order .auth-customer .md-form,
body.is-order .auth-customer .md-form .form-control {
  margin-bottom: 0; }

body.is-orderinfo .order-details {
  max-width: 960px;
  margin: 0; }
  body.is-orderinfo .order-details input.form-control:not([name='price']),
  body.is-orderinfo .order-details textarea.md-textarea {
    color: #252525; }
  @media (min-width: 768px) {
    body.is-orderinfo .order-details:after {
      content: '';
      width: 67px;
      height: 80px;
      display: block;
      background: url("/static/img/pinpaper.svg?v=1") 0 0/cover;
      transform: rotate(5deg);
      position: absolute;
      right: 10px;
      top: -47px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    body.is-orderinfo .order-details:after {
      top: -33px;
      width: 50px;
      height: 61px; } }
  @media (min-width: 768px) {
    body.is-orderinfo .order-details {
      padding: 15px 25px; }
      body.is-orderinfo .order-details label.control-label {
        margin: 0;
        padding: 0;
        color: silver;
        display: block;
        width: 100%; }
      body.is-orderinfo .order-details input.form-control {
        padding-left: 0;
        margin: 0 0 0.5rem; } }
  @media (max-width: 767px) {
    body.is-orderinfo .order-details {
      padding: 0;
      border: 0;
      box-shadow: none; }
      body.is-orderinfo .order-details .btn, body.is-orderinfo .order-details .wizard > .actions a, .wizard > .actions body.is-orderinfo .order-details a {
        display: block;
        width: 100%;
        margin: 0.5rem 0; }
      body.is-orderinfo .order-details input.form-control {
        text-align: center;
        margin-bottom: 1rem;
        font-size: 1.4rem; }
      body.is-orderinfo .order-details [class^='col-'] {
        text-align: center; } }

body.is-orderinfo .tab-pane#files label[for='loadingfile'] {
  border-radius: 0; }

body.is-orderinfo.is-category-resume .order-details {
  max-width: 875px; }

body.is-orderinfo .express-button-tip {
  display: none;
  font-style: italic; }
  body.is-orderinfo .express-button-tip i {
    color: #7f93f3; }

i.balloon-fly {
  display: inline-block;
  animation: balloon-fly 5s ease infinite;
  padding: 0 4px; }

@media (max-width: 543px) {
  .switch.de label {
    display: flex;
    justify-content: center;
    align-items: center; } }

@media (max-width: 1199px) {
  .switch.de label .lever {
    margin: 0 9px; } }

.language__wrapper span.select2-container.select2-container--default {
  padding: 0; }
  .language__wrapper span.select2-container.select2-container--default.select2-container--open .select2-dropdown--above {
    top: 0;
    animation: dropdown-fadeInDown 0.2s ease both; }
  .language__wrapper span.select2-container.select2-container--default.select2-container--open .select2-dropdown--below {
    animation: dropdown-fadeInUp 0.2s ease both; }
  .language__wrapper span.select2-container.select2-container--default .select2-selection--single .select2-selection__rendered {
    display: flex;
    align-items: center; }
  .language__wrapper span.select2-container.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: -7px; }

.language__flag {
  width: 20px !important;
  height: 20px !important;
  margin-right: 10px;
  display: inline !important; }

.language__container {
  display: flex;
  align-items: center;
  margin-bottom: 5px; }
  @media (max-width: 767px) {
    .language__container {
      justify-content: center; } }
  .language__container label {
    margin-right: 10px;
    margin-bottom: 0; }
  .language__container > span {
    display: flex;
    align-items: center; }
    @media (min-width: 768px) {
      .language__container > span {
        margin-right: 5rem; } }

.is-orderinfo .edit-order-modal .language__wrapper {
  width: 50%; }
  @media (max-width: 767px) {
    .is-orderinfo .edit-order-modal .language__wrapper {
      widows: unset;
      flex-grow: 2; } }

@media (max-width: 767px) {
  .is-orderinfo .edit-order-modal .language__container {
    justify-content: flex-start; } }

.price-wrapper {
  padding: 4px 0; }
  @media (max-width: 767px) {
    .price-wrapper span {
      font-size: 1.4rem; } }

.is-dashboard span.order-price__installment {
  margin-left: -15px; }

.is-dashboard span.order-price__installment:hover i.tip {
  opacity: 1;
  animation: bounceIn 0.45s ease-in-out both; }
  .is-dashboard span.order-price__installment:hover i.tip:hover {
    color: red !important; }

@keyframes show-chat {
  from {
    transform: translateY(30px); }
  to {
    transform: translateY(0px); } }

#init-chat {
  font-size: 1rem;
  display: inline-block;
  font-weight: bold;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0px -10px 15px -10px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 0 1px #49cf43;
  position: fixed;
  bottom: 0;
  right: 10px;
  padding: 4px 14px;
  border-radius: 14px 14px 0 0;
  line-height: 1.2em;
  cursor: pointer;
  z-index: 100;
  letter-spacing: -0.5px;
  transition: all 0.15s ease;
  animation: show-chat 1.2s cubic-bezier(0.18, 1.05, 0, 1.23) both 0.45s;
  background: #49cf43;
  color: #fff; }
  #init-chat.round-badge:hover {
    padding-bottom: 8px; }
    #init-chat.round-badge:hover i.icon-bubble {
      transform: scale(1.2) rotate(-5deg) translate(-1px, -1px); }
  #init-chat.round-badge i.icon-bubble {
    transition: all 0.2s ease;
    display: inline-block; }
    #init-chat.round-badge i.icon-bubble:before {
      font-family: "fontawesome";
      content: "\f086"; }

.article-heading {
  margin: 1rem 0 1.5rem; }
  body.is-single .article-heading {
    margin-bottom: .7rem; }
  .article-heading .hover-show {
    display: inline-block;
    transition: all .2s ease; }
    @media (min-width: 768px) {
      .article-heading .hover-show {
        opacity: 0;
        transform: translateX(-20px); } }
  .article-heading:hover .hover-show {
    opacity: 1;
    transform: translateX(0); }
  body.is-article .article-heading:after {
    content: '';
    height: 1px;
    width: 56px;
    margin-top: 19px;
    display: block;
    background: #7159B5; }
  .article-heading span {
    color: rgba(0, 0, 0, 0.5); }
  @media (max-width: 767px) {
    .article-heading {
      font-size: 2rem;
      font-weight: 400; } }
  .article-heading .category-wrapper {
    display: block;
    float: right;
    max-width: 315px; }
    @media (max-width: 543px) {
      .article-heading .category-wrapper {
        float: none;
        max-width: 100%; } }

.article-content {
  font-size: 1.02rem; }
  .article-content h1, .article-content h2, .article-content h3, .article-content h4, .article-content h5 {
    font-weight: 500; }
    @media (max-width: 767px) {
      body.is-tpl-article .article-content h1, body.is-tpl-article .article-content h2, body.is-tpl-article .article-content h3, body.is-tpl-article .article-content h4, body.is-tpl-article .article-content h5 {
        text-align: left; } }
  .article-content img {
    height: auto !important;
    max-width: 100%; }
    .article-content img[style*="float: right"] {
      margin-left: 1.3rem;
      margin-top: 1rem; }
    .article-content img[style*="float: left"] {
      margin-right: 1.3rem;
      margin-top: 1rem; }

.article-thumbnail {
  width: 100%;
  float: left;
  display: inline-block;
  margin-right: 1.2rem;
  margin-bottom: 1rem;
  border-radius: 2px; }
  @media (min-width: 992px) {
    .article-thumbnail.thumbnail-small {
      width: 35vw; } }
  @media (max-width: 991px) {
    .article-thumbnail {
      display: block;
      width: 100%;
      float: none;
      margin: 0 0 1rem; } }
  .article-thumbnail.thumbnail-none {
    display: none; }

.is-tpl-article .article-content p {
  text-align: justify; }

.section-blog {
  /* homepage articles add 
    custom font-size to headings, 
    add more margin from image */ }
  @media (max-width: 767px) {
    .section-blog h4 {
      font-size: 1.6rem;
      margin-top: 2rem; } }

img[data-lazy][src="/static/img/vendor/preloader.gif"] {
  display: block;
  margin: 0 auto;
  width: 16px;
  height: 16px; }

#article-progress {
  display: inline-block;
  height: 2px;
  background: #7159B5;
  position: absolute;
  bottom: -1px;
  width: 0;
  left: 0;
  transition: all .1s linear; }

.is-tpl-article .article-content a:not([class]) {
  text-decoration: underline; }

[data-role="banner"].is-hidding {
  animation: fadeOutDown .5s ease both; }

body.is-IE #gift {
  display: none; }

#gift {
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 8vw;
  width: 70px;
  opacity: 0;
  animation: fadeInUp 1s ease .5s both;
  text-align: center; }
  #gift:hover #gift-cover {
    transform: rotate(20deg) translate(70px, -320px) scale(1); }
  #gift:hover #gift-text {
    transform: translate(-10px, -215px) scale(1);
    opacity: 1; }
  #gift:hover .gift__image-wrapper {
    transform: scale(0.85) translateY(20px); }
  #gift:hover #gift-box {
    transform: translateY(-10px) scale(1.01); }
  #gift #gift-cover, #gift #gift-box {
    transition: all .2s ease; }
  #gift #gift-text {
    transform: translateY(2px) scaleX(0.8);
    transition: all .3s ease-out;
    opacity: 0; }
  #gift .gift__image-wrapper {
    transition: all .2s ease;
    display: block;
    transform: scale(0.7) translateY(30px); }
    #gift .gift__image-wrapper:before {
      content: "";
      position: absolute;
      background: black;
      height: 10px;
      left: 10px;
      right: 10px;
      bottom: 10px;
      border-radius: 50%;
      box-shadow: 10px 10px 150px black;
      filter: blur(5px);
      opacity: .5; }
  #gift .gift__image-wrapper svg text {
    cursor: pointer; }
  #gift.waiting .gift__image-wrapper svg {
    animation: balloon-fly 4s ease infinite; }
  #gift.reward svg {
    animation: none;
    transform: scale(1.2); }
  #gift.reward .gift__image-wrapper:before, #gift.reward:hover .gift__image-wrapper:before {
    bottom: 20px;
    height: 20px;
    opacity: 1;
    filter: blur(10px); }
  #gift.reward #gift-cover {
    transform: rotate(20deg) translate(70px, -320px) scale(1); }
  #gift.reward #gift-text {
    transform: translate(-10px, -215px) scale(1);
    opacity: 1; }
  #gift.reward .gift__image-wrapper {
    transform: scale(0.85) translateY(20px); }
  #gift.reward #gift-box {
    transform: translateY(-10px) scale(1.01); }
  #gift.reward [data-role="banner-timer"] {
    display: none; }
  #gift [data-role="banner-close"] {
    z-index: 10001;
    position: absolute;
    left: -2rem;
    top: -1rem;
    padding: 1rem;
    transition: all .2s ease;
    display: inline-block;
    transform: scale(0.75);
    opacity: .35; }
    #gift [data-role="banner-close"]:hover {
      transform: scale(1.4);
      opacity: 1; }
  #gift [data-role="banner-timer"] {
    display: inline-block;
    transform: translate(-50%, -50%);
    position: absolute;
    transition: all .2s ease; }

body {
  min-height: 100vh;
  min-width: 320px;
  max-width: 100%;
  overflow-x: hidden; }
  @media (min-width: 768px) {
    body {
      display: flex;
      flex-flow: column wrap; } }
  body .page-wrapper {
    width: 100%; }
    @media (min-width: 768px) {
      body .page-wrapper {
        flex: 1; } }
    body .page-wrapper.layout-minimal {
      display: flex;
      align-items: center; }
      body .page-wrapper.layout-minimal .main-content {
        justify-content: center;
        align-items: center;
        min-height: 100vh; }
  body:not(.is-sidebar) .page-wrapper {
    overflow: hidden; }

.content-before,
.content-after {
  min-width: 100%; }

.is-loggedin .hidden-for-loggedin {
  display: none !important; }

.is-index img[src="/static/img/paysystems_vector_color.svg"],
.is-order img[src="/static/img/paysystems_vector_color.svg"],
.is-dashboard img[src="/static/img/paysystems_vector_color.svg"] {
  margin: 8px auto;
  max-width: 190px !important; }

@media (max-width: 991px) {
  .is-dashboard h1.article-heading {
    font-size: 1.6rem; } }

.is-discounts div[class="row"][style="margin-top:-30px;"] {
  margin-top: 0.75rem !important;
  display: flex;
  flex-flow: column wrap; }
  .is-discounts div[class="row"][style="margin-top:-30px;"] > div {
    width: 100%; }
  .is-discounts div[class="row"][style="margin-top:-30px;"] .col-md-5 {
    display: none; }
  .is-discounts div[class="row"][style="margin-top:-30px;"] p.m-t-1 {
    margin: 0 !important; }

@media (max-width: 991px) {
  body.is-about .aditional-content h3 {
    text-align: center; } }

.is-single.is-topbar .main-content {
  padding: 120px 0 80px; }
  @media (max-width: 991px) {
    .is-single.is-topbar .main-content {
      padding: 80px 0; } }

@media (max-width: 767px) {
  .is-single .fullwidth-section {
    margin-right: -15px;
    margin-left: -15px; } }

.is-single .site-header .navbar {
  background-color: #fff; }

.is-single .main-content {
  flex-wrap: wrap;
  flex: 1 0 auto;
  overflow: visible;
  padding: 70px 0 80px; }
  @media (max-width: 767px) {
    .is-single .main-content {
      padding: 70px 0 75px; } }
  .is-single .main-content.container {
    padding-left: 1rem;
    padding-right: 1rem; }

.is-single .article-content img {
  height: auto !important; }
  .is-single .article-content img[style*="float: right"] {
    margin-left: 1.3rem;
    margin-top: 1rem; }
  .is-single .article-content img[style*="float: left"] {
    margin-right: 1.3rem;
    margin-top: 1rem; }

body.is-tpl-legal .article-content .aditional-content {
  hyphens: unset; }

body.is-contacts form[action='/call-me'] {
  box-shadow: 0 4px 15px -5px rgba(0, 0, 0, 0.1);
  padding: 0;
  border: 1px solid #fafafa;
  border-radius: 15px; }

.deprecated-sidebar-layout .article-content ul,
.deprecated-sidebar-layout .article-content p,
.deprecated-sidebar-layout .article-content p.lead {
  font-size: 1.1rem;
  font-weight: normal; }
  .deprecated-sidebar-layout .article-content ul a:not(.btn),
  .deprecated-sidebar-layout .article-content p a:not(.btn),
  .deprecated-sidebar-layout .article-content p.lead a:not(.btn) {
    text-decoration: underline; }

.deprecated-sidebar-layout .article-content ul {
  margin-top: 0; }

.deprecated-sidebar-layout .article-content .blockquote {
  border-color: #7159B5; }

@keyframes show-dropdown {
  from {
    transform: translateX(150px);
    opacity: 0; }
  75% {
    transform: translateX(-10px);
    opacity: 1; }
  to {
    transform: translateX(0px); } }

header#masthead .main-nav-container .dropdown.dropdown-condensed.open > .dropdown-menu,
header#masthead .main-nav__container .dropdown.dropdown-condensed.open > .dropdown-menu {
  width: 100%;
  animation: fadeInDown .25s ease; }
  header#masthead .main-nav-container .dropdown.dropdown-condensed.open > .dropdown-menu a.dropdown-item,
  header#masthead .main-nav__container .dropdown.dropdown-condensed.open > .dropdown-menu a.dropdown-item {
    padding: .5rem .4rem;
    margin: 0; }
    @media (min-width: 992px) {
      header#masthead .main-nav-container .dropdown.dropdown-condensed.open > .dropdown-menu a.dropdown-item,
      header#masthead .main-nav__container .dropdown.dropdown-condensed.open > .dropdown-menu a.dropdown-item {
        text-align: left !important; } }

header .dropdown .dropdown-bottom.open > .dropdown-menu {
  animation: fadeInDown .35s ease; }
  header .dropdown .dropdown-bottom.open > .dropdown-menu a {
    padding: .3rem 1rem; }

footer .dropdown-top .dropdown-divider {
  margin: 0; }

footer .dropdown-top > .dropdown-menu {
  top: auto;
  bottom: 100%; }

footer .dropdown-top.open > .dropdown-menu {
  animation: fadeInUp .35s ease; }
  footer .dropdown-top.open > .dropdown-menu a {
    padding: .3rem 1rem; }

footer .dropdown-top .dropdown-toggle:after {
  display: inline-block;
  content: "\f107";
  width: auto;
  height: auto;
  font-family: 'fontawesome';
  border: none;
  transition: all .2s ease; }

footer .dropdown-top .dropdown-toggle[aria-expanded="true"]:after {
  transform: rotate(180deg); }

header div.dropdown.dropdown-condensed i.fa-user {
  opacity: .4; }

header div.dropdown.dropdown-condensed #user-name {
  position: relative;
  min-width: 25px;
  text-align: left; }

header div.dropdown.dropdown-condensed div.dropdown-menu {
  padding: 0;
  margin: 0;
  border-radius: 10px;
  overflow: hidden; }
  header div.dropdown.dropdown-condensed div.dropdown-menu .dropdown-divider {
    margin: 0; }
  header div.dropdown.dropdown-condensed div.dropdown-menu a.dropdown-item {
    font-size: 15px;
    padding: .5rem .5rem;
    transition: all .2s ease-in-out; }
    header div.dropdown.dropdown-condensed div.dropdown-menu a.dropdown-item i {
      display: inline-block;
      margin-right: 0.1rem;
      min-width: 23px;
      font-size: 1rem;
      min-width: 27px;
      text-align: right;
      position: relative;
      top: 2px;
      margin-right: 6px;
      opacity: .65; }
    header div.dropdown.dropdown-condensed div.dropdown-menu a.dropdown-item:hover i, header div.dropdown.dropdown-condensed div.dropdown-menu a.dropdown-item:active i, header div.dropdown.dropdown-condensed div.dropdown-menu a.dropdown-item:focus i {
      opacity: 1; }
    header div.dropdown.dropdown-condensed div.dropdown-menu a.dropdown-item .email-logout {
      display: none; }

.is-dashboard .download-multiply:after {
  display: none; }

.navbar.navbar-dark .dropdown-menu a.dropdown-item {
  color: black; }
  @media (max-width: 1199px) {
    .navbar.navbar-dark .dropdown-menu a.dropdown-item {
      color: #010648 !important; } }

.navbar.navbar-dark a.dropdown-toggle.btn.user-actions, .navbar.navbar-dark .wizard > .actions a.dropdown-toggle.user-actions, .wizard > .actions .navbar.navbar-dark a.dropdown-toggle.user-actions {
  padding-left: .65rem;
  padding-right: .65rem; }

@media (max-width: 991px) {
  [class^="dropdown"].open .dropdown-top .dropdown-menu,
  [class^="dropdown"].open .dropdown-menu:not(.dropdown-download) {
    -ms-overflow-style: none !important;
    overflow: -moz-scrollbars-none !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0;
    padding: 40px 0 0;
    border-radius: 0;
    overflow: hidden;
    overflow-y: auto;
    background: #ffffff;
    animation: show-dropdown .35s ease-in both;
    z-index: 16000003; }
    [class^="dropdown"].open .dropdown-top .dropdown-menu::-webkit-scrollbar,
    [class^="dropdown"].open .dropdown-menu:not(.dropdown-download)::-webkit-scrollbar {
      width: 0 !important;
      -webkit-appearance: none; }
    body.is-mobilenav [class^="dropdown"].open .dropdown-top .dropdown-menu, body.is-mobilenav
    [class^="dropdown"].open .dropdown-menu:not(.dropdown-download) {
      justify-content: center;
      padding-top: 5rem; }
    [class^="dropdown"].open .dropdown-top .dropdown-menu a.dropdown-item,
    [class^="dropdown"].open .dropdown-menu:not(.dropdown-download) a.dropdown-item {
      color: #010648 !important;
      display: block;
      font-size: 1.2rem;
      max-width: 280px;
      border-radius: 1rem; }
      [class^="dropdown"].open .dropdown-top .dropdown-menu a.dropdown-item[data-back],
      [class^="dropdown"].open .dropdown-menu:not(.dropdown-download) a.dropdown-item[data-back] {
        background: transparent !important; }
      [class^="dropdown"].open .dropdown-top .dropdown-menu a.dropdown-item.hidden-xl-up small,
      [class^="dropdown"].open .dropdown-menu:not(.dropdown-download) a.dropdown-item.hidden-xl-up small {
        font-size: 12px;
        font-weight: bold; }
      [class^="dropdown"].open .dropdown-top .dropdown-menu a.dropdown-item[href],
      [class^="dropdown"].open .dropdown-menu:not(.dropdown-download) a.dropdown-item[href] {
        margin: .5rem auto; }
      [class^="dropdown"].open .dropdown-top .dropdown-menu a.dropdown-item i:not(.fa-arrow-left),
      [class^="dropdown"].open .dropdown-menu:not(.dropdown-download) a.dropdown-item i:not(.fa-arrow-left) {
        display: inline;
        font-size: 1.5rem;
        opacity: 1; }
      [class^="dropdown"].open .dropdown-top .dropdown-menu a.dropdown-item:hover,
      [class^="dropdown"].open .dropdown-menu:not(.dropdown-download) a.dropdown-item:hover {
        transform: scale(1);
        background: #f7f7f7; }
      [class^="dropdown"].open .dropdown-top .dropdown-menu a.dropdown-item .email-logout,
      [class^="dropdown"].open .dropdown-menu:not(.dropdown-download) a.dropdown-item .email-logout {
        max-width: 100%;
        font-size: 0.9rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        color: rgba(1, 6, 72, 0.4); }
      [class^="dropdown"].open .dropdown-top .dropdown-menu a.dropdown-item.dropdown-item.dropdown-close[data-toggle="dropdown"],
      [class^="dropdown"].open .dropdown-menu:not(.dropdown-download) a.dropdown-item.dropdown-item.dropdown-close[data-toggle="dropdown"] {
        font-size: 1rem;
        letter-spacing: 1px;
        opacity: .4; }
        [class^="dropdown"].open .dropdown-top .dropdown-menu a.dropdown-item.dropdown-item.dropdown-close[data-toggle="dropdown"]:hover,
        [class^="dropdown"].open .dropdown-menu:not(.dropdown-download) a.dropdown-item.dropdown-item.dropdown-close[data-toggle="dropdown"]:hover {
          background: transparent !important;
          color: #010648 !important;
          transform: scale(1);
          position: relative; }
          [class^="dropdown"].open .dropdown-top .dropdown-menu a.dropdown-item.dropdown-item.dropdown-close[data-toggle="dropdown"]:hover i.fa,
          [class^="dropdown"].open .dropdown-menu:not(.dropdown-download) a.dropdown-item.dropdown-item.dropdown-close[data-toggle="dropdown"]:hover i.fa {
            transform: translateX(-8px) scale(1); }
        [class^="dropdown"].open .dropdown-top .dropdown-menu a.dropdown-item.dropdown-item.dropdown-close[data-toggle="dropdown"] i.fa,
        [class^="dropdown"].open .dropdown-menu:not(.dropdown-download) a.dropdown-item.dropdown-item.dropdown-close[data-toggle="dropdown"] i.fa {
          position: relative;
          top: 1px;
          transform: scale(0.8);
          transition: all .15s ease;
          margin: 0 0 -1rem; }
    [class^="dropdown"].open .dropdown-top .dropdown-menu .dropdown-divider,
    [class^="dropdown"].open .dropdown-menu:not(.dropdown-download) .dropdown-divider {
      opacity: .1; } }

.wizard {
  font-family: sans-serif; }
  .wizard .steps ul li {
    width: 33% !important; }
  .wizard .steps a, .wizard .steps a:hover, .wizard .steps a:active {
    padding: 0.5em 0.1em !important;
    text-align: center !important; }
  .wizard .steps .number {
    font-size: 1em !important; }
  @media (max-width: 543px) {
    .wizard .content {
      min-height: 41em !important; } }
  @media (max-width: 374px) {
    .wizard .content {
      min-height: 49.7em !important; } }
  .wizard .content .body {
    width: 100% !important;
    height: 100% !important; }
    .wizard .content .body fieldset label {
      color: inherit; }
    @media (max-width: 543px) {
      .wizard .content .body label.error {
        margin-left: 0 !important;
        font-size: 10px; } }
    @media (max-width: 543px) {
      .wizard .content .body .md-form label {
        font-size: 0.8rem !important; } }
    @media (max-width: 375px) {
      .wizard .content .body .md-form label {
        font-size: 0.6rem !important; } }
    @media (max-width: 543px) {
      .wizard .content .body h2 {
        font-size: 1.5rem !important; } }
    @media (max-width: 374px) {
      .wizard .content .body h2 {
        font-size: 1.3rem !important; } }
  .wizard .content .file-field .file-path-wrapper {
    height: 4.5rem; }
  .wizard .content input.file-path {
    border: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15) !important; }
  .wizard .content .btn, .wizard > .actions .content a {
    border-radius: 1em; }
  @media (max-width: 543px) {
    .wizard .content div.md-form.m-t-2 {
      margin-top: 2px !important; } }
  .wizard .content textarea.md-textarea {
    min-height: 10rem !important;
    max-height: 250px !important; }
    @media (max-width: 543px) {
      .wizard .content textarea.md-textarea {
        min-height: 4em !important;
        padding: 0.8em 0 0 0 !important;
        max-height: 4em !important; } }
    @media (max-width: 320px) {
      .wizard .content textarea.md-textarea {
        max-height: 10em !important; } }

.table-revision tr td.revision-description span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  line-height: 1.2;
  max-height: 3.6rem; }

.table-revision tr td.revision-description:hover span {
  overflow: auto;
  -webkit-line-clamp: unset; }

@media (max-width: 991px) {
  .table-revision {
    overflow: visible; }
    .table-revision thead {
      display: none; }
    .table-revision tbody {
      display: flex;
      flex-flow: row wrap; }
      .table-revision tbody > tr {
        flex: 1 0 45%;
        margin: 1rem; }
    .table-revision tr {
      display: flex;
      flex-direction: column;
      box-shadow: 0 0 15px #00000010;
      border-radius: 15px;
      margin-bottom: 1rem;
      background: white !important;
      padding: 1rem; }
      .table-revision tr td {
        border: none;
        text-align: center;
        padding: .2rem; }
        .table-revision tr td:before {
          color: rgba(0, 0, 0, 0.3); }
        .table-revision tr td.revision-id {
          font-size: 1.4rem; }
          .table-revision tr td.revision-id:before {
            content: "Revision ID: "; }
        .table-revision tr td.revision-status {
          font-size: .9rem; }
          .table-revision tr td.revision-status:before {
            content: "Status: "; }
        .table-revision tr td.revision-description:before {
          content: "Description: "; }
        .table-revision tr td.revision-description span {
          display: block;
          -webkit-line-clamp: unset;
          max-height: unset;
          padding: 0.5rem;
          text-align: center; }
        .table-revision tr td.revision-created:before {
          content: "Created: "; }
        .table-revision tr td.revision-deadline:before {
          content: "Deadline: "; } }

.is-login.is-tpl-login {
  background: radial-gradient(ellipse at center, #fafafa 0%, #E4E4E4 100%); }
  .is-login.is-tpl-login .login-form__content {
    width: 300px; }
  .is-login.is-tpl-login main.main-content {
    padding: 0;
    display: flex;
    align-items: center;
    text-align: center; }
    .is-login.is-tpl-login main.main-content img {
      max-width: 100%;
      width: 260px;
      margin-bottom: 1rem; }
    .is-login.is-tpl-login main.main-content input {
      border-radius: 15px;
      background: #fff;
      padding: .5rem 1rem;
      border-color: transparent;
      box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
      transition: box-shadow .2s ease; }
      .is-login.is-tpl-login main.main-content input:focus {
        border-color: transparent;
        box-shadow: inset 0 2px 0px rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.1); }
      .is-login.is-tpl-login main.main-content input + label {
        padding: 0;
        margin: 0;
        top: .4rem;
        left: .8rem; }

div.modal.modal-popup.modal-fullscreen[style] {
  position: fixed !important;
  background: #7159b5;
  color: #ffffff;
  z-index: 16000002; }
  div.modal.modal-popup.modal-fullscreen[style]:before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0; }
  @media (min-width: 768px) {
    div.modal.modal-popup.modal-fullscreen[style] .modal-content-fluid {
      min-width: 50rem; } }
  div.modal.modal-popup.modal-fullscreen[style] .modal-body-fluid {
    position: static !important; }
  div.modal.modal-popup.modal-fullscreen[style] button[data-dismiss="modal"] {
    top: 65px !important;
    right: 15px !important; }
  div.modal.modal-popup.modal-fullscreen[style] footer {
    position: fixed;
    bottom: 1rem;
    left: 0;
    right: 0; }

div.modal.modal-popup.fullscreen-poly:before {
  background: transparent url("/static/img/adds/poly_bg.svg") no-repeat center top/cover;
  opacity: .2; }

div.modal.modal-popup.fullscreen-plane:before {
  background: transparent url("/static/img/adds/geo_bg.svg") no-repeat center center/cover; }

div.modal.modal-popup .container-fixed {
  max-width: 550px; }

div.modal.modal-popup .modal__image img {
  width: 250px;
  margin: 0 auto; }

div.modal.modal-popup .modal__title {
  font-size: 3rem;
  line-height: 1em;
  margin-bottom: 1rem; }
  div.modal.modal-popup .modal__title :first-letter {
    font-size: 5rem; }

div.modal.modal-popup.fullscreen-plane .modal__title {
  margin-bottom: 3rem; }

div.modal.modal-popup .modal__description {
  font-size: 1.5rem;
  margin-bottom: 1.5rem; }
  div.modal.modal-popup .modal__description strong {
    font-weight: bold; }
    div.modal.modal-popup .modal__description strong.highlighten {
      border-bottom: 1px dashed rgba(255, 255, 255, 0.3); }

div.modal.modal-popup.fullscreen-plane .modal__description {
  margin-bottom: 3rem;
  text-transform: uppercase; }
  div.modal.modal-popup.fullscreen-plane .modal__description strong.highlighten {
    border: 1px dashed rgba(255, 255, 255, 0.3);
    padding: .5rem; }

div.modal.modal-popup.flying-letter .modal__description strong {
  color: #0099ff;
  font-size: 2.5rem; }

div.modal.modal-popup .gift-shake {
  display: inline-block;
  animation: phone-shake 2s linear infinite; }

div.modal.modal-popup .modal-dialog {
  display: flex;
  align-items: center;
  height: 100vh;
  min-height: 300px;
  max-width: 100vw;
  margin: 0 auto; }

div.modal.modal-popup button.close:before, div.modal.modal-popup button.close:after {
  background: #fff; }

div.modal.modal-popup button.close[data-dismiss="modal"] {
  position: absolute;
  top: 0;
  right: 0; }

div.modal.modal-popup a.btn.btn-submit, div.modal.modal-popup .wizard > .actions a.btn-submit, .wizard > .actions div.modal.modal-popup a.btn-submit {
  background: #ffffff;
  color: #594497;
  border-radius: 50px !important; }

div.modal.modal-popup .modal-header {
  background: transparent;
  border: none; }

div.modal.modal-popup input,
div.modal.modal-popup .btn,
div.modal.modal-popup .wizard > .actions a,
.wizard > .actions div.modal.modal-popup a {
  font-size: 1.2rem; }

div.modal.modal-popup input.input-white-outline {
  box-shadow: inset 0 0 0 2px #ffffff;
  border: none;
  border-radius: 20px;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  height: 2.6rem;
  background: #fff;
  color: #000; }
  div.modal.modal-popup input.input-white-outline:focus {
    box-shadow: inset 0 0 0 2px #ffffff;
    border: none !important; }
  div.modal.modal-popup input.input-white-outline::-webkit-input-placeholder {
    color: rgba(113, 89, 181, 0.85); }
  div.modal.modal-popup input.input-white-outline:-moz-placeholder {
    color: rgba(113, 89, 181, 0.85); }
  div.modal.modal-popup input.input-white-outline::-moz-placeholder {
    color: rgba(113, 89, 181, 0.85); }
  div.modal.modal-popup input.input-white-outline:-ms-input-placeholder {
    color: rgba(113, 89, 181, 0.85); }

@media (min-width: 768px) {
  div.modal.modal-popup div[class^=col-] {
    padding: 0 .25rem; } }

div.modal.modal-popup .modal-body-fluid {
  position: relative; }

div.modal.modal-popup.flying-letter .block-advertise {
  background: #0099ff;
  border-radius: 5px 5px 0 0; }

div.modal.modal-popup.flying-letter .modal__title {
  font-size: 2.7rem;
  line-height: 1.2em;
  margin-bottom: 0; }

div.modal.modal-popup.flying-letter .form {
  padding: 1rem 0;
  background: #fafafa;
  border-radius: 0 0 5px 5px; }

div.modal.modal-popup.flying-letter fieldset {
  width: 300px;
  margin: 0 auto; }

div.modal.modal-popup.flying-letter input.input-white-outline {
  box-shadow: inset 0 0 0 2px #eceeef;
  background: #fff;
  border-radius: 5px;
  color: #000; }
  div.modal.modal-popup.flying-letter input.input-white-outline:focus {
    box-shadow: inset 0 0 0 2px #eceeef; }
  div.modal.modal-popup.flying-letter input.input-white-outline::placeholder {
    color: rgba(129, 138, 145, 0.7); }

div.modal.modal-popup.flying-letter a.btn.btn-submit, div.modal.modal-popup.flying-letter .wizard > .actions a.btn-submit, .wizard > .actions div.modal.modal-popup.flying-letter a.btn-submit {
  background: #0099ff;
  color: #fff;
  padding: .7rem 0; }

div.modal.modal-popup.flying-letter footer {
  position: static; }

div.modal.modal-popup.pocket .container-fixed {
  width: 590px;
  max-width: 590px; }

div.modal.modal-popup.pocket .block-advertise {
  background: #fff;
  border-radius: 5px;
  padding: 0 2em; }

div.modal.modal-popup.pocket .modal__title {
  color: #7159B5;
  font-size: 2.6rem; }

div.modal.modal-popup.pocket .block-pocket {
  margin: 0 auto;
  background: url("/static/img/adds/pocket.svg") no-repeat center top/cover;
  width: 187px;
  height: 291px; }
  div.modal.modal-popup.pocket .block-pocket .modal__description {
    color: #ffffff;
    padding: 40px 10px 0;
    line-height: 1.7rem; }
    div.modal.modal-popup.pocket .block-pocket .modal__description strong {
      font-size: 2.5rem;
      line-height: 2.5rem; }

div.modal.modal-popup.pocket fieldset {
  width: 250px;
  margin: 0 auto; }

div.modal.modal-popup.pocket input.input-white-outline {
  box-shadow: inset 0 0 0 2px #eceeef;
  background: #fff;
  border-radius: 5px;
  color: #000; }
  div.modal.modal-popup.pocket input.input-white-outline:focus {
    box-shadow: inset 0 0 0 2px #eceeef; }
  div.modal.modal-popup.pocket input.input-white-outline::placeholder {
    color: rgba(129, 138, 145, 0.7); }

div.modal.modal-popup.pocket a.btn.btn-success, div.modal.modal-popup.pocket .wizard .actions a.btn[href$='#finish'], .wizard .actions div.modal.modal-popup.pocket a.btn[href$='#finish'], div.modal.modal-popup.pocket .wizard > .actions .actions a[href$='#finish'], .wizard > .actions .actions div.modal.modal-popup.pocket a[href$='#finish'], div.modal.modal-popup.pocket .wizard > .actions a.btn-success, .wizard > .actions div.modal.modal-popup.pocket a.btn-success {
  padding: .7rem 0; }

div.modal.modal-popup.wave-plane .container-fixed {
  background: #7159B5;
  border-radius: 5px;
  height: 490px;
  width: 550px; }
  div.modal.modal-popup.wave-plane .container-fixed .upper-bg {
    height: 100%;
    background: url("/static/img/adds/wave_bg.svg") no-repeat center bottom/contain; }
    div.modal.modal-popup.wave-plane .container-fixed .upper-bg .row {
      margin: 0; }
    div.modal.modal-popup.wave-plane .container-fixed .upper-bg .modal__image img {
      width: 150px;
      margin-top: -20px;
      margin-left: -10px;
      animation: fadeInUp 1s ease-in-out 1s both; }
    div.modal.modal-popup.wave-plane .container-fixed .upper-bg .modal__title {
      font-size: 2.3rem;
      line-height: 3rem;
      margin: 30px 0 0 30px;
      color: black;
      height: 140px;
      overflow-y: hidden; }
    div.modal.modal-popup.wave-plane .container-fixed .upper-bg .modal__description {
      color: black;
      margin: 20px 0 0 30px;
      line-height: 2.3rem; }
      div.modal.modal-popup.wave-plane .container-fixed .upper-bg .modal__description strong {
        font-size: 2.3rem; }
    div.modal.modal-popup.wave-plane .container-fixed .upper-bg .form {
      width: 280px;
      margin: 1em auto 0; }
      div.modal.modal-popup.wave-plane .container-fixed .upper-bg .form input.input-white-outline {
        box-shadow: inset 0 0 0 2px #eceeef;
        background: #fff;
        border-radius: 5px;
        color: #000; }
        div.modal.modal-popup.wave-plane .container-fixed .upper-bg .form input.input-white-outline:focus {
          box-shadow: inset 0 0 0 2px #eceeef; }
        div.modal.modal-popup.wave-plane .container-fixed .upper-bg .form input.input-white-outline::placeholder {
          color: rgba(129, 138, 145, 0.7); }
      div.modal.modal-popup.wave-plane .container-fixed .upper-bg .form a.btn.btn-success, div.modal.modal-popup.wave-plane .container-fixed .upper-bg .form .wizard .actions a.btn[href$='#finish'], .wizard .actions div.modal.modal-popup.wave-plane .container-fixed .upper-bg .form a.btn[href$='#finish'], div.modal.modal-popup.wave-plane .container-fixed .upper-bg .form .wizard > .actions .actions a[href$='#finish'], .wizard > .actions .actions div.modal.modal-popup.wave-plane .container-fixed .upper-bg .form a[href$='#finish'], div.modal.modal-popup.wave-plane .container-fixed .upper-bg .form .wizard > .actions a.btn-success, .wizard > .actions div.modal.modal-popup.wave-plane .container-fixed .upper-bg .form a.btn-success {
        padding: .7rem 0; }

div.modal.modal-popup.step-away .container-fixed {
  width: 512px; }
  div.modal.modal-popup.step-away .container-fixed .block-advertise {
    height: 120px;
    background: #7159B5;
    border-radius: 5px 5px 0 0; }
    div.modal.modal-popup.step-away .container-fixed .block-advertise .modal__title {
      margin: 0;
      font-size: 24px;
      line-height: 40px;
      color: #ffffff; }
  div.modal.modal-popup.step-away .container-fixed .form {
    height: 188px;
    background: #fff;
    border-radius: 0 0 5px 5px; }
    div.modal.modal-popup.step-away .container-fixed .form img {
      width: 195px;
      margin-top: -25px; }
    div.modal.modal-popup.step-away .container-fixed .form .modal__description {
      font-size: 20px;
      line-height: 30px;
      color: #000; }
    div.modal.modal-popup.step-away .container-fixed .form a.btn, div.modal.modal-popup.step-away .container-fixed .form .wizard > .actions a, .wizard > .actions div.modal.modal-popup.step-away .container-fixed .form a {
      max-width: 200px;
      margin: 0 auto; }

html[data-version][page-id="1"] {
  /*Data-version*/ }
  html[data-version][page-id="1"].is-index:before {
    content: attr(data-version);
    display: block;
    position: fixed;
    transform-origin: top right;
    transform: rotate(90deg);
    top: 50%;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    color: white;
    font-weight: 600;
    font-size: 12px;
    z-index: 100000000;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.2);
    padding: 0 .2rem;
    opacity: .9; }

html[data-version] #masthead:before {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 2rem;
  font-size: 10px;
  background: #7159B5;
  color: #ffffff;
  font-family: sans-serif;
  line-height: 1;
  font-weight: bold;
  padding: 0rem .4rem .3rem;
  border-radius: 0 0 50% 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), inset 0 -1px rgba(0, 0, 0, 0.1);
  text-align: center; }
  @media (max-width: 543px) {
    html[data-version] #masthead:before {
      content: "xs"; } }

@media (min-width: 544px) and (max-width: 767px) {
  html[data-version] #masthead:before {
    content: "sm"; } }

@media (min-width: 768px) and (max-width: 991px) {
  html[data-version] #masthead:before {
    content: "md"; } }

@media (min-width: 992px) and (max-width: 1199px) {
  html[data-version] #masthead:before {
    content: "lg"; } }
  @media (min-width: 1200px) {
    html[data-version] #masthead:before {
      content: "xl"; } }

.debug-grid + .nav-tabs.tabs-order {
  margin-top: 0; }

.debug-grid code {
  border-radius: 4px;
  margin: .1rem;
  font-size: .75rem;
  color: grey; }
  .debug-grid code em {
    font-weight: bold; }
  .debug-grid code.field--extra {
    background: #ffb900;
    color: #252525; }
  .debug-grid code.field--preferred {
    background: #78cd62;
    color: #fff; }
  .debug-grid code.field--writer {
    background: #7f93f3;
    color: #fff; }
  .debug-grid code.field--coef {
    background: #cc3032;
    color: #fff; }
  .debug-grid code.field--hold {
    background: silver;
    color: black; }
  .debug-grid code.field--resume {
    background: #c466c4;
    color: #fff; }
  .debug-grid code.field--thesis {
    background: #9566c4;
    color: #fff; }

.fa-cc-bank:before {
  content: 'bank';
  font-family: Sans-Serif;
  font-size: .5em !important;
  color: #fff;
  font-weight: 600;
  background: #373a3c;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  height: 32px;
  width: 45px; }

.fa-cc-bank.safecharge:before {
  background: #373a3c url("/static/img/payment/safecharge.svg");
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 60% !important;
  content: ''; }

.fa-cc-bank.fondy:before {
  background: #373a3c url("/static/img/payment/fondy.svg");
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 90% !important;
  content: ''; }

.fa-cc-bank.paysera:before {
  background: #373a3c url("/static/img/payment/paysera.svg");
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 90% !important;
  content: ''; }

.fa-cc-bank.paymentwall:before {
  background: #373a3c url("/static/img/payment/paymentwall.svg");
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 65% !important;
  content: ''; }

.fa-cc-bank.paycoreio:before {
  background: #373a3c url("/static/img/payment/paycore.svg");
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 92% !important;
  content: ''; }

#payment-preview .modal-dialog,
#payment-installment .modal-dialog {
  max-width: 465px; }
  @media (max-width: 543px) {
    #payment-preview .modal-dialog,
    #payment-installment .modal-dialog {
      max-width: 100%;
      margin: 0; } }

@media (max-width: 543px) {
  #payment-preview .modal-body,
  #payment-installment .modal-body {
    padding-left: 10px;
    padding-right: 10px; } }

#payment-preview .payment__card,
#payment-installment .payment__card {
  display: flex;
  align-items: center; }

#payment-preview .payment__item,
#payment-installment .payment__item {
  margin-left: 1em;
  display: flex;
  flex-direction: column; }

#payment-preview .payment__text,
#payment-installment .payment__text {
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.1em;
  text-align: left; }
  @media (max-width: 767px) {
    #payment-preview .payment__text,
    #payment-installment .payment__text {
      font-size: .9em;
      line-height: .9em; } }

#payment-preview .payment__description,
#payment-installment .payment__description {
  font-size: .7em;
  margin-top: 7px;
  line-height: 1em;
  text-align: left; }
  @media (max-width: 767px) {
    #payment-preview .payment__description,
    #payment-installment .payment__description {
      font-size: .6em;
      line-height: .9em; } }

#payment-preview .payment__tip,
#payment-installment .payment__tip {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #ccc; }
  #payment-preview .payment__tip.urgency-info:hover,
  #payment-installment .payment__tip.urgency-info:hover {
    color: #7f93f3; }
  #payment-preview .payment__tip.urgency-error:hover,
  #payment-installment .payment__tip.urgency-error:hover {
    color: #cc3032; }
  #payment-preview .payment__tip-wrapper,
  #payment-installment .payment__tip-wrapper {
    position: relative;
    display: none; }
  #payment-preview .payment__tip-text,
  #payment-installment .payment__tip-text {
    position: absolute;
    z-index: 10000003;
    display: block;
    min-width: 265px;
    background: #000;
    font: normal .8rem/.9rem sans-serif;
    font-size: .875rem;
    left: 18px;
    padding: 10px;
    text-align: center;
    border-radius: .5rem;
    top: calc(50% - 7.5px);
    transform: translateY(-50%); }
  #payment-preview .payment__tip-top,
  #payment-installment .payment__tip-top {
    transform: none;
    top: -18px; }
  #payment-preview .payment__tip-bottom,
  #payment-installment .payment__tip-bottom {
    transform: none;
    top: unset;
    bottom: 0; }
  #payment-preview .payment__tip:hover .payment__tip-wrapper,
  #payment-installment .payment__tip:hover .payment__tip-wrapper {
    display: block; }
  #payment-preview .payment__tip:hover .payment__tip-text,
  #payment-installment .payment__tip:hover .payment__tip-text {
    color: #fff; }

#payment-preview .select2-container,
#payment-installment .select2-container {
  padding: 0; }
  #payment-preview .select2-container--open .select2-dropdown--below,
  #payment-installment .select2-container--open .select2-dropdown--below {
    margin-top: 15px; }
  #payment-preview .select2-container.select2-container--open .select2-selection--single .select2-selection__arrow b,
  #payment-installment .select2-container.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-width: 0 8px 10px !important; }

#payment-preview .select2-selection--single,
#payment-installment .select2-selection--single {
  border-bottom: none !important;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  max-height: 77px; }

#payment-preview .select2-selection__rendered,
#payment-installment .select2-selection__rendered {
  padding: 20px; }
  #payment-preview .select2-selection__rendered .payment__card i,
  #payment-installment .select2-selection__rendered .payment__card i {
    color: #7159B5; }
    #payment-preview .select2-selection__rendered .payment__card i.payment__tip,
    #payment-installment .select2-selection__rendered .payment__card i.payment__tip {
      display: none; }
  #payment-preview .select2-selection__rendered .payment__card .fa-cc-bank:before,
  #payment-installment .select2-selection__rendered .payment__card .fa-cc-bank:before {
    background: #7159B5;
    width: 41px;
    height: 30px;
    font-size: .45em; }
  #payment-preview .select2-selection__rendered .payment__card .fa-cc-bank.safecharge:before,
  #payment-installment .select2-selection__rendered .payment__card .fa-cc-bank.safecharge:before {
    background: #7159B5 url("/static/img/payment/safecharge.svg"); }
  #payment-preview .select2-selection__rendered .payment__card .fa-cc-bank.fondy:before,
  #payment-installment .select2-selection__rendered .payment__card .fa-cc-bank.fondy:before {
    background: #7159B5 url("/static/img/payment/fondy.svg"); }
  #payment-preview .select2-selection__rendered .payment__card .fa-cc-bank.paysera:before,
  #payment-installment .select2-selection__rendered .payment__card .fa-cc-bank.paysera:before {
    background: #7159B5 url("/static/img/payment/paysera.svg"); }
  #payment-preview .select2-selection__rendered .payment__card .fa-cc-bank.paymentwall:before,
  #payment-installment .select2-selection__rendered .payment__card .fa-cc-bank.paymentwall:before {
    background: #7159B5 url("/static/img/payment/paymentwall.svg"); }
  #payment-preview .select2-selection__rendered .payment__card .fa-cc-bank.paycoreio:before,
  #payment-installment .select2-selection__rendered .payment__card .fa-cc-bank.paycoreio:before {
    background: #7159B5 url("/static/img/payment/paycore.svg"); }
  #payment-preview .select2-selection__rendered .payment__card .payment__text,
  #payment-installment .select2-selection__rendered .payment__card .payment__text {
    color: #7159B5; }
  #payment-preview .select2-selection__rendered .payment__card .payment__description,
  #payment-installment .select2-selection__rendered .payment__card .payment__description {
    white-space: pre-wrap; }

#payment-preview .select2-selection__arrow,
#payment-installment .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
  height: auto; }
  #payment-preview .select2-selection__arrow b,
  #payment-installment .select2-selection__arrow b {
    left: unset;
    border-width: 10px 8px 0; }

#payment-preview .select2-results__option,
#payment-installment .select2-results__option {
  padding: 10px 20px;
  margin-bottom: 0;
  position: relative; }
  #payment-preview .select2-results__option:not(:last-child):after,
  #payment-installment .select2-results__option:not(:last-child):after {
    content: '';
    position: absolute;
    height: 2px;
    bottom: 0;
    width: calc(100% - 40px);
    background: rgba(0, 0, 0, 0.15);
    left: 50%;
    transform: translateX(-50%); }
  #payment-preview .select2-results__option[aria-disabled=true],
  #payment-installment .select2-results__option[aria-disabled=true] {
    display: list-item; }
    #payment-preview .select2-results__option[aria-disabled=true] .urgency-info,
    #payment-installment .select2-results__option[aria-disabled=true] .urgency-info {
      display: none; }
  #payment-preview .select2-results__option--highlighted[aria-selected], #payment-preview .select2-results__option[aria-selected=true],
  #payment-installment .select2-results__option--highlighted[aria-selected],
  #payment-installment .select2-results__option[aria-selected=true] {
    background: #fff;
    color: initial; }
    #payment-preview .select2-results__option--highlighted[aria-selected] i, #payment-preview .select2-results__option[aria-selected=true] i,
    #payment-installment .select2-results__option--highlighted[aria-selected] i,
    #payment-installment .select2-results__option[aria-selected=true] i {
      color: #7159B5; }
      #payment-preview .select2-results__option--highlighted[aria-selected] i.payment__tip, #payment-preview .select2-results__option[aria-selected=true] i.payment__tip,
      #payment-installment .select2-results__option--highlighted[aria-selected] i.payment__tip,
      #payment-installment .select2-results__option[aria-selected=true] i.payment__tip {
        color: #ccc; }
        #payment-preview .select2-results__option--highlighted[aria-selected] i.payment__tip.urgency-info:hover, #payment-preview .select2-results__option[aria-selected=true] i.payment__tip.urgency-info:hover,
        #payment-installment .select2-results__option--highlighted[aria-selected] i.payment__tip.urgency-info:hover,
        #payment-installment .select2-results__option[aria-selected=true] i.payment__tip.urgency-info:hover {
          color: #7f93f3; }
        #payment-preview .select2-results__option--highlighted[aria-selected] i.payment__tip.urgency-error:hover, #payment-preview .select2-results__option[aria-selected=true] i.payment__tip.urgency-error:hover,
        #payment-installment .select2-results__option--highlighted[aria-selected] i.payment__tip.urgency-error:hover,
        #payment-installment .select2-results__option[aria-selected=true] i.payment__tip.urgency-error:hover {
          color: #cc3032; }
    #payment-preview .select2-results__option--highlighted[aria-selected] .fa-cc-bank:before, #payment-preview .select2-results__option[aria-selected=true] .fa-cc-bank:before,
    #payment-installment .select2-results__option--highlighted[aria-selected] .fa-cc-bank:before,
    #payment-installment .select2-results__option[aria-selected=true] .fa-cc-bank:before {
      background: #7159B5;
      color: #fff; }
    #payment-preview .select2-results__option--highlighted[aria-selected] .safecharge:before, #payment-preview .select2-results__option[aria-selected=true] .safecharge:before,
    #payment-installment .select2-results__option--highlighted[aria-selected] .safecharge:before,
    #payment-installment .select2-results__option[aria-selected=true] .safecharge:before {
      background: #7159B5 url("/static/img/payment/safecharge.svg"); }
    #payment-preview .select2-results__option--highlighted[aria-selected] .fondy:before, #payment-preview .select2-results__option[aria-selected=true] .fondy:before,
    #payment-installment .select2-results__option--highlighted[aria-selected] .fondy:before,
    #payment-installment .select2-results__option[aria-selected=true] .fondy:before {
      background: #7159B5 url("/static/img/payment/fondy.svg"); }
    #payment-preview .select2-results__option--highlighted[aria-selected] .paysera:before, #payment-preview .select2-results__option[aria-selected=true] .paysera:before,
    #payment-installment .select2-results__option--highlighted[aria-selected] .paysera:before,
    #payment-installment .select2-results__option[aria-selected=true] .paysera:before {
      background: #7159B5 url("/static/img/payment/paysera.svg"); }
    #payment-preview .select2-results__option--highlighted[aria-selected] .paymentwall:before, #payment-preview .select2-results__option[aria-selected=true] .paymentwall:before,
    #payment-installment .select2-results__option--highlighted[aria-selected] .paymentwall:before,
    #payment-installment .select2-results__option[aria-selected=true] .paymentwall:before {
      background: #7159B5 url("/static/img/payment/paymentwall.svg"); }
    #payment-preview .select2-results__option--highlighted[aria-selected] .paycoreio:before, #payment-preview .select2-results__option[aria-selected=true] .paycoreio:before,
    #payment-installment .select2-results__option--highlighted[aria-selected] .paycoreio:before,
    #payment-installment .select2-results__option[aria-selected=true] .paycoreio:before {
      background: #7159B5 url("/static/img/payment/paycore.svg"); }
    #payment-preview .select2-results__option--highlighted[aria-selected] .payment__text, #payment-preview .select2-results__option[aria-selected=true] .payment__text,
    #payment-installment .select2-results__option--highlighted[aria-selected] .payment__text,
    #payment-installment .select2-results__option[aria-selected=true] .payment__text {
      color: #7159B5; }

#payment-preview button.close-modal,
#payment-installment button.close-modal {
  position: absolute;
  border: none;
  background: none;
  top: 0;
  right: 0;
  font-size: 1.3em; }
  #payment-preview button.close-modal:hover,
  #payment-installment button.close-modal:hover {
    color: #cc3032; }

#payment-preview h2,
#payment-installment h2 {
  font-size: 20px;
  font-weight: 700; }
  @media (max-width: 767px) {
    #payment-preview h2,
    #payment-installment h2 {
      font-size: 16px; } }

#payment-preview .payment-method__wrapper,
#payment-installment .payment-method__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }

#payment-preview .payment-card,
#payment-installment .payment-card {
  cursor: pointer;
  border: 2px solid transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: .5em 0 0;
  padding: 10px 20px;
  border-radius: 5px;
  position: relative; }
  #payment-preview .payment-card i.urgency-error,
  #payment-installment .payment-card i.urgency-error {
    display: none; }
  #payment-preview .payment-card i.urgency-info,
  #payment-installment .payment-card i.urgency-info {
    display: inline;
    position: absolute;
    top: 10px;
    right: 10px;
    color: #7f93f3;
    opacity: 0; }
  #payment-preview .payment-card.checked,
  #payment-installment .payment-card.checked {
    border: 2px solid #78cd62; }
  #payment-preview .payment-card .custom-radio,
  #payment-installment .payment-card .custom-radio {
    padding-left: 0;
    display: flex;
    align-items: center; }
    #payment-preview .payment-card .custom-radio input:checked + label:after,
    #payment-installment .payment-card .custom-radio input:checked + label:after {
      border-color: #78cd62;
      background-color: #78cd62; }
    #payment-preview .payment-card .custom-radio label,
    #payment-installment .payment-card .custom-radio label {
      color: #000;
      margin-bottom: 0; }
    @media (max-width: 543px) {
      #payment-preview .payment-card .custom-radio span.payment-price__info,
      #payment-installment .payment-card .custom-radio span.payment-price__info {
        font-size: 12px; } }
    #payment-preview .payment-card .custom-radio span.payment-description,
    #payment-installment .payment-card .custom-radio span.payment-description {
      font-size: 12px;
      display: block;
      max-width: 340px; }
  #payment-preview .payment-card .currency:before, #payment-preview .payment-card .table-price .order-now:before, .table-price #payment-preview .payment-card .order-now:before,
  #payment-installment .payment-card .currency:before,
  #payment-installment .payment-card .table-price .order-now:before,
  .table-price #payment-installment .payment-card .order-now:before {
    font-weight: 400;
    color: #78cd62; }

#payment-preview .modal-action .btn-make-payment,
#payment-installment .modal-action .btn-make-payment {
  font-size: 20px;
  font-weight: 600;
  width: 100%;
  background-color: #78cd62;
  border-radius: 0 0 4px 4px;
  cursor: pointer;
  display: block;
  text-align: center;
  padding: 15px 0;
  color: #fff; }
  #payment-preview .modal-action .btn-make-payment:hover,
  #payment-installment .modal-action .btn-make-payment:hover {
    background-color: #99d989; }
  #payment-preview .modal-action .btn-make-payment span,
  #payment-installment .modal-action .btn-make-payment span {
    font-size: 20px;
    font-weight: 600;
    color: #fff; }
    #payment-preview .modal-action .btn-make-payment span:before,
    #payment-installment .modal-action .btn-make-payment span:before {
      color: #fff;
      font-size: 20px;
      font-weight: 400; }

#payment-preview .element-errors,
#payment-installment .element-errors {
  position: absolute;
  top: -5px;
  right: 0;
  margin: 0;
  display: inline-flex;
  height: 20px;
  padding-left: 20px;
  color: #e25950;
  opacity: 0;
  transform: translateY(10px);
  transition-property: opacity, transform;
  transition-duration: 0.35s;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1); }
  #payment-preview .element-errors.visible,
  #payment-installment .element-errors.visible {
    opacity: 1;
    transform: none; }

#payment-preview .payment-details > .row:nth-child(2),
#payment-installment .payment-details > .row:nth-child(2) {
  margin-top: .5em;
  margin-bottom: .5em; }

#payment-preview .payment-order__item-header,
#payment-installment .payment-order__item-header {
  font-weight: 600;
  font-size: .9em; }

#payment-preview .payment-order__item-description,
#payment-installment .payment-order__item-description {
  font-size: .7em; }

#payment-preview .payment-order__item .currency, #payment-preview .payment-order__item .table-price .order-now, .table-price #payment-preview .payment-order__item .order-now,
#payment-installment .payment-order__item .currency,
#payment-installment .payment-order__item .table-price .order-now,
.table-price #payment-installment .payment-order__item .order-now {
  font-size: 1.2em;
  font-weight: 600; }

#payment-preview .payment-order__item.price .currency, #payment-preview .payment-order__item.price .table-price .order-now, .table-price #payment-preview .payment-order__item.price .order-now,
#payment-installment .payment-order__item.price .currency,
#payment-installment .payment-order__item.price .table-price .order-now,
.table-price #payment-installment .payment-order__item.price .order-now {
  color: #78cd62; }
  #payment-preview .payment-order__item.price .currency:before, #payment-preview .payment-order__item.price .table-price .order-now:before, .table-price #payment-preview .payment-order__item.price .order-now:before,
  #payment-installment .payment-order__item.price .currency:before,
  #payment-installment .payment-order__item.price .table-price .order-now:before,
  .table-price #payment-installment .payment-order__item.price .order-now:before {
    color: #78cd62; }

#payment-preview .payment-order__item.paid .currency, #payment-preview .payment-order__item.paid .table-price .order-now, .table-price #payment-preview .payment-order__item.paid .order-now,
#payment-installment .payment-order__item.paid .currency,
#payment-installment .payment-order__item.paid .table-price .order-now,
.table-price #payment-installment .payment-order__item.paid .order-now {
  color: #7f93f3; }
  #payment-preview .payment-order__item.paid .currency:before, #payment-preview .payment-order__item.paid .table-price .order-now:before, .table-price #payment-preview .payment-order__item.paid .order-now:before,
  #payment-installment .payment-order__item.paid .currency:before,
  #payment-installment .payment-order__item.paid .table-price .order-now:before,
  .table-price #payment-installment .payment-order__item.paid .order-now:before {
    color: #7f93f3; }

#payment-preview .payment-order__item.balance,
#payment-installment .payment-order__item.balance {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  text-align: center;
  padding: 5px 0; }
  #payment-preview .payment-order__item.balance .payment-order__item-header,
  #payment-installment .payment-order__item.balance .payment-order__item-header {
    display: inline-block;
    font-size: 1.2em;
    font-weight: 600; }
  #payment-preview .payment-order__item.balance .currency, #payment-preview .payment-order__item.balance .table-price .order-now, .table-price #payment-preview .payment-order__item.balance .order-now,
  #payment-installment .payment-order__item.balance .currency,
  #payment-installment .payment-order__item.balance .table-price .order-now,
  .table-price #payment-installment .payment-order__item.balance .order-now {
    display: inline-block;
    color: #cc3032; }
    #payment-preview .payment-order__item.balance .currency:before, #payment-preview .payment-order__item.balance .table-price .order-now:before, .table-price #payment-preview .payment-order__item.balance .order-now:before,
    #payment-installment .payment-order__item.balance .currency:before,
    #payment-installment .payment-order__item.balance .table-price .order-now:before,
    .table-price #payment-installment .payment-order__item.balance .order-now:before {
      color: #cc3032; }

#payment-preview .payment-order__item.payment-sum .payment-order__item-header,
#payment-installment .payment-order__item.payment-sum .payment-order__item-header {
  font-size: .8em;
  line-height: 1.2em; }

#payment-preview .payment-order__item.payment-sum .payment-order__item-description,
#payment-installment .payment-order__item.payment-sum .payment-order__item-description {
  margin-top: .5em; }

#payment-preview .payment-order__item.payment-sum input,
#payment-installment .payment-order__item.payment-sum input {
  text-align: center;
  color: #78cd62;
  font-weight: 600;
  font-size: 1.2em; }
  #payment-preview .payment-order__item.payment-sum input::placeholder,
  #payment-installment .payment-order__item.payment-sum input::placeholder {
    color: #78cd62; }

.messenger-control {
  display: flex;
  justify-content: space-between; }
  .messenger-control .messenger-switcher {
    display: flex; }
    .messenger-control .messenger-switcher .messenger-switcher-description {
      color: rgba(0, 0, 0, 0.3);
      margin-right: 1em; }
      @media (max-width: 991px) {
        .messenger-control .messenger-switcher .messenger-switcher-description {
          display: none; } }
    .messenger-control .messenger-switcher .switch label .lever:after {
      background-color: #2195f3; }
    .messenger-control .messenger-switcher .switch label input[type=checkbox]:checked + .lever:after {
      background-color: #5bb75b; }
  .messenger-control .messenger-info .message-add-info {
    color: rgba(0, 0, 0, 0.3) !important;
    padding: 0 5px; }
    .messenger-control .messenger-info .message-add-info.border-divider {
      border-right: 1px solid rgba(0, 0, 0, 0.1); }
  .messenger-control .messenger-info .message-info-wrapper {
    display: inline; }
  .messenger-control .messenger-info .tag-info,
  .messenger-control .messenger-info .tag-success {
    padding-right: 10px;
    padding-left: 10px;
    border-radius: 5px; }

.messenger-view {
  box-shadow: inset 1px 0 10px rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  background: #fdfdfd;
  height: 400px;
  width: 100%;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column; }
  .messenger-view .message {
    width: 490px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.08);
    padding: .8rem; }
    @media (max-width: 991px) {
      .messenger-view .message {
        width: 300px; } }
    @media (max-width: 543px) {
      .messenger-view .message {
        width: 200px; } }
  .messenger-view .message-info {
    display: flex;
    justify-content: space-between; }
    .messenger-view .message-info .full-check {
      margin-right: -8px; }
  .messenger-view .message-files {
    padding: 15px 0 0; }
    .messenger-view .message-files__wrapper {
      display: flex;
      align-items: center; }
      .messenger-view .message-files__wrapper:not(:last-child) {
        margin-bottom: 8px; }
      .messenger-view .message-files__wrapper i {
        color: #fff; }
        .messenger-view .message-files__wrapper i:hover {
          transform: scale(1.2); }
    .messenger-view .message-files__info p:first-child {
      width: calc(100% - 1rem - 42px);
      overflow-x: hidden;
      white-space: nowrap;
      text-overflow: ellipsis; }
  .messenger-view span.small {
    color: rgba(0, 0, 0, 0.3);
    margin-left: 0.8rem; }
  .messenger-view .customer-message {
    margin-bottom: 1rem;
    align-self: flex-end; }
    .messenger-view .customer-message .message {
      background: #fff;
      color: #000; }
  .messenger-view .edit-message {
    margin-bottom: 1rem;
    align-self: flex-end; }
    .messenger-view .edit-message .message {
      background: none;
      color: #000;
      padding: 0;
      position: relative;
      box-shadow: none; }
      .messenger-view .edit-message .message:before {
        content: "\f071";
        font-family: fontawesome;
        position: absolute;
        top: -.8rem;
        left: 10px;
        width: 20px;
        font-size: 15px;
        color: #f7b71f; }
      .messenger-view .edit-message .message strong {
        display: none; }
      .messenger-view .edit-message .message small {
        display: none; }
    .messenger-view .edit-message:hover .message {
      background: #fff7e4;
      box-shadow: 0 2px 7px rgba(0, 0, 0, 0.08);
      padding: .8rem .8rem .8rem 40px;
      transition: all .2s ease-in-out; }
      .messenger-view .edit-message:hover .message:before {
        top: .8rem;
        font-size: 20px;
        transition: all .5s ease-in-out; }
      .messenger-view .edit-message:hover .message strong {
        display: inline; }
      .messenger-view .edit-message:hover .message small {
        display: inline; }
  .messenger-view .delete-message {
    margin-bottom: 1rem;
    align-self: flex-end; }
    .messenger-view .delete-message .message {
      background: none;
      color: #000;
      padding: 0;
      position: relative;
      box-shadow: none; }
      .messenger-view .delete-message .message:before {
        content: "\f057";
        font-family: fontawesome;
        position: absolute;
        top: -.8rem;
        left: 10px;
        width: 20px;
        font-size: 15px;
        color: #ff5456; }
      .messenger-view .delete-message .message strong {
        display: none; }
      .messenger-view .delete-message .message small {
        display: none; }
    .messenger-view .delete-message:hover .message {
      background: #ffefef;
      box-shadow: 0 2px 7px rgba(0, 0, 0, 0.08);
      padding: .8rem .8rem .8rem 40px;
      transition: all .2s ease-in-out; }
      .messenger-view .delete-message:hover .message:before {
        top: .8rem;
        font-size: 20px;
        transition: all .5s ease-in-out; }
      .messenger-view .delete-message:hover .message strong {
        display: inline; }
      .messenger-view .delete-message:hover .message small {
        display: inline; }
  .messenger-view .support-message {
    margin-bottom: 1rem;
    align-self: flex-start; }
    .messenger-view .support-message .message {
      background: #2195f3;
      color: #fff;
      white-space: pre-line; }
  .messenger-view .writer-message {
    margin-bottom: 1rem;
    align-self: flex-start; }
    .messenger-view .writer-message .message {
      background: #5bb75b;
      color: #fff; }

#messenger-support,
#messenger-writer {
  display: flex; }

.messenger-sender {
  display: flex;
  margin-top: 10px; }
  .messenger-sender .input-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1; }
    @media (max-width: 767px) {
      .messenger-sender .input-wrapper {
        margin-left: 15px; } }
  .messenger-sender input {
    height: 46px;
    border-radius: 10px;
    background-color: #fdfdfd;
    box-shadow: inset 1px 0 5px rgba(0, 0, 0, 0.17);
    border: none !important;
    padding: 0 1rem; }
    .messenger-sender input:disabled {
      box-shadow: inset 1px 0 3px rgba(0, 0, 0, 0.07); }
      .messenger-sender input:disabled::placeholder {
        color: rgba(0, 0, 0, 0.07); }
  .messenger-sender .messenger-char-counter {
    position: absolute;
    left: 3px;
    top: 45px;
    color: #9bacb6;
    font-size: 12px; }
  .messenger-sender button {
    width: 120px;
    position: relative;
    overflow: visible;
    color: #ffffff;
    background-color: #c9c9c9; }
    .messenger-sender button:after {
      content: 'Ctrl+Enter';
      color: rgba(0, 0, 0, 0.2);
      position: absolute;
      bottom: -25px;
      left: 25px; }

@media (max-width: 767px) {
  #messages .col-lg-12 {
    display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 10000000;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 0;
    height: calc(100vh - 60px); } }
  @media only screen and (max-width: 767px) and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
    #messages .col-lg-12 {
      height: calc(100vh - 130px); } }
  @media only screen and (max-width: 767px) and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) {
    #messages .col-lg-12 {
      height: calc(100vh - 130px); } }
  @media only screen and (max-width: 767px) and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3) {
    #messages .col-lg-12 {
      height: calc(100vh - 130px); } }

@media (max-width: 767px) {
  .messenger-control {
    height: 77px;
    min-height: 77px;
    flex-direction: column;
    justify-content: flex-start; }
    .messenger-control .messenger-switcher {
      background: #fff;
      min-height: 50px;
      display: flex;
      justify-content: space-between;
      padding: 0 20px;
      margin-bottom: -1px;
      align-items: center; }
      .messenger-control .messenger-switcher i {
        font-size: 20px; }
      .messenger-control .messenger-switcher .switch {
        min-height: unset; }
      .messenger-control .messenger-switcher label {
        margin-bottom: 0; }
        .messenger-control .messenger-switcher label .switch-status {
          font-size: 18px; }
    .messenger-control .messenger-info {
      background: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 27px;
      min-height: 27px;
      padding: 0 20px; }
      .messenger-control .messenger-info .message-add-info {
        font-size: 14px; }
      .messenger-control .messenger-info #message-refresh {
        display: none; }
  .messenger-view {
    background-color: #fafafa;
    z-index: 10000000;
    border-radius: 0;
    flex-grow: 2;
    min-height: calc(100vh - 77px - 47px);
    margin-top: -2px; } }
  @media (max-width: 767px) and (max-width: 767px) {
    .messenger-view {
      min-height: unset;
      height: 100%; } }

@media (max-width: 767px) {
  .messenger-sender {
    min-height: 70px;
    height: 70px;
    background: white;
    margin-top: 0;
    padding-top: 5px;
    align-items: flex-start; }
    .messenger-sender #messenger-text {
      background: #fff; }
    .messenger-sender button.btn {
      background-color: transparent !important;
      box-shadow: none !important;
      padding: 5px 10px;
      width: unset;
      margin-right: 1rem; }
      .messenger-sender button.btn i {
        margin-top: 0;
        font-size: 20px;
        color: #c9c9c9;
        transition: 0.25s; }
      .messenger-sender button.btn.btn-primary i, .messenger-sender .fso-widget button.btn.btn-submit i, .fso-widget .messenger-sender button.btn.btn-submit i {
        color: #7159B5; }
      .messenger-sender button.btn:after {
        display: none; } }

.messages-link {
  position: relative;
  display: none; }
  .messages-link.unread {
    display: inline-block; }
  .messages-link i {
    color: #7f93f3;
    font-size: 1.2em; }

.messages-counter {
  position: absolute;
  font-size: 9px;
  background: #cc3032;
  color: #fff;
  width: 16px;
  height: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -2px;
  right: -5px;
  border: 1px solid #fff;
  border-radius: 3px; }

.stripe-card__wrapper, .stripe-card-installment__wrapper {
  width: 100%;
  margin-bottom: .5em; }
  .stripe-card__wrapper.default, .stripe-card-installment__wrapper.default {
    display: none; }
  .stripe-card__wrapper .StripeElement, .stripe-card-installment__wrapper .StripeElement {
    box-sizing: border-box;
    height: 40px;
    padding: 10px 12px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 0;
    background-color: white; }
    .stripe-card__wrapper .StripeElement--focus, .stripe-card-installment__wrapper .StripeElement--focus {
      border-bottom: 2px solid rgba(0, 0, 0, 0.2); }
    .stripe-card__wrapper .StripeElement--invalid, .stripe-card-installment__wrapper .StripeElement--invalid {
      border-color: #fa755a; }
    .stripe-card__wrapper .StripeElement--complete, .stripe-card-installment__wrapper .StripeElement--complete {
      border-color: #99d989; }
    .stripe-card__wrapper .StripeElement--webkit-autofill, .stripe-card-installment__wrapper .StripeElement--webkit-autofill {
      background-color: #fefde5 !important; }
  .stripe-card__wrapper .form-row, .stripe-card-installment__wrapper .form-row {
    position: relative; }
    .stripe-card__wrapper .form-row #card-errors, .stripe-card__wrapper .form-row #card-errors-installment, .stripe-card-installment__wrapper .form-row #card-errors, .stripe-card-installment__wrapper .form-row #card-errors-installment {
      position: absolute;
      top: 10px;
      right: 0;
      color: #cc3032;
      font-size: .8em; }

.stripe-user__wrapper, .stripe-user-installment__wrapper {
  display: none;
  width: 100%;
  margin-top: 20px;
  padding: 0 0 15px; }
  .stripe-user__wrapper .md-form, .stripe-user-installment__wrapper .md-form {
    margin-bottom: 0; }
    .stripe-user__wrapper .md-form label, .stripe-user-installment__wrapper .md-form label {
      color: #999999; }
      .stripe-user__wrapper .md-form label.error, .stripe-user-installment__wrapper .md-form label.error {
        display: none !important; }
  .stripe-user__wrapper input, .stripe-user-installment__wrapper input {
    margin-bottom: 0; }
    .stripe-user__wrapper input.error, .stripe-user-installment__wrapper input.error {
      border-bottom-color: #cc3032; }

.modal.error-modal {
  background: rgba(0, 0, 0, 0.6); }
  .modal.error-modal .modal-dialog {
    height: 100vh;
    display: flex;
    align-items: center;
    max-width: 700px; }
    .modal.error-modal .modal-dialog .modal-body {
      max-width: 566px;
      margin: 2rem auto;
      width: 100%;
      padding: 0 2rem 2rem;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
      background-color: #ffffff; }
      .modal.error-modal .modal-dialog .modal-body__close {
        margin-top: 0;
        margin-right: -5rem;
        padding: .8rem 1.2rem; }
        .modal.error-modal .modal-dialog .modal-body__close::before, .modal.error-modal .modal-dialog .modal-body__close::after {
          background: #fff;
          height: 45px;
          width: 2px; }
      .modal.error-modal .modal-dialog .modal-body__images {
        max-width: 126px;
        margin: 1rem auto; }
        .modal.error-modal .modal-dialog .modal-body__images img {
          max-width: inherit;
          max-width: 100%; }
      .modal.error-modal .modal-dialog .modal-body__heading {
        color: #313131;
        font-size: 18px;
        font-weight: 700; }
        @media (max-width: 767px) {
          .modal.error-modal .modal-dialog .modal-body__heading {
            font-size: 16px; } }
      .modal.error-modal .modal-dialog .modal-body__content {
        color: #5f5f5f;
        font-size: 14px;
        font-weight: 400;
        line-height: 24px; }
      .modal.error-modal .modal-dialog .modal-body__buttons {
        display: flex;
        align-items: center;
        justify-content: center; }
        .modal.error-modal .modal-dialog .modal-body__buttons button.btn {
          border-radius: 25px !important;
          font-size: 15px;
          font-weight: 400;
          padding: .8rem 1rem;
          margin: 1rem .5rem; }
        .modal.error-modal .modal-dialog .modal-body__buttons .modal-button__help {
          background-color: #00e8aa;
          color: #ffffff; }
        .modal.error-modal .modal-dialog .modal-body__buttons .modal-button__method {
          border: 2px solid #b4b4b4;
          color: #5f5f5f;
          background: transparent; }
        @media (max-width: 767px) {
          .modal.error-modal .modal-dialog .modal-body__buttons {
            flex-direction: column; }
            .modal.error-modal .modal-dialog .modal-body__buttons button.btn {
              font-size: 14px;
              padding: .6rem;
              margin: .5rem 0; } }
      @media (max-width: 767px) {
        .modal.error-modal .modal-dialog .modal-body {
          max-width: 95%;
          padding: 1rem .7rem;
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }
          .modal.error-modal .modal-dialog .modal-body__close {
            margin-right: -1rem; } }

.samples-new-styles .samples-grid .sample-card {
  width: calc(50% - 20px);
  float: left;
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  min-height: 100px;
  margin-bottom: 1.5rem;
  background: #fff; }

@media (min-width: 992px) and (max-width: 1199px) {
  .samples-new-styles .samples-grid .sample-card {
    width: calc(100% - 20px); } }
  @media (max-width: 543px) {
    .samples-new-styles .samples-grid .sample-card {
      width: calc(100% - 20px); } }
  .samples-new-styles .samples-grid .sample-card.hide {
    left: -9999 !important;
    top: -9999 !important; }
  .samples-new-styles .samples-grid .sample-card__content {
    font-size: 0.92857rem;
    font-weight: 400;
    color: #3b454b;
    padding: 0.85rem 1.75rem 0.5rem;
    overflow: hidden;
    word-wrap: break-word; }
  .samples-new-styles .samples-grid .sample-card__thumbnail {
    border-radius: 30px 30px 0 0;
    opacity: 1;
    width: 100%;
    height: auto !important;
    object-fit: cover; }
    @media (max-width: 767px) {
      .samples-new-styles .samples-grid .sample-card__thumbnail {
        position: relative; } }
  .samples-new-styles .samples-grid .sample-card__heading {
    font-size: 1.21429rem;
    font-weight: 700;
    color: #3b454b;
    transition: all 0.2s ease;
    display: block;
    padding: 0.85rem 0 1rem; }
    .samples-new-styles .samples-grid .sample-card__heading a {
      opacity: 1 !important; }
  .samples-new-styles .samples-grid .sample-card__header {
    text-align: center;
    background-color: #7159B5;
    transition: all 0.2s ease-in-out;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 30px 30px 0 0; }
    .samples-new-styles .samples-grid .sample-card__header > a:first-child {
      transition: all 0.2s ease;
      font-size: 16px;
      font-size: 1.14286rem;
      font-weight: 600;
      color: #3b454b; }
    .samples-new-styles .samples-grid .sample-card__header.category-arts-humanities {
      background: #f9bb72; }
    .samples-new-styles .samples-grid .sample-card__header.category-social-sciences {
      background: #6cde8d; }
    .samples-new-styles .samples-grid .sample-card__header.category-sciences {
      background: #70a3fc; }
    .samples-new-styles .samples-grid .sample-card__header.category-information-technology {
      background: #9378df; }
    .samples-new-styles .samples-grid .sample-card__header.category-economics {
      background: #6bd1de; }
    .samples-new-styles .samples-grid .sample-card__header.category-law {
      background: #ef729c; }
    .samples-new-styles .samples-grid .sample-card__header.category-other {
      background: #a9da68; }
  .samples-new-styles .samples-grid .sample-card .sample__item:hover {
    box-shadow: 0 10px 30px #7159B5;
    transition: box-shadow 0.15s ease-in-out; }
    .samples-new-styles .samples-grid .sample-card .sample__item:hover .sample-card__header {
      background-color: #7159B5 !important;
      box-shadow: inset 0 30px 30px -15px rgba(255, 255, 255, 0.4); }
      .samples-new-styles .samples-grid .sample-card .sample__item:hover .sample-card__header a {
        font-size: 16px;
        font-size: 1.14286rem;
        font-weight: 600;
        color: #fff; }
    .samples-new-styles .samples-grid .sample-card .sample__item:hover .sample-card__heading a {
      color: #7159B5; }
    .samples-new-styles .samples-grid .sample-card .sample__item:hover .sample-card__edit {
      transform: scale(1);
      opacity: 1; }
  .samples-new-styles .samples-grid .sample-card .sample__item.card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0 0 1rem 0;
    border-radius: 30px; }
  .samples-new-styles .samples-grid .sample-card .sample__img {
    border-radius: 15px 15px 0 0; }
    .samples-new-styles .samples-grid .sample-card .sample__img img {
      border-radius: 15px 15px 0 0; }
  .samples-new-styles .samples-grid .sample-card .sample__info {
    padding: 1rem;
    display: flex;
    flex-grow: 1;
    flex-direction: column; }
  .samples-new-styles .samples-grid .sample-card .sample__details {
    margin: auto 0; }
    .samples-new-styles .samples-grid .sample-card .sample__details ul {
      display: grid;
      grid-template-columns: 1fr 1fr;
      font-size: 15px; }
    .samples-new-styles .samples-grid .sample-card .sample__details strong {
      color: #7159B5; }
  .samples-new-styles .samples-grid .sample-card .sample__link {
    display: flex;
    justify-content: center; }
  .samples-new-styles .samples-grid .sample-card .sample__tag-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap; }
  .samples-new-styles .samples-grid .sample-card .sample__tag-item {
    color: #3b454b;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), inset 0 1px white;
    border-radius: 4px;
    padding: 0 .4rem;
    font-size: 12px;
    white-space: nowrap;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
    transition: all .15s ease;
    margin-bottom: .3rem;
    margin-right: .3rem; }
    .samples-new-styles .samples-grid .sample-card .sample__tag-item i {
      opacity: .5; }
    .samples-new-styles .samples-grid .sample-card .sample__tag-item:hover {
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      background: #7159B5;
      color: #ffffff; }

.privacy__modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transform: scale(0);
  transition: opacity 0.25s; }
  @media (max-width: 543px) {
    .privacy__modal {
      align-items: flex-start;
      overflow-y: auto; } }
  .privacy__modal.is-open {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1); }

.privacy__wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  min-height: 630px;
  border-radius: 8px;
  background-color: #fff;
  padding: 60px 90px 30px; }
  @media (max-width: 767px) {
    .privacy__wrapper {
      padding: 30px 40px 20px; } }
  @media (max-width: 543px) {
    .privacy__wrapper {
      border-radius: 0;
      padding: 30px 20px 20px; } }

.privacy__inner-wrapper {
  position: relative;
  width: 100%; }

.privacy__section {
  display: none;
  flex-direction: column;
  top: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s; }
  .privacy__section.visible {
    display: flex;
    opacity: 1;
    pointer-events: auto; }

.privacy__settings-wrapper {
  position: relative; }

.privacy__heading {
  font-weight: 700;
  margin-bottom: 30px; }
  @media (max-width: 767px) {
    .privacy__heading {
      font-size: 25px; } }
  @media (max-width: 543px) {
    .privacy__heading {
      font-size: 21px;
      margin-bottom: 15px; } }

.privacy__btn-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px; }
  @media (max-width: 543px) {
    .privacy__btn-wrapper {
      flex-wrap: wrap;
      justify-content: center; } }

.privacy__tab-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex: 0 0 calc(50% - 8px);
  border-radius: 8px;
  background-color: #f7f9fa;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  outline: none;
  padding: 15px;
  transition: 0.25s; }
  @media (max-width: 543px) {
    .privacy__tab-btn {
      padding: 10px;
      line-height: 22px;
      flex: 0 0 100%; }
      .privacy__tab-btn:first-child {
        margin-bottom: 20px; } }
  .privacy__tab-btn:hover {
    background-color: #7159B5;
    color: #fff; }
  .privacy__tab-btn span {
    display: block; }
    @media (max-width: 543px) {
      .privacy__tab-btn span {
        font-size: 14px; } }
    .privacy__tab-btn span:last-child {
      font-size: 22px;
      font-weight: 700; }
      @media (max-width: 767px) {
        .privacy__tab-btn span:last-child {
          font-size: 17px; } }
      @media (max-width: 543px) {
        .privacy__tab-btn span:last-child {
          font-size: 16px; } }

.privacy__panel-list {
  margin-bottom: 0; }
  .privacy__panel-list li {
    position: relative;
    padding-left: 15px; }
    .privacy__panel-list li::before {
      content: "";
      position: absolute;
      display: block;
      width: 4px;
      height: 4px;
      background-color: #000;
      border-radius: 50%;
      top: 8px;
      left: 0; }

.privacy__footer {
  display: flex;
  justify-content: space-between;
  border-top: 2px solid #eaf0f4;
  margin-top: auto;
  padding-top: 20px; }
  @media (max-width: 543px) {
    .privacy__footer {
      margin-top: 20px; } }

.privacy__back-btn, .privacy__close-btn {
  border: none;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  background-color: #fff; }
  @media (max-width: 543px) {
    .privacy__back-btn, .privacy__close-btn {
      padding: 0;
      font-size: 14px;
      line-height: 18px; } }

.privacy__back-btn {
  color: #9bacb6; }
  @media (max-width: 543px) {
    .privacy__back-btn {
      text-align: left; } }

.privacy__close-btn {
  color: #cc3032; }

.privacy__stats-wrapper {
  display: flex; }
  @media (max-width: 767px) {
    .privacy__stats-wrapper {
      flex-wrap: wrap; } }

.privacy__stats-left, .privacy__stats-right {
  flex: 0 0 50%;
  padding-right: 20px; }
  @media (max-width: 767px) {
    .privacy__stats-left, .privacy__stats-right {
      flex: 0 0 100%; } }

.privacy__stats-right {
  margin-bottom: 30px; }

.privacy__list {
  margin-bottom: 30px; }
  @media (max-width: 767px) {
    .privacy__list {
      margin-bottom: 5px; } }
  .privacy__list.clean li .label {
    display: inline-block;
    font-weight: 700;
    width: 130px; }
  .privacy__list.nested {
    margin: 5px 0 50px; }
    @media (max-width: 767px) {
      .privacy__list.nested {
        margin: 5px 0; } }
    .privacy__list.nested li {
      position: relative;
      padding-left: 30px; }
      @media (max-width: 543px) {
        .privacy__list.nested li {
          padding-left: 15px; } }
      .privacy__list.nested li::before {
        content: "";
        position: absolute;
        display: block;
        width: 4px;
        height: 4px;
        background-color: #000;
        border-radius: 50%;
        left: 0;
        top: 10px; }
      .privacy__list.nested li span {
        font-weight: 400; }
        .privacy__list.nested li span:first-child {
          display: inline-block;
          width: 70px; }
  .privacy__list.scroll {
    height: 400px;
    overflow-y: auto;
    /* Let's get this party started */
    /* Track */
    /* Handle */
    padding-right: 20px; }
    .privacy__list.scroll::-webkit-scrollbar {
      -webkit-appearance: none;
      width: 6px;
      height: 6px; }
    .privacy__list.scroll::-webkit-scrollbar-track {
      background: #fff;
      box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.07);
      border-radius: 10px;
      background: #fbfbfb;
      visibility: visible; }
    .privacy__list.scroll:hover::-webkit-scrollbar-track {
      visibility: visible; }
    .privacy__list.scroll::-webkit-scrollbar-thumb {
      border-radius: 10px;
      background: #7159B5;
      visibility: visible; }
    .privacy__list.scroll:hover::-webkit-scrollbar-thumb {
      visibility: visible; }
    @media (max-width: 543px) {
      .privacy__list.scroll {
        height: initial;
        overflow-y: visible;
        padding-right: 0; } }

.privacy__list-item label {
  font-weight: 700;
  font-size: 18px;
  height: initial !important; }
  @media (max-width: 767px) {
    .privacy__list-item label {
      line-height: 18px !important; } }

.privacy__checkbox-info {
  padding-left: 35px; }

.privacy__download-btn, .privacy__delete-btn {
  width: 295px;
  height: 45px;
  border-radius: 23px;
  border: none;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  background-color: #fff;
  font-size: 17px;
  font-weight: 600;
  transition: 0.25s; }

.privacy__download-btn {
  border: 4px solid #f7f9fa;
  color: #7159B5; }
  @media (max-width: 543px) {
    .privacy__download-btn {
      margin-bottom: 10px; } }
  .privacy__download-btn:hover {
    background-color: #7159B5;
    border: 4px solid #7159B5;
    color: #fff; }

.privacy__delete-btn {
  color: #cc3032; }
  @media (max-width: 767px) {
    .privacy__delete-btn {
      line-height: 21px; } }

.panel {
  border-radius: 8px;
  background-color: #f7f9fa;
  border-bottom: none !important;
  margin-bottom: 20px; }
  .panel-title {
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 700; }
    @media (max-width: 767px) {
      .panel-title {
        font-size: 20px; } }
    @media (max-width: 543px) {
      .panel-title {
        font-size: 17px; } }
    .panel-title a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #3b454b;
      padding: 5px 0; }
      .panel-title a .fa {
        color: #7159B5;
        font-weight: 700;
        transition: 0.25s; }
        .panel-title a .fa.rotate-element {
          transform: rotate(-180deg); }
  .panel-collapse div {
    padding: 15px 0; }

.wipe__modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 11000;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s; }
  .wipe__modal.is-open {
    pointer-events: auto;
    opacity: 1; }

.wipe__inner-wrapper {
  position: relative;
  width: 100%;
  max-width: 345px;
  min-height: 200px;
  background-color: #fff;
  border-radius: 8px;
  padding: 0 25px 30px; }

.wipe__top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #d76c6d;
  height: 43px;
  color: #fff;
  padding: 0 0 0 25px;
  border-radius: 8px 8px 0 0;
  font-size: 17px;
  margin: 0 -25px 20px; }

.wipe__close {
  position: relative;
  display: block;
  width: 40px;
  height: 40px; }
  .wipe__close::before, .wipe__close::after {
    content: "";
    position: absolute;
    display: block;
    width: 13px;
    height: 2px;
    left: 50%;
    top: 50%;
    background-color: #fff; }
  .wipe__close::before {
    transform: translate(-50%, -50%) rotate(45deg); }
  .wipe__close::after {
    transform: translate(-50%, -50%) rotate(-45deg); }

.wipe__heading {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700; }

.wipe__text {
  line-height: 20px; }

.wipe__footer {
  font-size: 17px;
  font-weight: 700;
  text-align: center; }

.wipe__del-btn {
  cursor: pointer;
  color: #cc3032; }

.wipe__cancel {
  cursor: pointer;
  color: #7159B5; }
  @media (max-width: 543px) {
    .wipe__cancel {
      line-height: 20px; } }

.voting__wrapper {
  margin: 2rem 0; }

.voting__container {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 690px;
  margin: 0 auto;
  background-color: #f5f5f5;
  padding: 1.7rem 2rem;
  border-radius: 6px; }
  @media (max-width: 767px) {
    .voting__container {
      flex-direction: column; } }
  @media (max-width: 543px) {
    .voting__container {
      padding: 1.5rem 1.2rem; } }
  .voting__container.success {
    justify-content: center; }
  .voting__container .icon-success {
    position: relative; }
    .voting__container .icon-success::before {
      content: '';
      width: 32px;
      height: 32px; }
  .voting__container.active .voting__cover {
    visibility: visible;
    opacity: 1; }
    @media (max-width: 543px) {
      .voting__container.active .voting__cover {
        font-size: 17px; } }

.voting__cover {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: .2s;
  z-index: 10;
  background-color: #f5f5f5;
  padding: 1.7rem 2rem;
  border-radius: 6px;
  color: #0a0c0f;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center; }
  .voting__cover span img {
    margin-left: 1.5rem;
    min-width: 32px;
    height: 32px; }
    @media (max-width: 543px) {
      .voting__cover span img {
        display: none; } }

.voting__text {
  color: #0a0c0f;
  font-size: 20px;
  font-weight: 700; }
  @media (max-width: 543px) {
    .voting__text {
      font-size: 17px; } }

.voting__buttons {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-around;
  padding-left: 2rem; }
  @media (max-width: 767px) {
    .voting__buttons {
      padding-left: 0;
      margin-top: 1rem; } }

.voting__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 55px;
  margin: 5px;
  padding: .4rem 1rem;
  background-color: #ffffff;
  border-radius: 28px;
  transition: .3s ease;
  cursor: pointer;
  border: 2px solid transparent; }
  .voting__button.active {
    border-color: #4BAE4F; }
  .voting__button:not(.active):hover {
    box-shadow: 0 0 20px rgba(155, 160, 177, 0.3); }
  .voting__button input {
    font-family: sans-serif !important; }
  .voting__button span.icon, .voting__button input.icon {
    margin-right: .5rem; }
    .voting__button span.icon img, .voting__button input.icon img {
      width: 30px;
      height: 30px; }
  .voting__button span.count, .voting__button input.count {
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    max-width: 70px;
    text-overflow: ellipsis;
    border: none;
    padding: 0;
    text-align: center;
    cursor: pointer; }
  .voting__button.like span.icon {
    min-width: 40px;
    height: 30px; }
  .voting__button.like .count {
    color: #f3295c; }
  .voting__button.dislike span.icon {
    min-width: 32px;
    height: 28px; }
  .voting__button.dislike .count {
    color: #8c6239; }

.is-single .article-content .voting__cover span img {
  height: 32px !important; }

.author__content {
  width: 100%;
  display: flex;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  margin: auto;
  margin: 25px 0; }
  @media (max-width: 543px) {
    .author__content {
      flex-direction: column; } }

.author__img-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  width: 13%;
  min-width: 140px;
  padding-right: 30px; }
  @media (max-width: 767px) {
    .author__img-wrapper {
      min-width: 115px;
      padding-right: 25px; } }
  @media (max-width: 543px) {
    .author__img-wrapper {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: center;
      padding-right: 0;
      padding-bottom: 10px; } }

.author__img {
  height: auto;
  width: 100px;
  border-radius: 50%; }
  @media (max-width: 767px) {
    .author__img {
      width: 80px; } }
  @media (max-width: 543px) {
    .author__img {
      width: 120px; } }

.author__content-wrapper {
  width: 87%; }
  @media (max-width: 543px) {
    .author__content-wrapper {
      width: 100%;
      text-align: center; } }

.author__name {
  margin-bottom: 10px; }
  .author__name span {
    color: #5ba7ca;
    font-size: 1.3rem;
    font-weight: bold; }

.section {
  margin: 0;
  padding: 1.5rem 0; }
  .section img {
    width: 100%; }
  .section.section-seo {
    padding: 3rem 0; }
    .section.section-seo.small {
      font-size: 14px; }
  .section .section-heading {
    margin: 0;
    color: #252525;
    padding: 1.7rem 0; }
    .section .section-heading + .section-description.lead {
      margin-top: -15px;
      line-height: 1em; }
  .section .section-subheading {
    color: #545454;
    font-size: 1.3rem;
    font-weight: 100; }
  .section .heading-lg {
    font-size: 2.1rem;
    text-transform: uppercase;
    font-weight: 300; }
    @media (max-width: 767px) {
      .section .heading-lg {
        font-size: 1.8rem;
        font-weight: 500; } }
  .section.section-invert {
    background: #FAFAFA; }
  .section.section-dark:not([class*="set-gradient"]) {
    background: #474588;
    color: #d0cfff; }
  .section.section-dark .section-heading {
    color: #fff; }
    .section.section-dark .section-heading:after {
      background: rgba(255, 255, 255, 0.75); }
  .section.section-dark .section-subheading {
    color: #fff; }
  .section.section-dark div {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 100; }
    .section.section-dark div [class^="fa"], .section.section-dark div [class^="icon"] {
      color: #7159B5; }

.section-wpc .feature-title {
  font-size: 2rem;
  color: #3d3f41;
  font-weight: 300; }
  @media (max-width: 767px) {
    .section-wpc .feature-title {
      margin-top: 1.5rem; } }

@media (max-width: 767px) {
  .section-wpc {
    text-align: center;
    font-size: 1.1rem; } }

.section-wpc.section-dark .feature-title {
  color: rgba(255, 255, 255, 0.8); }

@media (min-width: 800px) {
  section.section.section-arrowdown {
    position: relative;
    background: #F6F6F6;
    margin-bottom: 50px;
    padding-bottom: 0; }
    section.section.section-arrowdown:after {
      content: "";
      position: absolute;
      bottom: -50px;
      left: 0;
      right: 0;
      border-style: solid;
      border-width: 50px 49vw 0 49vw;
      border-color: #F6F6F6 transparent transparent transparent; } }

#counts.section-features span.spincrement {
  font-weight: bold;
  font-size: 2rem; }

.animated.scrollDown, div.scrollDown.add-feature-price {
  animation: scrollDown 2s ease-in-out infinite; }

@keyframes scrollDown {
  from {
    opacity: 1;
    transform: translateY(-5px); }
  to {
    opacity: 0;
    transform: scale(0.6);
    transform: translateY(25px); } }

.main-content .section-steps {
  overflow: hidden; }

.section-steps .steps-wrapper {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 300; }
  .section-steps .steps-wrapper > div {
    padding: 1rem 0;
    transition: all .2s ease-in-out; }
    @media (max-width: 767px) {
      .section-steps .steps-wrapper > div {
        animation-name: fadeInUp; } }
    .section-steps .steps-wrapper > div:nth-child(1) {
      z-index: 4;
      position: relative;
      background: #E7E5DC;
      box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
      font-weight: 400;
      text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 3px 3px rgba(0, 0, 0, 0.1), 0 5px 5px rgba(0, 0, 0, 0.05);
      line-height: 1.1em;
      text-transform: uppercase; }
      .section-steps .steps-wrapper > div:nth-child(1):after {
        content: "";
        position: absolute;
        border-style: solid;
        border-width: 20px 0 20px 20px;
        right: -18px;
        top: 30%;
        border-color: transparent transparent transparent #E7E5DC; }
        @media (max-width: 767px) {
          .section-steps .steps-wrapper > div:nth-child(1):after {
            display: none; } }
    .section-steps .steps-wrapper > div:nth-child(2) {
      z-index: 3;
      position: relative;
      background: #edece5;
      box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
      font-weight: 400;
      text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 3px 3px rgba(0, 0, 0, 0.1), 0 5px 5px rgba(0, 0, 0, 0.05);
      line-height: 1.1em;
      text-transform: uppercase; }
      .section-steps .steps-wrapper > div:nth-child(2):after {
        content: "";
        position: absolute;
        border-style: solid;
        border-width: 20px 0 20px 20px;
        right: -18px;
        top: 30%;
        border-color: transparent transparent transparent #edece5; }
        @media (max-width: 767px) {
          .section-steps .steps-wrapper > div:nth-child(2):after {
            display: none; } }
    .section-steps .steps-wrapper > div:nth-child(3) {
      z-index: 2;
      position: relative;
      background: #f1f0eb;
      box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
      font-weight: 400;
      text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 3px 3px rgba(0, 0, 0, 0.1), 0 5px 5px rgba(0, 0, 0, 0.05);
      line-height: 1.1em;
      text-transform: uppercase; }
      .section-steps .steps-wrapper > div:nth-child(3):after {
        content: "";
        position: absolute;
        border-style: solid;
        border-width: 20px 0 20px 20px;
        right: -18px;
        top: 30%;
        border-color: transparent transparent transparent #f1f0eb; }
        @media (max-width: 767px) {
          .section-steps .steps-wrapper > div:nth-child(3):after {
            display: none; } }
    .section-steps .steps-wrapper > div:nth-child(4) {
      z-index: 1;
      position: relative;
      background: #f6f5f1;
      box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
      font-weight: 400;
      text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 3px 3px rgba(0, 0, 0, 0.1), 0 5px 5px rgba(0, 0, 0, 0.05);
      line-height: 1.1em;
      text-transform: uppercase; }
      .section-steps .steps-wrapper > div:nth-child(4):after {
        content: "";
        position: absolute;
        border-style: solid;
        border-width: 20px 0 20px 20px;
        right: -18px;
        top: 30%;
        border-color: transparent transparent transparent #f6f5f1; }
        @media (max-width: 767px) {
          .section-steps .steps-wrapper > div:nth-child(4):after {
            display: none; } }
      .section-steps .steps-wrapper > div:nth-child(4):after {
        display: none; }
    .section-steps .steps-wrapper > div:hover {
      transform: scale(1.1);
      z-index: 10; }
    @media (max-width: 992px) {
      .section-steps .steps-wrapper > div {
        font-size: 17px; } }

.section-steps .scrollDown {
  font-size: 3rem; }

.section-steps.steps-colorful .steps-wrapper {
  color: #fff; }
  .section-steps.steps-colorful .steps-wrapper > div {
    padding: 1rem 0; }
    .section-steps.steps-colorful .steps-wrapper > div:nth-child(1) {
      position: relative;
      background: #d03638;
      box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
      font-weight: 400;
      text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 3px 3px rgba(0, 0, 0, 0.1), 0 5px 5px rgba(0, 0, 0, 0.05);
      line-height: 1.1em;
      text-transform: uppercase; }
      .section-steps.steps-colorful .steps-wrapper > div:nth-child(1):after {
        content: "";
        position: absolute;
        border-style: solid;
        border-width: 20px 0 20px 20px;
        right: -18px;
        top: 30%;
        border-color: transparent transparent transparent #d03638; }
        @media (max-width: 767px) {
          .section-steps.steps-colorful .steps-wrapper > div:nth-child(1):after {
            display: none; } }
    .section-steps.steps-colorful .steps-wrapper > div:nth-child(2) {
      position: relative;
      background: #ffbc0a;
      box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
      font-weight: 400;
      text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 3px 3px rgba(0, 0, 0, 0.1), 0 5px 5px rgba(0, 0, 0, 0.05);
      line-height: 1.1em;
      text-transform: uppercase; }
      .section-steps.steps-colorful .steps-wrapper > div:nth-child(2):after {
        content: "";
        position: absolute;
        border-style: solid;
        border-width: 20px 0 20px 20px;
        right: -18px;
        top: 30%;
        border-color: transparent transparent transparent #ffbc0a; }
        @media (max-width: 767px) {
          .section-steps.steps-colorful .steps-wrapper > div:nth-child(2):after {
            display: none; } }
    .section-steps.steps-colorful .steps-wrapper > div:nth-child(3) {
      position: relative;
      background: #7fcf6a;
      box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
      font-weight: 400;
      text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 3px 3px rgba(0, 0, 0, 0.1), 0 5px 5px rgba(0, 0, 0, 0.05);
      line-height: 1.1em;
      text-transform: uppercase; }
      .section-steps.steps-colorful .steps-wrapper > div:nth-child(3):after {
        content: "";
        position: absolute;
        border-style: solid;
        border-width: 20px 0 20px 20px;
        right: -18px;
        top: 30%;
        border-color: transparent transparent transparent #7fcf6a; }
        @media (max-width: 767px) {
          .section-steps.steps-colorful .steps-wrapper > div:nth-child(3):after {
            display: none; } }
    .section-steps.steps-colorful .steps-wrapper > div:nth-child(4) {
      position: relative;
      background: #889bf4;
      box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
      font-weight: 400;
      text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 3px 3px rgba(0, 0, 0, 0.1), 0 5px 5px rgba(0, 0, 0, 0.05);
      line-height: 1.1em;
      text-transform: uppercase; }
      .section-steps.steps-colorful .steps-wrapper > div:nth-child(4):after {
        content: "";
        position: absolute;
        border-style: solid;
        border-width: 20px 0 20px 20px;
        right: -18px;
        top: 30%;
        border-color: transparent transparent transparent #889bf4; }
        @media (max-width: 767px) {
          .section-steps.steps-colorful .steps-wrapper > div:nth-child(4):after {
            display: none; } }
      .section-steps.steps-colorful .steps-wrapper > div:nth-child(4):after {
        display: none; }

.section.section-lead i[class^="icon-"] {
  font-size: 60px;
  display: block;
  text-align: center; }

.section.section-stats {
  background: #474588;
  color: #d0cfff;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .section.section-stats ul li {
    display: inline-block;
    border-radius: 2px;
    padding: 0 10px;
    background: #fff;
    color: rgba(37, 37, 37, 0.8);
    font-size: 50px;
    font-weight: 700;
    position: relative;
    box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.05);
    text-shadow: 1px 0 rgba(255, 255, 255, 0.2);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 50%, rgba(255, 255, 255, 0.4) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0D000000', endColorstr='#66FFFFFF', GradientType=0); }
    .section.section-stats ul li:after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 50%;
      height: 2px;
      background: #454385; }
    @media (max-width: 1199px) and (min-width: 992px) {
      .section.section-stats ul li {
        font-size: 40px;
        background: #fff;
        color: #252525; } }
    @media (max-width: 400px) {
      .section.section-stats ul li {
        font-size: 37px; } }
  .section.section-stats .stats-description {
    text-transform: uppercase;
    font-weight: 100;
    color: rgba(208, 207, 255, 0.3); }
  .section.section-stats .container {
    text-align: center; }
  .section.section-stats.stats-clear li {
    background: none;
    box-shadow: none; }
    .section.section-stats.stats-clear li:after {
      display: none; }

.section.stats-3 {
  border: none; }
  .section.stats-3 ul li {
    font-size: 40px;
    box-shadow: none;
    background: transparent; }
    .section.stats-3 ul li:after {
      display: none; }

.section.section-dark li {
  color: #fff; }

.section.section-dark.section-stats ul li {
  color: rgba(255, 255, 255, 0.6);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); }

.section-cta {
  padding: 3rem 0;
  line-height: 1.3em; }
  .section-cta.cta-primary {
    color: #ffffff; }
  .section-cta .call-to-action {
    text-align: center; }
  .section-cta .cta-heading {
    font-weight: 400;
    font-size: 2.4rem;
    margin: 0 0 1.5rem; }
  .section-cta .cta-description {
    font-size: 1.2rem;
    line-height: 1.5rem;
    font-weight: 100;
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.9); }

@media (min-width: 992px) {
  .cta-4_thumb {
    position: relative;
    top: -1rem;
    width: 90px;
    max-width: 90px; } }

.section-testimonials .owl-carousel.owl-dots-top .owl-dots {
  position: absolute;
  top: -.5rem;
  right: 0rem;
  opacity: 0;
  transition: opacity .15s ease; }

.section-testimonials .owl-carousel.owl-dots-top:hover .owl-dots {
  opacity: 1; }

.section-testimonials .owl-carousel.owl-dots-small .owl-dots .owl-dot span {
  width: 6px;
  height: 6px; }

.section-testimonials .owl-carousel.owl-loaded.owl-grab .testimonial__item {
  opacity: .9; }

.section-testimonials .owl-carousel:not(.two-columns) .active .testimonial__avatar {
  animation: fadeInRight .5s ease .15s both; }

.section-testimonials .owl-carousel:not(.two-columns) .active .testimonial__rating i:nth-child(1) {
  animation: bounceIn .5s ease .15s both; }

.section-testimonials .owl-carousel:not(.two-columns) .active .testimonial__rating i:nth-child(2) {
  animation: bounceIn .5s ease .18s both; }

.section-testimonials .owl-carousel:not(.two-columns) .active .testimonial__rating i:nth-child(3) {
  animation: bounceIn .5s ease .23s both; }

.section-testimonials .owl-carousel:not(.two-columns) .active .testimonial__rating i:nth-child(4) {
  animation: bounceIn .5s ease .28s both; }

.section-testimonials .owl-carousel:not(.two-columns) .active .testimonial__rating i:nth-child(5) {
  animation: bounceIn .5s ease .31s both; }

.section-testimonials .owl-carousel:not(.two-columns) .active .testimonial__title {
  animation: fadeInLeft .5s ease .1s; }

.section-testimonials .owl-carousel:not(.two-columns) .active .testimonial__author {
  animation: fadeInLeft .6s ease .15s; }

.section-testimonials .owl-carousel:not(.two-columns) .active .testimonial__text {
  animation: fadeInRight .6s ease both; }

.section-testimonials .owl-carousel:not(.two-columns) .active .testimonial__description {
  animation: fadeIn .6s ease both; }

.section-testimonials .testimonial__avatar {
  margin: 0 auto;
  width: 140px;
  border-radius: 50%; }

.section-testimonials .testimonial__description {
  font: normal 1.3em/1.2em serif;
  font-style: italic;
  max-height: 240px;
  max-width: 780px;
  margin: .1rem auto 0;
  overflow-y: auto;
  color: #5d5d5d;
  text-shadow: 1px 1px 0 #fff;
  margin: 1.5rem auto;
  /* Let's get this party started */
  /* Track */
  /* Handle */ }
  .section-testimonials .testimonial__description::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 3px;
    height: 3px; }
  .section-testimonials .testimonial__description::-webkit-scrollbar-track {
    background: #fff;
    box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    background: #fbfbfb;
    visibility: hidden; }
  .section-testimonials .testimonial__description:hover::-webkit-scrollbar-track {
    visibility: visible; }
  .section-testimonials .testimonial__description::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(192, 192, 192, 0.4);
    visibility: hidden; }
  .section-testimonials .testimonial__description:hover::-webkit-scrollbar-thumb {
    visibility: visible; }

.section-testimonials .testimonial__rating i {
  display: inline-block; }

#carousel-questions-1 .carousel-control .icon-prev, #carousel-questions-1 .carousel-control .icon-next {
  margin-top: -60px; }

#carousel-questions-2 {
  min-height: 165px;
  font-size: 1.5rem;
  max-width: 940px;
  margin: 0 auto; }

.question-carousel .question {
  background: #F6F6F6;
  border-bottom: #d0d0d0;
  max-height: 200px;
  min-height: 160px;
  min-height: 200px;
  overflow-y: auto;
  padding: 1rem 2rem;
  transition: height 1s ease-in-out; }
  @media (max-width: 767px) {
    .question-carousel .question {
      max-height: 320px;
      min-height: 320px; } }
  @media (min-width: 460px) {
    .question-carousel .question {
      display: flex;
      align-items: center;
      justify-content: center; } }

#steps-2 {
  margin-bottom: 2rem; }

.step-num {
  font-size: 1.8rem;
  font-weight: 100;
  margin: 1rem auto;
  width: 100px;
  height: 100px;
  height: auto;
  border-radius: 50%;
  padding: 0 20px;
  line-height: 1em; }
  .step-num img {
    max-width: 80px;
    margin: auto; }

.step-ico {
  transition: all .2s ease-in-out;
  font-size: 3.5rem;
  font-weight: 100;
  margin: 1rem auto;
  width: 77px;
  height: 77px;
  border-radius: 50%;
  padding: 10px; }

.hit-steps {
  position: relative;
  padding: 0;
  counter-reset: current-step;
  margin-left: 1.3rem; }
  .hit-steps .steps-item {
    padding: 0 3rem 0 3rem;
    border-radius: 0 15px 15px 0;
    margin-bottom: 2rem;
    position: relative;
    background: #fafafa;
    margin-left: 5px;
    box-shadow: 0 10px 10px -10px rgba(21, 88, 168, 0.2);
    list-style: none; }
    .hit-steps .steps-item:not(:last-child):after {
      content: "";
      position: absolute;
      top: 0;
      left: -5px;
      width: 2px;
      height: 120%;
      background: #7159B5;
      border: 2px dashed white;
      z-index: -1; }
    .hit-steps .steps-item .step-header {
      font-weight: 400;
      margin: 0;
      padding: 1.6rem 0 0.5rem;
      color: rgba(0, 0, 0, 0.7);
      text-transform: uppercase; }
    .hit-steps .steps-item .step-description {
      margin: 0;
      padding: 0.5rem 0 1.5rem;
      color: rgba(0, 0, 0, 0.6); }
    .hit-steps .steps-item:before {
      position: absolute;
      left: -1.75rem;
      counter-increment: current-step;
      content: counter(current-step);
      font-size: 2.1rem;
      background: #7159B5;
      color: #ffffff;
      box-shadow: inset 4px 4px 0 rgba(255, 255, 255, 0.5), 4px 4px 0 rgba(113, 89, 181, 0.5), 0 0 10px rgba(113, 89, 181, 0.5);
      width: 50px;
      height: 50px;
      text-align: center;
      border-radius: 50%; }
    .hit-steps .steps-item:last-child:before {
      content: "\f11e";
      font-family: 'fontawesome'; }

.hit-steps-2 h3 {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  padding: .75rem 0; }
  .hit-steps-2 h3 i {
    color: #78cd62;
    padding: 0 .5rem; }

.hit-steps-2 p {
  text-align: justify; }

.hit-steps-2 .arrow-wrapper {
  width: 50%;
  position: relative; }

.hit-steps-2 .step-val {
  background: #00b4cf;
  color: white;
  display: inline-block;
  width: 4rem;
  height: 4rem;
  position: absolute;
  border-radius: 50%;
  font-size: 2.5rem;
  text-align: center;
  font-weight: 100;
  line-height: 1.6em; }

.hit-steps-2 .step {
  width: 95%;
  position: relative;
  padding: 1rem 1.8rem;
  background: white;
  border-radius: 4px;
  position: relative;
  margin-bottom: 2rem; }
  @media (max-width: 767px) {
    .hit-steps-2 .step {
      width: 100%; } }

.extension__image {
  height: 200px;
  width: 200px;
  background: url(/static/img/hand_magnifier.svg) center center no-repeat;
  position: absolute;
  right: 0;
  top: calc(50% - 100px); }
  @media (max-width: 543px) {
    .extension__image {
      display: none; } }

.extension__plagiarism-form-wrapper {
  position: relative;
  border-radius: 6px;
  background: #6bb0cf;
  padding: 50px 250px 50px 50px;
  color: #fff;
  margin: 50px 0px; }
  @media (max-width: 767px) {
    .extension__plagiarism-form-wrapper {
      padding: 20px 250px 20px 20px; } }
  @media (max-width: 543px) {
    .extension__plagiarism-form-wrapper {
      padding: 20px;
      margin: 35px 0px; } }
  .extension__plagiarism-form-wrapper h2 {
    display: inline-block;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 1.8rem; }
    @media (max-width: 543px) {
      .extension__plagiarism-form-wrapper h2 {
        text-align: center; } }
  .extension__plagiarism-form-wrapper span {
    display: inline-block;
    margin-bottom: 40px; }
    @media (max-width: 543px) {
      .extension__plagiarism-form-wrapper span {
        text-align: center; } }
  .extension__plagiarism-form-wrapper.success .extension__status {
    display: flex; }
  .extension__plagiarism-form-wrapper.success .extension__plagiarism-form {
    display: none; }

.extension__plagiarism-form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1; }
  @media (max-width: 991px) {
    .extension__plagiarism-form {
      flex-direction: column; } }
  .extension__plagiarism-form input {
    height: 50px;
    border-radius: 25px;
    background: #fff;
    color: #737883;
    font-size: 16px;
    padding: .2rem 1.5rem;
    border: none;
    width: 32%; }
    @media (max-width: 991px) {
      .extension__plagiarism-form input {
        width: 100%;
        margin-bottom: 20px; } }
  .extension__plagiarism-form button {
    padding: .7rem 1rem;
    margin-top: -2px;
    background: #b5d8e7;
    color: #4f4b62;
    border: 4px solid #fff;
    font-size: 20px;
    transition: .3s ease;
    border-radius: 30px;
    width: 32%; }
    @media (max-width: 991px) {
      .extension__plagiarism-form button {
        width: 100%; } }

.extension__status {
  font-size: 1.2rem;
  font-weight: bold;
  padding: 10px;
  height: 100%;
  width: 100%;
  display: none;
  background: rgba(255, 255, 255, 0.746);
  justify-content: center;
  align-items: center;
  color: #4cae50;
  top: 0;
  left: 0;
  z-index: 2; }
  @media (max-width: 991px) {
    .extension__status {
      text-align: center; } }
  @media (max-width: 767px) {
    .extension__status {
      font-weight: normal; } }

.lds-spinner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 300px; }

.lds-spinner {
  color: official;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px; }
  .lds-spinner div {
    transform-origin: 40px 40px;
    animation: lds-spinner 1.2s linear infinite; }
  .lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 6px;
    height: 18px;
    border-radius: 20%;
    background: var(--main-color, #cacdce);
    opacity: 0.4; }
  .lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s; }
  .lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s; }
  .lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s; }
  .lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s; }
  .lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s; }
  .lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s; }
  .lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s; }
  .lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s; }
  .lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s; }
  .lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s; }
  .lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s; }
  .lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s; }

@keyframes lds-spinner {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

#orderform {
  min-height: 675px; }

.react-orderform #page {
  overflow: visible; }

.react-orderform .section-orderform .section__heading {
  font-size: 52px;
  font-weight: 700;
  color: #3b454b;
  margin-bottom: 22px; }
  @media (max-width: 991px) {
    .react-orderform .section-orderform .section__heading {
      font-size: 48px; } }
  @media (max-width: 767px) {
    .react-orderform .section-orderform .section__heading {
      font-size: 42px; } }
  @media (max-width: 543px) {
    .react-orderform .section-orderform .section__heading {
      font-size: 30px; } }

.react-orderform .section-orderform .orderform__wrapper {
  display: flex; }
  @media (max-width: 991px) {
    .react-orderform .section-orderform .orderform__wrapper {
      flex-wrap: wrap; } }

.react-orderform .section-orderform .orderform__left {
  flex-grow: 1; }

.react-orderform .section-orderform .orderform__label {
  position: relative;
  margin-bottom: 0; }
  .react-orderform .section-orderform .orderform__label-text {
    display: inline-block;
    position: relative;
    color: #9bacb6;
    font-size: 14px;
    margin-bottom: 13px;
    cursor: default; }
    .react-orderform .section-orderform .orderform__label-text::after {
      content: "";
      position: absolute;
      display: block;
      left: 0;
      bottom: -3px;
      width: 100%;
      border-bottom: 2px dashed #9bacb6; }
  .react-orderform .section-orderform .orderform__label-message {
    color: #cc2f31;
    font-size: 20px;
    font-weight: 700; }

.react-orderform .section-orderform .orderform__tooltip {
  position: absolute;
  width: 270px;
  background-color: rgba(59, 69, 75, 0.85);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  border-radius: 5px;
  bottom: 50px;
  left: -80px;
  text-align: center;
  padding: 7px 20px 5px;
  z-index: 50;
  pointer-events: none;
  opacity: 0;
  transition: 0.25s; }
  @media (max-width: 767px) {
    .react-orderform .section-orderform .orderform__tooltip {
      left: 0;
      text-align: left; } }
  .react-orderform .section-orderform .orderform__tooltip::after {
    content: "";
    position: absolute;
    display: block;
    border: 9px solid rgba(59, 69, 75, 0.85);
    border-left-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    left: 50%;
    transform: translateX(-50%);
    bottom: -18px; }
    @media (max-width: 767px) {
      .react-orderform .section-orderform .orderform__tooltip::after {
        left: 15%; } }

.react-orderform .section-orderform .orderform__check-arrow {
  fill: var(--main-color, #7ac8ed);
  margin-right: 12px;
  transition: 0.25s; }

.react-orderform .section-orderform .orderform__right {
  display: flex;
  flex-direction: column;
  min-width: 270px;
  padding-left: 16px; }
  @media (max-width: 991px) {
    .react-orderform .section-orderform .orderform__right {
      width: 100%;
      padding-left: 0; } }

.react-orderform .section-orderform .orderform__all-steps {
  text-align: right; }
  .react-orderform .section-orderform .orderform__all-steps a {
    font-size: 14px;
    font-weight: 500;
    color: #9bacb6; }

.react-orderform .section-orderform .orderform__navigation {
  min-height: 33px; }
  @media (min-width: 992px) {
    .react-orderform .section-orderform .orderform__navigation {
      position: sticky;
      top: 49px; } }
  @media (max-width: 991px) {
    .react-orderform .section-orderform .orderform__navigation {
      order: 1; } }
  .react-orderform .section-orderform .orderform__navigation a {
    font-size: 14px;
    font-weight: 500;
    color: #9bacb6; }

.react-orderform .section-orderform .orderform__details-exclamation {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #9bacb6;
  margin: -13px 0 16px; }
  @media (max-width: 543px) {
    .react-orderform .section-orderform .orderform__details-exclamation {
      font-size: 13px; } }
  .react-orderform .section-orderform .orderform__details-exclamation svg {
    width: 16px;
    height: 16px;
    fill: #9bacb6;
    margin-right: 8px;
    margin-bottom: 5px; }
  .react-orderform .section-orderform .orderform__details-exclamation .fa-exclamation-circle {
    margin-right: 5px; }

.react-orderform .section-orderform .orderform__links-wrapper {
  display: flex;
  flex-wrap: wrap; }

.react-orderform .section-orderform .orderform__link-default {
  margin-right: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #9bacb6; }

.react-orderform .section-orderform .orderform .pills__group {
  margin-bottom: 20px; }

.react-orderform .section-orderform .orderform .pills__box {
  display: flex;
  justify-content: space-between; }
  @media (max-width: 767px) {
    .react-orderform .section-orderform .orderform .pills__box {
      flex-wrap: wrap; } }

.react-orderform .section-orderform .orderform .pills__btn {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  min-height: 60px;
  min-width: 150px;
  border-radius: 8px !important;
  border: 4px solid var(--grey-color, #f7f9fa);
  background: var(--grey-color, #f7f9fa);
  background-size: 21px 16px;
  background-position: 25px 16px;
  color: #3b454b;
  font-size: 14px;
  margin-bottom: 0;
  cursor: pointer;
  transition: 0.25s; }
  .react-orderform .section-orderform .orderform .pills__btn:hover {
    box-shadow: 0 10px 35px var(--main-color, #7ac8ed);
    color: #fff;
    background: var(--main-color, #7ac8ed);
    background-size: 21px 16px;
    background-position: 25px 16px;
    border: 4px solid var(--main-color, #7ac8ed); }
  .react-orderform .section-orderform .orderform .pills__btn.active {
    border: 4px solid var(--main-color, #7ac8ed);
    color: var(--main-color, #7ac8ed);
    box-shadow: none;
    background: #ffffff;
    background-size: 21px 16px;
    background-position: 25px 16px; }
  .react-orderform .section-orderform .orderform .pills__btn:focus {
    box-shadow: 0 10px 35px var(--main-color, #7ac8ed);
    border: 4px solid var(--main-color, #7ac8ed); }
  .react-orderform .section-orderform .orderform .pills__btn:not(:first-child) {
    margin-left: 8px; }
  .react-orderform .section-orderform .orderform .pills__btn:not(:last-child) {
    margin-right: 8px; }
    @media (max-width: 767px) {
      .react-orderform .section-orderform .orderform .pills__btn:not(:last-child) {
        margin-right: 0; } }
  @media (max-width: 767px) {
    .react-orderform .section-orderform .orderform .pills__btn:nth-child(2) {
      order: 1;
      flex: 100%;
      margin-top: 16px;
      margin-right: 0;
      margin-left: 0; } }
  @media (max-width: 380px) {
    .react-orderform .section-orderform .orderform .pills__btn {
      margin-left: 0 !important;
      margin-right: 0 !important;
      flex: 100%; }
      .react-orderform .section-orderform .orderform .pills__btn:nth-child(2) {
        order: 0;
        margin-bottom: 16px;
        margin-top: 16px; } }
  .react-orderform .section-orderform .orderform .pills__btn span:nth-child(2) {
    font-size: 22px;
    font-weight: 500;
    line-height: 20px; }
  .react-orderform .section-orderform .orderform .pills__btn span:nth-child(3) {
    line-height: 15px; }

.react-orderform .section-orderform .orderform .select__row {
  display: flex;
  justify-content: space-between; }
  .react-orderform .section-orderform .orderform .select__row .select__group:first-child {
    min-width: 55%;
    margin-right: 16px; }
  @media (max-width: 543px) {
    .react-orderform .section-orderform .orderform .select__row {
      flex-wrap: wrap; }
      .react-orderform .section-orderform .orderform .select__row .select__group:first-child {
        margin-right: 0; } }

.react-orderform .section-orderform .orderform .select__group {
  flex-basis: 100%;
  margin-bottom: 20px; }

.react-orderform .section-orderform .orderform .select__box {
  position: relative; }

.react-orderform .section-orderform .orderform .select__placeholder {
  display: flex;
  align-items: center;
  height: 60px;
  border-radius: 8px;
  border: 4px solid var(--grey-color, #f7f9fa);
  background-color: var(--grey-color, #f7f9fa);
  padding: 0 25px;
  font-size: 22px;
  color: #3b454b;
  font-weight: 500;
  cursor: pointer;
  transition: 0.25s; }
  @media (max-width: 543px) {
    .react-orderform .section-orderform .orderform .select__placeholder {
      padding: 0 20px;
      font-size: 19px; } }
  .react-orderform .section-orderform .orderform .select__placeholder.is-active {
    border: 4px solid var(--main-color, #7ac8ed);
    background-color: #fff;
    color: var(--main-color, #7ac8ed); }
    .react-orderform .section-orderform .orderform .select__placeholder.is-active .select__arrow {
      fill: #3b454b; }
  .react-orderform .section-orderform .orderform .select__placeholder:hover {
    box-shadow: 0 10px 35px var(--main-color, #7ac8ed);
    border: 4px solid var(--main-color, #7ac8ed);
    background-color: var(--main-color, #7ac8ed);
    color: #fff; }
    .react-orderform .section-orderform .orderform .select__placeholder:hover .orderform__check-arrow {
      fill: #ffffff; }
    .react-orderform .section-orderform .orderform .select__placeholder:hover .select__arrow {
      fill: #ffffff; }
  .react-orderform .section-orderform .orderform .select__placeholder:focus {
    box-shadow: 0 10px 35px var(--main-color, #7ac8ed);
    border: 4px solid var(--main-color, #7ac8ed); }
  .react-orderform .section-orderform .orderform .select__placeholder.error {
    border: 4px solid #d76c6d;
    background-color: var(--grey-color, #f7f9fa);
    color: #3b454b;
    box-shadow: none; }
    .react-orderform .section-orderform .orderform .select__placeholder.error .select__arrow {
      fill: #3b454b; }
  .react-orderform .section-orderform .orderform .select__placeholder.is-disabled {
    border: 4px solid var(--grey-color, #f7f9fa);
    background-color: var(--grey-color, #f7f9fa);
    color: #ccd5db;
    box-shadow: none;
    pointer-events: none; }
    .react-orderform .section-orderform .orderform .select__placeholder.is-disabled .orderform__check-arrow {
      fill: var(--grey-color, #f7f9fa); }
    .react-orderform .section-orderform .orderform .select__placeholder.is-disabled .select__arrow {
      fill: var(--grey-color, #f7f9fa); }

.react-orderform .section-orderform .orderform .select__arrow {
  fill: #3b454b;
  margin-left: auto;
  transition: 0.25s; }

.react-orderform .section-orderform .orderform .select__dropdown {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 8px;
  background-color: var(--grey-color, #f7f9fa);
  box-shadow: 0 10px 35px rgba(29, 42, 50, 0.2);
  overflow: hidden;
  z-index: 10; }

.react-orderform .section-orderform .orderform .select__search {
  font-size: 22px;
  font-weight: 500;
  padding: 5px 15px 5px 25px;
  height: initial;
  background-color: #fff;
  border: none;
  -webkit-appearance: none;
  box-shadow: none; }

.react-orderform .section-orderform .orderform .select__list-wrapper {
  background-color: var(--grey-color, #f7f9fa);
  max-height: 257px;
  overflow-y: auto;
  /* Let's get this party started */
  /* Track */
  /* Handle */ }
  .react-orderform .section-orderform .orderform .select__list-wrapper::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 10px;
    height: 10px; }
  .react-orderform .section-orderform .orderform .select__list-wrapper::-webkit-scrollbar-track {
    background: #fff;
    box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    background: #f0f0f0;
    visibility: visible; }
  .react-orderform .section-orderform .orderform .select__list-wrapper:hover::-webkit-scrollbar-track {
    visibility: visible; }
  .react-orderform .section-orderform .orderform .select__list-wrapper::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #cdcdcd;
    visibility: visible; }
  .react-orderform .section-orderform .orderform .select__list-wrapper:hover::-webkit-scrollbar-thumb {
    visibility: visible; }
  .react-orderform .section-orderform .orderform .select__list-wrapper::-webkit-scrollbar-track {
    border-radius: 0;
    box-shadow: none; }
  .react-orderform .section-orderform .orderform .select__list-wrapper::-webkit-scrollbar-thumb {
    border-radius: 0; }

.react-orderform .section-orderform .orderform .select__list {
  margin-bottom: 0;
  overflow: hidden; }
  .react-orderform .section-orderform .orderform .select__list-group > span {
    display: block;
    text-align: center;
    font-weight: 700;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    background: #f2f2f2; }

.react-orderform .section-orderform .orderform .select__list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  font-size: 22px;
  font-weight: 500;
  cursor: pointer;
  padding: 5px 15px 5px 25px;
  transition: 0.25s; }
  .react-orderform .section-orderform .orderform .select__list-item svg {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    fill: var(--grey-color, #f7f9fa);
    transition: 0.25s; }
  .react-orderform .section-orderform .orderform .select__list-item.selected {
    background-color: #eeeeee; }
    .react-orderform .section-orderform .orderform .select__list-item.selected svg {
      fill: #eeeeee; }
  .react-orderform .section-orderform .orderform .select__list-item:hover {
    background-color: var(--main-color, #7ac8ed);
    color: #ffffff; }
    .react-orderform .section-orderform .orderform .select__list-item:hover svg {
      fill: var(--main-color, #7ac8ed); }
    .react-orderform .section-orderform .orderform .select__list-item:hover .fa-star {
      color: #ffffff; }
  .react-orderform .section-orderform .orderform .select__list-item[data-selected=selected] {
    background-color: var(--main-color, #7ac8ed);
    color: #ffffff; }
    .react-orderform .section-orderform .orderform .select__list-item[data-selected=selected] svg {
      fill: #fff; }
    .react-orderform .section-orderform .orderform .select__list-item[data-selected=selected] .fa-star {
      color: #ffffff; }
  .react-orderform .section-orderform .orderform .select__list-item .fa-star {
    color: var(--main-color, #7ac8ed); }

.react-orderform .section-orderform .orderform .counter__wrapper {
  display: inline-block;
  position: relative;
  width: 100%; }
  @media (max-width: 767px) {
    .react-orderform .section-orderform .orderform .counter__wrapper {
      width: 100%; } }

.react-orderform .section-orderform .orderform .counter__row {
  display: flex;
  justify-content: space-between; }
  @media (max-width: 767px) {
    .react-orderform .section-orderform .orderform .counter__row {
      flex-wrap: wrap; } }

.react-orderform .section-orderform .orderform .counter__item {
  height: 60px;
  border-radius: 8px;
  border: 4px solid transparent;
  background-color: var(--grey-color, #f7f9fa);
  color: #3b454b;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  transition: .25s;
  -moz-appearance: textfield; }
  @media (max-width: 1199px) {
    .react-orderform .section-orderform .orderform .counter__item {
      max-width: initial; } }
  @media (max-width: 767px) {
    .react-orderform .section-orderform .orderform .counter__item {
      width: 100%; } }
  .react-orderform .section-orderform .orderform .counter__item::-webkit-inner-spin-button, .react-orderform .section-orderform .orderform .counter__item::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0; }
  .react-orderform .section-orderform .orderform .counter__item:focus {
    border-color: var(--main-color, #7ac8ed);
    background-color: #ffffff;
    color: var(--main-color, #7ac8ed);
    box-shadow: 0 10px 35px var(--main-color, #7ac8ed); }
  .react-orderform .section-orderform .orderform .counter__item.focused {
    border-color: var(--main-color, #7ac8ed);
    background-color: #ffffff;
    color: var(--main-color, #7ac8ed); }
  .react-orderform .section-orderform .orderform .counter__item.error {
    border: 4px solid #d76c6d;
    background-color: var(--grey-color, #f7f9fa);
    color: #3b454b;
    box-shadow: none; }
    .react-orderform .section-orderform .orderform .counter__item.error .select__arrow {
      fill: #3b454b; }
  .react-orderform .section-orderform .orderform .counter__item.is-disabled {
    border: 4px solid var(--grey-color, #f7f9fa);
    background-color: var(--grey-color, #f7f9fa);
    color: #ccd5db;
    box-shadow: none;
    pointer-events: none; }
    .react-orderform .section-orderform .orderform .counter__item.is-disabled .orderform__check-arrow {
      fill: var(--grey-color, #f7f9fa); }
    .react-orderform .section-orderform .orderform .counter__item.is-disabled .select__arrow {
      fill: var(--grey-color, #f7f9fa); }

.react-orderform .section-orderform .orderform .counter__control-inc {
  right: 5px; }

.react-orderform .section-orderform .orderform .counter__control-dec {
  left: 5px; }

.react-orderform .section-orderform .orderform .counter__control-inc, .react-orderform .section-orderform .orderform .counter__control-dec {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  height: 100%;
  width: 53px;
  cursor: pointer;
  background: none;
  border: none;
  transition: .2s ease; }
  .react-orderform .section-orderform .orderform .counter__control-inc svg path, .react-orderform .section-orderform .orderform .counter__control-dec svg path {
    transition: .2s ease; }
  .react-orderform .section-orderform .orderform .counter__control-inc:hover svg path, .react-orderform .section-orderform .orderform .counter__control-dec:hover svg path {
    fill: var(--main-color, #7ac8ed); }
  .react-orderform .section-orderform .orderform .counter__control-inc.disabled, .react-orderform .section-orderform .orderform .counter__control-dec.disabled {
    opacity: .8; }

.react-orderform .section-orderform .orderform .counter__group {
  display: inline-block;
  margin-bottom: 20px; }
  .react-orderform .section-orderform .orderform .counter__group:first-child {
    flex-grow: 1;
    margin-right: 15px; }
    @media (max-width: 767px) {
      .react-orderform .section-orderform .orderform .counter__group:first-child {
        margin: 0rem 0; } }
  .react-orderform .section-orderform .orderform .counter__group:last-child {
    flex-grow: 1;
    margin-left: 15px; }
    @media (max-width: 767px) {
      .react-orderform .section-orderform .orderform .counter__group:last-child {
        margin-left: 0; } }
  @media (max-width: 767px) {
    .react-orderform .section-orderform .orderform .counter__group {
      display: flex;
      width: 100%;
      flex-direction: column; }
      .react-orderform .section-orderform .orderform .counter__group:nth-child(2) {
        order: 1;
        align-items: center; } }

.react-orderform .section-orderform .orderform .formField__group {
  margin-bottom: 20px; }

.react-orderform .section-orderform .orderform .formField__input {
  display: flex;
  align-items: center;
  border-radius: 8px;
  border: 4px solid var(--grey-color, #f7f9fa);
  height: 60px;
  min-height: 60px;
  padding: 0 25px;
  font-size: 22px;
  font-weight: 500;
  color: #3b454b;
  background-size: 21px 16px;
  background-position: 25px 16px;
  transition: 0.25s; }
  @media (max-width: 543px) {
    .react-orderform .section-orderform .orderform .formField__input {
      font-size: 15px;
      padding: 0 15px; } }
  .react-orderform .section-orderform .orderform .formField__input::placeholder {
    color: #9bacb6; }
  .react-orderform .section-orderform .orderform .formField__input:hover, .react-orderform .section-orderform .orderform .formField__input:active {
    border: 4px solid var(--main-color, #7ac8ed); }
  .react-orderform .section-orderform .orderform .formField__input:focus {
    box-shadow: 0 10px 35px var(--main-color, #7ac8ed);
    border: 4px solid var(--main-color, #7ac8ed); }
  .react-orderform .section-orderform .orderform .formField__input.done {
    color: var(--main-color, #7ac8ed);
    border: 4px solid var(--main-color, #7ac8ed);
    background-size: 21px 16px;
    background-position: 25px 16px;
    padding-left: 25px; }
  .react-orderform .section-orderform .orderform .formField__input.error {
    border: 4px solid #d76c6d; }

.react-orderform .section-orderform .orderform .formField textarea {
  padding-top: 13px;
  padding-bottom: 10px;
  font-size: 17px;
  overflow-y: auto;
  /* Let's get this party started */
  /* Track */
  /* Handle */ }
  .react-orderform .section-orderform .orderform .formField textarea::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 10px;
    height: 10px; }
  .react-orderform .section-orderform .orderform .formField textarea::-webkit-scrollbar-track {
    background: #fff;
    box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    background: #f0f0f0;
    visibility: visible; }
  .react-orderform .section-orderform .orderform .formField textarea:hover::-webkit-scrollbar-track {
    visibility: visible; }
  .react-orderform .section-orderform .orderform .formField textarea::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #cdcdcd;
    visibility: visible; }
  .react-orderform .section-orderform .orderform .formField textarea:hover::-webkit-scrollbar-thumb {
    visibility: visible; }
  .react-orderform .section-orderform .orderform .formField textarea::-webkit-scrollbar-track {
    border-radius: 0;
    box-shadow: none; }
  .react-orderform .section-orderform .orderform .formField textarea::-webkit-scrollbar-thumb {
    border-radius: 0; }
  @media (max-width: 767px) {
    .react-orderform .section-orderform .orderform .formField textarea {
      font-size: 16px;
      padding-top: 5px; } }
  @media (max-width: 543px) {
    .react-orderform .section-orderform .orderform .formField textarea {
      font-size: 14px;
      padding-top: 8px; } }

.react-orderform .section-orderform .orderform .formField__tel-wrapper {
  display: flex;
  align-items: center; }
  .react-orderform .section-orderform .orderform .formField__tel-wrapper input[type=tel].tel-input {
    display: none; }
  .react-orderform .section-orderform .orderform .formField__tel-wrapper .intl-tel-input {
    position: relative;
    width: 122px;
    height: 60px;
    margin-right: 2px; }
    .react-orderform .section-orderform .orderform .formField__tel-wrapper .intl-tel-input .country-list {
      z-index: 10; }
    @media (max-width: 543px) {
      .react-orderform .section-orderform .orderform .formField__tel-wrapper .intl-tel-input {
        width: auto;
        min-width: 60px; } }
    .react-orderform .section-orderform .orderform .formField__tel-wrapper .intl-tel-input .selected-flag {
      top: 0px !important; }
      @media (max-width: 543px) {
        .react-orderform .section-orderform .orderform .formField__tel-wrapper .intl-tel-input .selected-flag {
          min-width: 60px !important;
          width: auto;
          text-align: center; } }
    .react-orderform .section-orderform .orderform .formField__tel-wrapper .intl-tel-input .iti-flag {
      transform: scale(1.5);
      left: 4px; }
      @media (max-width: 543px) {
        .react-orderform .section-orderform .orderform .formField__tel-wrapper .intl-tel-input .iti-flag {
          top: 14px;
          left: 18px;
          bottom: unset; } }
    .react-orderform .section-orderform .orderform .formField__tel-wrapper .intl-tel-input .selected-dial-code {
      font-size: 22px;
      font-weight: 500;
      padding-left: 35px; }
      @media (max-width: 543px) {
        .react-orderform .section-orderform .orderform .formField__tel-wrapper .intl-tel-input .selected-dial-code {
          font-size: 19px;
          padding-left: 0;
          padding-top: 30px;
          padding-right: 5px; } }
  .react-orderform .section-orderform .orderform .formField__tel-wrapper .formField {
    flex-grow: 1; }

.react-orderform .section-orderform .orderform .file__group {
  margin: 25px 0 20px; }

.react-orderform .section-orderform .orderform .file__wrapper {
  display: flex; }
  @media (max-width: 767px) {
    .react-orderform .section-orderform .orderform .file__wrapper {
      flex-wrap: wrap; } }

@media (max-width: 767px) {
  .react-orderform .section-orderform .orderform .file__left {
    width: 100%; } }

.react-orderform .section-orderform .orderform .file__right {
  display: flex;
  align-items: center;
  flex-grow: 1; }
  @media (max-width: 543px) {
    .react-orderform .section-orderform .orderform .file__right {
      margin-top: 15px; } }

.react-orderform .section-orderform .orderform .file__input {
  display: none; }

.react-orderform .section-orderform .orderform .file__container {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0; }
  .react-orderform .section-orderform .orderform .file__container li:not(:last-child) {
    margin-right: 15px; }
  @media (max-width: 767px) {
    .react-orderform .section-orderform .orderform .file__container {
      margin-top: 15px; } }

.react-orderform .section-orderform .orderform .file__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 165px;
  height: 60px;
  border-radius: 8px;
  border: 4px solid var(--grey-color, #f7f9fa);
  background-color: #ffffff;
  transition: 0.25s;
  font-weight: 500;
  color: #9bacb6;
  margin-right: 20px; }
  .react-orderform .section-orderform .orderform .file__button.not-empty {
    border: 4px solid var(--main-color, #7ac8ed);
    color: var(--main-color, #7ac8ed); }
    .react-orderform .section-orderform .orderform .file__button.not-empty svg {
      fill: var(--main-color, #7ac8ed); }
  .react-orderform .section-orderform .orderform .file__button:hover {
    box-shadow: 0 10px 35px var(--main-color, #7ac8ed);
    background-color: var(--main-color, #7ac8ed);
    color: #fff;
    border: 4px solid var(--main-color, #7ac8ed); }
    .react-orderform .section-orderform .orderform .file__button:hover svg {
      fill: #fff; }
  .react-orderform .section-orderform .orderform .file__button:focus {
    box-shadow: 0 10px 35px var(--main-color, #7ac8ed);
    border: 4px solid var(--main-color, #7ac8ed); }
  .react-orderform .section-orderform .orderform .file__button:active {
    transition: 0.1s;
    box-shadow: none; }
  .react-orderform .section-orderform .orderform .file__button svg {
    fill: #9bacb6;
    width: 14px;
    height: 22px;
    transition: 0.25s;
    margin-right: 8px; }
  @media (max-width: 767px) {
    .react-orderform .section-orderform .orderform .file__button {
      width: 100%; } }

.react-orderform .section-orderform .orderform .file__name {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer; }
  .react-orderform .section-orderform .orderform .file__name:hover .file__delete::before, .react-orderform .section-orderform .orderform .file__name:hover .file__delete::after {
    background-color: var(--main-color, #7ac8ed); }

.react-orderform .section-orderform .orderform .file__delete {
  display: inline-block;
  position: relative;
  width: 12px;
  height: 12px;
  margin: 0 5px 4px 0; }
  .react-orderform .section-orderform .orderform .file__delete::before, .react-orderform .section-orderform .orderform .file__delete::after {
    content: "";
    position: absolute;
    display: block;
    width: 15px;
    height: 2px;
    top: 50%;
    left: 50%;
    background-color: #9bacb6;
    transition: 0.25s; }
  .react-orderform .section-orderform .orderform .file__delete::before {
    transform: translate(-50%, -50%) rotate(45deg); }
  .react-orderform .section-orderform .orderform .file__delete::after {
    transform: translate(-50%, -50%) rotate(-45deg); }

.react-orderform .section-orderform .orderform .file__title {
  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 135px; }
  @media (max-width: 767px) {
    .react-orderform .section-orderform .orderform .file__title {
      max-width: 100px; } }

.react-orderform .section-orderform .orderform .summary {
  border: 4px solid var(--grey-color, #f7f9fa);
  border-radius: 8px;
  width: 255px;
  padding: 13px 20px 20px;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 25px;
  background: #fff; }
  @media (max-width: 991px) {
    .react-orderform .section-orderform .orderform .summary {
      width: 100%; } }
  @media (min-width: 992px) {
    .react-orderform .section-orderform .orderform .summary__wrapper {
      position: sticky;
      top: 82px; } }
  @media (max-width: 991px) {
    .react-orderform .section-orderform .orderform .summary__wrapper {
      margin-top: 30px; } }
  .react-orderform .section-orderform .orderform .summary hr {
    display: block;
    margin: 5px 0;
    border-top-width: 2px; }
  .react-orderform .section-orderform .orderform .summary__title {
    font-size: 24px;
    font-weight: 600; }
  .react-orderform .section-orderform .orderform .summary__work-title {
    display: inline-block;
    margin: 8px 0 10px; }
  .react-orderform .section-orderform .orderform .summary__row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px; }
    .react-orderform .section-orderform .orderform .summary__row.total {
      font-size: 18px;
      font-weight: 600; }
    .react-orderform .section-orderform .orderform .summary__row.visible {
      border-bottom: 2px solid var(--main-color, #7ac8ed); }
    .react-orderform .section-orderform .orderform .summary__row.apply input {
      color: #9bacb6; }
    .react-orderform .section-orderform .orderform .summary__row.info {
      justify-content: flex-end;
      margin-bottom: 0;
      min-height: 19px; }
    .react-orderform .section-orderform .orderform .summary__row.plagiarism {
      margin-bottom: 0; }
      .react-orderform .section-orderform .orderform .summary__row.plagiarism span {
        margin-bottom: 10px; }
  .react-orderform .section-orderform .orderform .summary__discount-info span:first-child {
    position: relative;
    color: #9bacb6;
    font-size: 13px; }
    .react-orderform .section-orderform .orderform .summary__discount-info span:first-child::after {
      content: "";
      position: absolute;
      display: block;
      width: 100%;
      height: 1px;
      top: 40%;
      left: 0;
      background-color: #9bacb6; }
  .react-orderform .section-orderform .orderform .summary__discount-info span:last-child {
    color: #78cd62;
    font-size: 13px; }
  .react-orderform .section-orderform .orderform .summary__discount-check {
    position: relative;
    border: none;
    outline: none;
    box-shadow: none;
    background-color: transparent;
    padding: 0; }
    .react-orderform .section-orderform .orderform .summary__discount-check::after {
      content: "";
      position: absolute;
      display: block;
      height: 1px;
      width: 100%;
      left: 0;
      bottom: 0;
      background-color: #ced0d2; }
  .react-orderform .section-orderform .orderform .summary__discount-input {
    min-width: 50px;
    border: none;
    background-color: transparent;
    outline: none;
    box-shadow: none;
    padding: 0; }
    .react-orderform .section-orderform .orderform .summary__discount-input::placeholder {
      color: #e1e6e8;
      font-size: 16px; }
  .react-orderform .section-orderform .orderform .summary__discount-btn {
    border: none;
    background-color: transparent;
    outline: none;
    box-shadow: none;
    text-transform: uppercase;
    color: #9bacb6;
    font-weight: 500;
    padding: 0;
    transition: 0.25s; }
    .react-orderform .section-orderform .orderform .summary__discount-btn:hover {
      color: var(--main-color, #7ac8ed); }
  .react-orderform .section-orderform .orderform .summary__discount-activated {
    color: var(--main-color, #7ac8ed); }
    .react-orderform .section-orderform .orderform .summary__discount-activated svg {
      fill: var(--main-color, #7ac8ed);
      margin-right: 5px; }
  .react-orderform .section-orderform .orderform .summary .total-price {
    transition: transform 0.1s;
    transform-origin: center; }
  .react-orderform .section-orderform .orderform .summary .flush {
    color: var(--main-color, #7ac8ed);
    transform: scale(1.1); }

.react-orderform .section-orderform .orderform :root {
  --width-button: 157px; }

.react-orderform .section-orderform .orderform .spacing__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  position: relative;
  width: 255px;
  height: 60px;
  border-radius: 8px;
  border: 4px solid transparent;
  background-color: var(--grey-color, #f7f9fa);
  color: #3b454b;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  transition: .25s; }
  .react-orderform .section-orderform .orderform .spacing__wrapper.disabled {
    color: #ccd5db;
    box-shadow: none;
    pointer-events: none; }
    .react-orderform .section-orderform .orderform .spacing__wrapper.disabled .spacing__button {
      background: #ccd5db; }
  .react-orderform .section-orderform .orderform .spacing__wrapper.focused {
    border-color: var(--main-color, #7ac8ed); }

.react-orderform .section-orderform .orderform .spacing__name {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  cursor: pointer;
  font-weight: 500; }
  .react-orderform .section-orderform .orderform .spacing__name:hover {
    transition: .2s;
    color: var(--main-color, #7ac8ed); }

.react-orderform .section-orderform .orderform .spacing__input {
  visibility: hidden; }

.react-orderform .section-orderform .orderform .spacing__button {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  width: var(--width-button, 157px);
  height: 44px;
  border-radius: 4px;
  font-weight: 500;
  background-color: var(--main-color, #7ac8ed);
  transition: .2s; }
  .react-orderform .section-orderform .orderform .spacing__button.first {
    left: 5px; }
  .react-orderform .section-orderform .orderform .spacing__button.last {
    left: 85px; }
  .react-orderform .section-orderform .orderform .spacing__button span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #ffffff;
    font-size: 22px;
    font-weight: 400; }
    .react-orderform .section-orderform .orderform .spacing__button span:not(.active) {
      position: absolute;
      visibility: hidden;
      width: 100%;
      opacity: 0;
      transition: none; }
    .react-orderform .section-orderform .orderform .spacing__button span.active {
      opacity: 1; }

.react-orderform .section-orderform .orderform .checkbox__group {
  margin-top: 26px; }

.react-orderform .section-orderform .orderform .checkbox__input {
  visibility: visible;
  width: 0;
  height: 0;
  -webkit-appearance: none; }

.react-orderform .section-orderform .orderform .checkbox__button {
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  border: 4px solid #e1e6e8;
  margin-top: 0; }
  @media (max-width: 543px) {
    .react-orderform .section-orderform .orderform .checkbox__button {
      width: 40px;
      height: 40px; } }
  .react-orderform .section-orderform .orderform .checkbox__button-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    fill: var(--main-color, #7ac8ed);
    opacity: 0;
    transition: .2s; }

.react-orderform .section-orderform .orderform .checkbox__label {
  display: inline-flex;
  align-items: center;
  color: #3b454b;
  font-size: 22px;
  font-weight: 500;
  height: 46px;
  padding-left: 74px;
  margin-bottom: 0; }
  @media (max-width: 767px) {
    .react-orderform .section-orderform .orderform .checkbox__label {
      font-size: 19px; } }
  @media (max-width: 543px) {
    .react-orderform .section-orderform .orderform .checkbox__label {
      font-size: 16px;
      padding-left: 52px; } }
  .react-orderform .section-orderform .orderform .checkbox__label::before {
    display: none; }
  .react-orderform .section-orderform .orderform .checkbox__label:hover::before {
    border: 4px solid var(--main-color, #7ac8ed); }
  .react-orderform .section-orderform .orderform .checkbox__label span.calls-box {
    border-bottom: 2px dashed #9bacb6; }
  .react-orderform .section-orderform .orderform .checkbox__label span.asterisk {
    color: #cc2f31; }

.react-orderform .section-orderform .orderform .checkbox__link {
  color: #85a7ff; }

.react-orderform .section-orderform .orderform .checkbox__input:focus + .checkbox__label .checkbox__button {
  border: 4px solid var(--main-color, #7ac8ed);
  box-shadow: 0 10px 35px var(--main-color, #7ac8ed); }

.react-orderform .section-orderform .orderform .checkbox__input:checked + .checkbox__label .checkbox__button {
  border: 4px solid var(--main-color, #7ac8ed); }
  .react-orderform .section-orderform .orderform .checkbox__input:checked + .checkbox__label .checkbox__button-arrow {
    opacity: 1; }

.react-orderform .section-orderform .orderform .urgency__group {
  display: flex; }
  .react-orderform .section-orderform .orderform .urgency__group .select__group {
    max-width: 300px; }
  @media (max-width: 767px) {
    .react-orderform .section-orderform .orderform .urgency__group {
      flex-direction: column;
      align-items: center; }
      .react-orderform .section-orderform .orderform .urgency__group .select__group {
        max-width: 100%;
        width: 100%; }
      .react-orderform .section-orderform .orderform .urgency__group .select__box {
        width: 100%; } }

.react-orderform .section-orderform .orderform .urgency__placeholder {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border: 4px solid var(--main-color, #7ac8ed);
  border-radius: 8px;
  height: 60px;
  font-size: 30px;
  color: var(--main-color, #7ac8ed);
  font-weight: 500;
  cursor: pointer;
  transition: 0.25s; }
  .react-orderform .section-orderform .orderform .urgency__placeholder:focus {
    box-shadow: 0 10px 35px var(--main-color, #7ac8ed); }
  @media (max-width: 767px) {
    .react-orderform .section-orderform .orderform .urgency__placeholder {
      font-size: 24px; } }

.react-orderform .section-orderform .orderform .urgency__decrement, .react-orderform .section-orderform .orderform .urgency__increment {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 52px;
  width: 52px;
  border: none;
  background-color: transparent;
  cursor: pointer; }
  .react-orderform .section-orderform .orderform .urgency__decrement svg, .react-orderform .section-orderform .orderform .urgency__increment svg {
    transition: 0.25s;
    fill: #3b454b; }
  .react-orderform .section-orderform .orderform .urgency__decrement:hover svg, .react-orderform .section-orderform .orderform .urgency__increment:hover svg {
    fill: var(--main-color, #7ac8ed); }

.react-orderform .section-orderform .orderform .urgency__form-date {
  display: flex;
  align-items: center;
  align-self: center;
  margin: 12px 0 0 15px;
  transition: 0.25s;
  color: #9bacb6; }
  .react-orderform .section-orderform .orderform .urgency__form-date svg {
    width: 16px;
    height: 16px;
    margin: 0 8px 3px 0;
    fill: #9bacb6; }
  @media (max-width: 767px) {
    .react-orderform .section-orderform .orderform .urgency__form-date {
      margin: -15px 0 15px 0; } }

.react-orderform .section-orderform .orderform .feature__row {
  display: flex;
  margin: 5px 0 20px; }
  @media (max-width: 1199px) {
    .react-orderform .section-orderform .orderform .feature__row {
      flex-wrap: wrap;
      justify-content: center; } }

.react-orderform .section-orderform .orderform .feature__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 282px;
  border-radius: 8px;
  background-color: var(--grey-color, #f7f9fa); }
  @media (max-width: 1199px) {
    .react-orderform .section-orderform .orderform .feature__wrapper {
      max-width: 50%;
      flex: 45%; } }

@media (min-width: 768px) and (max-width: 991px) {
  .react-orderform .section-orderform .orderform .feature__wrapper {
    max-width: 340px; } }
  @media (max-width: 543px) {
    .react-orderform .section-orderform .orderform .feature__wrapper {
      flex: 100%;
      max-width: 90%; } }
  .react-orderform .section-orderform .orderform .feature__wrapper:not(.preferredwriter) .feature__footer {
    display: flex;
    justify-content: center;
    align-items: center; }
  @media (max-width: 1199px) {
    .react-orderform .section-orderform .orderform .feature__wrapper.preferredwriter {
      order: 1;
      margin-top: 15px;
      margin-left: 0; } }
  .react-orderform .section-orderform .orderform .feature__wrapper.preferredwriter .select__placeholder {
    border: none;
    font-size: 18px;
    height: 46px;
    color: #9dadb7; }
    .react-orderform .section-orderform .orderform .feature__wrapper.preferredwriter .select__placeholder:hover {
      background-color: transparent;
      box-shadow: none;
      color: var(--main-color, #7ac8ed); }
      .react-orderform .section-orderform .orderform .feature__wrapper.preferredwriter .select__placeholder:hover .select__arrow {
        fill: var(--main-color, #7ac8ed); }
  .react-orderform .section-orderform .orderform .feature__wrapper:hover .feature__title {
    color: var(--main-color, #7ac8ed); }
  .react-orderform .section-orderform .orderform .feature__wrapper.on:hover .feature__title {
    color: #3b454b; }
  .react-orderform .section-orderform .orderform .feature__wrapper.disabled {
    opacity: 0.5;
    pointer-events: none; }

.react-orderform .section-orderform .orderform .feature__header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 17px 10px 12px;
  border-bottom: 4px solid #fff; }

.react-orderform .section-orderform .orderform .feature__price-tag {
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: 14px;
  color: var(--main-color, #7ac8ed);
  font-weight: 500;
  opacity: 0;
  transition: 0.25s; }
  .react-orderform .section-orderform .orderform .feature__price-tag.on {
    opacity: 1; }

.react-orderform .section-orderform .orderform .feature__check {
  position: absolute;
  right: 10px;
  top: 10px;
  fill: var(--grey-color, #f7f9fa);
  width: 18px;
  height: 16px;
  transition: 0.25s; }
  .react-orderform .section-orderform .orderform .feature__check.on {
    fill: var(--main-color, #7ac8ed); }

.react-orderform .section-orderform .orderform .feature__icon {
  width: 61px;
  height: 46px;
  margin-bottom: 10px; }

.react-orderform .section-orderform .orderform .feature__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  border-bottom: 2px dashed #9bacb6;
  transition: 0.25s;
  cursor: default; }

.react-orderform .section-orderform .orderform .feature__footer {
  min-height: 54px;
  padding: 7px;
  flex-grow: 1; }

.react-orderform .section-orderform .orderform .feature__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 85%;
  height: 46px;
  border-radius: 22px;
  background-color: var(--main-color, #7ac8ed);
  border: none;
  outline: none;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  transition: 0.25s; }
  .react-orderform .section-orderform .orderform .feature__btn:hover {
    box-shadow: 0 10px 35px var(--main-color, #7ac8ed); }
  .react-orderform .section-orderform .orderform .feature__btn.on {
    background-color: #ffffff;
    color: #9bacb6;
    font-size: 17px; }
    .react-orderform .section-orderform .orderform .feature__btn.on:hover {
      color: var(--main-color, #7ac8ed);
      box-shadow: none; }

.react-orderform .section-orderform .orderform .feature__another-writer {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 170px; }
  .react-orderform .section-orderform .orderform .feature__another-writer .another-text {
    border-bottom: 2px dashed #9bacb6;
    font-size: 14px;
    transition: 0.25s; }
    .react-orderform .section-orderform .orderform .feature__another-writer .another-text::before {
      bottom: 35px; }
    .react-orderform .section-orderform .orderform .feature__another-writer .another-text::after {
      bottom: 17px; }
  .react-orderform .section-orderform .orderform .feature__another-writer .another-label {
    padding-left: 0;
    transition: 0.25s; }
    .react-orderform .section-orderform .orderform .feature__another-writer .another-label svg {
      display: inline-block;
      margin: 0 7px 0 0;
      transition: 0.25s;
      opacity: 0; }
    .react-orderform .section-orderform .orderform .feature__another-writer .another-label::before {
      width: 15px;
      height: 15px;
      top: 4px;
      border-color: #9bacb6; }
  .react-orderform .section-orderform .orderform .feature__another-writer .another-input:checked + .another-label {
    color: var(--main-color, #7ac8ed); }
    .react-orderform .section-orderform .orderform .feature__another-writer .another-input:checked + .another-label::before {
      transform: initial;
      opacity: 0;
      left: 0; }
    .react-orderform .section-orderform .orderform .feature__another-writer .another-input:checked + .another-label svg {
      fill: var(--main-color, #7ac8ed);
      opacity: 1; }

.react-orderform .section-orderform .orderform .feature__wrapper + .feature__wrapper {
  margin-left: 15px; }
  @media (max-width: 1199px) {
    .react-orderform .section-orderform .orderform .feature__wrapper + .feature__wrapper.preferredwriter {
      margin-left: 0; } }
  @media (max-width: 543px) {
    .react-orderform .section-orderform .orderform .feature__wrapper + .feature__wrapper {
      margin-left: 0;
      margin-top: 15px; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .react-orderform .section-orderform .orderform.resume .counter__group:nth-child(2) {
    flex: 1 1 auto;
    align-items: flex-end; } }

@media (max-width: 1199px) {
  .react-orderform .section-orderform .orderform.resume .counter__item {
    width: 255px; } }

@media (max-width: 767px) {
  .react-orderform .section-orderform .orderform.resume .counter__item {
    width: 100%; } }

.react-orderform .section-orderform .orderform.resume .select__row .select__group:first-child {
  margin-right: 0; }

.react-orderform .section-orderform .orderform__fill-in {
  display: inline-block;
  text-align: center;
  margin-bottom: 12px;
  max-width: 255px;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  color: #9bacb6;
  min-height: 60px;
  border-radius: 8px;
  border: 4px solid #d76c6d;
  background-color: #ffffff;
  padding: 0.5rem 2.7rem; }
  .react-orderform .section-orderform .orderform__fill-in span.asterisk {
    color: #d76c6d; }

@media (max-width: 991px) {
  .react-orderform .section-orderform .orderform__fillbtn-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; } }

.react-orderform .section-orderform .orderform__next-btn {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  width: 100%;
  border: 4px solid #59d053;
  outline: none;
  background-color: #59d053;
  box-shadow: 0 5px 25px 0 #59d053;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  min-height: 60px;
  margin-bottom: 12px;
  transition: 0.25s; }
  @media (max-width: 991px) {
    .react-orderform .section-orderform .orderform__next-btn {
      max-width: 300px;
      margin-left: auto;
      margin-right: auto; } }
  .react-orderform .section-orderform .orderform__next-btn:hover {
    box-shadow: 0 15px 25px #59d053; }
  .react-orderform .section-orderform .orderform__next-btn.logged {
    background: transparent;
    border: 4px solid var(--grey-color, #f7f9fa);
    color: #59d053;
    box-shadow: none; }
    .react-orderform .section-orderform .orderform__next-btn.logged:hover {
      background-color: #59d053;
      border: 4px solid #59d053;
      color: #fff; }
  .react-orderform .section-orderform .orderform__next-btn.disabled {
    pointer-events: none; }

.react-orderform .section-orderform .orderform__checkout-wrapper .pills__btn {
  max-width: 49%; }
  @media (max-width: 767px) {
    .react-orderform .section-orderform .orderform__checkout-wrapper .pills__btn {
      max-width: unset; } }

.react-orderform .section-orderform .orderform__express-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  margin: 25px 0 12px;
  width: 100%;
  height: 60px;
  border: 4px solid var(--grey-color, #f7f9fa);
  background-color: transparent;
  color: #fb6738;
  font-size: 18px;
  font-weight: 500;
  transition: 0.25s; }
  @media (max-width: 991px) {
    .react-orderform .section-orderform .orderform__express-btn {
      max-width: 300px;
      margin-left: auto;
      margin-right: auto; } }
  .react-orderform .section-orderform .orderform__express-btn:hover {
    box-shadow: 0 10px 35px #fb6738;
    background-color: #fb6738;
    border: none;
    color: #fff; }
    .react-orderform .section-orderform .orderform__express-btn:hover svg {
      fill: #fff; }
  .react-orderform .section-orderform .orderform__express-btn.logged {
    box-shadow: none;
    background-color: #fb6738;
    border: none;
    color: #fff; }
    .react-orderform .section-orderform .orderform__express-btn.logged svg {
      fill: #fff; }
    .react-orderform .section-orderform .orderform__express-btn.logged:hover {
      box-shadow: 0 10px 35px #fb6738; }
  .react-orderform .section-orderform .orderform__express-btn svg {
    width: 20px;
    height: 20px;
    fill: #fb6738;
    margin-right: 7px;
    transition: 0.25s; }

.react-orderform .section-orderform .orderform__badges {
  display: flex;
  justify-content: center; }
  .react-orderform .section-orderform .orderform__badges img {
    width: 43px;
    height: 29px;
    margin: 3px;
    border-radius: 0; }

.react-orderform .section-orderform .orderform__label-text:hover + .orderform__tooltip {
  opacity: 1; }

.react-orderform .section-orderform .navbar__list {
  display: flex;
  justify-content: center;
  margin-bottom: 0; }

.react-orderform .section-orderform .navbar__item {
  text-align: center;
  width: 120px; }
  .react-orderform .section-orderform .navbar__item span {
    display: block; }
  .react-orderform .section-orderform .navbar__item:not(:first-child) .navbar__link::after {
    content: "";
    position: absolute;
    display: block;
    width: 115px;
    height: 2px;
    background-color: #e1e6e8;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    z-index: -1; }

.react-orderform .section-orderform .navbar__link {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  color: #fff;
  margin: 0 auto 10px; }
  .react-orderform .section-orderform .navbar__link::before {
    content: '';
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    width: 16px;
    height: 16px;
    background-color: #e1e6e8;
    border-radius: 50%;
    transition: 0.25s; }
  .react-orderform .section-orderform .navbar__link:hover::before {
    background-color: var(--main-color, #7ac8ed); }
  .react-orderform .section-orderform .navbar__link.visited::before {
    background-color: var(--main-color, #7ac8ed); }
  .react-orderform .section-orderform .navbar__link.is-link-active {
    pointer-events: auto;
    opacity: 1 !important; }
  .react-orderform .section-orderform .navbar__link.active {
    font-size: 16px; }
    .react-orderform .section-orderform .navbar__link.active::before {
      content: attr(data-link-number);
      background-color: var(--main-color, #7ac8ed);
      width: 24px;
      height: 24px; }

.react-orderform .section-orderform .navbar__info-text {
  font-size: 13px;
  color: #3b454b;
  font-weight: 700;
  line-height: 16px;
  min-height: 35px; }

.react-orderform .orderform-tooltip {
  position: relative; }
  .react-orderform .orderform-tooltip::before, .react-orderform .orderform-tooltip::after {
    position: absolute;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: 0.25s;
    pointer-events: none;
    font-weight: 400; }
  .react-orderform .orderform-tooltip::before {
    content: attr(data-tooltip);
    width: 270px;
    font-size: 14px;
    border-radius: 5px;
    text-align: center;
    background-color: rgba(59, 69, 75, 0.85);
    color: #ffffff;
    line-height: 16px;
    padding: 7px 20px 5px;
    bottom: 45px; }
  .react-orderform .orderform-tooltip::after {
    content: "";
    border: 9px solid rgba(59, 69, 75, 0.85);
    border-left-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    bottom: 27px; }
  .react-orderform .orderform-tooltip:hover::before, .react-orderform .orderform-tooltip:hover::after {
    opacity: 1;
    z-index: 10; }

.lds-spinner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 300px; }

.lds-spinner {
  color: official;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px; }
  .lds-spinner div {
    transform-origin: 40px 40px;
    animation: lds-spinner 1.2s linear infinite; }
  .lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 6px;
    height: 18px;
    border-radius: 20%;
    background: var(--main-color, #cacdce);
    opacity: 0.4; }
  .lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s; }
  .lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s; }
  .lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s; }
  .lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s; }
  .lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s; }
  .lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s; }
  .lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s; }
  .lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s; }
  .lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s; }
  .lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s; }
  .lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s; }
  .lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s; }

@keyframes lds-spinner {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.is-loyalty div.page-wrapper {
  overflow: initial; }

.is-loyalty .breadcrumbs-nav {
  display: none; }

.is-loyalty .custom-select__group {
  font-size: 14px;
  position: relative;
  width: 170px;
  color: #9bacb6;
  font-weight: 600; }

.is-loyalty .custom-select__output {
  cursor: pointer; }
  .is-loyalty .custom-select__output::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNCIgaGVpZ2h0PSI4IiB2aWV3Qm94PSIwIDAgMTQgOCI+PGc+PGc+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjOWJhY2I2IiBzdHJva2UtbWl0ZXJsaW1pdD0iNTAiIHN0cm9rZS13aWR0aD0iMiIgZD0iTS45OTkgMXYwbDYgNXYwbDYtNXYwIi8+PC9nPjwvZz48L3N2Zz4=) no-repeat center;
    margin-left: 10px;
    transition: 0.25s; }
  .is-loyalty .custom-select__output.is-opened::after {
    transform: rotate(180deg); }
  .is-loyalty .custom-select__output.disabled {
    opacity: 0.5;
    pointer-events: none; }

.is-loyalty .custom-select__dropdown {
  position: absolute;
  display: none;
  left: 0;
  top: 22px;
  background-color: #fff;
  box-shadow: 0 10px 35px rgba(29, 42, 50, 0.2);
  border-radius: 3px;
  z-index: 10; }
  .is-loyalty .custom-select__dropdown.is-opened {
    display: block; }

.is-loyalty .custom-select__option {
  padding: 0.2rem 1rem;
  cursor: pointer;
  transition: 0.25s; }
  .is-loyalty .custom-select__option.is-highlighted {
    color: #7f92f3; }
  .is-loyalty .custom-select__option:hover {
    color: #7f92f3; }

.is-loyalty [data-tooltip] {
  position: relative; }
  .is-loyalty [data-tooltip]::before {
    content: attr(data-tooltip);
    left: 50%;
    transform: translate(-50%, -100%);
    padding: 5px;
    border-radius: 5px;
    color: #fff;
    background-color: rgba(59, 69, 75, 0.85);
    width: 230px;
    line-height: 20px;
    font-size: 14px; }
  .is-loyalty [data-tooltip]::after {
    content: "";
    border-style: solid;
    border-color: transparent;
    border-width: 7px;
    border-top-color: rgba(59, 69, 75, 0.85);
    left: 50%;
    transform: translateX(-50%); }
  .is-loyalty [data-tooltip]::before, .is-loyalty [data-tooltip]::after {
    position: absolute;
    display: block;
    top: -20px;
    cursor: default;
    opacity: 0;
    transition: 0.25s;
    pointer-events: none;
    text-align: center;
    font-weight: 400;
    line-height: 16px;
    pointer-events: none; }
  .is-loyalty [data-tooltip]:hover::before, .is-loyalty [data-tooltip]:hover::after {
    opacity: 1; }

.is-loyalty .truncate-wrapper {
  display: flex;
  align-items: center;
  margin-right: 0 !important; }

.is-loyalty .truncate {
  max-width: 360px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }
  @media (max-width: 767px) {
    .is-loyalty .truncate {
      max-width: 215px; } }

.is-loyalty .loyalty__tab-list {
  display: flex;
  margin-bottom: 30px; }

.is-loyalty .loyalty__tab-container {
  min-height: 440px; }

.is-loyalty .loyalty__tab-btn {
  padding: 5px 12px;
  border: 2px solid transparent;
  border-bottom-color: #eaf0f4;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer; }
  @media (max-width: 543px) {
    .is-loyalty .loyalty__tab-btn {
      padding: 5px; } }
  .is-loyalty .loyalty__tab-btn.active {
    border-color: #eaf0f4;
    border-bottom-color: transparent; }
    .is-loyalty .loyalty__tab-btn.active .fa {
      color: #7ac8ed; }
  .is-loyalty .loyalty__tab-btn .fa {
    margin-right: 8px;
    color: #a8b6bf; }
    @media (max-width: 543px) {
      .is-loyalty .loyalty__tab-btn .fa {
        margin-right: 5px; } }

.is-loyalty .discount__title {
  color: #ee5ca1;
  font-weight: 700; }
  @media (max-width: 543px) {
    .is-loyalty .discount__title {
      font-size: 20px; } }
  .is-loyalty .discount__title span:first-child {
    color: #3b454b; }
  .is-loyalty .discount__title .label {
    text-transform: uppercase; }
  @media (max-width: 543px) {
    .is-loyalty .discount__title span:last-child {
      white-space: nowrap; } }

.is-loyalty .discount__level-wrapper {
  margin-bottom: 30px; }

.is-loyalty .discount__bar-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 18px;
  width: 510px;
  border-radius: 9px;
  background-color: #eaf0f4;
  text-align: center;
  margin-bottom: 5px; }
  @media (max-width: 543px) {
    .is-loyalty .discount__bar-container {
      font-size: 14px;
      height: 15px;
      width: 290px; } }

.is-loyalty .discount__bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 9px;
  background-color: #78cd62;
  overflow: hidden; }

.is-loyalty .discount__points {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 510px;
  color: #fff;
  height: 100%; }
  @media (max-width: 543px) {
    .is-loyalty .discount__points {
      width: 290px; } }

.is-loyalty .discount__goal {
  display: inline-block;
  width: 510px;
  text-align: right;
  color: #9bacb6;
  font-size: 15px; }
  @media (max-width: 543px) {
    .is-loyalty .discount__goal {
      font-size: 13px;
      width: 290px; } }

.is-loyalty .discount__token-wrapper {
  display: flex;
  background-color: #eaf0f4;
  padding: 12px 20px 1px 23px;
  margin-bottom: 70px; }
  @media (max-width: 543px) {
    .is-loyalty .discount__token-wrapper {
      margin-bottom: 40px; } }
  .is-loyalty .discount__token-wrapper p {
    margin-bottom: 10px; }

.is-loyalty .discount__token-left {
  width: 40px;
  height: 40px;
  margin-right: 15px; }
  @media (max-width: 543px) {
    .is-loyalty .discount__token-left {
      display: none; } }

.is-loyalty .discount__token-title {
  color: #3b454b;
  font-weight: 700;
  font-size: 18px; }
  @media (max-width: 543px) {
    .is-loyalty .discount__token-title {
      font-size: 17px;
      line-height: 20px; } }

.is-loyalty .discount__create {
  border: none;
  box-shadow: none;
  padding: 0;
  offset: none;
  background-color: transparent;
  font-size: 20px;
  color: #7f92f3;
  font-weight: 600; }
  @media (max-width: 543px) {
    .is-loyalty .discount__create {
      font-size: 17px;
      margin-bottom: 10px; } }

.is-loyalty .discount__generate-box {
  margin-bottom: 15px;
  display: flex;
  align-items: center; }
  @media (max-width: 767px) {
    .is-loyalty .discount__generate-box {
      flex-wrap: wrap; } }
  @media (max-width: 543px) {
    .is-loyalty .discount__generate-box {
      justify-content: center;
      margin-bottom: 0; } }

.is-loyalty .discount__ribbon-wrapper h3 {
  font-size: 24px;
  font-weight: 700;
  color: #3b454b; }
  @media (max-width: 543px) {
    .is-loyalty .discount__ribbon-wrapper h3 {
      font-size: 20px; } }

.is-loyalty .discount__ribbon {
  position: relative;
  max-width: 540px; }

.is-loyalty .discount__ribbon-bar {
  position: absolute;
  width: 100%;
  height: 8px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #eaf0f4;
  border-radius: 4px;
  z-index: -1;
  overflow: hidden; }
  @media (max-width: 543px) {
    .is-loyalty .discount__ribbon-bar {
      width: 8px;
      height: 100%;
      left: 18px; } }

.is-loyalty .discount__ribbon-inner {
  height: 8px;
  background-color: #78cd62; }

.is-loyalty .discount__badge-list {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media (max-width: 543px) {
    .is-loyalty .discount__badge-list {
      flex-direction: column;
      align-items: flex-start; } }

.is-loyalty .discount__badge {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 44px;
  width: 44px; }
  @media (max-width: 543px) {
    .is-loyalty .discount__badge:not(:last-child) {
      margin-bottom: 10px; } }
  .is-loyalty .discount__badge.active .discount__tag {
    width: 44px;
    height: 44px; }
    .is-loyalty .discount__badge.active .discount__tag span {
      opacity: 1; }
  .is-loyalty .discount__badge::after {
    content: attr(data-title);
    position: absolute;
    display: block;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
    font-size: 14px;
    color: #3b454b;
    font-weight: 700;
    white-space: nowrap; }
    @media (max-width: 543px) {
      .is-loyalty .discount__badge::after {
        bottom: initial;
        left: 70px;
        top: 50%;
        transform: translateY(-50%); } }
  .is-loyalty .discount__badge:nth-child(1) .discount__tag {
    background-color: #fff;
    box-shadow: inset 0 0 0 5px #eaf0f4; }
    .is-loyalty .discount__badge:nth-child(1) .discount__tag span {
      color: #3b454b; }
  .is-loyalty .discount__badge:nth-child(2) .discount__tag {
    background-color: #7f92f3; }
  .is-loyalty .discount__badge:nth-child(3) .discount__tag {
    background-color: #c773fc; }
  .is-loyalty .discount__badge:nth-child(4) .discount__tag {
    background-color: #ee5ca1; }
  .is-loyalty .discount__badge:nth-child(5) .discount__tag {
    background-color: #17a717; }
  .is-loyalty .discount__badge:nth-child(6) .discount__tag {
    background-color: lightsalmon; }
  .is-loyalty .discount__badge:nth-child(7) .discount__tag {
    background-color: lightseagreen; }
  .is-loyalty .discount__badge:last-child .discount__tag {
    background-color: #f5ae24; }

.is-loyalty .discount__tag {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  transition: 0.25s;
  cursor: default; }
  .is-loyalty .discount__tag span {
    opacity: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    transition: 0.25s; }
    @media (max-width: 543px) {
      .is-loyalty .discount__tag span {
        font-size: 15px; } }
  .is-loyalty .discount__tag:hover {
    width: 44px;
    height: 44px; }
    .is-loyalty .discount__tag:hover span {
      opacity: 1; }

.is-loyalty .token__regenerate, .is-loyalty .token__copy, .is-loyalty .referral__link-shared .shared__link .shared__copy {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background-color: transparent;
  border: none;
  box-shadow: none;
  offset: none; }

@media (max-width: 543px) {
  .is-loyalty .token__regenerate, .is-loyalty .token__copy, .is-loyalty .referral__link-shared .shared__link .shared__copy, .is-loyalty .token__order {
    margin-bottom: 15px; } }

.is-loyalty .token__regenerate {
  width: 32px;
  height: 36px; }
  .is-loyalty .token__regenerate svg {
    width: 16px;
    height: 16px; }

.is-loyalty .token__code {
  font-size: 18px;
  color: #7f92f3;
  margin: 0 13px 0 7px; }
  @media (max-width: 543px) {
    .is-loyalty .token__code {
      margin-bottom: 15px; } }

.is-loyalty .token__copy, .is-loyalty .referral__link-shared .shared__link .shared__copy {
  width: 35px;
  height: 35px;
  background-color: #78cd62;
  border-radius: 50%;
  margin-right: 15px;
  transition: 0.25s; }
  .is-loyalty .token__copy:hover, .is-loyalty .referral__link-shared .shared__link .shared__copy:hover {
    background-color: #8fd67d;
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
  .is-loyalty .token__copy svg, .is-loyalty .referral__link-shared .shared__link .shared__copy svg {
    width: 18px;
    height: 20px;
    fill: #fff; }

.is-loyalty .token__copy-label {
  color: #78cd62;
  margin-right: 15px; }

.is-loyalty .token__divider {
  width: 2px;
  height: 35px;
  background-color: #c6d5df;
  margin-right: 15px; }
  @media (max-width: 543px) {
    .is-loyalty .token__divider {
      display: none; } }

.is-loyalty .token__order {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0; }
  @media (max-width: 543px) {
    .is-loyalty .token__order {
      margin-bottom: 15px; } }
  .is-loyalty .token__order svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    margin-right: 10px; }

.is-loyalty .referral__ready-link {
  position: relative;
  display: inline-block;
  font-size: 25px;
  font-weight: 600;
  color: #9bacb6;
  margin-bottom: 25px; }
  @media (max-width: 543px) {
    .is-loyalty .referral__ready-link {
      font-size: 22px; } }
  .is-loyalty .referral__ready-link::after {
    content: "";
    position: absolute;
    display: block;
    width: 200px;
    border-bottom: 2px dashed rgba(155, 172, 182, 0.568);
    left: 0;
    bottom: 5px; }
  .is-loyalty .referral__ready-link span {
    color: #78cd62; }

.is-loyalty .referral__link-wrapper {
  display: flex;
  background-color: #eaf0f4;
  border-radius: 3px;
  padding: 20px 80px 22px 25px;
  margin-bottom: 25px; }
  @media (max-width: 991px) {
    .is-loyalty .referral__link-wrapper {
      padding: 20px 40px 22px 25px; } }
  @media (max-width: 767px) {
    .is-loyalty .referral__link-wrapper {
      padding: 20px 25px; } }
  @media (max-width: 543px) {
    .is-loyalty .referral__link-wrapper {
      padding: 20px 15px; } }

.is-loyalty .referral__link-left {
  padding-right: 13px; }
  @media (max-width: 543px) {
    .is-loyalty .referral__link-left {
      display: none; } }
  .is-loyalty .referral__link-left img {
    width: 42px;
    max-width: initial; }
    @media (max-width: 991px) {
      .is-loyalty .referral__link-left img {
        width: 32px; } }

.is-loyalty .referral__link-right p {
  margin: 0;
  line-height: 22px; }

.is-loyalty .referral__link-title {
  color: #3b454b;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px; }

.is-loyalty .referral__link-shared {
  display: flex;
  margin-bottom: 10px; }
  @media (max-width: 991px) {
    .is-loyalty .referral__link-shared {
      flex-wrap: wrap; } }
  .is-loyalty .referral__link-shared .shared__link {
    display: flex;
    align-items: center;
    border-right: 2px solid #c6d5df; }
    @media (max-width: 543px) {
      .is-loyalty .referral__link-shared .shared__link {
        border: none; } }
    .is-loyalty .referral__link-shared .shared__link span {
      font-size: 19px;
      font-weight: 700;
      color: #7f92f3;
      margin-right: 10px; }
      @media (max-width: 543px) {
        .is-loyalty .referral__link-shared .shared__link span {
          font-size: 17px; } }
    .is-loyalty .referral__link-shared .shared__link .shared__copy {
      margin-right: 12px;
      background-color: #7f92f3; }
      @media (max-width: 767px) {
        .is-loyalty .referral__link-shared .shared__link .shared__copy {
          margin-bottom: 0; } }
      @media (max-width: 543px) {
        .is-loyalty .referral__link-shared .shared__link .shared__copy {
          margin-right: 0; } }
      .is-loyalty .referral__link-shared .shared__link .shared__copy:hover {
        background-color: #a0aef6; }
  .is-loyalty .referral__link-shared .shared__socials {
    display: flex;
    align-items: center;
    padding-left: 12px; }
    .is-loyalty .referral__link-shared .shared__socials a {
      width: 35px;
      height: 35px;
      border-radius: 50%;
      transition: 0.25s; }
      .is-loyalty .referral__link-shared .shared__socials a:not(:last-child) {
        margin-right: 12px; }
      .is-loyalty .referral__link-shared .shared__socials a:hover {
        box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }
        .is-loyalty .referral__link-shared .shared__socials a:hover svg {
          fill: #7f92f3; }
      .is-loyalty .referral__link-shared .shared__socials a svg {
        transition: 0.25s;
        fill: #9bacb6; }

.is-loyalty .referral__filter-wrapper {
  display: flex;
  margin-bottom: 22px;
  font-size: 14px; }
  .is-loyalty .referral__filter-wrapper span {
    margin-right: 8px;
    color: #9bacb6; }

.is-loyalty .referral__list {
  display: grid;
  grid-gap: 25px 20px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
  .is-loyalty .referral__list li {
    background-color: #f7f9fa;
    box-shadow: 0 5px 15px rgba(19, 22, 23, 0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: 0.25s; }
    .is-loyalty .referral__list li:hover {
      background-color: #f7f9fa;
      box-shadow: 0 15px 35px rgba(19, 22, 23, 0.2);
      transform: translateY(-10px); }
      .is-loyalty .referral__list li:hover .referral__discount-header {
        filter: brightness(115%); }

.is-loyalty .referral__discount-card {
  display: flex;
  flex-direction: column;
  min-height: 150px;
  height: 100%; }
  .is-loyalty .referral__discount-card.in-progress .referral__discount-header {
    background-color: #7ac8ed; }
  .is-loyalty .referral__discount-card.ready .referral__discount-header {
    background-color: #78cd62; }
  .is-loyalty .referral__discount-card.used .referral__discount-header {
    background-color: #9bacb6; }

.is-loyalty .referral__discount-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 8px 8px 0 0;
  font-size: 16px;
  color: #ffffff;
  min-height: 43px;
  transition: 0.25s; }

.is-loyalty .referral__discount-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  padding: 15px 15px; }

.is-loyalty .referral__generated-wrapper, .is-loyalty .referral__used-wrapper {
  display: flex;
  align-items: center;
  margin: 10px 0 0; }

@media (max-width: 1199px) {
  .is-loyalty .referral__generated-wrapper {
    flex-wrap: wrap;
    justify-content: center; } }

@media (max-width: 543px) {
  .is-loyalty .referral__generated-wrapper {
    margin-bottom: -15px; } }

.is-loyalty .referral__used-wrapper {
  margin-bottom: 10px; }

.is-loyalty .referral__discount-copy {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  box-shadow: none;
  background-color: transparent; }
  .is-loyalty .referral__discount-copy:hover svg {
    fill: #a2b1ff; }
  .is-loyalty .referral__discount-copy svg {
    width: 18px;
    height: 20px;
    fill: #7f92f3;
    transition: 0.25s; }

.is-loyalty .referral__discount-order {
  margin-left: 15px;
  background-color: #4bae4f;
  border-radius: 25px;
  padding: 0.2rem 0.7rem 0;
  color: #ffffff;
  transition: 0.25s; }

@media (min-width: 992px) and (max-width: 1199px) {
  .is-loyalty .referral__discount-order {
    margin-left: 0; } }
  @media (max-width: 543px) {
    .is-loyalty .referral__discount-order {
      margin-bottom: 15px; } }
  .is-loyalty .referral__discount-order:hover {
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); }

.is-loyalty .referral__code-box {
  display: inline-flex; }

@media (min-width: 992px) and (max-width: 1199px) {
  .is-loyalty .referral__code-box {
    justify-content: center;
    width: 100%;
    margin-bottom: 15px; } }
  @media (max-width: 543px) {
    .is-loyalty .referral__code-box {
      margin-bottom: 15px; } }

.is-loyalty .referral__discount-text {
  font-size: 16px;
  transition: 0.25s;
  text-align: center;
  line-height: 22px; }
  .is-loyalty .referral__discount-text a {
    color: #7f92f3; }
    .is-loyalty .referral__discount-text a:hover {
      color: #a2b1ff; }
  .is-loyalty .referral__discount-text.link {
    font-weight: 600;
    font-size: 18px;
    color: #7f92f3;
    padding: 0 5px; }
    .is-loyalty .referral__discount-text.link.discount {
      border: 2px dashed rgba(155, 172, 182, 0.6); }
      .is-loyalty .referral__discount-text.link.discount:hover {
        color: #a2b1ff; }
    .is-loyalty .referral__discount-text.link.used {
      border: 2px dashed rgba(155, 172, 182, 0.6);
      text-decoration: line-through;
      color: #9bacb6; }
  .is-loyalty .referral__discount-text.unavailable {
    color: #9bacb6; }
  .is-loyalty .referral__discount-text.code {
    display: flex;
    align-items: center;
    color: #9bacb6;
    margin-right: 5px; }

.is-loyalty .referral__discount-deadline {
  display: inline-block;
  text-align: center;
  color: #9bacb6;
  font-size: 14px;
  margin-top: 10px;
  line-height: 15px; }

/*
    Stages of development:
    - write scss;
    - convert to css (https://jsonformatter.org/scss-to-css);
    - transfer to a template with a banner;
    - minify css (https://www.cleancss.com/css-minify/);
    - comment on the entire contents of the file;
    */
.price-table {
  margin-bottom: 1.5rem; }
  .price-table th {
    color: #ffffff;
    box-shadow: inset 0 2px 0 -1px rgba(255, 255, 255, 0.1), inset 0 25px 0 -1px rgba(255, 255, 255, 0.02); }
  .price-table td,
  .price-table th {
    font-weight: 300;
    font-weight: 300; }
  .price-table ul.nav.nav-tabs {
    height: 50px;
    display: flex;
    align-items: flex-end; }

@media (min-width: 992px) and (max-width: 1199px) {
  .price-table ul.nav.nav-tabs {
    max-width: 97%; } }
    .price-table ul.nav.nav-tabs li {
      max-width: 255px;
      width: 100%;
      padding: 0;
      line-height: 1em; }
      @media (max-width: 991px) {
        .price-table ul.nav.nav-tabs li {
          max-width: 220px; } }
      @media (max-width: 767px) {
        .price-table ul.nav.nav-tabs li {
          max-width: 184px; } }
      .price-table ul.nav.nav-tabs li:nth-child(1) {
        z-index: 2; }
        .price-table ul.nav.nav-tabs li:nth-child(1) a.nav-link {
          background: #624aa6; }
      .price-table ul.nav.nav-tabs li:nth-child(2) {
        z-index: 1;
        margin-left: -20px; }
        .price-table ul.nav.nav-tabs li:nth-child(2) a.nav-link {
          background: #664dad; }
      .price-table ul.nav.nav-tabs li:nth-child(3) {
        margin-left: -20px; }
        .price-table ul.nav.nav-tabs li:nth-child(3) a.nav-link {
          background: #6b52b2; }
      .price-table ul.nav.nav-tabs li a.nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 44px;
        border-radius: 0 20px 0 0;
        border: 1px solid transparent;
        border-bottom: none;
        color: #ffffff;
        transition: height 0.15s ease;
        border-radius: 20px 20px 0 0 !important;
        box-shadow: 0 -1px 0 1px #fff, inset 0 -1px 1px 1px rgba(0, 0, 0, 0.01);
        text-transform: none; }
        .price-table ul.nav.nav-tabs li a.nav-link.active {
          box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.25), inset 0 -1px 0 0 rgba(0, 0, 0, 0.05), 0 -2px 0 1px white;
          border-color: rgba(0, 0, 0, 0.05);
          height: 50px;
          background: #624aa6;
          z-index: 3; }
        .price-table ul.nav.nav-tabs li a.nav-link span {
          text-transform: none;
          color: #ffffff; }
        @media (max-width: 767px) {
          .price-table ul.nav.nav-tabs li a.nav-link {
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            font-size: 12px;
            padding: 0 1.4rem; }
            .price-table ul.nav.nav-tabs li a.nav-link span {
              display: block;
              font-size: 12px;
              line-height: 1.1em; } }
  .price-table .tab-content {
    padding: 0;
    box-shadow: 0 7px 16px -5px rgba(0, 0, 0, 0.1);
    border-radius: 0 20px 0 0; }
    .price-table .tab-content table {
      margin-bottom: 0;
      box-shadow: none; }

table.table-price {
  font-size: 1.2rem;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  border-radius: 0 20px 0 0;
  /* Price link */ }
  table.table-price thead {
    background: #7159B5;
    color: #ffffff; }
    table.table-price thead th:last-child {
      border-top-right-radius: 20px; }
      @media (max-width: 767px) {
        table.table-price thead th:last-child {
          border-radius: unset; } }
    table.table-price thead td,
    table.table-price thead th {
      text-align: center;
      padding: 0.4rem 5px;
      font-size: 0.8rem;
      font-weight: bold;
      border-top: 0;
      height: 50px;
      vertical-align: middle; }
  table.table-price label[data-ls] {
    font-size: 1.3rem;
    margin: 0;
    font-weight: 900;
    display: block;
    white-space: nowrap; }
    table.table-price label[data-ls] .price-decimal {
      position: relative;
      top: -5px;
      left: 2px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      font-size: 0.9rem;
      color: rgba(0, 0, 0, 0.6); }
      body.is-category-resume table.table-price label[data-ls] .price-decimal {
        font-size: 0.8rem;
        font-weight: 300;
        color: rgba(0, 0, 0, 0.3); }
  table.table-price tr span.no-price {
    opacity: 0.5; }
  table.table-price tr:hover {
    background: rgba(113, 89, 181, 0.1); }
  table.table-price tr td,
  table.table-price tr label,
  table.table-price tr span {
    cursor: pointer; }
  table.table-price tr td {
    transition: all 0.15s ease-in-out; }
    table.table-price tr td:first-child {
      white-space: nowrap;
      max-width: 80px;
      overflow: hidden;
      text-overflow: ellipsis;
      font-size: 1rem;
      text-align: center; }
    table.table-price tr td a {
      transition: color 0.1s ease, transform 0.2s ease-in 0.05s; }
    table.table-price tr td:hover {
      transform: scale(0.9);
      background: #7159B5;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); }
      table.table-price tr td:hover .order-now {
        color: #ffffff; }
    html.safari table.table-price tr td:hover,
    html.mobile-safari table.table-price tr td:hover {
      transform: none; }
      html.safari table.table-price tr td:hover a,
      html.mobile-safari table.table-price tr td:hover a {
        transform: none; }
  table.table-price tr:hover td:first-child {
    background: #7159B5;
    color: #ffffff; }
  table.table-price a[data-currency],
  table.table-price label[data-currency] {
    color: #78cd62;
    text-align: center; }
    table.table-price a[data-currency]:before,
    table.table-price label[data-currency]:before {
      color: rgba(0, 0, 0, 0.25);
      padding: 0 2px;
      font-size: 1rem;
      font-weight: 400;
      font-family: sans-serif; }
    table.table-price a[data-currency][data-currency='usd']:before,
    table.table-price label[data-currency][data-currency='usd']:before {
      content: '\24'; }
    table.table-price a[data-currency][data-currency='eur']:before,
    table.table-price label[data-currency][data-currency='eur']:before {
      content: '\20AC'; }
    table.table-price a[data-currency][data-currency='gbp']:before,
    table.table-price label[data-currency][data-currency='gbp']:before {
      content: '\A3'; }
    table.table-price a[data-currency][data-currency='cad']:before,
    table.table-price label[data-currency][data-currency='cad']:before {
      content: '\24'; }
    table.table-price a[data-currency][data-currency='aud']:before,
    table.table-price label[data-currency][data-currency='aud']:before {
      content: '\20B3'; }
    table.table-price a[data-currency][data-currency='chf']:before,
    table.table-price label[data-currency][data-currency='chf']:before {
      content: '\20A3'; }
    table.table-price a[data-currency] > .price-decimal,
    table.table-price label[data-currency] > .price-decimal {
      font-weight: 300;
      fonta-family: sans-serif; }
  table.table-price .no-price {
    display: block;
    text-align: center; }

@media (max-width: 543px) {
  body.is-prices article#article {
    padding-left: 0;
    padding-right: 0; } }

/* Homepage calculator [inline orderform] */
body.is-home span.price-val {
  position: relative; }
  body.is-home span.price-val:before {
    content: '$';
    opacity: 0.65;
    padding: 0 2px; }
  body.is-home span.price-val > .price-decimal {
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
    font-weight: 100;
    top: -12px;
    left: 2px; }

/* Transactions */
body.is-transactions span.price-val > .price-decimal {
  color: rgba(0, 0, 0, 0.45);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05); }

/* Stylish parsed prices  */
span.parse-price.currency span.price-val span.price-decimal, .table-price span.parse-price.order-now span.price-val span.price-decimal {
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: silver;
  position: relative;
  top: -0.5rem;
  right: -0.2rem; }

.page__heading-wrapper {
  background-color: #6b52b2;
  color: #fff;
  padding: 7.5rem 0 3rem; }
  body.category-arts-humanities .page__heading-wrapper {
    background: #f9bb72; }
  body.category-social-sciences .page__heading-wrapper {
    background: #6cde8d; }
  body.category-sciences .page__heading-wrapper {
    background: #70a3fc; }
  body.category-information-technology .page__heading-wrapper {
    background: #9378df; }
  body.category-economics .page__heading-wrapper {
    background: #6bd1de; }
  body.category-law .page__heading-wrapper {
    background: #ef729c; }
  body.category-other .page__heading-wrapper {
    background: #a9da68; }
  @media (max-width: 991px) {
    .page__heading-wrapper {
      padding: 7rem 0 1.65rem; } }
  .page__heading-wrapper ul {
    margin: 0 0 1rem 1rem; }
    .page__heading-wrapper ul > .nav-item a {
      color: #fff; }
      .page__heading-wrapper ul > .nav-item a .fa-home {
        display: none; }
  .page__heading-wrapper span {
    position: relative; }
  @media (max-width: 543px) {
    .page__heading-wrapper .breadcrumbs-nav__list {
      white-space: nowrap;
      overflow-x: auto;
      padding-right: 1rem; } }
  .page__heading-wrapper .breadcrumbs-nav + .container {
    position: relative; }

.page__category-ico[src] {
  filter: invert(1) grayscale(1) brightness(2.5);
  display: inline-block;
  max-width: unset;
  position: relative;
  top: -4px;
  width: 44px;
  height: 44px; }

.page__heading {
  font-size: 44px;
  font-size: 3.14286rem;
  font-weight: bold;
  color: #ffffff;
  position: relative; }
  @media (max-width: 1199px) {
    .page__heading {
      font-size: 38px;
      font-size: 2.71429rem; } }
  @media (max-width: 991px) {
    .page__heading {
      font-size: 32px;
      font-size: 2.28571rem; } }
  @media (max-width: 767px) {
    .page__heading {
      font-size: 28px;
      font-size: 2rem; } }
  @media (max-width: 767px) {
    .page__heading {
      font-size: 22px;
      font-size: 1.57143rem; } }
  .page__heading span[data-count]:after {
    content: attr(data-count);
    color: rgba(255, 255, 255, 0.7);
    border: none;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    position: absolute;
    top: 0;
    right: -0.5rem;
    min-width: 1.4rem;
    display: inline-block;
    transform: translateX(100%);
    padding: 0.2rem 0.5rem;
    border-radius: 35px; }

.page__description-wrapper {
  position: relative; }

.page__description-image {
  position: relative;
  width: 220px;
  float: left;
  margin-right: 2rem;
  transform: translateY(-30%);
  shape-outside: circle(50% at 51% 15%); }
  .page__description-image > img {
    max-width: 100%; }
  @media (max-width: 1199px) {
    .page__description-image {
      width: 180px; } }
  @media (max-width: 991px) {
    .page__description-image {
      display: none; } }

.page__description {
  font-size: 15px;
  font-size: 1.07143rem;
  font-weight: 400;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  hyphens: auto;
  text-align: justify; }
  @media (max-width: 991px) {
    .page__description {
      font-size: 14px;
      font-size: 1rem;
      font-weight: 400; } }

.samples main.main-content {
  padding: 0; }
  @media (min-width: 992px) {
    .samples main.main-content.with-sidebar > .sidebar {
      max-width: 360px; } }

.samples__controls {
  text-align: center; }

.samples .section.hot-trending-topics {
  margin-bottom: -3.5rem; }

.samples .samples-grid {
  margin: 0 auto;
  max-width: 100%;
  margin-top: 1rem;
  opacity: 0; }
  .samples .samples-grid.is-loaded {
    animation: fadeInUp 0.35s ease both; }

.samples .sample-card {
  border-radius: 30px;
  transition: box-shadow 0.15s ease-in-out;
  padding-bottom: 1rem;
  position: relative;
  min-height: 100px;
  margin-bottom: 1.5rem;
  background: #fff;
  float: left;
  width: calc(33% - 20px); }
  @media (max-width: 991px) {
    .samples .sample-card {
      width: calc(50% - 20px); } }
  @media (max-width: 543px) {
    .samples .sample-card {
      width: 100%; } }
  .samples .sample-card.hide {
    left: -9999 !important;
    top: -9999 !important; }
  .samples .sample-card:hover {
    box-shadow: 0 10px 30px #7159B5; }
    .samples .sample-card:hover .sample-card__header {
      background-color: #7159B5 !important;
      box-shadow: inset 0 30px 30px -15px rgba(255, 255, 255, 0.4); }
      .samples .sample-card:hover .sample-card__header a {
        font-size: 16px;
        font-size: 1.14286rem;
        font-weight: 600;
        color: #fff; }
    .samples .sample-card:hover .sample-card__heading a {
      color: #7159B5; }
    .samples .sample-card:hover .sample-card__edit {
      transform: scale(1);
      opacity: 1; }
  .samples .sample-card.active {
    animation: card-show 0.3s ease-in-out; }
  .samples .sample-card span.hilite {
    background: #ffec49;
    color: #222; }
  .samples .sample-card__thumbnail {
    border-radius: 30px 30px 0 0;
    opacity: 1;
    width: 100%;
    height: auto !important;
    object-fit: cover; }
    @media (max-width: 767px) {
      .samples .sample-card__thumbnail {
        position: relative; } }
  .samples .sample-card__header {
    text-align: center;
    padding: 0.7rem 1.75rem;
    background-color: #7159B5;
    transition: all 0.2s ease-in-out;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 30px 30px 0 0; }
    .samples .sample-card__header > a:first-child {
      transition: all 0.2s ease;
      font-size: 16px;
      font-size: 1.14286rem;
      font-weight: 600;
      color: #3b454b; }
    .samples .sample-card__header.category-arts-humanities {
      background: #f9bb72; }
    .samples .sample-card__header.category-social-sciences {
      background: #6cde8d; }
    .samples .sample-card__header.category-sciences {
      background: #70a3fc; }
    .samples .sample-card__header.category-information-technology {
      background: #9378df; }
    .samples .sample-card__header.category-economics {
      background: #6bd1de; }
    .samples .sample-card__header.category-law {
      background: #ef729c; }
    .samples .sample-card__header.category-other {
      background: #a9da68; }
  .samples .sample-card__heading {
    font-size: 17px;
    font-size: 1.21429rem;
    font-weight: 700;
    color: #3b454b;
    transition: all 0.2s ease;
    display: block;
    padding: 0.85rem 0 1rem; }
    .samples .sample-card__heading > a:first-child {
      font-size: 16px;
      font-size: 1.14286rem;
      font-weight: 600;
      color: #3b454b; }
  .samples .sample-card__ico {
    filter: grayscale(1) brightness(2.1);
    animation: fadeIn 1s ease;
    width: 40px; }
  .samples .sample-card__edit {
    font-size: 0.8rem !important;
    position: absolute;
    right: 0.6rem;
    top: 0.6rem;
    transition: all 0.2s ease;
    color: #fff;
    border-radius: 50%;
    padding: 0.3rem;
    z-index: 100;
    display: block;
    opacity: 0; }
  .samples .sample-card__content {
    font-size: 13px;
    font-size: 0.92857rem;
    font-weight: 400;
    color: #3b454b;
    padding: 0.85rem 1.75rem 0.5rem;
    overflow: hidden;
    word-wrap: break-word; }
  .samples .sample-card__details {
    font-size: 15px;
    font-size: 1.07143rem;
    margin: 0.5rem 0;
    display: flex;
    flex-wrap: wrap; }
    .samples .sample-card__details > div {
      flex: 1 0 50%; }
      .samples .sample-card__details > div strong {
        color: #7159B5; }
  .samples .sample-card.card-without-description .sample-card__header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px; }

.samples-error {
  background: #838dfd; }
  .samples-error .error-page .section__wrapper {
    display: flex;
    align-items: center;
    color: #fff; }
    .samples-error .error-page .section__wrapper em {
      color: #ffcb16; }
  .samples-error .error-page .section__heading {
    font-size: 44px;
    font-size: 3.14286rem;
    font-weight: bold; }
  .samples-error .error-page .section__subheading {
    margin: 2.5rem 0;
    font-size: 25px;
    font-size: 1.78571rem;
    font-weight: 600;
    line-height: 1; }
  .samples-error .error-page .section__content p {
    font-size: 18px;
    font-size: 1.28571rem;
    font-weight: 600;
    line-height: 1; }
  .samples-error .error-page .section__image {
    max-width: 320px;
    margin: -2rem auto;
    animation: balloon-fly 4s ease infinite; }
  .samples-error .error-page .section__footer {
    margin-top: 2rem; }
    .samples-error .error-page .section__footer .btn, .samples-error .error-page .section__footer .wizard > .actions a, .wizard > .actions .samples-error .error-page .section__footer a {
      box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.2);
      font-size: 18px;
      font-size: 1.28571rem;
      font-weight: 700;
      line-height: 1;
      padding: 1rem 2rem;
      margin: 0;
      color: rgba(255, 255, 255, 0.75); }

.samples .cards-filter {
  position: absolute;
  top: -0.5rem;
  left: 0;
  z-index: 0;
  transform-origin: 0 30px;
  box-shadow: inset 0 0 0 4px white;
  border-radius: 65px;
  width: 67px;
  transition: width 0.45s ease-in-out, transform 0.5s ease-in-out, box-shadow 0.3s ease; }
  .samples .cards-filter:hover {
    box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.6); }
  @media (max-width: 991px) {
    .samples .cards-filter {
      top: -1.45rem;
      left: 15px;
      transform: scale(0.8); } }
  .samples .cards-filter + h1 {
    transition: all 0.3s ease 0.3s, opacity 1s ease 0.35s;
    margin: 1rem 0 0 4.5rem;
    transform: translateX(0); }
  .samples .cards-filter__query {
    font-size: 24px;
    font-size: 1.71429rem;
    font-weight: 600;
    color: #fff;
    width: 68px;
    height: 68px;
    display: block;
    transition: all 0.2s ease, width 0.5s ease-in-out;
    border: none;
    padding-left: 4.4rem;
    background: transparent; }
    .samples .cards-filter__query::-webkit-input-placeholder {
      color: transparent;
      transition: color 1s ease; }
    .samples .cards-filter__query:-moz-placeholder {
      color: transparent;
      transition: color 1s ease; }
    .samples .cards-filter__query::-moz-placeholder {
      color: transparent;
      transition: color 1s ease; }
    .samples .cards-filter__query:-ms-input-placeholder {
      color: transparent;
      transition: color 1s ease; }
    .samples .cards-filter__query:valid, .samples .cards-filter__query:focus {
      width: 100%;
      z-index: 100; }
      .samples .cards-filter__query:valid::-webkit-input-placeholder, .samples .cards-filter__query:focus::-webkit-input-placeholder {
        color: rgba(255, 255, 255, 0.4); }
      .samples .cards-filter__query:valid:-moz-placeholder, .samples .cards-filter__query:focus:-moz-placeholder {
        color: rgba(255, 255, 255, 0.4); }
      .samples .cards-filter__query:valid::-moz-placeholder, .samples .cards-filter__query:focus::-moz-placeholder {
        color: rgba(255, 255, 255, 0.4); }
      .samples .cards-filter__query:valid:-ms-input-placeholder, .samples .cards-filter__query:focus:-ms-input-placeholder {
        color: rgba(255, 255, 255, 0.4); }
      .samples .cards-filter__query:valid ~ label[for="cards-filter"], .samples .cards-filter__query:focus ~ label[for="cards-filter"] {
        opacity: 1; }
    .samples .cards-filter__query:invalid ~ label.live-search__icon {
      opacity: 0.4; }
  .samples .cards-filter__icon {
    cursor: pointer;
    z-index: 1;
    position: absolute;
    padding: 0;
    left: 0;
    top: 0;
    bottom: 0;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-size: 2rem;
    color: #fff;
    transition: all 0.2s ease; }
  .samples .cards-filter.active {
    width: 100%;
    transform: scale(0.9); }
    .samples .cards-filter.active + h1 {
      opacity: 0;
      transform: translateX(200px);
      transition: transform 0.35s ease 0.3s, opacity 0.1s; }
    .samples .cards-filter.active[data-count]:before {
      content: attr(data-count);
      font-size: 18px;
      font-size: 1.28571rem;
      font-weight: bold;
      animation: fadeIn 1s ease 0.5s both;
      z-index: 100;
      display: block;
      color: #fff;
      position: absolute;
      top: 0;
      bottom: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      right: 1rem;
      min-width: 2rem; }

body.theme-default #sidebar .widget {
  border-radius: 16px; }
  body.theme-default #sidebar .widget:last-child {
    margin-bottom: 2rem;
    position: sticky;
    top: 80px;
    z-index: 2; }
    @media (max-width: 543px) {
      body.theme-default #sidebar .widget:last-child {
        position: unset; } }

body.theme-default #sidebar .sample-details {
  padding: 2rem;
  margin-bottom: 3rem;
  align-self: flex-start; }
  body.theme-default #sidebar .sample-details .widget__details > div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.95rem; }
    body.theme-default #sidebar .sample-details .widget__details > div strong {
      font-size: 1rem;
      padding-left: 0.5rem;
      color: #7159B5;
      min-width: 65%;
      width: 65%; }
  body.theme-default #sidebar .sample-details .widget__button-cta {
    font-size: 16px;
    font-size: 1.14286rem;
    font-weight: 600;
    color: #7159B5;
    background: #fff;
    border: 4px solid rgba(113, 89, 181, 0.3);
    padding: 1rem 1.5rem;
    display: block;
    text-align: center;
    border-radius: 35px;
    white-space: nowrap;
    width: 100%;
    margin-top: 1rem;
    margin-bottom: -3.5rem; }
    @media (max-width: 767px) {
      body.theme-default #sidebar .sample-details .widget__button-cta {
        padding: 1rem 0; } }
    html[lang="de"] body.theme-default #sidebar .sample-details .widget__button-cta {
      font-size: 15px;
      padding: 1rem;
      white-space: nowrap; }
      @media (max-width: 991px) {
        html[lang="de"] body.theme-default #sidebar .sample-details .widget__button-cta {
          white-space: unset; } }
      @media (max-width: 543px) {
        html[lang="de"] body.theme-default #sidebar .sample-details .widget__button-cta {
          white-space: nowrap; } }

body.theme-default #sidebar .price-calculator {
  padding: 0;
  text-align: center; }
  body.theme-default #sidebar .price-calculator .widget__header {
    font-size: 17px;
    font-size: 1.21429rem;
    font-weight: bold;
    color: #fff;
    border-radius: 16px 16px 0 0;
    padding: 1rem 0.5rem;
    line-height: 1.1;
    background: #7159B5;
    background-size: 50%;
    color: #ffffff;
    margin-bottom: 1rem; }
  body.theme-default #sidebar .price-calculator .widget__form {
    padding: 0 1.5rem; }
    body.theme-default #sidebar .price-calculator .widget__form label {
      color: #3b454b; }
      body.theme-default #sidebar .price-calculator .widget__form label.btn-radio {
        font-weight: 600;
        box-shadow: inset 0 0 0 4px rgba(113, 89, 181, 0.2);
        background: transparent;
        padding: 0.7rem 0.5rem;
        font-weight: 600;
        color: #636363;
        border-radius: 60px !important; }
        body.theme-default #sidebar .price-calculator .widget__form label.btn-radio.active {
          background: #7159B5;
          color: #ffffff; }
    body.theme-default #sidebar .price-calculator .widget__form .urgency__cta {
      margin-bottom: 0.5rem;
      font-size: 0.9rem; }
    body.theme-default #sidebar .price-calculator .widget__form .urgency__wrapper {
      margin: 0 auto; }
    body.theme-default #sidebar .price-calculator .widget__form .urgency__decrease, body.theme-default #sidebar .price-calculator .widget__form .urgency__increase {
      font-size: 14px; }
      body.theme-default #sidebar .price-calculator .widget__form .urgency__decrease:hover:before, body.theme-default #sidebar .price-calculator .widget__form .urgency__increase:hover:before {
        color: #ffcb16 !important; }
    body.theme-default #sidebar .price-calculator .widget__form .urgency__choice {
      color: #7159B5; }
      body.theme-default #sidebar .price-calculator .widget__form .urgency__choice .select2-selection__rendered {
        box-shadow: inset 0 0 0 4px rgba(113, 89, 181, 0.2);
        background: transparent;
        padding: 0.7rem 0.5rem;
        font-weight: 600;
        color: #00c853;
        border-radius: 60px !important;
        font-weight: bold;
        padding: 0.5rem 0 !important; }
        body.theme-default #sidebar .price-calculator .widget__form .urgency__choice .select2-selection__rendered.active {
          background: #7159B5;
          color: #ffffff; }
    body.theme-default #sidebar .price-calculator .widget__form .urgency__date {
      position: unset;
      transform: scale(1);
      margin: 0.5rem auto; }
      body.theme-default #sidebar .price-calculator .widget__form .urgency__date #deadlineDate {
        font-weight: 600; }
        body.theme-default #sidebar .price-calculator .widget__form .urgency__date #deadlineDate:before {
          font-weight: normal;
          font-size: 14px;
          opacity: 1;
          color: #7159B5; }
  body.theme-default #sidebar .price-calculator .widget__button-cta {
    display: inline-block;
    border: none;
    border-radius: 35px;
    font-size: 24px;
    font-size: 1.71429rem;
    font-weight: 600;
    color: #fff;
    padding: 1rem 2rem;
    transition: all 0.2s ease;
    font-weight: bold;
    display: block;
    white-space: nowrap;
    margin: 0 1rem;
    font-size: 1.5rem; }
    body.theme-default #sidebar .price-calculator .widget__button-cta:not(.btn-clr) {
      box-shadow: 0 10px 30px 0 rgba(37, 54, 83, 0.25);
      background: #78e074 linear-gradient(to bottom, #78e074 0%, #22b11e 100%); }

@media (min-width: 544px) and (max-width: 767px) {
  body.theme-default #sidebar .price-calculator .widget__button-cta:not(.btn-clr) {
    padding: 1rem 0; } }
    body.theme-default #sidebar .price-calculator .widget__button-cta:hover {
      background: #59e452 linear-gradient(to bottom, #59e452 0%, #59e452 100%);
      box-shadow: 0 10px 40px 0 #59e452;
      color: #fff; }
      body.theme-default #sidebar .price-calculator .widget__button-cta:hover span.chevron {
        transform: translateX(5px) scale(0.9); }
    body.theme-default #sidebar .price-calculator .widget__button-cta span.chevron {
      font-size: 24px;
      font-size: 1.71429rem;
      font-weight: bold;
      display: inline-block;
      transition: all 0.2s ease; }
      body.theme-default #sidebar .price-calculator .widget__button-cta span.chevron:after {
        content: "\f054";
        font-family: "fontawesome";
        font-size: 1.4rem;
        padding-left: 0.5rem; }
    @media (max-width: 543px) {
      body.theme-default #sidebar .price-calculator .widget__button-cta {
        font-size: 18px;
        font-size: 1.28571rem; } }
  body.theme-default #sidebar .price-calculator .widget__price, body.theme-default #sidebar .price-calculator .widget__price:before {
    font-size: inherit;
    color: #fff; }
  body.theme-default #sidebar .price-calculator .widget__footer {
    padding: 0.75rem 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center; }
    body.theme-default #sidebar .price-calculator .widget__footer img {
      max-width: 200px; }
    body.theme-default #sidebar .price-calculator .widget__footer .fa {
      margin: 0 .5rem;
      font-size: 2rem;
      color: rgba(113, 89, 181, 0.7); }

.samples.is-subcategory .sample-card__heading a {
  color: #00c853; }
  .samples.is-subcategory .sample-card__heading a:hover {
    color: #7159B5; }

.samples.is-subcategory .sample-card__header {
  overflow: hidden;
  padding: 0; }

.samples.is-subcategory .sample-card__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap; }

.samples.is-subcategory .sample-card__tag {
  color: #3b454b;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), inset 0 1px white;
  border-radius: 4px;
  padding: 0 .4rem;
  font-size: 12px;
  white-space: nowrap;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  transition: all .15s ease;
  margin-bottom: .3rem;
  margin-right: .3rem; }
  .samples.is-subcategory .sample-card__tag i {
    opacity: .5; }
  .samples.is-subcategory .sample-card__tag:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #7159B5;
    color: #ffffff; }

.samples.is-single-sample .single-sample__thumbnail {
  margin-top: 1rem;
  display: block; }
  @media (max-width: 991px) {
    .samples.is-single-sample .single-sample__thumbnail {
      margin-top: 1rem; } }

.samples.is-single-sample .single-sample__content {
  font-size: 16px;
  font-size: 1.14286rem;
  font-weight: 400;
  line-height: 1.7;
  margin: 3rem auto 4rem; }
  .samples.is-single-sample .single-sample__content h1,
  .samples.is-single-sample .single-sample__content h2,
  .samples.is-single-sample .single-sample__content h3,
  .samples.is-single-sample .single-sample__content h4,
  .samples.is-single-sample .single-sample__content h5,
  .samples.is-single-sample .single-sample__content h6 {
    margin-top: 2rem;
    font-weight: 700; }
  .samples.is-single-sample .single-sample__content hr {
    border-color: #ebedff;
    border-width: 4px; }

.samples.is-single-sample .single-sample__tag-wrapper {
  margin-top: 1rem; }
  .samples.is-single-sample .single-sample__tag-wrapper + .single-sample__wrapper .single-sample__content {
    margin: .5rem auto 4rem; }
    .samples.is-single-sample .single-sample__tag-wrapper + .single-sample__wrapper .single-sample__content h1,
    .samples.is-single-sample .single-sample__tag-wrapper + .single-sample__wrapper .single-sample__content h2 {
      margin-top: 0; }

.samples.is-single-sample .single-sample__tag-link {
  color: #373a3c;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), inset 0 1px white;
  border-radius: 4px;
  padding: 0 .4rem;
  white-space: nowrap;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  transition: all .15s ease;
  margin-right: .3rem; }
  .samples.is-single-sample .single-sample__tag-link i {
    opacity: .3; }
  .samples.is-single-sample .single-sample__tag-link:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #7159B5;
    color: #ffffff; }

@media (max-width: 543px) {
  .samples.is-single-sample .breadcrumbs-nav__list {
    white-space: unset; } }

@media (min-width: 544px) and (max-width: 767px) {
  .is-contacts ul.contact-icons {
    display: flex;
    justify-content: space-around; }
    .is-contacts ul.contact-icons li {
      flex: 1 1 auto; }
      .is-contacts ul.contact-icons li:nth-child(2) {
        margin: 0 .2rem; } }

@keyframes loading {
  0% {
    opacity: 1; }
  20% {
    opacity: .83; }
  40% {
    opacity: .67; }
  60% {
    opacity: .5; }
  80% {
    opacity: .33; }
  100% {
    opacity: .17; } }

@keyframes fading {
  0% {
    display: flex;
    opacity: 1; }
  50% {
    opacity: 1; }
  60% {
    opacity: .3; }
  75% {
    opacity: 0; }
  100% {
    opacity: 0; } }

.is-contacts .call-me-form {
  position: relative;
  margin-bottom: 2rem; }
  .is-contacts .call-me-form__success {
    color: black; }
  .is-contacts .call-me-form__fail {
    color: red; }
  .is-contacts .call-me-form__success, .is-contacts .call-me-form__fail {
    position: absolute;
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.904);
    z-index: 1;
    border-radius: 15px;
    flex-direction: column;
    animation: fading 6s linear infinite; }
    .is-contacts .call-me-form__success svg, .is-contacts .call-me-form__fail svg {
      display: block;
      margin-bottom: 30px; }
      .is-contacts .call-me-form__success svg path, .is-contacts .call-me-form__fail svg path {
        fill: #7159B5; }
    .is-contacts .call-me-form__success.is-opened, .is-contacts .call-me-form__fail.is-opened {
      display: flex; }
  .is-contacts .call-me-form__heading {
    background: rgba(113, 89, 181, 0.8);
    padding-top: 24px;
    padding-bottom: 17px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding-left: 2rem;
    text-align: center; }
    .is-contacts .call-me-form__heading span {
      color: #fff;
      font-weight: 600;
      font-size: 2rem; }
  .is-contacts .call-me-form__content {
    padding: 5rem 3rem 2rem;
    background-image: url("/static/img/call-back-bg.jpg");
    background-size: 110%;
    background-position: center bottom;
    background-repeat: no-repeat;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    position: relative; }
    .is-contacts .call-me-form__content .intl-tel-input {
      position: relative;
      width: 100%; }
      .is-contacts .call-me-form__content .intl-tel-input .iti-flag {
        top: 14px; }
      .is-contacts .call-me-form__content .intl-tel-input #phone {
        top: -2px;
        margin-bottom: 1rem !important;
        padding-left: 92px; }
      .is-contacts .call-me-form__content .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {
        background: none; }
    .is-contacts .call-me-form__content .selected-flag {
      transition: .3s;
      padding-left: 10px !important;
      padding-top: 15px !important;
      margin-top: -6px;
      height: 60px;
      position: absolute;
      background: transparent; }
      @media (max-width: 1199px) {
        .is-contacts .call-me-form__content .selected-flag {
          margin-top: -7px; } }
      @media (max-width: 991px) {
        .is-contacts .call-me-form__content .selected-flag {
          margin-top: -6px; } }
      @media (max-width: 543px) {
        .is-contacts .call-me-form__content .selected-flag {
          margin-top: 1px; } }
    .is-contacts .call-me-form__content .selected-dial-code {
      font-size: 1rem !important; }
    .is-contacts .call-me-form__content .content-heading {
      position: absolute;
      top: 2.7rem;
      left: 50px;
      color: #999999; }
  .is-contacts .call-me-form .message-wrapper .grey-text {
    position: absolute;
    bottom: 0;
    right: 20px; }
  .is-contacts .call-me-form .phone-wrapper,
  .is-contacts .call-me-form .name-wrapper,
  .is-contacts .call-me-form .message-wrapper {
    position: relative; }
    .is-contacts .call-me-form .phone-wrapper .exclamation-circle,
    .is-contacts .call-me-form .name-wrapper .exclamation-circle,
    .is-contacts .call-me-form .message-wrapper .exclamation-circle {
      font-size: 1.6rem;
      display: none;
      position: absolute;
      right: 31px;
      color: red;
      top: 24%; }
    .is-contacts .call-me-form .phone-wrapper.error label,
    .is-contacts .call-me-form .name-wrapper.error label,
    .is-contacts .call-me-form .message-wrapper.error label {
      color: #ff1011 !important; }
      @media (max-width: 767px) {
        .is-contacts .call-me-form .phone-wrapper.error label,
        .is-contacts .call-me-form .name-wrapper.error label,
        .is-contacts .call-me-form .message-wrapper.error label {
          width: 70%; } }
    @media (max-width: 543px) {
      .is-contacts .call-me-form .phone-wrapper.error input.phone-input,
      .is-contacts .call-me-form .name-wrapper.error input.phone-input,
      .is-contacts .call-me-form .message-wrapper.error input.phone-input {
        padding-top: 44px;
        height: 85px; }
      .is-contacts .call-me-form .phone-wrapper.error .selected-flag,
      .is-contacts .call-me-form .name-wrapper.error .selected-flag,
      .is-contacts .call-me-form .message-wrapper.error .selected-flag {
        top: 22px !important; } }
    .is-contacts .call-me-form .phone-wrapper.error input,
    .is-contacts .call-me-form .phone-wrapper.error textarea,
    .is-contacts .call-me-form .name-wrapper.error input,
    .is-contacts .call-me-form .name-wrapper.error textarea,
    .is-contacts .call-me-form .message-wrapper.error input,
    .is-contacts .call-me-form .message-wrapper.error textarea {
      border: 2px solid #ffcccb;
      color: #ff1011; }
    .is-contacts .call-me-form .phone-wrapper.error .exclamation-circle,
    .is-contacts .call-me-form .name-wrapper.error .exclamation-circle,
    .is-contacts .call-me-form .message-wrapper.error .exclamation-circle {
      display: flex; }
  .is-contacts .call-me-form input {
    height: 60px; }
  .is-contacts .call-me-form textarea {
    height: 5rem;
    resize: none; }
    @media (max-width: 543px) {
      .is-contacts .call-me-form textarea {
        height: 100px; } }
  .is-contacts .call-me-form input, .is-contacts .call-me-form textarea {
    border: 2px solid #ebebeb;
    border-radius: 6px;
    padding: 25px 10px 10px 10px;
    box-shadow: none;
    margin: 0 0 1rem;
    background-color: #fff; }
    .is-contacts .call-me-form input:focus, .is-contacts .call-me-form textarea:focus {
      border: 2px solid rgba(113, 89, 181, 0.6); }
  .is-contacts .call-me-form label {
    position: absolute;
    top: 9px;
    left: 24px;
    color: #7159B5; }
    .is-contacts .call-me-form label.active {
      color: #7159B5 !important; }
  .is-contacts .call-me-form .center-on-small-only {
    display: flex; }
  .is-contacts .call-me-form .btn-submit {
    background: #7159B5;
    border-radius: 6px;
    margin-left: auto;
    padding: 14px 53px; }
    @media (max-width: 543px) {
      .is-contacts .call-me-form .btn-submit {
        padding: 14px 25px;
        width: 100%; } }
    .is-contacts .call-me-form .btn-submit:hover {
      background: rgba(113, 89, 181, 0.7) !important; }
    .is-contacts .call-me-form .btn-submit .call-me-text {
      margin-left: 10px; }
    .is-contacts .call-me-form .btn-submit i {
      transform: rotate(270deg); }
    .is-contacts .call-me-form .btn-submit .loader {
      display: none;
      width: 60px;
      justify-content: space-between;
      margin: auto; }
      .is-contacts .call-me-form .btn-submit .loader span {
        transition: 2s;
        height: 6px;
        width: 6px;
        background-color: #fff;
        border-radius: 50%;
        opacity: .8;
        animation: loading 1s linear infinite; }
        .is-contacts .call-me-form .btn-submit .loader span:nth-child(1) {
          animation-delay: .2s; }
        .is-contacts .call-me-form .btn-submit .loader span:nth-child(2) {
          animation-delay: .4s; }
        .is-contacts .call-me-form .btn-submit .loader span:nth-child(3) {
          animation-delay: .6s; }
        .is-contacts .call-me-form .btn-submit .loader span:nth-child(4) {
          animation-delay: .8s; }
        .is-contacts .call-me-form .btn-submit .loader span:nth-child(5) {
          animation-delay: 1s; }
    .is-contacts .call-me-form .btn-submit.loading .loader {
      display: flex;
      padding: 10px 0; }
    .is-contacts .call-me-form .btn-submit.loading i {
      display: none; }
    .is-contacts .call-me-form .btn-submit.loading .call-me-text {
      display: none; }

body.is-order .main-orderform + .checkout-wrapper {
  max-width: 720px;
  margin: 0 auto; }
  body.is-order .main-orderform + .checkout-wrapper .tab-content {
    max-width: 555px;
    margin: 0 auto; }
    body.is-order .main-orderform + .checkout-wrapper .tab-content input {
      font-size: 1.3rem; }
  html[lang=de] body.is-order .main-orderform + .checkout-wrapper a#whats-next {
    font-size: 1.1rem;
    margin: .2rem auto 0; }
  body.is-order .main-orderform + .checkout-wrapper button.btn-link {
    font-size: 1.2rem;
    display: block;
    width: 90%;
    margin: .2rem auto 0;
    transition: all .2s ease;
    padding: .5rem .2rem; }
    html[lang=de] body.is-order .main-orderform + .checkout-wrapper button.btn-link {
      width: 100%;
      font-size: 1.1rem; }
    body.is-order .main-orderform + .checkout-wrapper button.btn-link i {
      color: #7159B5; }
    body.is-order .main-orderform + .checkout-wrapper button.btn-link:hover {
      border-radius: 1rem; }
      body.is-order .main-orderform + .checkout-wrapper button.btn-link:hover + #paysystems_sprite {
        animation: fadeInDown .2s ease both; }
    body.is-order .main-orderform + .checkout-wrapper button.btn-link + #paysystems_sprite {
      opacity: 0;
      transition: all .2s ease; }
  body.is-order .main-orderform + .checkout-wrapper button.btn-submit {
    font-size: 1.1rem; }
  body.is-order .main-orderform + .checkout-wrapper .checkout-buttons {
    padding-top: 1rem;
    text-align: center; }
  body.is-order .main-orderform + .checkout-wrapper .dropdown-checkout .dropdown-menu {
    width: 100%;
    box-shadow: none;
    background: transparent; }
    body.is-order .main-orderform + .checkout-wrapper .dropdown-checkout .dropdown-menu .dropdown-item {
      color: #78cd62;
      text-align: center;
      padding: 10px 0;
      margin: 5px 0; }

body.is-order .main-orderform #words-count {
  min-height: 18px; }

body.is-order .receiving-price {
  position: relative; }
  body.is-order .receiving-price.update::after {
    content: '\f110';
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 3px;
    right: -25px;
    width: 15px;
    height: 15px;
    font-weight: normal;
    font-family: 'fontawesome';
    font-size: 11px;
    animation: fa-spin 0.5s steps(8) infinite; }

body.is-order .urgency__wrapper .select2-container.select2-container--default.select2-container--open,
body.is-order .language__wrapper .select2-container.select2-container--default.select2-container--open {
  transform: translateY(0); }

@media (max-width: 767px) {
  body.is-orderinfo ul.nav.nav-tabs.tabs-order {
    display: flex;
    overflow-x: auto;
    max-width: 100%; }
    body.is-orderinfo ul.nav.nav-tabs.tabs-order li a {
      white-space: nowrap;
      font-size: 1.1rem;
      font-weight: bold; } }

body.is-orderinfo .bootbox.edit-order-modal .modal-backdrop {
  opacity: 0; }

body.is-orderinfo .bootbox.edit-order-modal .modal-dialog {
  max-width: 780px;
  padding-top: 3.5rem; }
  body.is-orderinfo .bootbox.edit-order-modal .modal-dialog section#edit-order-modal {
    padding-left: 0;
    padding-right: 0; }

body.is-orderinfo .bootbox.edit-order-modal .modal-content {
  width: 100%; }
  body.is-orderinfo .bootbox.edit-order-modal .modal-content .btn-group-justified {
    min-width: 100%; }
  body.is-orderinfo .bootbox.edit-order-modal .modal-content .label-fixed-width {
    min-width: 100%;
    text-align: center;
    white-space: nowrap; }
    @media (min-width: 768px) {
      body.is-orderinfo .bootbox.edit-order-modal .modal-content .label-fixed-width {
        text-align: left;
        min-width: 100px;
        max-width: 100px; } }
  body.is-orderinfo .bootbox.edit-order-modal .modal-content .btn.btn-radio, body.is-orderinfo .bootbox.edit-order-modal .modal-content .wizard > .actions a.btn-radio, .wizard > .actions body.is-orderinfo .bootbox.edit-order-modal .modal-content a.btn-radio {
    border-radius: 20px;
    font-size: 1rem; }
    body.is-orderinfo .bootbox.edit-order-modal .modal-content .btn.btn-radio:not(.active), body.is-orderinfo .bootbox.edit-order-modal .modal-content .wizard > .actions a.btn-radio:not(.active), .wizard > .actions body.is-orderinfo .bootbox.edit-order-modal .modal-content a.btn-radio:not(.active) {
      background: rgba(0, 0, 0, 0.02);
      box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); }

body.is-orderinfo.modal-open .bootbox.edit-order-modal {
  background: #fff; }
  body.is-orderinfo.modal-open .bootbox.edit-order-modal button.close[data-dismiss='modal']:before, body.is-orderinfo.modal-open .bootbox.edit-order-modal button.close[data-dismiss='modal']:after {
    background: #c2c0c2 !important; }
  body.is-orderinfo.modal-open .bootbox.edit-order-modal .modal-content {
    background: transparent;
    padding: 1rem; }
  body.is-orderinfo.modal-open .bootbox.edit-order-modal .modal-body {
    background: #fff; }
  body.is-orderinfo.modal-open .bootbox.edit-order-modal .modal-footer {
    background: #fff;
    border: none;
    text-align: center;
    padding: 0;
    margin-top: -3rem; }
    body.is-orderinfo.modal-open .bootbox.edit-order-modal .modal-footer .text_bootbox {
      opacity: 0.4;
      margin-bottom: 1rem; }
      body.is-orderinfo.modal-open .bootbox.edit-order-modal .modal-footer .text_bootbox i {
        font-style: unset; }
      body.is-orderinfo.modal-open .bootbox.edit-order-modal .modal-footer .text_bootbox ~ .btn, body.is-orderinfo.modal-open .bootbox.edit-order-modal .modal-footer .wizard > .actions .text_bootbox ~ a, .wizard > .actions body.is-orderinfo.modal-open .bootbox.edit-order-modal .modal-footer .text_bootbox ~ a {
        font-size: 1.3rem; }

body.is-orderinfo .modal-backdrop.fade {
  opacity: 0; }

@media (min-width: 860px) {
  .main-orderform .row {
    display: flex; }
    .main-orderform .row:nth-child(odd) {
      margin-bottom: 0.65rem; } }

.main-orderform i.form-icon {
  padding: 0 3px !important; }
  .main-orderform i.form-icon.active {
    color: #7159B5 !important; }

.main-orderform .aside-title {
  color: #373a3c;
  border-right: 1px solid #fafafa; }
  .main-orderform .aside-title,
  .main-orderform .aside-title * {
    font-size: 0.9rem; }
    .main-orderform .aside-title .small,
    .main-orderform .aside-title * .small {
      font-size: 0.65rem; }

.main-orderform .orderfeature-wrapper {
  background: transparent;
  box-shadow: none; }
  .main-orderform .orderfeature-wrapper .orderfeature i::before {
    width: 1.75rem;
    height: 1.75rem;
    display: block; }
  .main-orderform .orderfeature-wrapper .p-y-1 {
    padding: 0 !important; }

.main-orderform .btn.btn-radio, .main-orderform .wizard > .actions a.btn-radio, .wizard > .actions .main-orderform a.btn-radio {
  margin: 4px;
  border-radius: 5px !important;
  background: #fafafa;
  transition: border 0;
  font-size: 1rem;
  line-height: 1em;
  padding: 0.75rem 1.2rem; }
  @media (max-width: 860px) {
    .main-orderform .btn.btn-radio, .main-orderform .wizard > .actions a.btn-radio, .wizard > .actions .main-orderform a.btn-radio {
      padding-top: 1rem;
      padding-bottom: 1rem; } }
  .main-orderform .btn.btn-radio:not(.active), .main-orderform .wizard > .actions a.btn-radio:not(.active), .wizard > .actions .main-orderform a.btn-radio:not(.active) {
    background: #fafafa;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); }
  .main-orderform .btn.btn-radio.active, .main-orderform .wizard > .actions a.btn-radio.active, .wizard > .actions .main-orderform a.btn-radio.active {
    background: #7159B5;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4), 0 -5px 10px -6px #7159B5, inset 0 -2px 0 rgba(255, 255, 255, 0.1);
    transition: background 0.1s ease; }
  .main-orderform .btn.btn-radio:hover,
  .main-orderform .wizard > .actions a.btn-radio:hover, .wizard > .actions .main-orderform a.btn-radio:hover {
    border-color: #fafafa; }

@media (max-width: 767px) {
  .main-orderform div[id*='Levels'] .btn.btn-radio, .main-orderform div[id*='Levels'] .wizard > .actions a.btn-radio, .wizard > .actions .main-orderform div[id*='Levels'] a.btn-radio {
    flex-basis: 90px; }
    html[lang='de'] .main-orderform div[id*='Levels'] .btn.btn-radio, html[lang='de'] .main-orderform div[id*='Levels'] .wizard > .actions a.btn-radio, .wizard > .actions html[lang='de'] .main-orderform div[id*='Levels'] a.btn-radio {
      flex-basis: 200px; } }

@media (max-width: 543px) {
  html[lang='en'] .main-orderform div[id*='Levels'] .btn.btn-radio, html[lang='en'] .main-orderform div[id*='Levels'] .wizard > .actions a.btn-radio, .wizard > .actions html[lang='en'] .main-orderform div[id*='Levels'] a.btn-radio, html[lang='de'] .main-orderform div[id*='Levels'] .btn.btn-radio, html[lang='de'] .main-orderform div[id*='Levels'] .wizard > .actions a.btn-radio, .wizard > .actions html[lang='de'] .main-orderform div[id*='Levels'] a.btn-radio {
    flex-basis: auto; } }

@media (max-width: 440px) and (min-width: 340px) {
  html[lang='en'] .main-orderform div[id*='Levels'] .btn.btn-radio, html[lang='en'] .main-orderform div[id*='Levels'] .wizard > .actions a.btn-radio, .wizard > .actions html[lang='en'] .main-orderform div[id*='Levels'] a.btn-radio {
    flex-basis: 100px; } }

.single-price-calculator__wrapper {
  width: 100%; }

.single-price-calculator .btn.btn-radio, .single-price-calculator .wizard > .actions a.btn-radio, .wizard > .actions .single-price-calculator a.btn-radio {
  border-radius: 35px !important;
  margin: 2px;
  padding: 0.5rem; }
  @media (max-width: 991px) {
    .single-price-calculator .btn.btn-radio, .single-price-calculator .wizard > .actions a.btn-radio, .wizard > .actions .single-price-calculator a.btn-radio {
      padding: 0.5rem 2rem; } }
  .single-price-calculator .btn.btn-radio:not(.active), .single-price-calculator .wizard > .actions a.btn-radio:not(.active), .wizard > .actions .single-price-calculator a.btn-radio:not(.active) {
    background: #fafafa;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); }
  .single-price-calculator .btn.btn-radio.active, .single-price-calculator .wizard > .actions a.btn-radio.active, .wizard > .actions .single-price-calculator a.btn-radio.active {
    background: #7159B5;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4), 0 -5px 10px -6px #7159B5, inset 0 -2px 0 rgba(255, 255, 255, 0.1);
    transition: background 0.1s ease; }
  .single-price-calculator .btn.btn-radio i, .single-price-calculator .wizard > .actions a.btn-radio i, .wizard > .actions .single-price-calculator a.btn-radio i {
    margin-bottom: 2px; }

.single-price-calculator .m-t-1.text-xs-center {
  margin-top: 0.3rem !important; }

.single-price-calculator .col-md-7 {
  padding-top: 1rem; }
  .single-price-calculator .col-md-7 + .col-md-5 {
    border: none !important;
    background: white !important; }
    .single-price-calculator .col-md-7 + .col-md-5 .select2-container {
      box-shadow: 0 1px rgba(0, 0, 0, 0.1);
      background: #fafafa;
      margin: 0 auto;
      display: block;
      border-radius: 35px;
      max-width: 160px; }

@media (min-width: 992px) and (max-width: 1199px) {
  .single-price-calculator .col-md-7 + .col-md-5 .select2-container {
    max-width: 100%; } }
    .single-price-calculator .col-md-7 + .col-md-5 .select2-selection {
      border: none; }

#review-modal.modal .modal-content {
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5), 0 30px 45px -25px black !important; }

#review-modal.modal .modal-header {
  border: none; }

body.is-faq .faq-title {
  margin: 2.5rem 0 1rem;
  text-transform: uppercase;
  font-size: 1.9rem;
  font-weight: 100;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  color: rgba(0, 0, 0, 0.65); }

body.is-faq .faq-2 .faq-title {
  color: #7159B5; }

body.is-faq:not(.is-sidebar) .page-wrapper {
  overflow: visible; }

@media (max-width: 543px) {
  body.is-faq .main-content {
    padding-bottom: 0; } }

body.is-faq .accordion .panel {
  padding-left: 0; }
  body.is-faq .accordion .panel-collapse {
    font-size: 1.1rem;
    box-sizing: border-box; }

body.is-faq .accordion h3.panel-title .fa.fa-angle-down.rotate-icon {
  position: relative;
  right: -30px;
  color: silver; }

body.is-faq .accordion h3.panel-title a {
  font-weight: 300;
  display: block;
  font-size: 1.3rem;
  color: #4a4a4a; }
  body.is-faq .accordion h3.panel-title a:not(.collapsed) {
    font-weight: 400; }

body.is-faq .panel:target {
  background: #fffacb;
  padding: 1rem !important; }

body.is-faq .panel:target:before {
  content: "\f105";
  font-family: 'fontawesome';
  position: absolute;
  left: -1rem;
  display: inline-block;
  animation: fadeInLeft 1s ease infinite; }

body.is-tpl-faq-3 .faq__description {
  text-align: justify;
  font-size: 14px; }

body.is-tpl-faq-3 .accordion .faq-title {
  font-size: 18px;
  text-align: center;
  color: #000;
  border: none;
  margin: 0; }

body.is-tpl-faq-3 .accordion .panel {
  border: none;
  padding: 8px 0; }
  body.is-tpl-faq-3 .accordion .panel .panel-title a {
    font-size: 16px;
    padding-left: 47px;
    position: relative;
    background: #fafafa;
    height: 37px;
    color: #000 !important;
    display: flex;
    align-items: center; }
    @media (max-width: 767px) {
      body.is-tpl-faq-3 .accordion .panel .panel-title a {
        font-size: 14px; } }
    body.is-tpl-faq-3 .accordion .panel .panel-title a:before {
      content: "\f0fe";
      font-family: 'fontawesome';
      font-size: 37px;
      color: #7159B5;
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%); }
    body.is-tpl-faq-3 .accordion .panel .panel-title a.collapsed:before {
      content: "\f0fe"; }
    body.is-tpl-faq-3 .accordion .panel .panel-title a:not(.collapsed) {
      color: #000 !important; }
      body.is-tpl-faq-3 .accordion .panel .panel-title a:not(.collapsed):before {
        content: "\f146"; }

body.is-tpl-faq-3 .accordion .panel-collapse {
  padding-left: 47px;
  font-size: 14px;
  line-height: 24px; }
  body.is-tpl-faq-3 .accordion .panel-collapse p,
  body.is-tpl-faq-3 .accordion .panel-collapse ul {
    margin-top: 0;
    margin-bottom: 0; }

body.is-tpl-faq-3 .section-faq h2 {
  font-size: 24px;
  text-transform: uppercase;
  margin: 20px 0; }

body.is-tpl-faq-3 .section-faq .faq__items {
  margin: 20px 0;
  display: flex;
  align-items: center; }
  body.is-tpl-faq-3 .section-faq .faq__items i {
    color: #fde82e;
    font-size: 40px;
    margin-right: 31px; }
  body.is-tpl-faq-3 .section-faq .faq__items span {
    color: #fff;
    font-size: 18px; }

body.is-tpl-faq-3 .section-faq a {
  color: #fff !important;
  text-transform: uppercase;
  padding: 20px 30px; }
  @media (max-width: 767px) {
    body.is-tpl-faq-3 .section-faq a {
      padding: 20px 20px; } }

@media (max-width: 767px) {
  body.is-tpl-faq-3 .section-faq p.text-sm-right {
    text-align: center; } }

body.is-tpl-faq-3 .section-faq .faq__features {
  background: #fff;
  height: 336px;
  width: 336px;
  border-radius: 50%;
  padding: 80px 0 0 55px;
  position: relative; }
  @media (max-width: 767px) {
    body.is-tpl-faq-3 .section-faq .faq__features {
      padding: 45px 0 0 40px; } }
  body.is-tpl-faq-3 .section-faq .faq__features .faq__features-header {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 266px;
    height: 119px;
    top: -30px; }
    @media (max-width: 767px) {
      body.is-tpl-faq-3 .section-faq .faq__features .faq__features-header {
        width: 200px; } }
  body.is-tpl-faq-3 .section-faq .faq__features ul {
    color: #7e387d; }
    body.is-tpl-faq-3 .section-faq .faq__features ul li {
      margin: 8px 0; }
      body.is-tpl-faq-3 .section-faq .faq__features ul li:before {
        content: '\f00c';
        color: #7e387d !important; }
      @media (max-width: 767px) {
        body.is-tpl-faq-3 .section-faq .faq__features ul li {
          font-size: 14px; } }
  @media (max-width: 1199px) {
    body.is-tpl-faq-3 .section-faq .faq__features {
      margin-top: 90px; } }
  @media (max-width: 767px) {
    body.is-tpl-faq-3 .section-faq .faq__features {
      margin: 50px auto 0;
      height: 270px;
      width: 270px; } }

body.is-single h1.article-heading {
  font-size: 63px;
  font-size: 4.5rem;
  font-weight: bold;
  line-height: 1;
  color: #010648;
  margin-bottom: 1rem; }
  @media (max-width: 767px) {
    body.is-single h1.article-heading {
      font-size: 42px;
      font-size: 3rem;
      margin-bottom: 1rem; } }
  @media (max-width: 543px) {
    body.is-single h1.article-heading {
      font-size: 31.5px;
      font-size: 2.25rem; } }

body.is-faq .aditional-content {
  font-size: 18px;
  color: #010648;
  margin-right: 2rem !important; }
  @media (max-width: 543px) {
    body.is-faq .aditional-content {
      font-size: 16px; } }

body.is-faq .faq-content {
  display: flex; }

@keyframes slidein {
  0% {
    transform: translateX(-395px); }
  100% {
    transform: translateX(0); } }

@keyframes slideout {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(-395px); } }

body.is-faq .sidenav {
  min-width: 30%; }
  @media (max-width: 991px) {
    body.is-faq .sidenav {
      position: relative;
      min-width: 0;
      width: 0;
      z-index: 8; } }
  body.is-faq .sidenav__list-wrapper {
    position: sticky;
    top: 90px; }
    @media (max-width: 991px) {
      body.is-faq .sidenav__list-wrapper {
        width: 240px;
        transform: translateX(-395px); }
        body.is-faq .sidenav__list-wrapper.slide-in {
          transform: translateX(0);
          animation: slidein 0.35s ease-in forwards; }
        body.is-faq .sidenav__list-wrapper.slide-out {
          animation: slideout 0.35s ease-in forwards; } }
  body.is-faq .sidenav__close, body.is-faq .sidenav__open {
    display: none;
    padding: 0;
    border: none;
    box-shadow: none; }
  body.is-faq .sidenav__close {
    position: absolute;
    height: 45px;
    width: 45px;
    top: 3px;
    right: 0;
    z-index: 8;
    font-size: 30px;
    color: rgba(55, 58, 60, 0.5);
    background-color: transparent; }
    @media (max-width: 991px) {
      body.is-faq .sidenav__close {
        display: block; } }
  body.is-faq .sidenav__open {
    position: sticky;
    top: 80px;
    height: 40px;
    width: 50px;
    background-color: #F7F6FA;
    align-items: center;
    border-radius: 0 50px 50px 0; }
    body.is-faq .sidenav__open.hide {
      display: block !important;
      visibility: hidden; }
    body.is-faq .sidenav__open svg path,
    body.is-faq .sidenav__open svg rect {
      fill: #7159B5; }
    @media (max-width: 991px) {
      body.is-faq .sidenav__open {
        display: flex;
        transform: translateX(-100px); } }
    @media screen and (max-width: 930px) {
      body.is-faq .sidenav__open {
        transform: translateX(-80px); } }
    @media screen and (max-width: 880px) {
      body.is-faq .sidenav__open {
        transform: translateX(-60px); } }
    @media screen and (max-width: 830px) {
      body.is-faq .sidenav__open {
        transform: translateX(-30px); } }
    @media screen and (max-width: 830px) {
      body.is-faq .sidenav__open {
        transform: translateX(0); } }
    @media (max-width: 767px) {
      body.is-faq .sidenav__open {
        transform: translateX(-70px); } }
    @media screen and (max-width: 700px) {
      body.is-faq .sidenav__open {
        transform: translateX(-30px); } }
    @media screen and (max-width: 630px) {
      body.is-faq .sidenav__open {
        transform: translateX(0); } }
    body.is-faq .sidenav__open::before {
      content: "";
      position: absolute;
      display: block;
      background-color: #F7F6FA;
      top: 0;
      left: 0;
      height: 100%;
      width: 150px;
      transform: translateX(-100%); }
  @media (max-width: 991px) {
    body.is-faq .sidenav__list {
      position: relative;
      background-color: #F7F6FA;
      border-radius: 0px 30px 30px 0px;
      margin-top: 0;
      padding: 30px 0 18px;
      transition: 0.25s; }
      body.is-faq .sidenav__list::before {
        content: "";
        position: absolute;
        display: block;
        background-color: #F7F6FA;
        top: 0;
        left: 0;
        height: 100%;
        width: 150px;
        transform: translateX(-100%); } }
  body.is-faq .sidenav__btn {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #010648;
    border: none;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    margin-bottom: 15px; }
    @media (max-width: 991px) {
      body.is-faq .sidenav__btn {
        font-size: 16px;
        margin-bottom: 10px; } }
    body.is-faq .sidenav__btn.highlighted {
      color: #FF7F56; }

body.is-faq .accordions {
  flex-grow: 1; }
  @media (min-width: 992px) {
    body.is-faq .accordions.language-de {
      margin: 0 50px; } }

body.is-faq .collapse__wrapper {
  display: none; }
  body.is-faq .collapse__wrapper.is-visible {
    display: flex;
    flex-direction: column; }
  body.is-faq .collapse__wrapper h2 {
    display: inline-block;
    align-self: flex-start;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600; }
    @media (max-width: 991px) {
      body.is-faq .collapse__wrapper h2 {
        font-size: 20px;
        align-self: flex-end;
        margin-bottom: 20px; } }
    @media (max-width: 543px) {
      body.is-faq .collapse__wrapper h2 {
        font-size: 18px;
        margin-bottom: 15px;
        padding: 16px 20px; } }

body.is-faq .collapse__item {
  background: #FFFFFF;
  box-shadow: 0 4.82614px 20px rgba(134, 111, 232, 0.15);
  border-radius: 14px;
  margin-bottom: 20px; }
  @media (max-width: 991px) {
    body.is-faq .collapse__item {
      margin-bottom: 20px; } }
  @media (max-width: 543px) {
    body.is-faq .collapse__item {
      margin-bottom: 15px; } }

body.is-faq .collapse__heading {
  color: #010648;
  padding: 22px 67px;
  margin: 0;
  cursor: pointer; }
  @media (max-width: 991px) {
    body.is-faq .collapse__heading {
      padding: 20px 25px; } }
  @media (max-width: 543px) {
    body.is-faq .collapse__heading {
      padding: 15px 15px; } }
  body.is-faq .collapse__heading.open i {
    filter: brightness(0.5); }
  body.is-faq .collapse__heading.open h3 span:last-child {
    transform: rotate(-180deg); }
  body.is-faq .collapse__heading h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2; }
    @media (max-width: 991px) {
      body.is-faq .collapse__heading h3 {
        font-size: 16px; } }
    body.is-faq .collapse__heading h3 span:first-child {
      margin-right: 10px; }
    body.is-faq .collapse__heading h3 span:last-child {
      position: relative;
      transition: 0.25s;
      display: inline-block;
      width: 15px;
      height: 9px;
      flex-shrink: 0; }
      body.is-faq .collapse__heading h3 span:last-child::before, body.is-faq .collapse__heading h3 span:last-child::after {
        content: '';
        position: absolute;
        top: 3px;
        left: 0;
        width: 12px;
        height: 3px;
        background-color: #010648; }
      body.is-faq .collapse__heading h3 span:last-child::before {
        transform: rotate(45deg);
        left: -2px; }
      body.is-faq .collapse__heading h3 span:last-child::after {
        transform: rotate(-45deg);
        left: 5px; }
  body.is-faq .collapse__heading i {
    width: 26px;
    min-width: 26px;
    height: 26px;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMjYuNSAxNy41IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNi41IDE3LjU7IiB4bWw6c3BhY2U9InByZXNlcnZlIj48c3R5bGUgdHlwZT0idGV4dC9jc3MiPi5zdDB7ZmlsbDojOUJBQ0I2O308L3N0eWxlPjxnPjxnPjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0yNS4xLDJjMS4xLDEuMSwxLjIsMi45LDAsNC4xYzAsMCwwLDAsMCwwbC05LjgsOS42Yy0xLjIsMS4xLTMsMS4xLTQuMiwwTDEuNCw2LjFDMC4zLDUsMC4yLDMuMiwxLjQsMmMwLDAsMCwwLDAsMGMxLjItMS4xLDMtMS4xLDQuMiwwbDcuNyw3LjZMMjAuOSwyQzIyLjEsMC44LDI0LDAuOCwyNS4xLDJMMjUuMSwyeiIvPjwvZz48L2c+PC9zdmc+) no-repeat center; }
    @media (max-width: 767px) {
      body.is-faq .collapse__heading i {
        width: 20px;
        min-width: 20px; } }
    @media (max-width: 543px) {
      body.is-faq .collapse__heading i {
        width: 15px;
        min-width: 15px;
        height: 15px; } }
    body.is-faq .collapse__heading i::before {
      content: ""; }
  body.is-faq .collapse__heading.language-de h3 {
    color: #4F4B62;
    font-weight: bold;
    line-height: 24px;
    border-bottom: 1px solid #F0F4FD;
    padding-bottom: 8px; }
    body.is-faq .collapse__heading.language-de h3 span:last-child {
      width: 19px;
      height: 19px; }
    body.is-faq .collapse__heading.language-de h3 svg {
      stroke: #4F4B62;
      width: 19px;
      height: 12px; }

body.is-faq .collapse__content {
  display: none;
  color: #010648;
  padding: 0 67px; }
  @media (max-width: 991px) {
    body.is-faq .collapse__content {
      padding: 0 25px; } }
  @media (max-width: 543px) {
    body.is-faq .collapse__content {
      padding: 0 15px; } }
  body.is-faq .collapse__content *:last-child {
    margin-bottom: 0; }
    @media (max-width: 991px) {
      body.is-faq .collapse__content *:last-child {
        font-size: 14px; } }
  body.is-faq .collapse__content > div {
    max-width: 600px;
    padding: 20px 0 30px; }
    @media (max-width: 991px) {
      body.is-faq .collapse__content > div {
        padding: 15px 0 20px; } }
    @media (max-width: 543px) {
      body.is-faq .collapse__content > div {
        padding: 13px 0 15px; } }
  body.is-faq .collapse__content a {
    color: #FF7F56;
    transition: 0.25s; }
    body.is-faq .collapse__content a:hover {
      color: #ff450a; }
  body.is-faq .collapse__content ul li {
    padding-left: 1.6rem;
    position: relative;
    margin-bottom: 0.75rem;
    list-style: none; }
    body.is-faq .collapse__content ul li:last-child {
      margin-bottom: 0; }
    @media (max-width: 767px) {
      body.is-faq .collapse__content ul li {
        margin-bottom: 0.2rem; } }
    body.is-faq .collapse__content ul li:before {
      content: '\f111';
      font-family: 'fontawesome';
      width: 18px;
      height: 18px;
      display: inline-block;
      line-height: 1.3s;
      transition: all 0.3s ease;
      transform: translate(-10%, 2px) scale(0.5) rotate(-25deg);
      position: absolute;
      left: 0;
      top: 0;
      color: #7159B5; }
  body.is-faq .collapse__content.language-de > div {
    color: #737883;
    border-top: none; }
  body.is-faq .collapse__content.language-de ul li:before {
    transform: initial;
    font-size: 7px;
    width: 8px;
    height: 8px;
    left: 8px;
    top: 8px; }
  body.is-faq .collapse__content.language-de ul li:hover::before {
    content: '\f111';
    background: none;
    transform: initial; }

body.is-faq .search__wrapper {
  margin-bottom: 40px; }
  @media (max-width: 767px) {
    body.is-faq .search__wrapper {
      margin-bottom: 30px; } }

body.is-faq .search__input-block {
  position: relative;
  background: #F7F6FA;
  border-radius: 13px; }
  body.is-faq .search__input-block input {
    padding: 0;
    height: 50px;
    line-height: 50px;
    border: none;
    box-shadow: none;
    padding-left: 50px;
    padding-right: 20px; }
    body.is-faq .search__input-block input::placeholder {
      color: #A0A0A0; }
    body.is-faq .search__input-block input:focus {
      border: none !important; }
      body.is-faq .search__input-block input:focus + .search__icon-wrapper svg {
        stroke: #010648; }

body.is-faq .search__icon-wrapper {
  position: absolute;
  top: 12px;
  left: 16px;
  width: 24px;
  height: 24px; }
  body.is-faq .search__icon-wrapper svg {
    width: 100%;
    height: 100%;
    stroke: #A0A0A0; }

body.is-faq .search__result {
  max-height: 500px;
  overflow: auto;
  /* Let's get this party started */
  /* Track */
  /* Handle */ }
  body.is-faq .search__result::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 6px;
    height: 6px; }
  body.is-faq .search__result::-webkit-scrollbar-track {
    background: #fff;
    box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    background: rgba(245, 248, 249, 0.8);
    visibility: visible; }
  body.is-faq .search__result:hover::-webkit-scrollbar-track {
    visibility: visible; }
  body.is-faq .search__result::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #776eff;
    visibility: visible; }
  body.is-faq .search__result:hover::-webkit-scrollbar-thumb {
    visibility: visible; }
  @media (max-width: 991px) {
    body.is-faq .search__result {
      max-height: 300px; } }
  @media (max-width: 543px) {
    body.is-faq .search__result {
      max-height: 200px;
      box-shadow: inset 0px -2px 5px 0px #f7f9fa; } }
  body.is-faq .search__result:not(:empty) {
    margin-top: 40px;
    padding: 5px 0; }
    @media (max-width: 767px) {
      body.is-faq .search__result:not(:empty) {
        margin-top: 30px;
        padding: 5px 5px 5px 0; } }
  body.is-faq .search__result > div {
    display: grid;
    grid-gap: 35px 57px;
    grid-template-columns: repeat(auto-fill, 340px); }
    @media (max-width: 991px) {
      body.is-faq .search__result > div {
        grid-gap: 25px 45px;
        grid-template-columns: repeat(auto-fill, 317px); } }
    @media (max-width: 767px) {
      body.is-faq .search__result > div {
        grid-template-columns: 100%; } }
    body.is-faq .search__result > div:not(.search__empty) {
      min-height: 300px; }
      @media (max-width: 991px) {
        body.is-faq .search__result > div:not(.search__empty) {
          min-height: initial; } }

body.is-faq .result__group {
  color: rgba(55, 58, 60, 0.8); }

body.is-faq .result__title {
  font-size: 20px;
  padding: 13px 15px;
  background: #F7F6FA;
  border-radius: 8px;
  margin-bottom: 10px; }
  @media (max-width: 991px) {
    body.is-faq .result__title {
      font-size: 16px; } }

body.is-faq .result__content {
  border-bottom: 1px solid #FF7F56;
  margin-bottom: 15px;
  transition: 0.25s;
  cursor: pointer; }
  @media (max-width: 991px) {
    body.is-faq .result__content {
      margin-bottom: 10px; } }
  body.is-faq .result__content:hover {
    border-bottom: 1px solid transparent; }
    body.is-faq .result__content:hover .result__full {
      background-color: #fff;
      opacity: 1;
      box-shadow: 0 4.82614px 20px rgba(134, 111, 232, 0.15);
      border-radius: 8px;
      pointer-events: all; }
  body.is-faq .result__content *:last-child {
    margin-bottom: 0; }

body.is-faq .result__question {
  font-weight: 400;
  font-size: 16px;
  padding: 8px 8px 0;
  background-color: #fff; }
  @media (max-width: 991px) {
    body.is-faq .result__question {
      font-size: 15px;
      line-height: 15px; } }
  @media (max-width: 543px) {
    body.is-faq .result__question {
      background-color: transparent; } }

body.is-faq .result__block {
  position: relative; }

body.is-faq .result__answer {
  font-size: 14px;
  padding: 0 8px 8px 35px; }
  @media (max-width: 991px) {
    body.is-faq .result__answer {
      line-height: 16px; } }

body.is-faq .result__full {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.25s;
  z-index: 10;
  pointer-events: none; }
  @media (max-width: 991px) {
    body.is-faq .result__full {
      display: none; } }

body.is-faq .result__highlight {
  color: rgba(255, 127, 86, 0.8); }

body.is-faq .tabs-container {
  margin: 25px 0 35px; }
  @media (max-width: 991px) {
    body.is-faq .tabs-container {
      overflow-x: scroll;
      /* Let's get this party started */
      /* Track */
      /* Handle */
      scroll-snap-type: x proximity; }
      body.is-faq .tabs-container::-webkit-scrollbar {
        -webkit-appearance: none;
        width: 4px;
        height: 4px; }
      body.is-faq .tabs-container::-webkit-scrollbar-track {
        background: #fff;
        box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.07);
        border-radius: 10px;
        background: #fbfbfb;
        visibility: visible; }
      body.is-faq .tabs-container:hover::-webkit-scrollbar-track {
        visibility: visible; }
      body.is-faq .tabs-container::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background: #7159B5;
        visibility: visible; }
      body.is-faq .tabs-container:hover::-webkit-scrollbar-thumb {
        visibility: visible; } }
  @media (max-width: 767px) {
    body.is-faq .tabs-container {
      margin: 20px 0 30px; } }
  @media (max-width: 543px) {
    body.is-faq .tabs-container {
      margin: 10px 0 20px; } }

body.is-faq .faq-tabs {
  display: flex; }
  @media (max-width: 991px) {
    body.is-faq .faq-tabs {
      width: 914px; } }
  body.is-faq .faq-tabs li {
    flex-basis: calc(100% / 4 - 15px);
    margin-right: 20px;
    scroll-snap-align: start; }
  body.is-faq .faq-tabs button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    box-shadow: 0px 4px 20px rgba(32, 108, 164, 0.05);
    border-radius: 20px;
    border: 1px solid transparent;
    width: 100%;
    height: 170px;
    transition: 0.25s; }
    @media (max-width: 767px) {
      body.is-faq .faq-tabs button {
        height: 130px; } }
    @media (max-width: 543px) {
      body.is-faq .faq-tabs button {
        height: 95px; } }
    body.is-faq .faq-tabs button.active {
      border-color: #5BA7CA; }
    body.is-faq .faq-tabs button svg {
      width: 59px;
      height: 59px;
      fill: #7159B5;
      margin-bottom: 10px; }
      @media (max-width: 1199px) {
        body.is-faq .faq-tabs button svg {
          width: 50px;
          height: 50px; } }
      @media (max-width: 767px) {
        body.is-faq .faq-tabs button svg {
          width: 40px;
          height: 40px; } }
      @media (max-width: 543px) {
        body.is-faq .faq-tabs button svg {
          width: 35px;
          height: 35px; } }

/* Our writers */
.our-writers {
  /* Our writers (carousel) */
  /* Our writers (page) */ }
  .our-writers__controls {
    line-height: 0;
    text-align: right;
    width: 100%;
    padding: 0 15px; }
    .our-writers__controls a {
      display: inline-block;
      margin-right: .5rem;
      color: grey;
      font-size: .9rem; }
      .our-writers__controls a i {
        opacity: .3; }
  .our-writers .writer__item {
    position: relative;
    border-radius: 2px;
    transition: all .2s ease;
    box-shadow: 0 0 15px rgba(41, 171, 198, 0.1);
    text-align: center;
    padding: 1.5rem;
    color: #252525;
    background: #fff; }
    .our-writers .writer__item .achievement-premium {
      border-bottom-right-radius: 5px;
      border-bottom-left-radius: 5px;
      border-top: 1px solid #eb8c00;
      background-color: #ff9800;
      position: absolute;
      font-size: 2rem;
      padding: .2rem;
      box-shadow: 1px 8px 4px -5px rgba(0, 0, 0, 0.1);
      top: 0;
      left: 1rem;
      color: #fff;
      transition: all .2s ease; }
    .our-writers .writer__item.writer-premium .writer__avatar {
      border-color: #ff9800; }
    .our-writers .writer__item.writer-premium .writer__name {
      color: #ff9800; }
    .our-writers .writer__item.writer-premium:hover .achievement-premium {
      padding: .4rem .2rem .6rem; }
    .our-writers .writer__item:hover {
      box-shadow: 0 0 15px rgba(39, 121, 139, 0.25);
      transform: translateY(-3px); }
      .our-writers .writer__item:hover .writer__edit {
        opacity: 1;
        transform: scale(1); }
      html:not(.safari) .our-writers .writer__item:hover .writer__avatar img {
        transform: scale(1.04); }
  .our-writers .writer__avatar {
    width: 120px;
    height: 120px;
    background: #fafafa;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 100%;
    border: 2px solid #fff;
    position: relative; }
    .our-writers .writer__avatar img {
      width: 100%;
      display: block;
      transition: all .25s ease; }
  .our-writers .writer__name {
    font-size: 1.2rem;
    margin-top: .5rem;
    line-height: 1.3em;
    font-weight: bold; }
  .our-writers .writer__specialization {
    font-size: .95rem;
    line-height: 1.1em; }
  .our-writers .writer__mark .t-rating i.icon-star-full, .our-writers .writer__mark .t-rating i.icon-star-half {
    color: #ff9800; }

@media (min-width: 992px) and (max-width: 1199px) {
  .our-writers .writer__mark .t-rating i {
    font-size: 1rem; } }
  .our-writers .writer__description {
    font-size: .95rem;
    margin-top: .5rem;
    transition: all .2s ease, opacity .1s linear; }
  .our-writers .writer__edit {
    transition: all .2s ease;
    color: silver;
    font-size: .9rem;
    display: inline-block;
    transform: scale(0.7);
    opacity: 0; }
  .our-writers .writer__details {
    margin: .5rem 0 1rem;
    display: flex;
    justify-content: space-between; }
    .our-writers .writer__details > div {
      text-overflow: ellipsis;
      overflow: hidden;
      width: 30%;
      border-top: 1px solid #fafafa;
      padding-top: .5rem;
      line-height: 1.2em;
      font-size: .8rem;
      color: silver;
      white-space: nowrap; }
      .our-writers .writer__details > div span {
        color: #000;
        display: block;
        margin-top: .5rem;
        font-size: 1.3rem;
        font-weight: bold; }
        .our-writers .writer__details > div span i {
          font-size: 1.1rem; }
  .our-writers .writer__hire-lnk {
    border-radius: 1rem;
    border: 1px solid #7159B5;
    background: transparent;
    margin-top: .5rem;
    padding: .2rem 1rem;
    display: inline-block;
    color: #7159B5;
    font-size: 1rem;
    white-space: nowrap; }
    .our-writers .writer__hire-lnk.btn-lock {
      border-color: transparent; }
  .our-writers.writers-carousel .owl-stage-outer {
    padding: 2rem 0; }
  .our-writers.writers-carousel .writer__avatar {
    margin-top: -3rem; }
  .our-writers.writers-grid {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px; }
    .our-writers.writers-grid .writer__item {
      flex: 1 0 auto;
      width: 30%;
      margin: 10px; }
      @media (max-width: 991px) {
        .our-writers.writers-grid .writer__item {
          width: 46%; } }
      @media (max-width: 767px) {
        .our-writers.writers-grid .writer__item {
          width: 98%; } }

/* Section review intro */
.review-testimonials__heading, .review-last-orders__heading, .review-in-press__heading {
  text-align: center !important;
  margin: 1rem 0 1.5rem;
  font-size: 24px; }

body.is-tpl-reviews-default main.main-content {
  padding-bottom: 1rem;
  padding-left: 0;
  padding-right: 0; }

body.is-tpl-reviews-default.review--has-press main.main-content {
  padding-bottom: 0; }

.review-intro {
  margin-top: -2rem;
  background: no-repeat center top fixed /cover; }
  @media (max-width: 991px) {
    .review-intro {
      background: none; } }
  .review-intro__wrapper {
    color: #ffffff;
    text-align: center;
    padding: 5rem 0 2.75em;
    background: rgba(113, 89, 181, 0.95); }
    body.review--has-video .review-intro__wrapper {
      padding: 5rem 0 13rem; }
    @media (max-width: 991px) {
      .review-intro__wrapper {
        padding-top: 2rem; } }
  .review-intro__heading {
    text-align: center !important; }
    .review-intro__heading span {
      font-weight: bold; }
  .review-intro__content {
    font-size: 1.1rem; }
    @media (max-width: 991px) {
      .review-intro__content {
        font-size: 1rem; } }

/* Section review viedeo */
.review-video {
  padding: 1.5rem; }
  .review-video__wrapper {
    position: relative;
    z-index: 1;
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2), 0 -15px 8px -10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-evenly; }
    .review-video__wrapper .review__edit {
      position: absolute;
      top: .3rem;
      right: .3rem;
      opacity: 0;
      transform: rotate(20deg) translateY(9px) scale(0.9); }
    .review-video__wrapper:hover .review__edit {
      opacity: .4;
      transform: scale(1); }
    @media (max-width: 991px) {
      .review-video__wrapper {
        flex-wrap: wrap; } }
    body.review--has-video .review-video__wrapper {
      margin-top: -13rem; }
  .review-video__player, .review-video__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 49%; }
    @media (max-width: 991px) {
      .review-video__player, .review-video__info {
        min-width: 100%; } }
  .review-video__player {
    overflow: hidden;
    border-radius: 5px;
    line-height: 0;
    min-height: 315px;
    text-align: center;
    box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.1);
    background: #fafafa;
    position: relative;
    transition: background .45s ease; }
    body.is-ready .review-video__player {
      background: #000; }
    .review-video__player iframe {
      border-radius: 5px;
      width: 100%; }
      .review-video__player iframe + p {
        display: none; }
    .review-video__player .mask {
      position: absolute;
      top: 50%;
      left: 50%;
      color: grey;
      transition: color 1s ease;
      transform: translate(-50%, -50%); }
      body.is-ready .review-video__player .mask {
        color: #fff; }
      .review-video__player .mask i.fa-spin {
        display: inline-block;
        font-size: 3rem;
        animation-duration: .3s;
        animation-timing-function: steps(10); }
  .review-video__info {
    padding: 0 15px;
    text-align: center;
    margin: 0 1.5rem; }
  .review-video__icon {
    font-size: 2.5rem;
    max-width: 43px;
    width: 43px;
    display: block;
    animation: bounceIn .65s ease-in;
    margin: .5rem auto 1rem; }
    @media (max-width: 991px) {
      .review-video__icon {
        margin-top: 1rem; } }
  .review-video__title {
    font-size: 22px;
    font-size: 1.57143rem; }
  .review-video__description {
    font-size: .95rem; }
  .review-video__author {
    font-size: 12px;
    opacity: .9;
    margin-bottom: 0;
    background: #fafafa;
    display: inline-block;
    padding: .2px .4rem;
    border-radius: 4px; }
  .review-video__views-count {
    font-size: 12px;
    opacity: .4; }
    .review-video__views-count:before {
      content: "\f06e";
      font-family: "fontawesome";
      opacity: .5; }
  .review-video__link {
    white-space: nowrap;
    padding: .5rem 1rem;
    border-radius: 45px;
    box-shadow: 0 5px 0 rbga(black, 1);
    font-weight: normal;
    color: #252525;
    border: 2px solid black; }
    .review-video__link:hover, .review-video__link:focus {
      color: #252525;
      opacity: .75; }

/* Section review testimonials */
.review-testimonials {
  padding: 1rem 0; }
  @media (max-width: 991px) {
    .review-testimonials__wrapper {
      min-width: 100%; } }
  .review-testimonials .review-testimonial__item {
    position: relative;
    margin: 1rem 0;
    transition: all .15s ease-in;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 15px -5px rgba(0, 0, 0, 0.03);
    border-radius: 4px;
    padding-bottom: .9rem; }
    .review-testimonials .review-testimonial__item .review__edit {
      position: absolute;
      top: .3rem;
      right: .3rem;
      opacity: 0;
      transform: rotate(20deg) translateY(9px) scale(0.9); }
    .review-testimonials .review-testimonial__item:hover .review__edit {
      opacity: .4;
      transform: scale(1); }
    .review-testimonials .review-testimonial__item:hover {
      border-color: #7159b5;
      transform: translateY(-3px); }
      .review-testimonials .review-testimonial__item:hover .review-testimonial__rating {
        letter-spacing: 5px; }
      .review-testimonials .review-testimonial__item:hover .review-testimonial__header {
        background: rgba(113, 89, 181, 0.1);
        box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.75), 0 1px 0 rgba(113, 89, 181, 0.5); }
  .review-testimonials .review-testimonial__header {
    transition: all .15s ease-in;
    background: rgba(0, 0, 0, 0.02);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.4), 0 1px 0 rgba(0, 0, 0, 0.1);
    padding: .2rem .2rem .4rem;
    font-size: 13px;
    text-align: center; }
  .review-testimonials .review-testimonial__summary-separator {
    opacity: .2;
    padding: 0 .3rem; }
  .review-testimonials .review-testimonial__logo[data-lazy] {
    max-height: 50px !important;
    width: 170px;
    height: 50px;
    display: block;
    margin: .4rem auto .4rem;
    filter: drop-shadow(0 2px 2px white);
    object-fit: cover; }
  .review-testimonials .review-testimonial__text {
    margin-bottom: 0;
    padding: 1rem 1rem .5rem;
    text-align: center;
    font-size: 15px;
    font-style: italic; }
  .review-testimonials .review-testimonial__rating {
    margin: 0 auto;
    display: block;
    text-align: center;
    color: #ff9800;
    letter-spacing: 3px;
    transition: all .2s ease; }

/* Section review last orders */
.review-last-orders__wrapper {
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(113, 89, 181, 0.1); }

.review-last-orders__above-heading {
  height: 40px;
  background: #644ba9; }
  .review-last-orders__above-heading i {
    width: 12px;
    height: 12px;
    display: inline-block;
    background: #fff;
    border-radius: 50%;
    transform: translate(200%, 50%);
    margin-right: .5rem;
    position: relative; }

.review-last-orders__heading {
  margin: 0;
  padding: 1rem 0;
  color: #ffffff;
  background: #745db7; }

.review-last-orders__items {
  background: rgba(113, 89, 181, 0.1);
  padding: 1rem; }

.review-last-orders .last-order__item {
  position: relative;
  background: #fff;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom-color: white;
  box-shadow: 0 4px 5px -2px rgba(113, 89, 181, 0.1); }
  .review-last-orders .last-order__item .review__edit {
    position: absolute;
    top: .3rem;
    right: .3rem;
    opacity: 0;
    transform: rotate(20deg) translateY(9px) scale(0.9); }
  .review-last-orders .last-order__item:hover .review__edit {
    opacity: .4;
    transform: scale(1); }
  .review-last-orders .last-order__item:last-child {
    position: relative; }
    .review-last-orders .last-order__item:last-child:after {
      content: "";
      background: #fff;
      position: absolute;
      left: .15rem;
      right: .15rem;
      bottom: -.5rem;
      height: 1rem;
      border-radius: 50%;
      box-shadow: 0 10px 10px -7px rgba(0, 0, 0, 0.2); }

.review-last-orders .last-order__customer {
  font-size: 18px; }

.review-last-orders .last-order__timestamp {
  opacity: .5;
  padding: 0 .5rem;
  font-size: .9rem; }

.review-last-orders .last-order__title {
  font-size: .9rem; }

.review-last-orders .last-order__details-separator {
  opacity: .2;
  padding: 0 .2rem; }

.review-last-orders .last-order__writer {
  color: grey; }

.review-last-orders .last-order__review-text {
  margin-top: 1rem;
  border-left: 1px solid #7159B5;
  padding-left: 1rem; }

.review-last-orders .last-order__rating {
  display: inline-block;
  letter-spacing: 3px;
  float: right;
  color: #ff9800; }

/* Section review in press */
.review-in-press {
  background: #7159B5;
  position: relative;
  padding-bottom: 1.5rem; }
  body.review--has-orders .review-in-press:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 8rem;
    background: #7159B5;
    margin-top: -4rem;
    z-index: -1; }
  body:not(.review--has-orders) .review-in-press {
    padding-top: 1rem; }
  @media (max-width: 991px) {
    .review-in-press__wrapper {
      min-width: 100%; } }
  .review-in-press__wrapper .owl-theme .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.5); }
  .review-in-press__wrapper .owl-theme .owl-dots .owl-dot.active span {
    background: white;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1); }
  .review-in-press__heading {
    color: #ffffff;
    margin: 1rem auto 2rem; }
  .review-in-press .press-review__item {
    position: relative;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 10px 15px -5px rgba(0, 0, 0, 0.1); }
    .review-in-press .press-review__item .review__edit {
      position: absolute;
      top: .3rem;
      right: .3rem;
      opacity: 0;
      transform: rotate(20deg) translateY(9px) scale(0.9); }
    .review-in-press .press-review__item:hover .review__edit {
      opacity: .4;
      transform: scale(1); }
  .review-in-press .press-review__header {
    border-bottom: 1px solid #7159B5;
    padding: 1.2rem 0; }
  .review-in-press .press-review__logo[data-lazy] {
    max-height: 50px !important;
    width: 170px;
    display: block;
    margin: 0 auto;
    object-fit: cover; }
  .review-in-press .press-review__description {
    padding: 1rem 2rem;
    font-style: italic;
    font-size: 15px; }
    .review-in-press .press-review__description:before, .review-in-press .press-review__description:after {
      content: "\""; }

/* Edit button */
.review__edit {
  transition: all .2s ease;
  color: black;
  opacity: .15;
  font-size: 16px;
  display: inline-block; }
  .review__edit:hover {
    opacity: .25;
    transform: scale(1.3) rotate(-5deg);
    color: black; }

.review__setup {
  color: #fff;
  display: inline-block;
  opacity: .85;
  font-size: 2rem; }
  .review__setup:hover {
    animation: fa-spin 2s linear infinite;
    opacity: 1;
    color: #fff; }

.review__tag {
  background: #fafafa;
  color: silver; }

@keyframes show-reviews-badge {
  from {
    opacity: 0;
    transform: translateX(100%); }
  to {
    transform: translateX(0.5rem);
    opacity: 1; } }

.reviews-badge {
  position: fixed;
  top: 65px;
  right: 0;
  z-index: 20;
  transition: transform 0.65s cubic-bezier(0.27, 0.93, 0.38, 1.11) 0.2s;
  animation: show-reviews-badge 0.65s cubic-bezier(0.27, 0.93, 0.38, 1.11) 0.55s both;
  transform: translateX(130px);
  animation: none; }
  .reviews-badge:hover .reviews-badge__wrapper {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1);
    height: 170px; }
  body.is-sticky .reviews-badge {
    transform: translateX(85px); }
  body.is-sticky:not(.is-nav-collapsed) .reviews-badge {
    transform: translateX(15px); }
  .reviews-badge:hover {
    transform: translateX(0.5rem) !important; }
  .reviews-badge .reviews-badge__wrapper {
    width: 134px; }
  .reviews-badge__wrapper {
    position: relative;
    padding: 7px 15px 7px 7px;
    background: white;
    border: 1px solid white;
    border-radius: 7px 0 0 7px;
    box-shadow: 1px 0 10px rgba(0, 0, 0, 0.05), 0 0 15px rgba(0, 0, 255, 0.05);
    font-family: sans-serif;
    font-size: 14px;
    line-height: 1em;
    transition: box-shadow 0.4s ease, height 0.45s cubic-bezier(0.42, 0, 0.28, 1.2);
    overflow: hidden;
    height: 50px; }
  .reviews-badge__header {
    display: flex;
    flex-direction: row;
    align-items: center; }
  .reviews-badge__rating-value {
    position: relative;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bolder;
    display: inline-block;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #00c853;
    border-bottom: 1px solid #00b44b;
    box-shadow: 0 4px 5px -1px rgba(0, 200, 83, 0.4), inset 0 15px 0px 0 rgba(189, 255, 0, 0.16);
    color: #fff;
    padding: 0 0.2rem;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2); }
  .reviews-badge__heading {
    margin-left: 0.4rem; }
  .reviews-badge__title a {
    color: #747474;
    font-weight: bold;
    font-size: 13px; }
    .reviews-badge__title a:hover {
      text-decoration: underline; }
  .reviews-badge__rating-stars {
    color: #ff9800;
    font-size: 0.7rem; }
  .reviews-badge__total {
    margin-top: 0.5rem;
    text-align: center;
    color: #00c853;
    font-weight: bold;
    font-size: 15px; }
  .reviews-badge__logos-wrapper {
    text-align: center; }
    .reviews-badge__logos-wrapper > p {
      display: block;
      margin: 0 auto;
      font-size: 12px;
      font-weight: bold;
      color: #747474; }
  .reviews-badge__logo {
    margin: 0 auto; }
    .reviews-badge__logo a:hover {
      opacity: .75; }
  .reviews-badge__edit {
    font-size: 12px;
    color: #747474; }

.section-blog .section__heading a {
  color: #252525; }

.homepage-blog__carousel .owl-stage-outer {
  padding: .5rem 0 1.5rem; }

.homepage-blog__article {
  padding-bottom: 1rem; }

.homepage-blog__heading a {
  color: #252525; }

.homepage-blog__thumbnail-wrapper {
  position: relative; }
  .homepage-blog__thumbnail-wrapper img {
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.04);
    margin-bottom: 1rem;
    object-fit: cover;
    border-radius: 4px; }
    @media (min-width: 768px) {
      .homepage-blog__thumbnail-wrapper img {
        max-height: 175px; } }
    @media (max-width: 543px) {
      .homepage-blog__thumbnail-wrapper img {
        border-radius: 0; } }

.homepage-blog__preloader {
  opacity: 0;
  transition: opacity .15s ease-in; }
  .homepage-blog__preloader body.is-ready {
    opacity: 1; }

.homepage-blog__excerpt {
  font-size: 1rem; }

.homepage-blog__link-more, .homepage-blog__link-edit {
  font-size: 1rem;
  border: 2px solid #252525;
  padding: .2rem .75rem;
  border-radius: 1rem; }
  .homepage-blog__link-more, .homepage-blog__link-more:focus, .homepage-blog__link-more:hover, .homepage-blog__link-edit, .homepage-blog__link-edit:focus, .homepage-blog__link-edit:hover {
    color: #252525; }

body.is-tpl-blog ul.pagination {
  display: flex;
  justify-content: center;
  align-items: center; }
  body.is-tpl-blog ul.pagination .page-next svg,
  body.is-tpl-blog ul.pagination .page-prev svg {
    fill: #6F768E; }
  body.is-tpl-blog ul.pagination .page-next.disabled svg,
  body.is-tpl-blog ul.pagination .page-prev.disabled svg {
    fill: #BABDC8; }
  body.is-tpl-blog ul.pagination .page-next .waves-ripple,
  body.is-tpl-blog ul.pagination .page-prev .waves-ripple {
    display: none; }
  body.is-tpl-blog ul.pagination .page-item {
    display: block;
    margin: 0 1px; }
  body.is-tpl-blog ul.pagination .page-link {
    color: #BABDC8;
    font-size: 16px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%; }
    @media (max-width: 543px) {
      body.is-tpl-blog ul.pagination .page-link {
        width: 40px;
        height: 40px; } }
    body.is-tpl-blog ul.pagination .page-link .waves-ripple {
      display: none; }
    body.is-tpl-blog ul.pagination .page-link::before, body.is-tpl-blog ul.pagination .page-link::after {
      display: none; }
    body.is-tpl-blog ul.pagination .page-link.active {
      background: #FF7F56;
      color: #fff;
      font-weight: 700;
      font-size: 18px;
      opacity: 1 !important;
      box-shadow: none; }
      body.is-tpl-blog ul.pagination .page-link.active:active, body.is-tpl-blog ul.pagination .page-link.active:hover {
        background: #FF7F56;
        color: #fff; }
    body.is-tpl-blog ul.pagination .page-link:hover, body.is-tpl-blog ul.pagination .page-link:active {
      background: transparent;
      color: #FF7F56; }
    body.is-tpl-blog ul.pagination .page-link--no-link {
      cursor: default; }
      body.is-tpl-blog ul.pagination .page-link--no-link:hover, body.is-tpl-blog ul.pagination .page-link--no-link:active {
        color: #BABDC8; }

@media (max-width: 991px) {
  body.is-tpl-blog .article-heading .category-wrapper {
    margin-top: -3.5rem;
    max-width: 240px; } }

@media (max-width: 991px) {
  body.is-tpl-blog .article-heading .category-wrapper {
    float: none;
    margin: 0 0 2rem; } }

@media (max-width: 991px) {
  body.is-tpl-blog .article-heading .category-wrapper {
    max-width: unset; } }

body.is-tpl-blog .select2-dropdown.select2-dropdown--below {
  margin-top: .15rem; }

body.is-tpl-blog .select2-container.select2-container--open {
  z-index: 10; }

.subscription-widget {
  /* subscription-blog-2 */
  /* subscription-blog-3 */ }
  .subscription-widget.subscription-blog {
    margin: 3rem auto 2rem; }
    .subscription-widget.subscription-blog .subscription__wrapper {
      position: relative;
      display: flex;
      align-items: center;
      background: #fafafa;
      padding: .5rem 3rem 1rem;
      border-radius: 8px; }
      @media (max-width: 767px) {
        .subscription-widget.subscription-blog .subscription__wrapper {
          flex-direction: column;
          padding: 1rem 0; } }
    .subscription-widget.subscription-blog .subscription__col-left {
      width: 35%;
      text-align: center; }
      @media (max-width: 991px) {
        .subscription-widget.subscription-blog .subscription__col-left {
          width: 25%; } }
      @media (max-width: 767px) {
        .subscription-widget.subscription-blog .subscription__col-left {
          width: 100%; } }
      .subscription-widget.subscription-blog .subscription__col-left img {
        max-width: 380px;
        margin: -5rem 0 -2.5rem -6rem; }
        @media (max-width: 991px) {
          .subscription-widget.subscription-blog .subscription__col-left img {
            max-width: 300px; } }
        @media (max-width: 767px) {
          .subscription-widget.subscription-blog .subscription__col-left img {
            max-width: 320px;
            margin: -6rem auto 0; } }
        @media (max-width: 543px) {
          .subscription-widget.subscription-blog .subscription__col-left img {
            max-width: 250px;
            margin: -5rem auto 0; } }
    .subscription-widget.subscription-blog .subscription__col-right {
      width: 64%;
      flex: 1;
      text-shadow: 1px 1px 1px white; }
      @media (max-width: 767px) {
        .subscription-widget.subscription-blog .subscription__col-right {
          width: 100%; } }
    @media (max-width: 767px) {
      .subscription-widget.subscription-blog .subscription__header {
        text-align: center; } }
    .subscription-widget.subscription-blog .subscription__heading {
      font-size: 2rem;
      line-height: 1;
      margin: 0.5rem 0; }
    .subscription-widget.subscription-blog .subscription__subheading {
      margin-bottom: 1rem;
      max-width: 90%; }
      @media (max-width: 767px) {
        .subscription-widget.subscription-blog .subscription__subheading {
          max-width: 320px;
          margin: 0 auto 1rem; } }
    .subscription-widget.subscription-blog .subscription__input-group {
      display: flex;
      align-items: stretch;
      justify-content: space-between; }
      @media (max-width: 767px) {
        .subscription-widget.subscription-blog .subscription__input-group {
          flex-direction: column;
          align-items: center;
          justify-content: center; } }
      .subscription-widget.subscription-blog .subscription__input-group input {
        flex: 1 0 auto;
        width: 33%;
        background: #fff;
        border: none;
        font-size: 1.1rem;
        padding: 1.5rem 1.1rem;
        border-radius: 5px; }
        @media (max-width: 767px) {
          .subscription-widget.subscription-blog .subscription__input-group input {
            width: 100%;
            margin-bottom: 1rem;
            text-align: center;
            max-width: 320px; }
            .subscription-widget.subscription-blog .subscription__input-group input:focus {
              box-shadow: inset 2px 2px 0 rgba(0, 0, 0, 0.1); } }
        .subscription-widget.subscription-blog .subscription__input-group input:first-child {
          margin-right: 1rem; }
          @media (max-width: 767px) {
            .subscription-widget.subscription-blog .subscription__input-group input:first-child {
              margin: 0 auto 1rem; } }
      .subscription-widget.subscription-blog .subscription__input-group button {
        margin: 0 0 0 -1rem;
        text-transform: uppercase;
        font-weight: bold;
        font-size: 1rem;
        padding: 0 2rem;
        white-space: nowrap;
        z-index: 5; }
        @media (max-width: 767px) {
          .subscription-widget.subscription-blog .subscription__input-group button {
            margin: 0 auto;
            width: 100%;
            max-width: 160px;
            padding: 1rem 2rem; } }
        .subscription-widget.subscription-blog .subscription__input-group button .loading-animation {
          margin-left: .7rem; }
    .subscription-widget.subscription-blog .subscription__discard {
      position: absolute;
      right: 1rem;
      top: 1rem;
      font-size: 13px;
      border: none;
      background: transparent;
      opacity: .1;
      transition: all .2s ease; }
      .subscription-widget.subscription-blog .subscription__discard:hover {
        opacity: .5; }
      @media (max-width: 767px) {
        .subscription-widget.subscription-blog .subscription__discard {
          width: 42px;
          height: 42px;
          border-radius: 50%;
          opacity: .2;
          font-size: 1.4rem;
          right: 1.5rem; } }
  .subscription-widget.subscription-blog-2 {
    position: relative; }
    .subscription-widget.subscription-blog-2::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      background-color: #f5f5f5; }
      @media (max-width: 767px) {
        .subscription-widget.subscription-blog-2::before {
          left: -15px;
          right: -15px; } }

@media (min-width: 768px) and (max-width: 991px) {
  .subscription-widget.subscription-blog-2::before {
    width: 100vw;
    left: 50%;
    transform: translateX(-50%); } }
      @media (min-width: 992px) {
        .subscription-widget.subscription-blog-2::before {
          width: 100vw;
          left: calc((914px - 100vw)); } }
      @media (min-width: 1200px) {
        .subscription-widget.subscription-blog-2::before {
          left: calc((1148px - 100vw)); } }
    .subscription-widget.subscription-blog-2 .subscription__wrapper {
      background: transparent;
      border-radius: 0; }
      @media (max-width: 767px) {
        .subscription-widget.subscription-blog-2 .subscription__wrapper {
          padding-top: 0;
          overflow: hidden; } }
      @media (min-width: 768px) {
        .subscription-widget.subscription-blog-2 .subscription__wrapper {
          padding-left: 0;
          padding-right: 0;
          padding-top: 1rem;
          padding-bottom: 2.5rem; } }
      @media (min-width: 1200px) {
        .subscription-widget.subscription-blog-2 .subscription__wrapper {
          padding-bottom: 2rem;
          padding-top: 2.5rem; } }
    @media (max-width: 767px) {
      .subscription-widget.subscription-blog-2 .subscription__discard {
        right: 0; } }
    .subscription-widget.subscription-blog-2 .subscription__col-right {
      position: relative;
      z-index: 1; }
      @media (min-width: 768px) {
        .subscription-widget.subscription-blog-2 .subscription__col-right {
          order: 1;
          flex-basis: 70%;
          padding-left: 0; } }
      @media (min-width: 992px) {
        .subscription-widget.subscription-blog-2 .subscription__col-right {
          flex-basis: 75%; } }
    @media (max-width: 767px) {
      .subscription-widget.subscription-blog-2 .subscription__col-left {
        height: 128px;
        position: relative; } }
    @media (min-width: 768px) {
      .subscription-widget.subscription-blog-2 .subscription__col-left {
        order: 2;
        flex-basis: 30%; } }
    @media (min-width: 992px) {
      .subscription-widget.subscription-blog-2 .subscription__col-left {
        flex-basis: 25%; } }
    .subscription-widget.subscription-blog-2 .subscription__col-left img {
      margin-top: 0; }
      @media (max-width: 767px) {
        .subscription-widget.subscription-blog-2 .subscription__col-left img {
          position: absolute;
          top: 0;
          right: 0; } }
      @media (min-width: 768px) {
        .subscription-widget.subscription-blog-2 .subscription__col-left img {
          margin-top: -1rem;
          height: 100% !important;
          max-width: unset; } }
      @media (min-width: 992px) {
        .subscription-widget.subscription-blog-2 .subscription__col-left img {
          right: 0;
          top: 0;
          position: absolute;
          margin-top: 0; } }
    .subscription-widget.subscription-blog-2 .subscription__input-group {
      display: flex; }
      @media (max-width: 767px) {
        .subscription-widget.subscription-blog-2 .subscription__input-group {
          flex-direction: column; } }
      .subscription-widget.subscription-blog-2 .subscription__input-group input,
      .subscription-widget.subscription-blog-2 .subscription__input-group .subscription__submit {
        height: 50px;
        border-radius: 4px; }
      .subscription-widget.subscription-blog-2 .subscription__input-group input {
        margin-bottom: 0;
        border: 1px solid #ccc; }
        .subscription-widget.subscription-blog-2 .subscription__input-group input:focus {
          box-shadow: 0 6px 20px -10px #55595c; }
      .subscription-widget.subscription-blog-2 .subscription__input-group .subscription__submit {
        margin: 0; }
    @media (max-width: 767px) {
      .subscription-widget.subscription-blog-2 .form-group {
        min-width: 100%; } }
    @media (min-width: 1200px) {
      .subscription-widget.subscription-blog-2 .form-group {
        flex-basis: 31.5%; } }

@media (min-width: 768px) and (max-width: 1199px) {
  .subscription-widget.subscription-blog-2 .form-group:not(:last-child) {
    flex-basis: 35%; } }
    .subscription-widget.subscription-blog-2 .form-group input, .subscription-widget.subscription-blog-2 .form-group button {
      width: 100%;
      max-width: unset; }
    .subscription-widget.subscription-blog-2 .form-label {
      color: #555; }
  .subscription-widget.subscription-blog-3 .subscription__wrapper {
    position: relative;
    background-color: transparent; }
    @media (max-width: 991px) {
      .subscription-widget.subscription-blog-3 .subscription__wrapper {
        padding-left: 0;
        padding-right: 0; } }
    @media (min-width: 1200px) {
      .subscription-widget.subscription-blog-3 .subscription__wrapper {
        padding-left: 11rem;
        padding-right: 11rem; } }
  .subscription-widget.subscription-blog-3 .subscription__discard {
    right: 0; }
  .subscription-widget.subscription-blog-3 .subscription__front {
    position: relative;
    z-index: 2; }
    @media (min-width: 768px) {
      .subscription-widget.subscription-blog-3 .subscription__front {
        width: 100%; } }
  .subscription-widget.subscription-blog-3 .subscription__heading {
    text-transform: uppercase; }
  @media (min-width: 992px) {
    .subscription-widget.subscription-blog-3 .subscription__subheading {
      margin-bottom: 1.5rem; } }
  @media (max-width: 767px) {
    .subscription-widget.subscription-blog-3 .form-group {
      min-width: 90%; } }
  @media (min-width: 768px) {
    .subscription-widget.subscription-blog-3 .form-group {
      flex-basis: 32%; } }
  .subscription-widget.subscription-blog-3 .form-group input {
    border-radius: 23px; }
    @media (min-width: 768px) {
      .subscription-widget.subscription-blog-3 .form-group input {
        width: 100%; } }
    .subscription-widget.subscription-blog-3 .form-group input:focus {
      box-shadow: 0 6px 20px -10px #818a91; }
  .subscription-widget.subscription-blog-3 button.subscription__submit {
    max-width: unset; }
    @media (min-width: 768px) {
      .subscription-widget.subscription-blog-3 button.subscription__submit {
        width: 100%;
        line-height: 45px;
        margin-left: 0; } }
  .subscription-widget.subscription-blog-3 .subscription__back {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
    @media (min-width: 768px) {
      .subscription-widget.subscription-blog-3 .subscription__back {
        left: -12rem;
        right: -12rem; } }
    @media (min-width: 1200px) {
      .subscription-widget.subscription-blog-3 .subscription__back {
        left: -3rem;
        right: -3rem; } }
    .subscription-widget.subscription-blog-3 .subscription__back--image {
      width: auto;
      max-width: unset;
      min-width: 100%;
      position: relative;
      z-index: 1; }
      @media (max-width: 767px) {
        .subscription-widget.subscription-blog-3 .subscription__back--image {
          transform: translate(-1rem, 4.5rem); } }
      @media (min-width: 768px) {
        .subscription-widget.subscription-blog-3 .subscription__back--image {
          min-height: 100%; } }
      @media (min-width: 1200px) {
        .subscription-widget.subscription-blog-3 .subscription__back--image {
          transform: translate(-4rem, 0.25rem); } }
    .subscription-widget.subscription-blog-3 .subscription__back::before {
      position: absolute;
      top: 0;
      bottom: 0;
      left: -1rem;
      right: -1rem;
      background-color: #f6f6f6; }
      @media (max-width: 767px) {
        .subscription-widget.subscription-blog-3 .subscription__back::before {
          content: ''; } }

.article-content .aditional-content {
  hyphens: unset;
  text-align: justify;
  margin-bottom: 1rem; }

.related-posts {
  position: relative;
  margin: 2rem 0 0; }
  .related-posts__heading {
    font-size: 2rem;
    padding: 0 5px; }
  .related-posts__add {
    width: 1.3rem;
    height: 1.3rem;
    background: #7159B5;
    color: #ffffff !important;
    display: inline-block;
    font-size: 1rem;
    border-radius: 50%;
    text-align: center; }
  .related-posts__carousel .owl-stage-outer {
    padding: 1rem 0 1.5rem; }
  .related-posts__carousel .owl-dots {
    margin: 0;
    position: absolute;
    top: -2.5rem;
    right: 0; }
    @media (max-width: 991px) {
      .related-posts__carousel .owl-dots {
        position: unset; } }
  .related-posts__carousel .related-post__item {
    margin: .1rem .5rem .5rem;
    position: relative;
    background: #fafafa;
    background: radial-gradient(ellipse at center, white 0%, rgba(250, 250, 250, 0.5) 100%);
    border-radius: 6px;
    padding: .75rem; }
    .related-posts__carousel .related-post__item:hover .related-post__link {
      transform: translateX(0);
      opacity: .8; }
  .related-posts__carousel .related-post__thumbnail {
    border-radius: 0;
    max-height: 120px !important;
    overflow: hidden;
    border-radius: 2px; }
    .related-posts__carousel .related-post__thumbnail:hover img {
      transform: scale(1.1); }
    .related-posts__carousel .related-post__thumbnail img {
      transition: all .35s ease;
      height: 100%;
      width: 100%;
      object-fit: cover; }
      .related-posts__carousel .related-post__thumbnail img.error {
        opacity: .65; }
  .related-posts__carousel .related-post__heading {
    margin: 1rem 0;
    line-height: 1.2em; }
    .related-posts__carousel .related-post__heading a {
      color: #252525; }
  .related-posts__carousel .related-post__excerpt {
    display: none;
    font-size: .9rem;
    color: grey;
    line-height: 1.2em;
    margin-bottom: 0; }
  .related-posts__carousel .related-post__link {
    display: none;
    color: #252525;
    font-size: .8rem;
    opacity: .75;
    text-align: right;
    transform: translateX(-10px);
    opacity: 0;
    transition: all .2s ease; }
    .related-posts__carousel .related-post__link:after {
      content: " →"; }

@media (max-width: 1199px) {
  .is-tpl-article .main-content.container {
    max-width: 100% !important; } }

.is-tpl-article .main-content.container .breadcrumbs-nav {
  max-width: 100% !important; }

.is-tpl-article .athor__wrapper {
  max-width: 800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto; }

.is-tpl-article.layout-fullscreen #main {
  padding-top: 1.5rem; }

.is-tpl-article .main-content {
  padding-bottom: 0; }

.is-tpl-article .article__footer {
  margin-bottom: 1rem; }

.is-tpl-article .article__thumbnail-wrapper.thumbnail-full img {
  width: 100%; }

.is-tpl-article .article__thumbnail-wrapper.thumbnail-small {
  width: 100%;
  margin-bottom: 1rem; }
  @media (min-width: 544px) {
    .is-tpl-article .article__thumbnail-wrapper.thumbnail-small {
      float: left;
      width: 50%;
      margin-right: 2rem; } }
  .is-tpl-article .article__thumbnail-wrapper.thumbnail-small img {
    width: 100%;
    margin: 0; }

.is-tpl-article .article__thumbnail-wrapper.thumbnail-none img {
  display: none; }

.is-tpl-article .article__category-link {
  color: #373a3c;
  background: #fff;
  padding: 0 .4rem;
  white-space: nowrap;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  transition: all .15s ease;
  margin-right: .3rem; }
  .is-tpl-article .article__category-link::before {
    content: '#';
    margin-right: -5px; }
  .is-tpl-article .article__category-link i {
    display: none; }
  .is-tpl-article .article__category-link:hover {
    color: #FF7F56; }
    .is-tpl-article .article__category-link:hover::before {
      color: #FF7F56; }

.is-tpl-article .article-content {
  font-size: 1.15rem; }
  .is-tpl-article .article-content a:not([class]) {
    text-decoration: underline; }
  .is-tpl-article .article-content a.btn, .is-tpl-article .article-content .wizard > .actions a, .wizard > .actions .is-tpl-article .article-content a {
    font-size: 1rem; }
  .is-tpl-article .article-content .divider-new.divider-light {
    margin: 1rem 0; }
  .is-tpl-article .article-content img {
    margin-bottom: 1.2rem; }

.is-tpl-article .site-footer {
  margin-top: 100px; }

div#at-share-dock.atss-bottom {
  animation: none;
  max-width: 280px;
  box-shadow: none;
  border-radius: 5px;
  overflow: hidden;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  box-shadow: 0 1px 1px 2px rgba(0, 0, 0, 0.1), 0 1px 10px 1px rgba(0, 0, 0, 0.1);
  opacity: 1;
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.38, 1.5);
  display: flex;
  justify-content: space-between; }
  body.is-loggedin div#at-share-dock.atss-bottom {
    bottom: 4.4rem; }
  div#at-share-dock.atss-bottom a {
    flex: 1 0 auto; }
  div#at-share-dock.atss-bottom .at4-count {
    display: none !important; }

body:not(.is-sticky) div#at-share-dock {
  opacity: 0;
  transform: translate(-50%, 100%);
  transition: all 0.35s cubic-bezier(0.25, 0.1, 0.38, 1.5); }

.is-tpl-article .article-wrapper {
  margin: 0 auto; }

.is-tpl-article .article-header .breadcrumbs-nav__list {
  margin: 0 auto; }

.is-tpl-article .article-heading {
  max-width: 770px;
  margin: 0 auto 15px;
  color: #010648;
  font-weight: bold;
  font-size: 36px !important;
  line-height: 48px !important; }
  @media (max-width: 767px) {
    .is-tpl-article .article-heading {
      margin: 0 0 15px;
      font-size: 30px !important;
      line-height: 42px !important; } }
  @media (max-width: 543px) {
    .is-tpl-article .article-heading {
      font-size: 24px !important;
      line-height: 36px !important; } }

.is-tpl-article .article-content {
  max-width: 770px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.15rem;
  margin: 0 auto;
  padding-bottom: 45px;
  position: relative; }
  .is-tpl-article .article-content::after {
    content: '• • •';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    color: #585F74;
    font-size: 18px;
    font-size: 22px;
    letter-spacing: 3px; }
  .is-tpl-article .article-content .table-of-contents-article {
    margin-bottom: 40px; }
    .is-tpl-article .article-content .table-of-contents-article__toggler {
      font-size: 16px; }
    .is-tpl-article .article-content .table-of-contents-article__wrapper {
      box-shadow: none;
      border: 1px solid #CCC; }
    .is-tpl-article .article-content .table-of-contents-article__list li::before {
      color: #414656; }
    .is-tpl-article .article-content .table-of-contents-article__list li a {
      color: #414656; }
  .is-tpl-article .article-content .table-scroller {
    overflow-x: auto;
    margin-bottom: 30px; }
    @media (max-width: 767px) {
      .is-tpl-article .article-content .table-scroller {
        margin-right: -15px; } }
    .is-tpl-article .article-content .table-scroller::-webkit-scrollbar {
      width: 4px;
      height: 4px; }
    .is-tpl-article .article-content .table-scroller::-webkit-scrollbar-track {
      background: #fff;
      box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
      border-radius: 2px; }
    .is-tpl-article .article-content .table-scroller::-webkit-scrollbar-thumb {
      border-radius: 2px;
      width: 4px;
      height: 4px;
      background: #7159B5; }
  .is-tpl-article .article-content table {
    width: 100%;
    border-collapse: collapse;
    border: none;
    position: relative;
    z-index: 1; }
    .is-tpl-article .article-content table::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      background-color: #fff;
      width: 100%;
      height: 100%;
      border: 1px solid #ccc;
      border-radius: 12px;
      z-index: -1; }
    .is-tpl-article .article-content table tr {
      border-bottom: 1px solid #ccc; }
    .is-tpl-article .article-content table tbody tr:last-child {
      border-bottom: none; }
    .is-tpl-article .article-content table th {
      border: 1px solid #ccc; }
      .is-tpl-article .article-content table th:first-child {
        border-radius: 12px; }
    .is-tpl-article .article-content table th {
      font-weight: 700; }
    .is-tpl-article .article-content table th, .is-tpl-article .article-content table td {
      font-size: 16px;
      line-height: 1;
      padding: 16px;
      border: none;
      border-right: 1px solid #ccc; }
      .is-tpl-article .article-content table th:last-child, .is-tpl-article .article-content table td:last-child {
        border-right: none; }
  .is-tpl-article .article-content a:not([class]) {
    text-decoration: underline; }
  .is-tpl-article .article-content a.btn, .is-tpl-article .article-content .wizard > .actions a, .wizard > .actions .is-tpl-article .article-content a {
    font-size: 1rem; }
  .is-tpl-article .article-content .divider-new.divider-light {
    margin: 1rem 0; }
  .is-tpl-article .article-content p,
  .is-tpl-article .article-content ol,
  .is-tpl-article .article-content ul {
    font-size: 20px; }
  .is-tpl-article .article-content ol,
  .is-tpl-article .article-content ul {
    margin-left: 0; }
    .is-tpl-article .article-content ol li:not(:last-child),
    .is-tpl-article .article-content ul li:not(:last-child) {
      margin-bottom: 10px; }
  .is-tpl-article .article-content p {
    color: #414656;
    font-weight: normal;
    font-size: 20px;
    line-height: 180%;
    margin-bottom: 30px;
    position: relative; }
    @media (max-width: 543px) {
      .is-tpl-article .article-content p {
        font-size: 18px;
        margin-bottom: 20px;
        line-height: 170%; } }
  .is-tpl-article .article-content h2 {
    margin-bottom: 25px;
    color: #010648;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2; }
  .is-tpl-article .article-content h3 {
    font-weight: bold;
    font-size: 20px;
    line-height: 1.2;
    color: #010648;
    margin-bottom: 20px; }
  .is-tpl-article .article-content h4, .is-tpl-article .article-content h5, .is-tpl-article .article-content h6 {
    font-weight: bold;
    font-size: 18px;
    line-height: 1.2;
    color: #010648;
    margin-bottom: 20px; }
  .is-tpl-article .article-content blockquote {
    font-style: normal;
    padding: 30px 120px 25px 40px;
    background: transparent;
    box-shadow: none;
    border-left: none;
    text-align: left;
    font-family: inherit; }
    @media (max-width: 543px) {
      .is-tpl-article .article-content blockquote {
        padding-right: 25px;
        padding-left: 25px; } }
    .is-tpl-article .article-content blockquote p {
      margin-bottom: 15px;
      text-align: left; }
    .is-tpl-article .article-content blockquote .author {
      color: #BABDC8;
      font-size: 14px;
      line-height: 21px;
      font-weight: 400; }
    .is-tpl-article .article-content blockquote::before {
      content: '';
      width: 5px;
      height: 50px;
      border-radius: 6px;
      background-color: #010648; }
  .is-tpl-article .article-content a:not([class]) {
    text-decoration: underline; }
  .is-tpl-article .article-content > img {
    margin-bottom: 30px; }
  .is-tpl-article .article-content ol:not([class]),
  .is-tpl-article .article-content ol.list-normal {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: ol-li-item;
    margin-bottom: 30px; }
    .is-tpl-article .article-content ol:not([class]) li,
    .is-tpl-article .article-content ol.list-normal li {
      counter-increment: ol-li-item;
      position: relative;
      font-size: 18px;
      line-height: 27px;
      padding-left: 40px;
      color: #414656; }
      .is-tpl-article .article-content ol:not([class]) li:not(:last-child),
      .is-tpl-article .article-content ol.list-normal li:not(:last-child) {
        margin-bottom: 15px; }
      .is-tpl-article .article-content ol:not([class]) li::before,
      .is-tpl-article .article-content ol.list-normal li::before {
        content: "0" counter(ol-li-item) ".";
        margin-right: 20px;
        font-size: 18px;
        line-height: 27px;
        font-weight: 600;
        position: absolute;
        top: 0;
        left: 0;
        background: transparent;
        color: #414656; }
      .is-tpl-article .article-content ol:not([class]) li:nth-child(+n+10)::before,
      .is-tpl-article .article-content ol.list-normal li:nth-child(+n+10)::before {
        content: counter(ol-li-item) "."; }
      .is-tpl-article .article-content ol:not([class]) li > p,
      .is-tpl-article .article-content ol.list-normal li > p {
        position: relative;
        top: -5px; }
      .is-tpl-article .article-content ol:not([class]) li > h2,
      .is-tpl-article .article-content ol.list-normal li > h2 {
        position: relative;
        top: -10px; }
      @media (max-width: 1199px) {
        .is-tpl-article .article-content ol:not([class]) li,
        .is-tpl-article .article-content ol.list-normal li {
          font-size: 16px; }
          .is-tpl-article .article-content ol:not([class]) li::before,
          .is-tpl-article .article-content ol.list-normal li::before {
            font-size: 16px;
            margin-right: 10px; } }
      @media (max-width: 543px) {
        .is-tpl-article .article-content ol:not([class]) li,
        .is-tpl-article .article-content ol.list-normal li {
          font-size: 14px;
          line-height: 21px; }
          .is-tpl-article .article-content ol:not([class]) li::before,
          .is-tpl-article .article-content ol.list-normal li::before {
            font-size: 14px;
            line-height: 21px; } }
  .is-tpl-article .article-content ul:not([class]),
  .is-tpl-article .article-content ul.list-normal {
    margin-bottom: 30px; }
    .is-tpl-article .article-content ul:not([class]) > li,
    .is-tpl-article .article-content ul.list-normal > li {
      position: relative;
      padding-left: 20px; }
      .is-tpl-article .article-content ul:not([class]) > li:not(:last-child),
      .is-tpl-article .article-content ul.list-normal > li:not(:last-child) {
        margin-bottom: 10px; }
      .is-tpl-article .article-content ul:not([class]) > li::before,
      .is-tpl-article .article-content ul.list-normal > li::before {
        content: '';
        position: absolute;
        top: 9px;
        left: 0;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #414656; }
  .is-tpl-article .article-content .bullets {
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(55, 58, 74, 0.05);
    border-radius: 12px;
    padding: 20px 40px 40px;
    margin-bottom: 30px; }
    @media (max-width: 767px) {
      .is-tpl-article .article-content .bullets {
        padding: 20px 20px 20px; } }
    .is-tpl-article .article-content .bullets__title {
      font-size: 18px;
      line-height: 27px;
      padding-bottom: 14px;
      border-bottom: 1px solid #E9ECF4;
      margin-bottom: 14px; }
    .is-tpl-article .article-content .bullets h4 {
      font-weight: 600;
      font-size: 16px;
      line-height: 16px;
      margin-bottom: 14px; }
    .is-tpl-article .article-content .bullets__cols {
      display: flex;
      justify-content: space-between; }
      @media (max-width: 767px) {
        .is-tpl-article .article-content .bullets__cols {
          display: block; } }
    .is-tpl-article .article-content .bullets__col {
      width: 45%; }
      @media (max-width: 767px) {
        .is-tpl-article .article-content .bullets__col:not(:last-child) {
          margin-bottom: 30px; } }
      @media (max-width: 767px) {
        .is-tpl-article .article-content .bullets__col {
          width: 100%; } }
      .is-tpl-article .article-content .bullets__col ul {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 0; }
        .is-tpl-article .article-content .bullets__col ul li {
          margin-bottom: 10px;
          position: relative;
          padding-left: 24px; }
          .is-tpl-article .article-content .bullets__col ul li::before {
            content: '';
            position: absolute;
            top: 5px;
            left: 0;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #BABDC8; }

.is-tpl-article .article__publication-info {
  font-size: 0;
  color: #BABDC8;
  max-width: 770px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px; }
  @media (max-width: 543px) {
    .is-tpl-article .article__publication-info {
      margin-bottom: 15px; } }
  .is-tpl-article .article__publication-info > span {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    line-height: 24px;
    margin-right: 7px;
    margin-bottom: 7px; }
    @media (max-width: 543px) {
      .is-tpl-article .article__publication-info > span {
        font-size: 14px;
        line-height: 20px; } }

.is-tpl-article .article__author-thumb {
  display: inline-block;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px; }
  @media (max-width: 543px) {
    .is-tpl-article .article__author-thumb {
      width: 24px;
      height: 24px; } }
  .is-tpl-article .article__author-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; }

.is-tpl-article .article__meta {
  margin: 0 auto 30px; }
  @media (min-width: 992px) {
    .is-tpl-article .article__meta {
      max-width: 800px; } }

.is-tpl-article .article__footer {
  margin-bottom: 1rem; }

.is-tpl-article .article__thumbnail-wrapper {
  position: relative;
  padding-bottom: 48.5%;
  margin-bottom: 40px;
  overflow: hidden; }
  @media (max-width: 543px) {
    .is-tpl-article .article__thumbnail-wrapper {
      margin-left: 0;
      margin-right: 0; } }
  .is-tpl-article .article__thumbnail-wrapper img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover; }
    .is-single .article-content .is-tpl-article .article__thumbnail-wrapper img {
      height: 100% !important; }
  @media (min-width: 544px) {
    .is-tpl-article .article__thumbnail-wrapper.thumbnail-small {
      float: left;
      width: 40%;
      margin: 20px;
      padding-bottom: 22.5%; } }
  .is-tpl-article .article__thumbnail-wrapper.thumbnail-small + .table-of-contents-article .table-of-contents-article__wrapper {
    max-width: none; }
  .is-tpl-article .article__thumbnail-wrapper.thumbnail-none {
    display: none; }
  .is-tpl-article .article__thumbnail-wrapper.thumbnail-hide {
    display: none; }
  .is-tpl-article .article__thumbnail-wrapper img {
    border-radius: 8px; }

.is-tpl-article .article__category-link {
  color: #000000;
  text-decoration: none;
  font-size: 20px;
  line-height: 1.8;
  padding-left: 0;
  padding-right: 0; }

.is-tpl-article .table-of-contents-article__wrapper.fixed-top {
  z-index: 999; }

.widget {
  border-radius: 12px;
  background: #fff; }
  .widget .divider-new {
    margin: 0; }
    .widget .divider-new:before, .widget .divider-new:after {
      display: none; }
  .widget img {
    max-width: 100%; }

@media (max-width: 991px) {
  .is-sidebar .sidebar[data-count="3"] .widget:last-child.widget-testimonials {
    min-width: 100%; } }

.is-sidebar .widget {
  width: 100%;
  padding: 2rem 15px;
  margin-bottom: 1.75rem; }
  @media (max-width: 767px) {
    .is-sidebar .widget {
      margin-bottom: 1rem; } }
  .is-sidebar .widget .widget-header:not(.widget__header),
  .is-sidebar .widget .widget-title:not(.widget__header), .is-sidebar .widget h2:not(.widget__header) {
    font-size: 1.3rem;
    font-weight: 400;
    text-align: center; }
  @media (min-width: 992px) {
    .is-sidebar .widget:last-child {
      position: sticky;
      top: 63px;
      top: 80px;
      z-index: 2; } }
  .is-sidebar .widget.legal-info li {
    font-size: .9rem;
    transition: all .2s ease; }
  .is-sidebar .widget.trust-logos {
    text-align: center;
    align-self: baseline; }
    .is-sidebar .widget.trust-logos img {
      min-width: 90%; }
      .is-sidebar .widget.trust-logos img + img {
        margin: 0 -15px; }
    @media (max-width: 991px) {
      .is-sidebar .widget.trust-logos {
        order: 100; } }
  .is-sidebar .widget.order-wizard.sw-theme-dots > ul.step-anchor > li > a {
    font-size: 10px; }
  .is-sidebar .widget.order-wizard.sw-theme-dots > ul.step-anchor > li.active a {
    font-size: 11px; }
  .is-sidebar .widget.order-wizard #step-3 i {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
    text-align: center; }
    .is-sidebar .widget.order-wizard #step-3 i:hover {
      color: #7159B5; }
  .is-sidebar .widget.order-wizard #step-3 #wizzard__sources,
  .is-sidebar .widget.order-wizard #step-3 #wizzard__pages,
  .is-sidebar .widget.order-wizard #step-3 #wizzard__duedate {
    font-size: 1rem;
    font-family: sans-serif;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.75);
    -webkit-appearance: none;
    -moz-appearance: textfield;
    max-width: 140px;
    text-align: center; }
  .is-sidebar .widget.order-wizard #step-3 .sw-deadline__wrapper {
    width: 100%; }
  .is-sidebar .widget.order-wizard #step-3 .sw-pages__wrapper,
  .is-sidebar .widget.order-wizard #step-3 .sw-sources__wrapper {
    margin: 10px auto 0;
    width: 50%;
    text-align: center; }
    @media (max-width: 991px) {
      .is-sidebar .widget.order-wizard #step-3 .sw-pages__wrapper,
      .is-sidebar .widget.order-wizard #step-3 .sw-sources__wrapper {
        width: 100%; } }
  .is-sidebar .widget.order-wizard #step-3 label[for=wizzard__duedate] {
    text-align: center; }
  .is-sidebar .widget.order-wizard #step-3 .select-duedate {
    background: #fafafa;
    font-size: 1.2rem;
    padding: .3rem 0;
    margin: 0 auto;
    max-width: 150px; }
    .is-sidebar .widget.order-wizard #step-3 .select-duedate > select {
      font-size: 1rem;
      width: 100%;
      margin: 0 auto;
      padding: 0 0 0 2.7rem; }
    .is-sidebar .widget.order-wizard #step-3 .select-duedate:before {
      color: #373a3c;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      left: 1.1rem; }
  .is-sidebar .widget.work-types-list {
    padding-left: 2rem;
    padding-right: 2rem; }
    .is-sidebar .widget.work-types-list .work-types__list {
      margin-top: 1rem;
      font-size: 1rem; }
    .is-sidebar .widget.work-types-list .work-types__item:not(:last-child) {
      border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
    .is-sidebar .widget.work-types-list .work-types__item a {
      display: block;
      color: #242424;
      padding: .7rem 1rem;
      position: relative;
      line-height: 1; }
      .is-sidebar .widget.work-types-list .work-types__item a:before {
        content: "\f054";
        font-size: .65rem;
        font-family: "fontawesome";
        color: #194aab;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%); }
      .is-sidebar .widget.work-types-list .work-types__item a:hover {
        color: #194aab; }
  .is-sidebar .widget.widget-wsg ul.list-check {
    margin: 1rem auto;
    max-width: 280px; }
    .is-sidebar .widget.widget-wsg ul.list-check li {
      font-size: 1rem; }
      .is-sidebar .widget.widget-wsg ul.list-check li:before {
        font-family: "fontawesome";
        content: "\f00c";
        font-size: .75rem;
        position: relative;
        top: -1px;
        border-radius: 50%;
        width: 18px;
        height: 18px;
        text-align: center;
        border: 1px solid;
        background: white; }
  @media (max-width: 991px) {
    .is-sidebar .widget.widget-wsg {
      display: flex;
      flex-direction: column;
      justify-content: center; } }
  .is-sidebar .widget.order-wizard {
    background: #fff; }
    .is-sidebar .widget.order-wizard .sw-deadline__wrapper {
      width: 100%;
      padding: 0 15px; }
      .is-sidebar .widget.order-wizard .sw-deadline__wrapper .select-styled {
        background: #fafafa;
        border-radius: 35px;
        padding: 0rem .4rem 0rem 2rem; }
    .is-sidebar .widget.order-wizard .sw-pages__wrapper,
    .is-sidebar .widget.order-wizard .sw-sources__wrapper {
      width: 50%; }
      .is-sidebar .widget.order-wizard .sw-pages__wrapper #wizzard__pages,
      .is-sidebar .widget.order-wizard .sw-pages__wrapper #wizzard__sources,
      .is-sidebar .widget.order-wizard .sw-sources__wrapper #wizzard__pages,
      .is-sidebar .widget.order-wizard .sw-sources__wrapper #wizzard__sources {
        background: #fafafa;
        border-radius: 35px; }
        .is-sidebar .widget.order-wizard .sw-pages__wrapper #wizzard__pages:focus,
        .is-sidebar .widget.order-wizard .sw-pages__wrapper #wizzard__sources:focus,
        .is-sidebar .widget.order-wizard .sw-sources__wrapper #wizzard__pages:focus,
        .is-sidebar .widget.order-wizard .sw-sources__wrapper #wizzard__sources:focus {
          box-shadow: none;
          border-color: #fff;
          box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.2); }
  @media (max-width: 991px) {
    .is-sidebar .widget.banner-free-features {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center; } }
  @media (max-width: 991px) {
    .is-sidebar .widget {
      width: 48%; } }
  @media (max-width: 767px) {
    .is-sidebar .widget {
      width: 48%; } }
  @media (max-width: 543px) {
    .is-sidebar .widget {
      width: 100%;
      margin: 0 auto 2rem; } }
  @media (max-width: 991px) {
    .is-sidebar .widget.price-calculator {
      order: -1; }
    .is-sidebar .widget.banner-free-features {
      order: -1; }
      .is-sidebar .widget.banner-free-features img {
        width: 100%;
        position: relative;
        top: -2rem; }
    .is-sidebar .widget.order-button {
      order: 100;
      display: none; } }

@media (max-width: 991px) {
  .is-sidebar.is-tpl-article .sidebar[data-count="3"] .widget.order-wizard {
    display: none; } }

main.main-content.with-sidebar {
  display: flex; }
  @media (max-width: 991px) {
    main.main-content.with-sidebar {
      flex-direction: column; } }
  main.main-content.with-sidebar > .article-wrapper {
    width: calc(70% - 3rem);
    flex: 1 0; }
    @media (max-width: 991px) {
      main.main-content.with-sidebar > .article-wrapper {
        width: 100%; } }
  main.main-content.with-sidebar > .sidebar {
    max-width: 350px;
    min-width: 300px;
    width: 30%;
    margin-left: 3rem;
    margin-top: 2rem;
    flex: 1 0;
    padding-top: 3.5rem; }
    @media (max-width: 991px) {
      main.main-content.with-sidebar > .sidebar {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        margin-left: 0;
        width: 100%;
        max-width: unset;
        padding: 1rem 0; } }

.widget.widget-testimonials {
  padding-left: 0 !important;
  padding-right: 0 !important;
  border: 1px solid #7159B5; }
  .widget.widget-testimonials .owl-carousel.owl-dots-top .owl-dots {
    position: absolute;
    top: -2rem;
    right: 1rem;
    opacity: 0;
    transition: opacity .15s ease; }
  .widget.widget-testimonials .owl-carousel.owl-dots-top:hover .owl-dots {
    opacity: 1; }
  .widget.widget-testimonials .owl-carousel.owl-dots-small .owl-dots .owl-dot span {
    width: 6px;
    height: 6px; }
  .widget.widget-testimonials .owl-carousel.owl-loaded.owl-grab .testimonial__item {
    opacity: .9; }
  .widget.widget-testimonials .owl-carousel .active .testimonial__avatar {
    animation: fadeInRight .4s ease .1s both;
    font-style: normal; }
  .widget.widget-testimonials .owl-carousel .active .testimonial__rating i:nth-child(1) {
    animation: bounceIn .4s ease .1s; }
  .widget.widget-testimonials .owl-carousel .active .testimonial__rating i:nth-child(2) {
    animation: bounceIn .4s ease .15s; }
  .widget.widget-testimonials .owl-carousel .active .testimonial__rating i:nth-child(3) {
    animation: bounceIn .4s ease .20s; }
  .widget.widget-testimonials .owl-carousel .active .testimonial__rating i:nth-child(4) {
    animation: bounceIn .4s ease .25s; }
  .widget.widget-testimonials .owl-carousel .active .testimonial__rating i:nth-child(5) {
    animation: bounceIn .4s ease .3s; }
  .widget.widget-testimonials .owl-carousel .active .testimonial__title {
    animation: fadeInLeft .5s ease .1s; }
  .widget.widget-testimonials .owl-carousel .active .testimonial__author {
    animation: fadeInLeft .6s ease .15s; }
  .widget.widget-testimonials .owl-carousel .active .testimonial__text {
    animation: fadeInRight .6s ease both; }
  .widget.widget-testimonials .testimonial__wrapper {
    padding: .1rem 1.5rem; }
  .widget.widget-testimonials .testimonial__item {
    background: transparent;
    border: none;
    font-size: 1rem;
    border-radius: 4px; }
    .sidebar .widget.widget-testimonials .testimonial__item {
      box-shadow: none;
      margin: 0; }
      .sidebar .widget.widget-testimonials .testimonial__item:before {
        filter: drop-shadow(-2px 3px 0 rgba(113, 89, 181, 0.2));
        z-index: 10;
        top: 0;
        left: -.75rem;
        font-size: 4rem; }
    .widget.widget-testimonials .testimonial__item:before {
      display: inline-block;
      color: #7159B5;
      transition: transform .25s ease;
      top: 0;
      height: 32px;
      line-height: 1em; }
  .widget.widget-testimonials .testimonial__avatar {
    opacity: 0; }
    .widget.widget-testimonials .testimonial__avatar img {
      width: 68px;
      height: 68px;
      object-fit: cover;
      float: left;
      position: relative;
      top: -.5rem;
      left: -.3rem;
      margin: 0 .4rem 0 0; }
  .widget.widget-testimonials .testimonial__author {
    font-size: 1.2rem;
    line-height: 1.4rem;
    font-weight: bold;
    color: #252525;
    margin-bottom: .1rem;
    font-family: "Gilroy", "Helvetica Neue", Arial, sans-serif; }
  .widget.widget-testimonials .testimonial__title {
    font-size: .85rem;
    font-family: "Gilroy", "Helvetica Neue", Arial, sans-serif; }
  .widget.widget-testimonials .testimonial__rating {
    font-size: .8rem; }
    .widget.widget-testimonials .testimonial__rating i {
      display: inline-block;
      color: #ff9800; }
  .widget.widget-testimonials .testimonial__text {
    /* Let's get this party started */
    /* Track */
    /* Handle */
    clear: both;
    margin-top: .75rem;
    font-style: italic;
    font-size: 1.1rem;
    text-align: justify;
    hyphens: auto;
    text-align: left;
    opacity: 0;
    max-height: 300px;
    overflow-y: auto; }
    .widget.widget-testimonials .testimonial__text::-webkit-scrollbar {
      -webkit-appearance: none;
      width: 2px;
      height: 2px; }
    .widget.widget-testimonials .testimonial__text::-webkit-scrollbar-track {
      background: #fff;
      box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.07);
      border-radius: 10px;
      background: #fbfbfb;
      visibility: hidden; }
    .widget.widget-testimonials .testimonial__text:hover::-webkit-scrollbar-track {
      visibility: visible; }
    .widget.widget-testimonials .testimonial__text::-webkit-scrollbar-thumb {
      border-radius: 10px;
      background: #7159B5;
      visibility: hidden; }
    .widget.widget-testimonials .testimonial__text:hover::-webkit-scrollbar-thumb {
      visibility: visible; }

.widget.wiget-paysystems {
  text-align: center;
  padding: 1rem 0; }
  .widget.wiget-paysystems .widget-title {
    font-size: 1.4rem;
    font-weight: 400;
    text-transform: uppercase; }
  .widget.wiget-paysystems .pay-list {
    padding: 0;
    margin: 0; }
    .widget.wiget-paysystems .pay-list li {
      display: inline-block;
      font-size: 3.2rem;
      color: silver;
      transition: all .2s ease-in-out; }
      .widget.wiget-paysystems .pay-list li:hover {
        transform: scale(1.1);
        color: #7159B5; }

.widget.banner-free-features {
  background-color: #7159B5;
  color: #ffffff;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 1.1rem; }
  .widget.banner-free-features img[src^="../static/img/free-features.svg"] {
    filter: drop-shadow(-2px -1px 2px rgba(0, 0, 0, 0.1));
    margin-top: -3rem; }
    .widget.banner-free-features img[src^="../static/img/free-features.svg"] + h2 {
      color: #ffffff; }
      .widget.banner-free-features img[src^="../static/img/free-features.svg"] + h2:after {
        margin: .2rem auto; }
  .widget.banner-free-features .tag {
    background: #7159B5;
    color: #ffffff;
    border: 1px solid #ffffff;
    font-weight: 600;
    font-size: 11px;
    top: -3px;
    position: relative; }
  .widget.banner-free-features .widget-header {
    color: #ffffff;
    font-size: 2rem; }
    .widget.banner-free-features .widget-header:after {
      height: 3px;
      background: #FDE175; }
  .widget.banner-free-features ul {
    color: #ffffff;
    padding: 0 0 0 5px;
    max-width: 90%;
    margin: auto; }
    @media (max-width: 991px) {
      .widget.banner-free-features ul {
        max-width: 100%;
        height: 40%;
        display: flex;
        justify-content: space-around;
        flex-flow: column nowrap; } }

.widget.price-calculator {
  border-radius: 12px;
  background: #fff; }
  @media (min-width: 992px) {
    .widget.price-calculator label {
      margin-bottom: 3px; } }
  .widget.price-calculator > form > div.deadline-wrapper {
    margin-top: 2.2rem !important; }
  .widget.price-calculator .btn-radio {
    background-color: #fafafa;
    font-size: .9rem;
    border-radius: 25px !important;
    margin: 2px 2px 2px;
    border: none;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); }
    .widget.price-calculator .btn-radio.active {
      background-color: #7159B5;
      color: #ffffff;
      box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.1), 0 -1px 1px rgba(113, 89, 181, 0.3); }
  .widget.price-calculator .urgency__wrapper {
    margin: 1.17rem auto 0.5rem; }
    .widget.price-calculator .urgency__wrapper .select2-container .selection .select2-selection--single {
      border: none; }
    .widget.price-calculator .urgency__wrapper .select2-container .selection .select2-selection__rendered {
      border-radius: 25px !important;
      background-color: #fafafa;
      box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); }
  .widget.price-calculator img[src="/static/img/trust-badges-2.svg"] {
    max-width: 320px; }

.single-price-calculator {
  padding: .5rem 0;
  border-radius: 4px; }
  .single-price-calculator__heading {
    text-align: center;
    font-weight: bold; }
    .single-price-calculator__heading i {
      opacity: .2; }
  .single-price-calculator .btn-radio {
    padding: .5rem 5px !important; }
    @media (max-width: 550px) and (min-width: 440px) {
      .single-price-calculator .btn-radio {
        flex-basis: 31%; } }
    .single-price-calculator .btn-radio[data-worktype] {
      white-space: nowrap !important; }
  .single-price-calculator > .row {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: stretch;
    flex-wrap: wrap; }
    .single-price-calculator > .row > .col-md-7 {
      padding-top: 0;
      margin-bottom: 0 !important;
      width: 60%; }
    .single-price-calculator > .row > .col-md-5 {
      width: 40%; }
      .single-price-calculator > .row > .col-md-5 .urgency__wrapper {
        margin: 2rem auto 1rem; }
    @media (max-width: 767px) {
      .single-price-calculator > .row {
        box-shadow: 0 4px 14px -4px rgba(21, 88, 168, 0.2), 0 2px 25px -5px rgba(21, 88, 168, 0.1), 0 1px 1px rgba(21, 88, 168, 0.05);
        padding: 2rem;
        border-radius: 15px; } }
    @media (max-width: 767px) {
      .single-price-calculator > .row > .col-md-7,
      .single-price-calculator > .row > .col-md-5 {
        min-width: 100%;
        padding: 0 !important; }
      .single-price-calculator > .row > .col-md-7 .btn-radio {
        padding: .7rem 1rem !important; }
      .single-price-calculator > .row > .col-md-5 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 0; }
        .single-price-calculator > .row > .col-md-5 div {
          width: 100%; }
        .single-price-calculator > .row > .col-md-5 .price-value {
          padding-top: 0 !important;
          font-size: 1.5rem; }
          .single-price-calculator > .row > .col-md-5 .price-value + div {
            order: -1; } }

.de.single-price-calculator .paperTypeSubj {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between; }
  .de.single-price-calculator .paperTypeSubj .typeWrapper {
    width: 48%;
    min-width: 210px;
    flex-grow: 1; }
    .de.single-price-calculator .paperTypeSubj .typeWrapper:first-of-type {
      padding-right: 15px; }
      @media (max-width: 991px) {
        .de.single-price-calculator .paperTypeSubj .typeWrapper:first-of-type {
          padding-right: 0; } }
      @media (max-width: 767px) {
        .de.single-price-calculator .paperTypeSubj .typeWrapper:first-of-type {
          padding-right: 15px; } }
      @media screen and (max-width: 510px) {
        .de.single-price-calculator .paperTypeSubj .typeWrapper:first-of-type {
          padding-right: 0; } }

.article__footer .de.single-price-calculator .paperTypeSubj .typeWrapper:first-of-type {
  padding-right: 0; }
  @media (max-width: 767px) {
    .article__footer .de.single-price-calculator .paperTypeSubj .typeWrapper:first-of-type {
      padding-right: 15px; } }
  @media screen and (max-width: 532px) {
    .article__footer .de.single-price-calculator .paperTypeSubj .typeWrapper:first-of-type {
      padding-right: 0; } }

label[for="orderUrgency"] {
  opacity: 0;
  transition: opacity .5s ease; }
  body.is-ready label[for="orderUrgency"] {
    opacity: 1; }

.order-now, [data-order] {
  cursor: pointer; }

#price-calculator .urgency__section .urgency__date {
  display: none; }

#price-calculator .urgency__section .urgency__order + .select2 {
  padding: 11px 0; }

.deadline-wrapper {
  position: relative;
  min-height: 35px; }
  .deadline-wrapper + div:not([class]) {
    line-height: 1rem; }
  .deadline-wrapper:before {
    content: "\f110";
    font-family: "fontawesome";
    color: #7159B5;
    font-size: 20px;
    position: absolute;
    left: 48%;
    top: -50%;
    text-align: center;
    animation: fa-spin 1s linear infinite;
    z-index: 10000;
    border-radius: 50%;
    line-height: 20px;
    width: 20px;
    height: 20px; }
    body.is-ready .deadline-wrapper:before {
      display: none; }

.urgency__wrapper {
  position: relative;
  max-width: 250px;
  margin: 0 auto;
  transition: all .2s ease;
  opacity: 0;
  height: 0;
  overflow: hidden; }
  body.is-orderinfo .urgency__wrapper {
    top: 2px;
    max-width: 100%; }
  body.is-order .urgency__wrapper {
    top: 1.035rem; }
  body.is-ready .urgency__wrapper {
    opacity: 1;
    height: auto;
    overflow: visible; }

.urgency__date {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  height: 1.3rem;
  text-align: center;
  white-space: nowrap;
  padding-bottom: .3rem; }
  body.is-orderinfo .urgency__date {
    justify-content: flex-start; }
    body.is-orderinfo .urgency__date span {
      font-size: .85rem; }
  .urgency__date span {
    display: block;
    font-size: .85rem; }
    body.is-ready:not(.is-orderinfo) .urgency__date span:before {
      content: "" " ";
      font-family: "fontawesome";
      opacity: .25; }

@media (max-width: 991px) {
  body.is-order .urgency__choice {
    margin: 2rem auto 3rem; } }

.urgency__choice .urgency__decrease, .urgency__choice .urgency__increase {
  position: absolute;
  bottom: 0;
  top: 0;
  width: 20%;
  max-width: 50px;
  display: block;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  font-size: 14px; }
  body.is-ready .urgency__choice .urgency__decrease, body.is-ready .urgency__choice .urgency__increase {
    opacity: 1; }
  .urgency__choice .urgency__decrease.disabled, .urgency__choice .urgency__increase.disabled {
    opacity: .2 !important; }
  .urgency__choice .urgency__decrease:before, .urgency__choice .urgency__increase:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  .urgency__choice .urgency__decrease:active:before, .urgency__choice .urgency__increase:active:before {
    opacity: .8; }
  .urgency__choice .urgency__decrease:hover:before, .urgency__choice .urgency__increase:hover:before {
    color: #7159B5; }

.urgency__choice .urgency__increase {
  right: 0; }

.urgency__choice .urgency__decrease {
  left: 0; }

.urgency__choice .select2 {
  width: 100% !important;
  padding: 0; }
  .urgency__choice .select2 .select2-selection__rendered {
    padding: 0.23rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center; }
  .urgency__choice .select2 .select2-selection__arrow {
    display: none; }

.urgency__choice + span.select2-container.select2-container--default.select2-container--open .select2-dropdown {
  border-radius: 6px; }
  .urgency__choice + span.select2-container.select2-container--default.select2-container--open .select2-dropdown--above {
    top: -20px;
    animation: dropdown-fadeInDown .2s ease both; }
  .urgency__choice + span.select2-container.select2-container--default.select2-container--open .select2-dropdown--below {
    animation: dropdown-fadeInUp .2s ease both; }

.widget.price-mini-orderform {
  width: 100%;
  max-width: 755px;
  margin: 1rem auto;
  padding: 1.5rem 0 0;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(139, 171, 195, 0.4);
  background-color: #ffffff; }
  .widget.price-mini-orderform #paperType + .select2, .widget.price-mini-orderform #subj + .select2, .widget.price-mini-orderform #deadline {
    width: 100% !important; }
  .widget.price-mini-orderform .widget__header {
    margin-bottom: 0.5rem; }
  .widget.price-mini-orderform .widget__heading {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    text-align: center; }
    @media (max-width: 991px) {
      .widget.price-mini-orderform .widget__heading {
        font-size: 26px; } }
    @media (max-width: 543px) {
      .widget.price-mini-orderform .widget__heading {
        font-size: 24px;
        line-height: unset; } }
  .widget.price-mini-orderform .widget__body {
    padding: 1.5rem 1.5rem 1rem; }
    @media (max-width: 543px) {
      .widget.price-mini-orderform .widget__body {
        padding: 1rem 1rem 0; } }
  .widget.price-mini-orderform .widget__row {
    display: flex;
    flex-wrap: wrap; }
    .widget.price-mini-orderform .widget__row.work-type [data-worktype] {
      margin: .5rem .3rem;
      flex: 1 1 auto;
      padding: 1.1rem .3rem;
      color: rgba(255, 255, 255, 0.5);
      font-size: 17px;
      font-weight: 500;
      white-space: nowrap !important;
      border-radius: 6px;
      box-shadow: none;
      width: 200px;
      border: 2px solid #e7e7e8;
      transition: .3s ease; }
      .widget.price-mini-orderform .widget__row.work-type [data-worktype]:hover, .widget.price-mini-orderform .widget__row.work-type [data-worktype]:focus {
        color: rgba(255, 255, 255, 0.8); }
      .widget.price-mini-orderform .widget__row.work-type [data-worktype].active {
        border-color: transparent;
        background: #49cf43;
        color: #fff;
        box-shadow: 0 0 20px rgba(73, 207, 67, 0.7); }
    .widget.price-mini-orderform .widget__row.selects {
      flex-wrap: nowrap; }
      .widget.price-mini-orderform .widget__row.selects .widget__col {
        width: 50%;
        flex: 45%; }
        .widget.price-mini-orderform .widget__row.selects .widget__col .select2.select2-container {
          max-width: 340px;
          border: 2px solid #e7e7e8;
          padding: .5rem 0;
          height: 48px;
          margin: .5rem 0;
          border-radius: 6px;
          transition: .1s ease; }
          .widget.price-mini-orderform .widget__row.selects .widget__col .select2.select2-container.btn-lock {
            background: #e7e7e8; }
          .widget.price-mini-orderform .widget__row.selects .widget__col .select2.select2-container--open {
            border-color: rgba(231, 231, 232, 0.4); }
          @media (max-width: 1199px) {
            .widget.price-mini-orderform .widget__row.selects .widget__col .select2.select2-container {
              max-width: 232px; } }
          @media (max-width: 991px) {
            .widget.price-mini-orderform .widget__row.selects .widget__col .select2.select2-container {
              max-width: 100%; } }
          .widget.price-mini-orderform .widget__row.selects .widget__col .select2.select2-container .select2-selection {
            border: none; }
            .widget.price-mini-orderform .widget__row.selects .widget__col .select2.select2-container .select2-selection__rendered {
              padding-bottom: 0; }
    @media (max-width: 991px) {
      .widget.price-mini-orderform .widget__row {
        flex-wrap: wrap !important; } }
  .widget.price-mini-orderform .widget__col {
    position: relative;
    margin-top: 1.5rem;
    max-width: 100%;
    flex: 45%; }
    .widget.price-mini-orderform .widget__col:first-child {
      margin-right: 0.5rem; }
    .widget.price-mini-orderform .widget__col:not(.pages), .widget.price-mini-orderform .widget__col:not(.button) {
      width: 100% !important; }
    .widget.price-mini-orderform .widget__col.pages {
      min-width: 220px; }
    .widget.price-mini-orderform .widget__col.button {
      display: flex;
      justify-content: center; }
    @media (max-width: 543px) {
      .widget.price-mini-orderform .widget__col {
        flex: 100% !important; }
        .widget.price-mini-orderform .widget__col:first-child {
          margin-right: 0; } }
  .widget.price-mini-orderform .widget__section.urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative; }
  .widget.price-mini-orderform .widget__section .urgency__wrapper {
    margin: 0;
    width: 100%;
    max-width: 100%; }
    .widget.price-mini-orderform .widget__section .urgency__wrapper input.datepicker#deadline {
      max-width: 340px;
      margin: 0;
      height: 48px;
      border-radius: 6px;
      border: 2px solid #e7e7e8;
      font-size: 16px;
      color: #444; }
      @media (max-width: 991px) {
        .widget.price-mini-orderform .widget__section .urgency__wrapper input.datepicker#deadline {
          max-width: 100%; } }
  .widget.price-mini-orderform .widget__label {
    position: absolute;
    top: -1rem;
    left: .2rem;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7); }
    @media (max-width: 1199px) {
      .widget.price-mini-orderform .widget__label {
        font-size: 12px; } }
  .widget.price-mini-orderform .widget__footer {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #f7f7f7; }
    @media (max-width: 543px) {
      .widget.price-mini-orderform .widget__footer {
        padding: 1rem; } }
  .widget.price-mini-orderform .widget__pages--count {
    display: flex;
    align-items: center;
    flex-wrap: wrap; }
    .widget.price-mini-orderform .widget__pages--count span {
      flex: 50%;
      display: inline-block;
      color: #6f687a;
      font-size: 16px;
      font-weight: 400; }
    .widget.price-mini-orderform .widget__pages--count input.number-for-range {
      display: flex;
      max-width: 65px;
      flex: 30%;
      font-size: 22px;
      font-weight: 700;
      margin-top: 0;
      border: none;
      color: #49cf43; }
  .widget.price-mini-orderform .widget__pages--range::-webkit-slider-thumb {
    background: #49cf43; }
  .widget.price-mini-orderform .widget__pages--range::-webkit-slider-runnable-track {
    box-shadow: none;
    background: #dddddd; }
  .widget.price-mini-orderform .widget__pages--range::-moz-range-thumb {
    background: #49cf43; }
  .widget.price-mini-orderform .widget__button {
    padding: 1rem 1.5rem;
    width: 310px;
    max-width: 100%;
    font-size: 24px;
    font-weight: 500;
    border-radius: 35px;
    background: #7159B5;
    color: #ffffff; }
    .widget.price-mini-orderform .widget__button .currency:before, .widget.price-mini-orderform .widget__button .table-price .order-now:before, .table-price .widget.price-mini-orderform .widget__button .order-now:before {
      font-size: 20px;
      color: white; }
    @media (max-width: 543px) {
      .widget.price-mini-orderform .widget__button {
        font-size: 20px; } }
  .widget.price-mini-orderform .widget__price {
    font-weight: 700;
    font-size: 26px;
    display: inline-block; }
    @media (max-width: 543px) {
      .widget.price-mini-orderform .widget__price {
        font-size: 20px; } }

@keyframes dropdown-fadeInUp {
  from {
    transform: translateY(2.3rem) scale(0.99);
    opacity: 0; }
  to {
    transform: translateY(3rem);
    opacity: 1; } }

@keyframes dropdown-fadeInDown {
  from {
    transform: translateY(3.5rem) scale(0.99);
    opacity: 0; }
  to {
    transform: translateY(2.7rem);
    opacity: 1; } }

.table-of-contents.is-hidden .table-of-contents__wrapper {
  transform: translateX(-100%);
  box-shadow: none; }

.table-of-contents.is-hidden .table-of-contents__toggler {
  top: unset;
  bottom: 2rem;
  right: -46px;
  border-radius: 0 10px 10px 0;
  color: #ffffff;
  background-color: #7159B5;
  box-shadow: 0 5px 4px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease;
  transform: scale(1); }
  .table-of-contents.is-hidden .table-of-contents__toggler:before {
    content: "\f0cb";
    text-shadow: 1px 1px rgba(0, 0, 0, 0.1); }
  @media (max-width: 543px) {
    .table-of-contents.is-hidden .table-of-contents__toggler {
      bottom: 50%;
      transform: translateX(-90%); }
      body.is-sticky .table-of-contents.is-hidden .table-of-contents__toggler {
        transform: translateX(-2%);
        opacity: 1; } }

.table-of-contents__wrapper {
  background: #fff;
  position: fixed;
  z-index: 10000000;
  bottom: 0;
  left: 0;
  font-family: sans-serif;
  font-size: 14px;
  box-shadow: 2px 0 15px -5px rgba(22, 71, 121, 0.2), 0 0 2px rgba(0, 0, 0, 0.07);
  transition: all 0.65s cubic-bezier(0.57, 0.02, 0.4, 0.76);
  transform: translate3d(0, 0, 0);
  max-width: 100%; }
  @media (max-width: 543px) {
    .table-of-contents__wrapper {
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); } }

.table-of-contents__toggler {
  width: 52px;
  height: 52px;
  display: block;
  border: none;
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: transparent;
  color: #9fa3a7;
  text-shadow: 1px 1px white;
  font-weight: normal;
  transform: scale(0.6);
  transition: transform 0.2s ease; }
  .table-of-contents__toggler:hover {
    color: #252525;
    transform: scale(0.7); }
  .table-of-contents__toggler:active {
    transform: scale(0.5); }
  .table-of-contents__toggler:before {
    font-size: 1.65rem;
    font-family: "fontawesome";
    content: "\f00d"; }

.table-of-contents__list {
  margin: 0;
  counter-reset: list-item;
  max-width: 400px;
  max-height: 85vh;
  padding: 1rem 0rem 1rem 0.6rem;
  overflow-y: auto;
  -ms-overflow-style: none !important;
  overflow: -moz-scrollbars-none !important; }
  .table-of-contents__list::-webkit-scrollbar {
    width: 0 !important;
    -webkit-appearance: none; }
  @media (max-width: 767px) {
    .table-of-contents__list {
      max-width: 320px;
      max-height: 320px; } }
  @media (max-width: 543px) {
    .table-of-contents__list {
      max-width: 100%; } }

.table-of-contents__item {
  counter-increment: list-item;
  display: block;
  max-width: 91%; }
  .table-of-contents__item.heading-level__4, .table-of-contents__item.heading-level__5, .table-of-contents__item.heading-level__6 {
    display: none; }

.table-of-contents__link {
  position: relative;
  display: block;
  line-height: 1.7rem; }
  .table-of-contents__link .tag-name {
    float: right;
    text-transform: lowercase;
    opacity: 0.2; }
  .table-of-contents__link em {
    min-width: 100px;
    font-style: normal;
    transition: color 0.15s ease, background 0.15s ease, transform 0.25s;
    border-radius: 3px;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis; }
  .table-of-contents__link.active, .table-of-contents__link:hover {
    color: #7159B5 !important; }
  .table-of-contents__link:hover {
    color: #7159B5; }
  .table-of-contents__link:before {
    line-height: 22px;
    font-family: "fontawesome";
    position: absolute;
    transform: translateX(-100%);
    top: 2px;
    left: -2ch;
    font-size: 4px;
    height: 100%;
    letter-spacing: 8px; }
  .table-of-contents__link.level__1 {
    color: #252525;
    margin-left: 2ch; }
  .table-of-contents__link.level__2 {
    color: #7a7d80;
    margin-left: 4ch; }
    .table-of-contents__link.level__2:before {
      content: "\f111"; }
  .table-of-contents__link.level__3 {
    color: #abb0b2;
    margin-left: 7.5ch; }
    .table-of-contents__link.level__3:before {
      content: "" ""; }

.table-of-contents-article {
  margin-bottom: 20px; }
  .table-of-contents-article__item.heading-level__4, .table-of-contents-article__item.heading-level__5, .table-of-contents-article__item.heading-level__6 {
    display: none; }
  .table-of-contents-article__wrapper {
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    padding: 0 20px; }
    @media (max-width: 543px) {
      .table-of-contents-article__wrapper {
        padding: 0 10px; } }
    .table-of-contents-article__wrapper.fixed-top {
      position: fixed;
      top: 90px;
      left: 0;
      z-index: 10000; }
  .table-of-contents-article__list-wrapper {
    display: flex;
    overflow: hidden;
    transition: height 0.25s ease-in; }
  .table-of-contents-article__list {
    counter-reset: item;
    padding: 0 10px 0 0;
    max-height: 100%;
    width: 100%;
    /* Let's get this party started */
    /* Track */
    /* Handle */ }
    .table-of-contents-article__list::-webkit-scrollbar {
      -webkit-appearance: none;
      width: 3px;
      height: 3px; }
    .table-of-contents-article__list::-webkit-scrollbar-track {
      background: #fff;
      box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.07);
      border-radius: 10px;
      background: #fbfbfb;
      visibility: visible; }
    .table-of-contents-article__list:hover::-webkit-scrollbar-track {
      visibility: visible; }
    .table-of-contents-article__list::-webkit-scrollbar-thumb {
      border-radius: 10px;
      background: rgba(112, 112, 112, 0.2);
      visibility: visible; }
    .table-of-contents-article__list:hover::-webkit-scrollbar-thumb {
      visibility: visible; }
    .table-of-contents-article__list li {
      position: relative;
      margin: 0 !important;
      list-style: none;
      counter-increment: item;
      font-size: 15px;
      padding: 4px 0 4px 30px; }
      .table-of-contents-article__list li::before {
        position: absolute;
        content: counter(item, decimal-leading-zero) ".";
        display: block;
        left: 0;
        width: 2ch;
        text-align: right;
        margin-right: 12px;
        color: #707070; }
      .table-of-contents-article__list li a {
        color: #707070;
        display: block;
        transition: 0.25s; }
        .table-of-contents-article__list li a:hover {
          color: #000000 !important; }
      .table-of-contents-article__list li em {
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; }
  .table-of-contents-article__toggler {
    user-select: none;
    font-size: 17px;
    color: #000000;
    line-height: 18px;
    font-weight: 500;
    padding: 16px 0; }
    .table-of-contents-article__toggler svg {
      margin-right: 13px; }

.fso-widget #fo__pages, .fso-widget #fo__orderDeadline, .fso-widget .select2-container.select2-container--default .select2-selection__rendered {
  border-radius: 1rem;
  border: 1px solid #DBDAE0;
  background: #fff;
  padding: .3rem .9rem; }
  .fso-widget #fo__pages:focus, .fso-widget #fo__orderDeadline:focus, .fso-widget .select2-container.select2-container--default .select2-selection__rendered:focus {
    border-color: #DBDAE0; }

.fso-widget {
  position: fixed;
  right: 0;
  top: 30%;
  width: 280px;
  z-index: 100000;
  transform: translate(150%, 0);
  border-radius: 8px 0 0 8px;
  background: #FFFFFF;
  transition: transform 0.8s ease-in-out, box-shadow 1s cubic-bezier(0.65, 0.05, 0.36, 1); }
  .fso-widget.active {
    transform: translate(100%, 0); }
  .fso-widget label {
    margin: 1rem 0 0;
    padding-left: .5rem; }
  .fso-widget.in {
    box-shadow: 5px 0 35px rgba(0, 0, 0, 0.2), 10px 5px 15px -10px rgba(0, 0, 0, 0.8);
    transform: translate(0, 0); }
    .fso-widget.in .fso-widget__toggler-content {
      box-shadow: inset 0 1px 0 rgba(100, 75, 169, 0.5), inset 0 -4px 5px -2px rgba(0, 0, 0, 0.2);
      transform: rotate(-90deg) translateX(-160px) scale(1);
      padding: .4rem 1rem; }
      .fso-widget.in .fso-widget__toggler-content span {
        transition: none;
        width: 0;
        transform: scaleX(0); }
      .fso-widget.in .fso-widget__toggler-content .fa-times {
        display: inline-block;
        transform: rotate(90deg) translate(2px, 0) scale(1.3);
        opacity: 1;
        width: unset; }
        .fso-widget.in .fso-widget__toggler-content .fa-times:active {
          opacity: .75;
          text-shadow: none; }
  .fso-widget__wrapper {
    padding-top: 1rem; }
  .fso-widget__heading, .fso-widget__subheading {
    padding-left: 1.5rem; }
  .fso-widget__heading {
    text-transform: uppercase;
    color: #7159B5;
    margin-bottom: 0;
    position: relative; }
    .fso-widget__heading:before {
      content: "";
      background: #7159B5;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 3px; }
  .fso-widget__subheading {
    font-size: 1rem;
    opacity: .5; }
  .fso-widget__toggler-content {
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(100, 75, 169, 0.8), inset 0 -2px 5px -2px rgba(0, 0, 0, 0.2), 0 -4px 5px -1px rgba(0, 0, 0, 0.1), inset 0 2px rgba(255, 255, 255, 0.4);
    display: inline-block;
    transform: rotate(-90deg) translateX(-250px);
    transform-origin: left bottom 0;
    background: #7159B5;
    color: #ffffff;
    padding: .2rem 1rem;
    border-radius: 1rem 1rem 0 0;
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
    overflow: visible;
    transition: all .2 ease; }
    .fso-widget__toggler-content:hover {
      background: #806bbd;
      transform: rotate(-90deg) translate(-250px, 0); }
    .fso-widget__toggler-content span {
      display: block;
      float: left;
      transition: all .2s ease-in-out; }
      .fso-widget__toggler-content span i.fa-calculator {
        width: 15px;
        height: 15px; }
    .fso-widget__toggler-content .fa-times {
      display: inline-block;
      transform: scale(0.1);
      transition: transform .15s ease-in;
      opacity: 0;
      width: 0; }
  .fso-widget__form {
    padding-left: 1rem;
    padding-right: 1rem; }
  .fso-widget__form {
    padding-bottom: 1rem; }
  .fso-widget #fo__pages {
    padding: 0 2rem;
    height: 38px;
    text-align: center;
    -moz-appearance: textfield; }
    .fso-widget #fo__pages::-webkit-inner-spin-button, .fso-widget #fo__pages::-webkit-outer-spin-button {
      -webkit-appearance: none;
      margin: 0; }
  .fso-widget .btn-submit {
    box-shadow: none;
    display: block;
    width: 100%;
    margin: 1.3rem auto 0;
    font-size: 1.3rem;
    color: #ffffff;
    background-image: linear-gradient(to bottom, #806bbd 0%, #7159B5 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF806BBD', endColorstr='#FF7159B5', GradientType=0); }
  .fso-widget #fo__orderDeadline {
    height: 38px;
    margin-top: 0;
    text-align: center; }
  .fso-widget .select2-container.select2-container--default {
    border-radius: 1rem;
    padding: 0;
    min-width: 100%; }
    .fso-widget .select2-container.select2-container--default .select2-selection__arrow {
      padding: .5rem .9rem .5rem 1.2rem;
      background: rgba(0, 0, 0, 0.03);
      background: transparent;
      border-left: 1px solid rgba(0, 0, 0, 0.1);
      height: unset;
      bottom: 0;
      right: 0;
      top: 0;
      border-radius: 0 1rem 1rem 0; }
      .fso-widget .select2-container.select2-container--default .select2-selection__arrow b {
        border-width: 5px 5px 0 5px;
        top: 50%;
        transition: transform .15s ease;
        transform: rotate(0deg) translateX(-1px); }
    .fso-widget .select2-container.select2-container--default .select2-selection {
      border: none; }
    .fso-widget .select2-container.select2-container--default.select2-container--open .select2-selection__arrow {
      border-color: transparent;
      background: transparent; }
    .fso-widget .select2-container.select2-container--default.select2-container--open .select2-selection__rendered {
      border-radius: 1rem; }
    .fso-widget .select2-container.select2-container--default span.select2-dropdown.select2-dropdown--below,
    .fso-widget .select2-container.select2-container--default span.select2-dropdown.select2-dropdown--above {
      transform: translateY(50px);
      border-radius: 0 0 1rem 1rem;
      box-shadow: 0 10px 15px -5px rgba(0, 0, 0, 0.2);
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-bottom: 1px solid white;
      overflow: hidden; }
      .fso-widget .select2-container.select2-container--default span.select2-dropdown.select2-dropdown--below li,
      .fso-widget .select2-container.select2-container--default span.select2-dropdown.select2-dropdown--above li {
        transition: all .2s ease;
        font-size: 1.1rem; }
        .fso-widget .select2-container.select2-container--default span.select2-dropdown.select2-dropdown--below li[role="group"] strong.select2-results__group,
        .fso-widget .select2-container.select2-container--default span.select2-dropdown.select2-dropdown--above li[role="group"] strong.select2-results__group {
          line-height: 1em;
          font-size: 12px;
          font-weight: 400;
          text-align: center;
          padding: .4rem 0;
          color: grey !important; }
          .fso-widget .select2-container.select2-container--default span.select2-dropdown.select2-dropdown--below li[role="group"] strong.select2-results__group:before,
          .fso-widget .select2-container.select2-container--default span.select2-dropdown.select2-dropdown--above li[role="group"] strong.select2-results__group:before {
            content: "\f274";
            font-family: "fontawesome"; }
    .fso-widget .select2-container.select2-container--default span.select2-dropdown.select2-dropdown--above {
      border-radius: 1rem 1rem 0 0;
      transform: translateY(-5px);
      border-bottom: none; }
  .fso-widget .urgency__wrapper {
    position: relative; }
    .fso-widget .urgency__wrapper .select2-container {
      top: 0 !important; }
    .fso-widget .urgency__wrapper .select2-selection__rendered {
      padding-left: 2rem;
      padding-right: 2rem;
      text-align: center; }
    .fso-widget .urgency__wrapper .select2-selection__arrow {
      display: none; }
  .fso-widget [data-control][data-action] {
    padding: .4rem .5rem 0;
    color: grey;
    position: absolute;
    top: 0;
    bottom: 0;
    cursor: pointer;
    z-index: 100; }
    .fso-widget [data-control][data-action].disabled {
      opacity: .2; }
    .fso-widget [data-control][data-action]:hover {
      background: rgba(0, 0, 0, 0.05);
      border-color: rgba(0, 0, 0, 0.01); }
      .fso-widget [data-control][data-action]:hover:before {
        filter: drop-shadow(0 1px 0 #fff); }
    .fso-widget [data-control][data-action]:before {
      content: "";
      border-style: solid;
      border-color: rgba(0, 0, 0, 0.4) transparent transparent transparent;
      border-width: 5px 5px 0 5px;
      display: inline-block;
      transform: scale(1); }
    .fso-widget [data-control][data-action][data-action="+"] {
      right: 0;
      border-left: 1px solid transparent;
      border-radius: 0 1rem 1rem 0; }
      .fso-widget [data-control][data-action][data-action="+"]:before {
        transform: rotate(-90deg); }
    .fso-widget [data-control][data-action][data-action="-"] {
      left: 0;
      border-right: 1px solid transparent;
      border-radius: 1rem 0 0 1rem; }
      .fso-widget [data-control][data-action][data-action="-"]:before {
        transform: rotate(90deg); }

@media (max-width: 543px) {
  .fso-widget.de {
    top: 15%; } }

.fso-widget.de label {
  margin: 0.8rem 0 0; }

.fso-widget.de .btn-submit {
  margin: 0.3rem auto 0; }

#fo__orderDeadline_root {
  z-index: 100001; }

/* start Tether
-----------------------------------------------------------------------------*/
.tether-element,
.tether-element:after,
.tether-element:before,
.tether-element *,
.tether-element *:after,
.tether-element *:before {
  box-sizing: border-box; }

.tether-element {
  position: absolute;
  display: none; }

.tether-element.tether-open {
  display: block; }

/* end Tether*/
select.select-livesearch {
  display: none; }

.select2 {
  padding: 10px 0 20px; }

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  max-width: 100%; }
  .select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    border-bottom-color: rgba(0, 0, 0, 0.15) !important;
    user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--single .select2-selection__rendered {
      display: block;
      padding-left: 8px;
      padding-right: 20px;
      padding-bottom: 10px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    .select2-container .select2-selection--single .select2-selection__clear {
      position: relative; }
  .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px; }
  .select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--multiple .select2-selection__rendered {
      display: inline-block;
      overflow: hidden;
      padding-left: 8px;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .select2-container .select2-search--inline {
    float: left; }
    .select2-container .select2-search--inline .select2-search__field {
      box-sizing: border-box;
      border: none;
      font-size: 100%;
      margin-top: 5px;
      padding: 0; }
      .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
        -webkit-appearance: none; }

.select2-dropdown {
  background-color: white;
  overflow: hidden;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
  margin-top: -1.3rem; }

.select2-results {
  display: block; }

.select2-results__group {
  text-align: center;
  background: #fafafa;
  letter-spacing: 1px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  font-weight: bold; }

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
  /* Let's get this party started */
  /* Track */
  /* Handle */ }
  .select2-results__options::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 3px;
    height: 3px; }
  .select2-results__options::-webkit-scrollbar-track {
    background: #fff;
    box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    visibility: visible; }
  .select2-results__options:hover::-webkit-scrollbar-track {
    visibility: visible; }
  .select2-results__options::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #594497;
    visibility: visible; }
  .select2-results__options:hover::-webkit-scrollbar-thumb {
    visibility: visible; }

.select2-results__option {
  font-size: 1.1rem;
  padding: .4rem .5rem;
  user-select: none;
  -webkit-user-select: none; }
  @media (max-width: 991px) {
    .select2-results__option {
      font-size: 1.2rem;
      padding: .5rem 1rem; } }
  .select2-results__option[aria-selected] {
    cursor: pointer; }

#price-calculator .select2-selection--single .select2-selection__rendered {
  font-size: 1rem; }

.select2-container--open .select2-dropdown {
  left: 0; }

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-search--dropdown {
  display: block;
  padding: 2px 4px; }
  .select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box;
    padding: 2px 4px; }
    .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
      -webkit-appearance: none; }
  .select2-search--dropdown.select2-search--hide {
    display: none; }

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0); }

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important; }

.select2-container.select2-container--open {
  z-index: 16000004; }

.select2-container--default .select2-selection--single {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  box-sizing: border-box; }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px;
    font-size: 16px; }
  .select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold; }
  .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px; }
    .select2-container--default .select2-selection--single .select2-selection__arrow b {
      border-color: rgba(0, 0, 0, 0.4) transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 85%;
      width: 0; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto; }

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default; }
  .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none; }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent rgba(0, 0, 0, 0.4) transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border-radius: 4px;
  cursor: text; }
  .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%;
    display: flex;
    flex-flow: row wrap; }
    .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
      list-style: none; }
  .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #999;
    margin-top: 5px;
    float: left; }
  .select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #fff;
    border: 1px solid #dedede;
    border-radius: 4px;
    cursor: default;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #333; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--default.select2-container--focus .select2-selection--multiple {
  outline: 0; }

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none; }

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: none;
  padding: 2px 10px;
  font-size: 1.3rem; }

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield; }

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--default .select2-results__option[role=group] {
  padding: 0; }

.select2-container--default .select2-results__option[aria-disabled='true'] {
  color: #999; }

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd; }

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em; }
    .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
      margin-left: -2em;
      padding-left: 3em; }
      .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
        margin-left: -3em;
        padding-left: 4em; }
        .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
          margin-left: -4em;
          padding-left: 5em; }
          .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
            margin-left: -5em;
            padding-left: 6em; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #7159B5;
  color: #ffffff; }

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 2px 4px; }

/**
 * Variables declared here can be overridden by consuming applications, with
 * the help of the `!default` flag.
 *
 * @example
 *     // overriding $hoverColor
 *     $hoverColor: rgba(red, 0.05);
 *
 *     // overriding image path
 *     $flagsImagePath: "images/";
 *
 *     // import the scss file after the overrides
 *     @import "bower_component/intl-tel-input/src/css/intlTelInput";
 */
.intl-tel-input {
  display: inline-block; }
  .intl-tel-input * {
    box-sizing: border-box;
    -moz-box-sizing: border-box; }
  .intl-tel-input .hide {
    display: none; }
  .intl-tel-input .v-hide {
    visibility: hidden; }
  .intl-tel-input input, .intl-tel-input input[type=text], .intl-tel-input input[type=tel] {
    position: relative;
    z-index: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-right: 36px;
    margin-right: 0; }
  .intl-tel-input .flag-container {
    padding: 1px; }
  .intl-tel-input .selected-flag {
    z-index: 1;
    position: relative;
    width: 36px;
    height: 100%;
    padding: 0; }
    .intl-tel-input .selected-flag .iti-flag {
      position: absolute;
      top: 0;
      bottom: 0;
      margin: auto; }
    .intl-tel-input .selected-flag .iti-arrow {
      position: absolute;
      top: 50%;
      margin-top: -2px;
      right: 6px;
      width: 0;
      height: 0;
      border-left: 3px solid transparent;
      border-right: 3px solid transparent;
      border-top: 4px solid #555; }
      .intl-tel-input .selected-flag .iti-arrow.up {
        border-top: none;
        border-bottom: 4px solid #555; }
  .intl-tel-input .country-list {
    position: absolute;
    z-index: 2;
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0 0 0 -1px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    background-color: white;
    border: 1px solid #CCC;
    white-space: nowrap;
    max-height: 200px;
    overflow-y: scroll; }
    .intl-tel-input .country-list.dropup {
      bottom: 100%;
      margin-bottom: -1px; }
    .intl-tel-input .country-list .flag-box {
      display: inline-block;
      width: 20px; }
    @media (max-width: 500px) {
      .intl-tel-input .country-list {
        white-space: normal; } }
    .intl-tel-input .country-list .divider {
      padding-bottom: 5px;
      margin-bottom: 5px;
      border-bottom: 1px solid #CCC; }
    .intl-tel-input .country-list .country {
      padding: 5px 10px; }
      .intl-tel-input .country-list .country .dial-code {
        color: #999; }
    .intl-tel-input .country-list .country.highlight {
      background-color: rgba(0, 0, 0, 0.05); }
    .intl-tel-input .country-list .flag-box, .intl-tel-input .country-list .country-name, .intl-tel-input .country-list .dial-code {
      vertical-align: middle; }
    .intl-tel-input .country-list .flag-box, .intl-tel-input .country-list .country-name {
      margin-right: 6px; }
  .intl-tel-input.allow-dropdown input, .intl-tel-input.allow-dropdown input[type=text], .intl-tel-input.allow-dropdown input[type=tel] {
    padding-right: 6px;
    padding-left: 52px;
    margin-left: 0; }
  .intl-tel-input.allow-dropdown .flag-container {
    right: auto;
    left: 0; }
  .intl-tel-input.allow-dropdown .selected-flag {
    width: 46px; }
  .intl-tel-input.allow-dropdown .flag-container:hover {
    cursor: pointer; }
    .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {
      background-color: rgba(0, 0, 0, 0.05); }
  .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover, .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {
    cursor: default; }
    .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag, .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {
      background-color: transparent; }
  .intl-tel-input.allow-dropdown.separate-dial-code .selected-flag {
    background-color: rgba(0, 0, 0, 0.05);
    display: table;
    top: 7px !important;
    min-width: 90px !important;
    max-width: 90px; }
    @media (max-width: 543px) {
      .intl-tel-input.allow-dropdown.separate-dial-code .selected-flag {
        top: 0 !important; } }
  .intl-tel-input.allow-dropdown.separate-dial-code div.selected-dial-code {
    display: table-cell;
    vertical-align: middle;
    padding-left: 28px;
    font-size: 1.3rem; }
  .intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-2 input, .intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-2 input[type=text], .intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-2 input[type=tel] {
    padding-left: 76px; }
  .intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-2 .selected-flag {
    width: 70px; }
  .intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-3 input, .intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-3 input[type=text], .intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-3 input[type=tel] {
    padding-left: 84px; }
  .intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-3 .selected-flag {
    width: 78px; }
  .intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-4 input, .intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-4 input[type=text], .intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-4 input[type=tel] {
    padding-left: 92px; }
  .intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-4 .selected-flag {
    width: 86px; }
  .intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-5 input, .intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-5 input[type=text], .intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-5 input[type=tel] {
    padding-left: 100px; }
  .intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-5 .selected-flag {
    width: 94px; }
  .intl-tel-input.iti-container {
    position: absolute;
    top: -1000px;
    left: -1000px;
    z-index: 1060;
    padding: 1px; }
    .intl-tel-input.iti-container:hover {
      cursor: pointer; }

.iti-mobile .intl-tel-input.iti-container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed; }

.iti-mobile .intl-tel-input .country-list {
  max-height: 100%;
  width: 100%; }
  .iti-mobile .intl-tel-input .country-list .country {
    padding: 10px 10px;
    line-height: 1.5em; }

.iti-flag {
  width: 20px; }
  .iti-flag.be {
    width: 18px; }
  .iti-flag.ch {
    width: 15px; }
  .iti-flag.mc {
    width: 19px; }
  .iti-flag.ne {
    width: 18px; }
  .iti-flag.np {
    width: 13px; }
  .iti-flag.va {
    width: 15px; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .iti-flag {
      background-size: 5630px 15px; } }
  .iti-flag.ac {
    height: 10px;
    background-position: 0px 0px; }
  .iti-flag.ad {
    height: 14px;
    background-position: -22px 0px; }
  .iti-flag.ae {
    height: 10px;
    background-position: -44px 0px; }
  .iti-flag.af {
    height: 14px;
    background-position: -66px 0px; }
  .iti-flag.ag {
    height: 14px;
    background-position: -88px 0px; }
  .iti-flag.ai {
    height: 10px;
    background-position: -110px 0px; }
  .iti-flag.al {
    height: 15px;
    background-position: -132px 0px; }
  .iti-flag.am {
    height: 10px;
    background-position: -154px 0px; }
  .iti-flag.ao {
    height: 14px;
    background-position: -176px 0px; }
  .iti-flag.aq {
    height: 14px;
    background-position: -198px 0px; }
  .iti-flag.ar {
    height: 13px;
    background-position: -220px 0px; }
  .iti-flag.as {
    height: 10px;
    background-position: -242px 0px; }
  .iti-flag.at {
    height: 14px;
    background-position: -264px 0px; }
  .iti-flag.au {
    height: 10px;
    background-position: -286px 0px; }
  .iti-flag.aw {
    height: 14px;
    background-position: -308px 0px; }
  .iti-flag.ax {
    height: 13px;
    background-position: -330px 0px; }
  .iti-flag.az {
    height: 10px;
    background-position: -352px 0px; }
  .iti-flag.ba {
    height: 10px;
    background-position: -374px 0px; }
  .iti-flag.bb {
    height: 14px;
    background-position: -396px 0px; }
  .iti-flag.bd {
    height: 12px;
    background-position: -418px 0px; }
  .iti-flag.be {
    height: 15px;
    background-position: -440px 0px; }
  .iti-flag.bf {
    height: 14px;
    background-position: -460px 0px; }
  .iti-flag.bg {
    height: 12px;
    background-position: -482px 0px; }
  .iti-flag.bh {
    height: 12px;
    background-position: -504px 0px; }
  .iti-flag.bi {
    height: 12px;
    background-position: -526px 0px; }
  .iti-flag.bj {
    height: 14px;
    background-position: -548px 0px; }
  .iti-flag.bl {
    height: 14px;
    background-position: -570px 0px; }
  .iti-flag.bm {
    height: 10px;
    background-position: -592px 0px; }
  .iti-flag.bn {
    height: 10px;
    background-position: -614px 0px; }
  .iti-flag.bo {
    height: 14px;
    background-position: -636px 0px; }
  .iti-flag.bq {
    height: 14px;
    background-position: -658px 0px; }
  .iti-flag.br {
    height: 14px;
    background-position: -680px 0px; }
  .iti-flag.bs {
    height: 10px;
    background-position: -702px 0px; }
  .iti-flag.bt {
    height: 14px;
    background-position: -724px 0px; }
  .iti-flag.bv {
    height: 15px;
    background-position: -746px 0px; }
  .iti-flag.bw {
    height: 14px;
    background-position: -768px 0px; }
  .iti-flag.by {
    height: 10px;
    background-position: -790px 0px; }
  .iti-flag.bz {
    height: 14px;
    background-position: -812px 0px; }
  .iti-flag.ca {
    height: 10px;
    background-position: -834px 0px; }
  .iti-flag.cc {
    height: 10px;
    background-position: -856px 0px; }
  .iti-flag.cd {
    height: 15px;
    background-position: -878px 0px; }
  .iti-flag.cf {
    height: 14px;
    background-position: -900px 0px; }
  .iti-flag.cg {
    height: 14px;
    background-position: -922px 0px; }
  .iti-flag.ch {
    height: 15px;
    background-position: -944px 0px; }
  .iti-flag.ci {
    height: 14px;
    background-position: -961px 0px; }
  .iti-flag.ck {
    height: 10px;
    background-position: -983px 0px; }
  .iti-flag.cl {
    height: 14px;
    background-position: -1005px 0px; }
  .iti-flag.cm {
    height: 14px;
    background-position: -1027px 0px; }
  .iti-flag.cn {
    height: 14px;
    background-position: -1049px 0px; }
  .iti-flag.co {
    height: 14px;
    background-position: -1071px 0px; }
  .iti-flag.cp {
    height: 14px;
    background-position: -1093px 0px; }
  .iti-flag.cr {
    height: 12px;
    background-position: -1115px 0px; }
  .iti-flag.cu {
    height: 10px;
    background-position: -1137px 0px; }
  .iti-flag.cv {
    height: 12px;
    background-position: -1159px 0px; }
  .iti-flag.cw {
    height: 14px;
    background-position: -1181px 0px; }
  .iti-flag.cx {
    height: 10px;
    background-position: -1203px 0px; }
  .iti-flag.cy {
    height: 13px;
    background-position: -1225px 0px; }
  .iti-flag.cz {
    height: 14px;
    background-position: -1247px 0px; }
  .iti-flag.de {
    height: 12px;
    background-position: -1269px 0px; }
  .iti-flag.dg {
    height: 10px;
    background-position: -1291px 0px; }
  .iti-flag.dj {
    height: 14px;
    background-position: -1313px 0px; }
  .iti-flag.dk {
    height: 15px;
    background-position: -1335px 0px; }
  .iti-flag.dm {
    height: 10px;
    background-position: -1357px 0px; }
  .iti-flag.do {
    height: 13px;
    background-position: -1379px 0px; }
  .iti-flag.dz {
    height: 14px;
    background-position: -1401px 0px; }
  .iti-flag.ea {
    height: 14px;
    background-position: -1423px 0px; }
  .iti-flag.ec {
    height: 14px;
    background-position: -1445px 0px; }
  .iti-flag.ee {
    height: 13px;
    background-position: -1467px 0px; }
  .iti-flag.eg {
    height: 14px;
    background-position: -1489px 0px; }
  .iti-flag.eh {
    height: 10px;
    background-position: -1511px 0px; }
  .iti-flag.er {
    height: 10px;
    background-position: -1533px 0px; }
  .iti-flag.es {
    height: 14px;
    background-position: -1555px 0px; }
  .iti-flag.et {
    height: 10px;
    background-position: -1577px 0px; }
  .iti-flag.eu {
    height: 14px;
    background-position: -1599px 0px; }
  .iti-flag.fi {
    height: 12px;
    background-position: -1621px 0px; }
  .iti-flag.fj {
    height: 10px;
    background-position: -1643px 0px; }
  .iti-flag.fk {
    height: 10px;
    background-position: -1665px 0px; }
  .iti-flag.fm {
    height: 11px;
    background-position: -1687px 0px; }
  .iti-flag.fo {
    height: 15px;
    background-position: -1709px 0px; }
  .iti-flag.fr {
    height: 14px;
    background-position: -1731px 0px; }
  .iti-flag.ga {
    height: 15px;
    background-position: -1753px 0px; }
  .iti-flag.gb {
    height: 15px;
    background-position: -1775px 0px; }
  .iti-flag.gd {
    height: 12px;
    background-position: -1797px 0px; }
  .iti-flag.ge {
    height: 14px;
    background-position: -1819px 0px; }
  .iti-flag.gf {
    height: 14px;
    background-position: -1841px 0px; }
  .iti-flag.gg {
    height: 14px;
    background-position: -1863px 0px; }
  .iti-flag.gh {
    height: 14px;
    background-position: -1885px 0px; }
  .iti-flag.gi {
    height: 10px;
    background-position: -1907px 0px; }
  .iti-flag.gl {
    height: 14px;
    background-position: -1929px 0px; }
  .iti-flag.gm {
    height: 14px;
    background-position: -1951px 0px; }
  .iti-flag.gn {
    height: 14px;
    background-position: -1973px 0px; }
  .iti-flag.gp {
    height: 14px;
    background-position: -1995px 0px; }
  .iti-flag.gq {
    height: 14px;
    background-position: -2017px 0px; }
  .iti-flag.gr {
    height: 14px;
    background-position: -2039px 0px; }
  .iti-flag.gs {
    height: 10px;
    background-position: -2061px 0px; }
  .iti-flag.gt {
    height: 13px;
    background-position: -2083px 0px; }
  .iti-flag.gu {
    height: 11px;
    background-position: -2105px 0px; }
  .iti-flag.gw {
    height: 10px;
    background-position: -2127px 0px; }
  .iti-flag.gy {
    height: 12px;
    background-position: -2149px 0px; }
  .iti-flag.hk {
    height: 14px;
    background-position: -2171px 0px; }
  .iti-flag.hm {
    height: 10px;
    background-position: -2193px 0px; }
  .iti-flag.hn {
    height: 10px;
    background-position: -2215px 0px; }
  .iti-flag.hr {
    height: 10px;
    background-position: -2237px 0px; }
  .iti-flag.ht {
    height: 12px;
    background-position: -2259px 0px; }
  .iti-flag.hu {
    height: 10px;
    background-position: -2281px 0px; }
  .iti-flag.ic {
    height: 14px;
    background-position: -2303px 0px; }
  .iti-flag.id {
    height: 14px;
    background-position: -2325px 0px; }
  .iti-flag.ie {
    height: 10px;
    background-position: -2347px 0px; }
  .iti-flag.il {
    height: 15px;
    background-position: -2369px 0px; }
  .iti-flag.im {
    height: 10px;
    background-position: -2391px 0px; }
  .iti-flag.in {
    height: 14px;
    background-position: -2413px 0px; }
  .iti-flag.io {
    height: 10px;
    background-position: -2435px 0px; }
  .iti-flag.iq {
    height: 14px;
    background-position: -2457px 0px; }
  .iti-flag.ir {
    height: 12px;
    background-position: -2479px 0px; }
  .iti-flag.is {
    height: 15px;
    background-position: -2501px 0px; }
  .iti-flag.it {
    height: 14px;
    background-position: -2523px 0px; }
  .iti-flag.je {
    height: 12px;
    background-position: -2545px 0px; }
  .iti-flag.jm {
    height: 10px;
    background-position: -2567px 0px; }
  .iti-flag.jo {
    height: 10px;
    background-position: -2589px 0px; }
  .iti-flag.jp {
    height: 14px;
    background-position: -2611px 0px; }
  .iti-flag.ke {
    height: 14px;
    background-position: -2633px 0px; }
  .iti-flag.kg {
    height: 12px;
    background-position: -2655px 0px; }
  .iti-flag.kh {
    height: 13px;
    background-position: -2677px 0px; }
  .iti-flag.ki {
    height: 10px;
    background-position: -2699px 0px; }
  .iti-flag.km {
    height: 12px;
    background-position: -2721px 0px; }
  .iti-flag.kn {
    height: 14px;
    background-position: -2743px 0px; }
  .iti-flag.kp {
    height: 10px;
    background-position: -2765px 0px; }
  .iti-flag.kr {
    height: 14px;
    background-position: -2787px 0px; }
  .iti-flag.kw {
    height: 10px;
    background-position: -2809px 0px; }
  .iti-flag.ky {
    height: 10px;
    background-position: -2831px 0px; }
  .iti-flag.kz {
    height: 10px;
    background-position: -2853px 0px; }
  .iti-flag.la {
    height: 14px;
    background-position: -2875px 0px; }
  .iti-flag.lb {
    height: 14px;
    background-position: -2897px 0px; }
  .iti-flag.lc {
    height: 10px;
    background-position: -2919px 0px; }
  .iti-flag.li {
    height: 12px;
    background-position: -2941px 0px; }
  .iti-flag.lk {
    height: 10px;
    background-position: -2963px 0px; }
  .iti-flag.lr {
    height: 11px;
    background-position: -2985px 0px; }
  .iti-flag.ls {
    height: 14px;
    background-position: -3007px 0px; }
  .iti-flag.lt {
    height: 12px;
    background-position: -3029px 0px; }
  .iti-flag.lu {
    height: 12px;
    background-position: -3051px 0px; }
  .iti-flag.lv {
    height: 10px;
    background-position: -3073px 0px; }
  .iti-flag.ly {
    height: 10px;
    background-position: -3095px 0px; }
  .iti-flag.ma {
    height: 14px;
    background-position: -3117px 0px; }
  .iti-flag.mc {
    height: 15px;
    background-position: -3139px 0px; }
  .iti-flag.md {
    height: 10px;
    background-position: -3160px 0px; }
  .iti-flag.me {
    height: 10px;
    background-position: -3182px 0px; }
  .iti-flag.mf {
    height: 14px;
    background-position: -3204px 0px; }
  .iti-flag.mg {
    height: 14px;
    background-position: -3226px 0px; }
  .iti-flag.mh {
    height: 11px;
    background-position: -3248px 0px; }
  .iti-flag.mk {
    height: 10px;
    background-position: -3270px 0px; }
  .iti-flag.ml {
    height: 14px;
    background-position: -3292px 0px; }
  .iti-flag.mm {
    height: 14px;
    background-position: -3314px 0px; }
  .iti-flag.mn {
    height: 10px;
    background-position: -3336px 0px; }
  .iti-flag.mo {
    height: 14px;
    background-position: -3358px 0px; }
  .iti-flag.mp {
    height: 10px;
    background-position: -3380px 0px; }
  .iti-flag.mq {
    height: 14px;
    background-position: -3402px 0px; }
  .iti-flag.mr {
    height: 14px;
    background-position: -3424px 0px; }
  .iti-flag.ms {
    height: 10px;
    background-position: -3446px 0px; }
  .iti-flag.mt {
    height: 14px;
    background-position: -3468px 0px; }
  .iti-flag.mu {
    height: 14px;
    background-position: -3490px 0px; }
  .iti-flag.mv {
    height: 14px;
    background-position: -3512px 0px; }
  .iti-flag.mw {
    height: 14px;
    background-position: -3534px 0px; }
  .iti-flag.mx {
    height: 12px;
    background-position: -3556px 0px; }
  .iti-flag.my {
    height: 10px;
    background-position: -3578px 0px; }
  .iti-flag.mz {
    height: 14px;
    background-position: -3600px 0px; }
  .iti-flag.na {
    height: 14px;
    background-position: -3622px 0px; }
  .iti-flag.nc {
    height: 10px;
    background-position: -3644px 0px; }
  .iti-flag.ne {
    height: 15px;
    background-position: -3666px 0px; }
  .iti-flag.nf {
    height: 10px;
    background-position: -3686px 0px; }
  .iti-flag.ng {
    height: 10px;
    background-position: -3708px 0px; }
  .iti-flag.ni {
    height: 12px;
    background-position: -3730px 0px; }
  .iti-flag.nl {
    height: 14px;
    background-position: -3752px 0px; }
  .iti-flag.no {
    height: 15px;
    background-position: -3774px 0px; }
  .iti-flag.np {
    height: 15px;
    background-position: -3796px 0px; }
  .iti-flag.nr {
    height: 10px;
    background-position: -3811px 0px; }
  .iti-flag.nu {
    height: 10px;
    background-position: -3833px 0px; }
  .iti-flag.nz {
    height: 10px;
    background-position: -3855px 0px; }
  .iti-flag.om {
    height: 10px;
    background-position: -3877px 0px; }
  .iti-flag.pa {
    height: 14px;
    background-position: -3899px 0px; }
  .iti-flag.pe {
    height: 14px;
    background-position: -3921px 0px; }
  .iti-flag.pf {
    height: 14px;
    background-position: -3943px 0px; }
  .iti-flag.pg {
    height: 15px;
    background-position: -3965px 0px; }
  .iti-flag.ph {
    height: 10px;
    background-position: -3987px 0px; }
  .iti-flag.pk {
    height: 14px;
    background-position: -4009px 0px; }
  .iti-flag.pl {
    height: 13px;
    background-position: -4031px 0px; }
  .iti-flag.pm {
    height: 14px;
    background-position: -4053px 0px; }
  .iti-flag.pn {
    height: 10px;
    background-position: -4075px 0px; }
  .iti-flag.pr {
    height: 14px;
    background-position: -4097px 0px; }
  .iti-flag.ps {
    height: 10px;
    background-position: -4119px 0px; }
  .iti-flag.pt {
    height: 14px;
    background-position: -4141px 0px; }
  .iti-flag.pw {
    height: 13px;
    background-position: -4163px 0px; }
  .iti-flag.py {
    height: 11px;
    background-position: -4185px 0px; }
  .iti-flag.qa {
    height: 8px;
    background-position: -4207px 0px; }
  .iti-flag.re {
    height: 14px;
    background-position: -4229px 0px; }
  .iti-flag.ro {
    height: 14px;
    background-position: -4251px 0px; }
  .iti-flag.rs {
    height: 14px;
    background-position: -4273px 0px; }
  .iti-flag.ru {
    height: 14px;
    background-position: -4295px 0px; }
  .iti-flag.rw {
    height: 14px;
    background-position: -4317px 0px; }
  .iti-flag.sa {
    height: 14px;
    background-position: -4339px 0px; }
  .iti-flag.sb {
    height: 10px;
    background-position: -4361px 0px; }
  .iti-flag.sc {
    height: 10px;
    background-position: -4383px 0px; }
  .iti-flag.sd {
    height: 10px;
    background-position: -4405px 0px; }
  .iti-flag.se {
    height: 13px;
    background-position: -4427px 0px; }
  .iti-flag.sg {
    height: 14px;
    background-position: -4449px 0px; }
  .iti-flag.sh {
    height: 10px;
    background-position: -4471px 0px; }
  .iti-flag.si {
    height: 10px;
    background-position: -4493px 0px; }
  .iti-flag.sj {
    height: 15px;
    background-position: -4515px 0px; }
  .iti-flag.sk {
    height: 14px;
    background-position: -4537px 0px; }
  .iti-flag.sl {
    height: 14px;
    background-position: -4559px 0px; }
  .iti-flag.sm {
    height: 15px;
    background-position: -4581px 0px; }
  .iti-flag.sn {
    height: 14px;
    background-position: -4603px 0px; }
  .iti-flag.so {
    height: 14px;
    background-position: -4625px 0px; }
  .iti-flag.sr {
    height: 14px;
    background-position: -4647px 0px; }
  .iti-flag.ss {
    height: 10px;
    background-position: -4669px 0px; }
  .iti-flag.st {
    height: 10px;
    background-position: -4691px 0px; }
  .iti-flag.sv {
    height: 12px;
    background-position: -4713px 0px; }
  .iti-flag.sx {
    height: 14px;
    background-position: -4735px 0px; }
  .iti-flag.sy {
    height: 14px;
    background-position: -4757px 0px; }
  .iti-flag.sz {
    height: 14px;
    background-position: -4779px 0px; }
  .iti-flag.ta {
    height: 10px;
    background-position: -4801px 0px; }
  .iti-flag.tc {
    height: 10px;
    background-position: -4823px 0px; }
  .iti-flag.td {
    height: 14px;
    background-position: -4845px 0px; }
  .iti-flag.tf {
    height: 14px;
    background-position: -4867px 0px; }
  .iti-flag.tg {
    height: 13px;
    background-position: -4889px 0px; }
  .iti-flag.th {
    height: 14px;
    background-position: -4911px 0px; }
  .iti-flag.tj {
    height: 10px;
    background-position: -4933px 0px; }
  .iti-flag.tk {
    height: 10px;
    background-position: -4955px 0px; }
  .iti-flag.tl {
    height: 10px;
    background-position: -4977px 0px; }
  .iti-flag.tm {
    height: 14px;
    background-position: -4999px 0px; }
  .iti-flag.tn {
    height: 14px;
    background-position: -5021px 0px; }
  .iti-flag.to {
    height: 10px;
    background-position: -5043px 0px; }
  .iti-flag.tr {
    height: 14px;
    background-position: -5065px 0px; }
  .iti-flag.tt {
    height: 12px;
    background-position: -5087px 0px; }
  .iti-flag.tv {
    height: 10px;
    background-position: -5109px 0px; }
  .iti-flag.tw {
    height: 14px;
    background-position: -5131px 0px; }
  .iti-flag.tz {
    height: 14px;
    background-position: -5153px 0px; }
  .iti-flag.ua {
    height: 14px;
    background-position: -5175px 0px; }
  .iti-flag.ug {
    height: 14px;
    background-position: -5197px 0px; }
  .iti-flag.um {
    height: 11px;
    background-position: -5219px 0px; }
  .iti-flag.us {
    height: 14px;
    background-position: -5241px 0px; }
  .iti-flag.uy {
    height: 14px;
    background-position: -5263px 0px; }
  .iti-flag.uz {
    height: 10px;
    background-position: -5285px 0px; }
  .iti-flag.va {
    height: 15px;
    background-position: -5307px 0px; }
  .iti-flag.vc {
    height: 14px;
    background-position: -5324px 0px; }
  .iti-flag.ve {
    height: 14px;
    background-position: -5346px 0px; }
  .iti-flag.vg {
    height: 10px;
    background-position: -5368px 0px; }
  .iti-flag.vi {
    height: 14px;
    background-position: -5390px 0px; }
  .iti-flag.vn {
    height: 14px;
    background-position: -5412px 0px; }
  .iti-flag.vu {
    height: 12px;
    background-position: -5434px 0px; }
  .iti-flag.wf {
    height: 14px;
    background-position: -5456px 0px; }
  .iti-flag.ws {
    height: 10px;
    background-position: -5478px 0px; }
  .iti-flag.xk {
    height: 15px;
    background-position: -5500px 0px; }
  .iti-flag.ye {
    height: 14px;
    background-position: -5522px 0px; }
  .iti-flag.yt {
    height: 14px;
    background-position: -5544px 0px; }
  .iti-flag.za {
    height: 14px;
    background-position: -5566px 0px; }
  .iti-flag.zm {
    height: 14px;
    background-position: -5588px 0px; }
  .iti-flag.zw {
    height: 10px;
    background-position: -5610px 0px; }

.iti-flag {
  width: 20px;
  height: 15px;
  background-image: url("../img/vendor/flags.png");
  background-repeat: no-repeat;
  background-color: transparent;
  background-position: 20px 0; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .iti-flag {
      background-image: url("../img/vendor/flags@2x.png"); } }

.iti-flag.np {
  background-color: transparent; }

#phone_area, #phone_numb {
  font-size: 1.4rem;
  letter-spacing: 1px; }

#phone_area {
  font-weight: bold; }

/*!
 * @copyright Copyright &copy; Kartik Visweswaran, Krajee.com, 2014 - 2015
 * @package bootstrap-fileinput
 * @version 4.2.9
 *
 * File input styling for Bootstrap 3.0
 * Built for Yii Framework 2.0
 * Author: Kartik Visweswaran
 * Year: 2015
 * For more Yii related demos visit http://demos.krajee.com
 */
.file-preview-frame,
.file-preview-image,
.file-preview-other {
  height: 160px;
  vertical-align: middle; }

.file-loading {
  top: 0;
  right: 0;
  width: 25px;
  height: 25px;
  font-size: 999px;
  text-align: right;
  color: #fff;
  background: url(../img/vendor/loading.gif) top left no-repeat;
  border: none; }

.file-object {
  margin: 0 0 -5px;
  padding: 0; }

.btn-file {
  position: relative;
  overflow: hidden; }

.btn-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  text-align: right;
  opacity: 0;
  background: 0 0;
  cursor: inherit;
  display: block; }

.file-caption-name {
  display: inline-block;
  overflow: hidden;
  height: 20px;
  word-break: break-all; }

.input-group-lg .file-caption-name {
  height: 25px; }

.file-preview-detail-modal {
  text-align: left; }

.file-error-message {
  color: #a94442;
  background-color: #f2dede;
  margin: 5px;
  border: 1px solid #ebccd1;
  border-radius: 4px;
  padding: 15px; }

.file-error-message pre,
.file-error-message ul {
  margin: 0;
  text-align: left; }

.file-error-message pre {
  margin: 5px 0; }

.file-caption-disabled {
  background-color: #EEE;
  cursor: not-allowed;
  opacity: 1; }

.file-preview {
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 5px;
  width: 100%;
  margin-bottom: 5px; }

.file-preview-frame {
  display: table;
  margin: 8px;
  border: 1px solid #ddd;
  box-shadow: 1px 1px 5px 0 #a2958a;
  padding: 6px;
  float: left;
  text-align: center; }

.file-preview-frame:not(.file-preview-error):hover {
  box-shadow: 3px 3px 5px 0 #333; }

.file-preview-text {
  text-align: left;
  width: 160px;
  margin-bottom: 2px;
  color: #428bca;
  background: #fff;
  overflow-x: hidden; }

.file-preview-other {
  display: table-cell;
  text-align: center;
  width: 160px;
  border: 2px solid #999;
  border-radius: 30px; }

.file-preview-other:hover {
  opacity: .8; }

.file-actions,
.file-other-error {
  text-align: left; }

.file-icon-lg {
  font-size: 1.2em; }

.file-icon-2x {
  font-size: 2.4em; }

.file-icon-4x {
  font-size: 4.8em; }

.file-input-ajax-new .fileinput-remove-button,
.file-input-ajax-new .fileinput-upload-button,
.file-input-new .close,
.file-input-new .file-preview,
.file-input-new .fileinput-remove-button,
.file-input-new .fileinput-upload-button,
.file-input-new .glyphicon-file {
  display: none; }

.file-thumb-loading {
  background: url(../img/vendor/loading.gif) center center no-repeat content-box !important; }

.file-actions {
  margin-top: 15px; }

.file-footer-buttons {
  float: right; }

.file-upload-indicator {
  padding-top: 2px;
  cursor: default;
  opacity: .8;
  width: 60%; }

.file-upload-indicator:hover {
  font-weight: 700;
  opacity: 1; }

.file-footer-caption {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 160px;
  text-align: center;
  padding-top: 4px;
  font-size: 11px;
  color: #777;
  margin: 5px auto 10px; }

.file-preview-error {
  opacity: .65;
  box-shadow: none; }

.file-preview-frame:not(.file-preview-error) .file-footer-caption:hover {
  color: #000; }

.file-drop-zone {
  border: 1px dashed #aaa;
  border-radius: 4px;
  height: 100%;
  text-align: center;
  vertical-align: middle;
  margin: 12px 15px 12px 12px;
  padding: 5px; }

.file-drop-zone-title {
  color: #aaa;
  font-size: 40px;
  padding: 85px 10px; }

.file-highlighted {
  border: 2px dashed #999 !important;
  background-color: #f0f0f0; }

.file-uploading {
  background: url(../img/vendor/loading.gif) center bottom 10px no-repeat;
  opacity: .65; }

.file-thumb-progress .progress,
.file-thumb-progress .progress-bar {
  height: 10px;
  font-size: 9px;
  line-height: 10px; }

.file-thumbnail-footer {
  position: relative; }

.file-thumb-progress {
  position: absolute;
  top: 22px;
  left: 0;
  right: 0; }

.btn-file::-ms-browse {
  width: 100%;
  height: 100%; }

.table-upload-files .file-name {
  padding-bottom: 4px;
  display: block;
  max-width: 550px;
  overflow: hidden;
  text-overflow: ellipsis; }

/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */
@-webkit-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px); } }

@-moz-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px); } }

@keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px); } }

@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); } }

@-moz-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); } }

@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px); }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); } }

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }

@-moz-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }

.dropzone, .dropzone * {
  box-sizing: border-box; }

.dropzone {
  min-height: 150px;
  border: 1px dashed rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.03);
  padding: 54px 54px;
  margin: 1rem 0; }
  .dropzone.dz-clickable {
    cursor: pointer; }
    .dropzone.dz-clickable * {
      cursor: default; }
    .dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
      cursor: pointer; }
  .dropzone.dz-started .dz-message {
    display: none; }
  .dropzone.dz-drag-hover {
    border-style: solid; }
    .dropzone.dz-drag-hover .dz-message {
      opacity: 0.5; }
  .dropzone .dz-message {
    text-align: center;
    margin: 2em 0; }
  .dropzone .dz-preview {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 16px;
    min-height: 100px; }
    .dropzone .dz-preview:hover {
      z-index: 1000; }
      .dropzone .dz-preview:hover .dz-details {
        opacity: 1; }
    .dropzone .dz-preview.dz-file-preview .dz-image {
      border-radius: 20px;
      background: #999;
      background: linear-gradient(to bottom, #eee, #ddd); }
    .dropzone .dz-preview.dz-file-preview .dz-details {
      opacity: 1; }
    .dropzone .dz-preview.dz-image-preview {
      background: white; }
      .dropzone .dz-preview.dz-image-preview .dz-details {
        -webkit-transition: opacity 0.2s linear;
        -moz-transition: opacity 0.2s linear;
        -ms-transition: opacity 0.2s linear;
        -o-transition: opacity 0.2s linear;
        transition: opacity 0.2s linear; }
    .dropzone .dz-preview .dz-remove {
      font-size: 14px;
      text-align: center;
      display: block;
      cursor: pointer;
      border: none; }
      .dropzone .dz-preview .dz-remove:hover {
        text-decoration: underline; }
    .dropzone .dz-preview:hover .dz-details {
      opacity: 1; }
    .dropzone .dz-preview .dz-details {
      z-index: 20;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      font-size: 13px;
      min-width: 100%;
      max-width: 100%;
      padding: 2em 1em;
      text-align: center;
      color: rgba(0, 0, 0, 0.9);
      line-height: 150%; }
      .dropzone .dz-preview .dz-details .dz-size {
        margin-bottom: 1em;
        font-size: 16px; }
      .dropzone .dz-preview .dz-details .dz-filename {
        white-space: nowrap; }
        .dropzone .dz-preview .dz-details .dz-filename:hover span {
          border: 1px solid rgba(200, 200, 200, 0.8);
          background-color: rgba(255, 255, 255, 0.8); }
        .dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
          overflow: hidden;
          text-overflow: ellipsis; }
          .dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
            border: 1px solid transparent; }
      .dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
        background-color: rgba(255, 255, 255, 0.4);
        padding: 0 0.4em;
        border-radius: 3px; }
    .dropzone .dz-preview:hover .dz-image img {
      -webkit-transform: scale(1.05, 1.05);
      -moz-transform: scale(1.05, 1.05);
      -ms-transform: scale(1.05, 1.05);
      -o-transform: scale(1.05, 1.05);
      transform: scale(1.05, 1.05);
      -webkit-filter: blur(8px);
      filter: blur(8px); }
    .dropzone .dz-preview .dz-image {
      border-radius: 20px;
      overflow: hidden;
      width: 120px;
      height: 120px;
      position: relative;
      display: block;
      z-index: 10; }
      .dropzone .dz-preview .dz-image img {
        display: block; }
    .dropzone .dz-preview.dz-success .dz-success-mark {
      -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
      -moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
      -ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
      -o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
      animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); }
    .dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
      pointer-events: none;
      opacity: 0;
      z-index: 500;
      position: absolute;
      display: block;
      top: 50%;
      left: 50%;
      margin-left: -27px;
      margin-top: -27px; }
      .dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
        display: block;
        width: 54px;
        height: 54px; }
    .dropzone .dz-preview.dz-processing .dz-progress {
      opacity: 1;
      -webkit-transition: all 0.2s linear;
      -moz-transition: all 0.2s linear;
      -ms-transition: all 0.2s linear;
      -o-transition: all 0.2s linear;
      transition: all 0.2s linear; }
    .dropzone .dz-preview.dz-complete .dz-progress {
      opacity: 0;
      -webkit-transition: opacity 0.4s ease-in;
      -moz-transition: opacity 0.4s ease-in;
      -ms-transition: opacity 0.4s ease-in;
      -o-transition: opacity 0.4s ease-in;
      transition: opacity 0.4s ease-in; }
    .dropzone .dz-preview:not(.dz-processing) .dz-progress {
      -webkit-animation: pulse 6s ease infinite;
      -moz-animation: pulse 6s ease infinite;
      -ms-animation: pulse 6s ease infinite;
      -o-animation: pulse 6s ease infinite;
      animation: pulse 6s ease infinite; }
    .dropzone .dz-preview .dz-progress {
      opacity: 1;
      z-index: 1000;
      pointer-events: none;
      position: absolute;
      height: 5px;
      left: 50%;
      top: 50%;
      margin-top: -8px;
      width: 80px;
      margin-left: -40px;
      background: #E9EDED;
      -webkit-transform: scale(1);
      border-radius: 8px;
      overflow: hidden; }
      .dropzone .dz-preview .dz-progress .dz-upload {
        background: #4BAE4F;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 0;
        -webkit-transition: width 300ms ease-in-out;
        -moz-transition: width 300ms ease-in-out;
        -ms-transition: width 300ms ease-in-out;
        -o-transition: width 300ms ease-in-out;
        transition: width 300ms ease-in-out; }
    .dropzone .dz-preview.dz-error .dz-error-message {
      display: block; }
    .dropzone .dz-preview.dz-error:hover .dz-error-message {
      opacity: 1;
      pointer-events: auto; }
    .dropzone .dz-preview.dz-error .dz-image {
      background: #ffdbdb;
      border: 2px solid red;
      box-shadow: 0 0 10px rgba(255, 0, 0, 0.25); }
    .dropzone .dz-preview .dz-error-message {
      pointer-events: none;
      z-index: 1000;
      position: absolute;
      display: block;
      display: none;
      opacity: 0;
      -webkit-transition: opacity 0.3s ease;
      -moz-transition: opacity 0.3s ease;
      -ms-transition: opacity 0.3s ease;
      -o-transition: opacity 0.3s ease;
      transition: opacity 0.3s ease;
      border-radius: 8px;
      font-size: 13px;
      top: 130px;
      left: -10px;
      width: 140px;
      background: #be2626;
      background: linear-gradient(to bottom, #be2626, #a92222);
      padding: 0.5em 1.2em;
      color: white; }
      .dropzone .dz-preview .dz-error-message:after {
        content: '';
        position: absolute;
        top: -6px;
        left: 64px;
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 6px solid #be2626; }

#upload-progress {
  position: fixed;
  top: 0;
  right: 0%;
  left: 0%;
  height: 2px;
  transition: all 1s ease;
  z-index: 9999999;
  background: #03a9f4;
  background: -moz-linear-gradient(left, #03a9f4 0%, #ad55f4 100%);
  background: -webkit-linear-gradient(left, #03a9f4 0%, #ad55f4 100%);
  background: linear-gradient(to right, #03a9f4 0%, #ad55f4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#03a9f4', endColorstr='#ad55f4',GradientType=1 ); }

.si-wrapper {
  display: block;
  position: relative; }

.speech-input {
  margin: 0; }

.si-wrapper button {
  position: absolute;
  top: 0;
  right: 0;
  height: 18px;
  width: 18px;
  margin: 0;
  border: 0;
  padding: 0;
  background: none;
  font: 0/0 a; }

.si-mic,
.si-mic:after,
.si-holder,
.si-holder:before,
.si-holder:after {
  position: absolute;
  background: #333; }

/* Microphone icon */
.si-mic {
  display: block;
  height: 25%;
  /* 8px / 32px */
  top: 9.375%;
  /* 3px / 32px */
  left: 37.5%;
  /* 12px / 32px */
  right: 37.5%;
  /* 12px / 32px */
  -webkit-border-radius: 99px 99px 0 0;
  -moz-border-radius: 99px 99px 0 0;
  border-radius: 99px 99px 0 0; }

.si-mic:before,
.si-mic:after,
.si-holder {
  -webkit-border-radius: 0 0 99px 99px;
  -moz-border-radius: 0 0 99px 99px;
  border-radius: 0 0 99px 99px; }

.si-mic:before {
  position: absolute;
  z-index: 1;
  content: '';
  width: 150%;
  /* 12px / 8px */
  height: 137.5%;
  /* 11px / 8px */
  top: 100%;
  /* 8px / 8px */
  left: -25%;
  /* -2px / 8px */
  background: #fff; }

.si-mic:after {
  z-index: 1;
  content: '';
  width: 100%;
  /* 10px / 10px */
  height: 100%;
  /* 10px / 10px */
  top: 110%;
  /* 11px / 10px */
  left: 0; }

.si-holder {
  display: block;
  height: 40.625%;
  /* 13px / 32px */
  width: 50%;
  /* 16px / 32px */
  left: 25%;
  /* 8px / 32px */
  top: 37.5%;
  /* 12px / 32px */ }

.si-holder:after {
  content: '';
  width: 66.666%;
  /* 8px / 16px */
  height: 18.182%;
  /* 2px / 13px */
  bottom: -30.769%;
  /* -4px / 13px */
  left: 16.667%;
  /* 2px / 16px */ }

.si-holder:before {
  content: '';
  width: 33.333%;
  /* 4px / 16px */
  height: 27.273%;
  /* 3px / 13px */
  top: 92.308%;
  /* 12px / 13px */
  left: 33.333%;
  /* 4px / 16px */ }

.scrollable {
  position: relative; }

.scrollable:focus {
  outline: 0; }

.scrollable .viewport {
  position: relative;
  overflow: hidden; }

.scrollable .viewport .overview {
  position: absolute; }

.scrollable .scroll-bar {
  display: none; }

.scrollable .scroll-bar.vertical {
  position: absolute;
  right: 0;
  height: 100%; }

.scrollable .scroll-bar.horizontal {
  position: relative;
  width: 100%; }

.scrollable .scroll-bar .thumb {
  position: absolute; }

.scrollable .scroll-bar.vertical .thumb {
  width: 100%;
  min-height: 10px; }

.scrollable .scroll-bar.horizontal .thumb {
  height: 100%;
  min-width: 10px;
  left: 0; }

.not-selectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

/*Default skin*/
.scrollable.default-skin {
  padding-right: 10px;
  padding-bottom: 6px; }

.scrollable.default-skin .scroll-bar.vertical {
  width: 6px; }

.scrollable.default-skin .scroll-bar.horizontal {
  height: 6px; }

.scrollable.default-skin .scroll-bar .thumb {
  background-color: black;
  opacity: 0.4;
  border-radius: 3px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px; }

.scrollable.default-skin .scroll-bar:hover .thumb {
  opacity: 0.6; }

/*Gray skin*/
.scrollable.gray-skin {
  padding-right: 17px; }

.scrollable.gray-skin .scroll-bar {
  border: 1px solid gray;
  background-color: #d3d3d3; }

.scrollable.gray-skin .scroll-bar .thumb {
  background-color: gray; }

.scrollable.gray-skin .scroll-bar:hover .thumb {
  background-color: black; }

.scrollable.gray-skin .scroll-bar.vertical {
  width: 10px; }

.scrollable.gray-skin .scroll-bar.horizontal {
  height: 10px;
  margin-top: 2px; }

/*Modern skin*/
.scrollable.modern-skin {
  padding-right: 17px; }

.scrollable.modern-skin .scroll-bar {
  border: 1px solid gray;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-box-shadow: inset 0 0 5px #888;
  -webkit-box-shadow: inset 0 0 5px #888;
  box-shadow: inset 0 0 5px #888; }

.scrollable.modern-skin .scroll-bar .thumb {
  background-color: #95aabf;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border: 1px solid #536984; }

.scrollable.modern-skin .scroll-bar.vertical .thumb {
  width: 8px;
  background: -moz-linear-gradient(left, #95aabf 0%, #547092 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #95aabf), color-stop(100%, #547092));
  background: -webkit-linear-gradient(left, #95aabf 0%, #547092 100%);
  background: -o-linear-gradient(left, #95aabf 0%, #547092 100%);
  background: -ms-linear-gradient(left, #95aabf 0%, #547092 100%);
  background: linear-gradient(to right, #95aabf 0%, #547092 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient( startColorstr='#95aabf', endColorstr='#547092',GradientType=1 )"; }

.scrollable.modern-skin .scroll-bar.horizontal .thumb {
  height: 8px;
  background-image: linear-gradient(#95aabf, #547092);
  background-image: -o-linear-gradient(#95aabf, #547092);
  background-image: -moz-linear-gradient(#95aabf, #547092);
  background-image: -webkit-linear-gradient(#95aabf, #547092);
  background-image: -ms-linear-gradient(#95aabf, #547092);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient( startColorstr='#95aabf', endColorstr='#547092',GradientType=0 )"; }

.scrollable.modern-skin .scroll-bar.vertical {
  width: 10px; }

.scrollable.modern-skin .scroll-bar.horizontal {
  height: 10px;
  margin-top: 2px; }

/*
    Common 
*/
.wizard,
.tabcontrol {
  display: block;
  width: 100%;
  overflow: hidden; }

.wizard a,
.tabcontrol a {
  outline: 0; }

.wizard ul,
.tabcontrol ul {
  list-style: none !important;
  padding: 0;
  margin: 0; }

.wizard ul > li,
.tabcontrol ul > li {
  display: block;
  padding: 0; }

/* Accessibility */
.wizard > .steps .current-info,
.tabcontrol > .steps .current-info {
  position: absolute;
  left: -999em; }

.wizard > .content > .title,
.tabcontrol > .content > .title {
  position: absolute;
  left: -999em; }

/*
    Wizard
*/
.wizard > .steps {
  position: relative;
  display: block;
  width: 100%; }

.wizard.vertical > .steps {
  display: inline;
  float: left;
  width: 30%; }

.wizard > .steps .number {
  font-size: 1.429em; }

.wizard > .steps > ul > li {
  width: 25%; }

.wizard > .steps > ul > li,
.wizard > .actions > ul > li {
  float: left; }

.wizard.vertical > .steps > ul > li {
  float: none;
  width: 100%; }

.wizard > .steps a,
.wizard > .steps a:hover,
.wizard > .steps a:active {
  display: block;
  width: auto;
  margin: 0 0.5em 0.5em;
  padding: 1em 1em;
  text-decoration: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px; }

.wizard > .steps .disabled a,
.wizard > .steps .disabled a:hover,
.wizard > .steps .disabled a:active {
  background: #eee;
  color: #aaa;
  cursor: default; }

.wizard > .steps .current a,
.wizard > .steps .current a:hover,
.wizard > .steps .current a:active {
  background: #7159B5;
  color: #ffffff;
  cursor: default; }

.wizard > .steps .done a,
.wizard > .steps .done a:hover,
.wizard > .steps .done a:active {
  background: #78cd62;
  color: #fff; }

.wizard > .steps .error a,
.wizard > .steps .error a:hover,
.wizard > .steps .error a:active {
  background: #cc3032;
  color: #fff; }

.wizard > .content {
  background: #eee;
  display: block;
  margin: 0.5em;
  min-height: 35em;
  overflow: hidden;
  position: relative;
  width: auto;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px; }

.wizard.vertical > .content {
  display: inline;
  float: left;
  margin: 0 2.5% 0.5em 2.5%;
  width: 65%; }

.wizard > .content > .body {
  float: left;
  position: absolute;
  width: 95%;
  height: 95%;
  padding: 2.5%; }

.wizard > .content > .body ul {
  list-style: disc !important; }

.wizard > .content > .body ul > li {
  display: list-item; }

.wizard > .content > .body > iframe {
  border: 0 none;
  width: 100%;
  height: 100%; }

.wizard > .content > .body input {
  display: block;
  border: 1px solid #ccc; }

.wizard > .content > .body input[type="checkbox"] {
  display: inline-block; }

.wizard > .content > .body input.error {
  background: #fbe3e4;
  border: 1px solid #fbc2c4;
  color: #8a1f11; }

.wizard > .content > .body label {
  display: inline-block;
  margin-bottom: 0.5em; }

.wizard > .content > .body label.error {
  color: #8a1f11;
  display: inline-block;
  margin-left: 1.5em; }

.wizard > .actions {
  position: relative;
  display: block;
  text-align: right;
  width: 100%; }

.wizard.vertical > .actions {
  display: inline;
  float: right;
  margin: 0 2.5%;
  width: 95%; }

.wizard > .actions > ul {
  display: inline-block;
  text-align: right; }

.wizard > .actions > ul > li {
  margin: 0 0.5em; }

.wizard.vertical > .actions > ul > li {
  margin: 0 0 0 1em; }

.wizard > .actions a,
.wizard > .actions a:hover,
.wizard > .actions a:active {
  background: #2184be;
  margin: 0 0 5px 0; }

.wizard > .actions .disabled a,
.wizard > .actions .disabled a:hover,
.wizard > .actions .disabled a:active {
  background: #eee;
  color: #aaa; }

/*
    Tabcontrol
*/
.tabcontrol > .steps {
  position: relative;
  display: block;
  width: 100%; }

.tabcontrol > .steps > ul {
  position: relative;
  margin: 6px 0 0 0;
  top: 1px;
  z-index: 1; }

.tabcontrol > .steps > ul > li {
  float: left;
  margin: 5px 2px 0 0;
  padding: 1px;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px; }

.tabcontrol > .steps > ul > li:hover {
  background: #edecec;
  border: 1px solid #bbb;
  padding: 0; }

.tabcontrol > .steps > ul > li.current {
  background: #fff;
  border: 1px solid #bbb;
  border-bottom: 0 none;
  padding: 0 0 1px 0;
  margin-top: 0; }

.tabcontrol > .steps > ul > li > a {
  color: #5f5f5f;
  display: inline-block;
  border: 0 none;
  margin: 0;
  padding: 10px 30px;
  text-decoration: none; }

.tabcontrol > .steps > ul > li > a:hover {
  text-decoration: none; }

.tabcontrol > .steps > ul > li.current > a {
  padding: 15px 30px 10px 30px; }

.tabcontrol > .content {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 35em;
  overflow: hidden;
  border-top: 1px solid #bbb;
  padding-top: 20px; }

.tabcontrol > .content > .body {
  float: left;
  position: absolute;
  width: 95%;
  height: 95%;
  padding: 2.5%; }

.tabcontrol > .content > .body ul {
  list-style: disc !important; }

.tabcontrol > .content > .body ul > li {
  display: list-item; }

.jq-ry-container {
  position: relative;
  line-height: 0;
  display: block;
  cursor: pointer;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  direction: ltr; }
  .is-dashboard .jq-ry-container {
    left: -3px; }

.jq-ry-container[readonly="readonly"] {
  cursor: default; }

.jq-ry-container > .jq-ry-group-wrapper {
  position: relative;
  width: 100%; }

.jq-ry-container > .jq-ry-group-wrapper > .jq-ry-group {
  position: relative;
  line-height: 0;
  z-index: 10;
  white-space: nowrap; }

.jq-ry-container > .jq-ry-group-wrapper > .jq-ry-group > svg {
  display: inline-block; }

.jq-ry-container > .jq-ry-group-wrapper > .jq-ry-group.jq-ry-normal-group {
  width: 100%; }

.jq-ry-container > .jq-ry-group-wrapper > .jq-ry-group.jq-ry-rated-group {
  width: 0;
  z-index: 11;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden; }

[data-aos][data-aos][data-aos-duration='50'], body[data-aos-duration='50'] [data-aos] {
  transition-duration: 50ms; }

[data-aos][data-aos][data-aos-delay='50'], body[data-aos-delay='50'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='50'].aos-animate, body[data-aos-delay='50'] [data-aos].aos-animate {
  transition-delay: 50ms; }

[data-aos][data-aos][data-aos-duration='100'], body[data-aos-duration='100'] [data-aos] {
  transition-duration: .1s; }

[data-aos][data-aos][data-aos-delay='100'], body[data-aos-delay='100'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='100'].aos-animate, body[data-aos-delay='100'] [data-aos].aos-animate {
  transition-delay: .1s; }

[data-aos][data-aos][data-aos-duration='150'], body[data-aos-duration='150'] [data-aos] {
  transition-duration: .15s; }

[data-aos][data-aos][data-aos-delay='150'], body[data-aos-delay='150'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='150'].aos-animate, body[data-aos-delay='150'] [data-aos].aos-animate {
  transition-delay: .15s; }

[data-aos][data-aos][data-aos-duration='200'], body[data-aos-duration='200'] [data-aos] {
  transition-duration: .2s; }

[data-aos][data-aos][data-aos-delay='200'], body[data-aos-delay='200'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='200'].aos-animate, body[data-aos-delay='200'] [data-aos].aos-animate {
  transition-delay: .2s; }

[data-aos][data-aos][data-aos-duration='250'], body[data-aos-duration='250'] [data-aos] {
  transition-duration: .25s; }

[data-aos][data-aos][data-aos-delay='250'], body[data-aos-delay='250'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='250'].aos-animate, body[data-aos-delay='250'] [data-aos].aos-animate {
  transition-delay: .25s; }

[data-aos][data-aos][data-aos-duration='300'], body[data-aos-duration='300'] [data-aos] {
  transition-duration: .3s; }

[data-aos][data-aos][data-aos-delay='300'], body[data-aos-delay='300'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='300'].aos-animate, body[data-aos-delay='300'] [data-aos].aos-animate {
  transition-delay: .3s; }

[data-aos][data-aos][data-aos-duration='350'], body[data-aos-duration='350'] [data-aos] {
  transition-duration: .35s; }

[data-aos][data-aos][data-aos-delay='350'], body[data-aos-delay='350'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='350'].aos-animate, body[data-aos-delay='350'] [data-aos].aos-animate {
  transition-delay: .35s; }

[data-aos][data-aos][data-aos-duration='400'], body[data-aos-duration='400'] [data-aos] {
  transition-duration: .4s; }

[data-aos][data-aos][data-aos-delay='400'], body[data-aos-delay='400'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='400'].aos-animate, body[data-aos-delay='400'] [data-aos].aos-animate {
  transition-delay: .4s; }

[data-aos][data-aos][data-aos-duration='450'], body[data-aos-duration='450'] [data-aos] {
  transition-duration: .45s; }

[data-aos][data-aos][data-aos-delay='450'], body[data-aos-delay='450'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='450'].aos-animate, body[data-aos-delay='450'] [data-aos].aos-animate {
  transition-delay: .45s; }

[data-aos][data-aos][data-aos-duration='500'], body[data-aos-duration='500'] [data-aos] {
  transition-duration: .5s; }

[data-aos][data-aos][data-aos-delay='500'], body[data-aos-delay='500'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='500'].aos-animate, body[data-aos-delay='500'] [data-aos].aos-animate {
  transition-delay: .5s; }

[data-aos][data-aos][data-aos-duration='550'], body[data-aos-duration='550'] [data-aos] {
  transition-duration: .55s; }

[data-aos][data-aos][data-aos-delay='550'], body[data-aos-delay='550'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='550'].aos-animate, body[data-aos-delay='550'] [data-aos].aos-animate {
  transition-delay: .55s; }

[data-aos][data-aos][data-aos-duration='600'], body[data-aos-duration='600'] [data-aos] {
  transition-duration: .6s; }

[data-aos][data-aos][data-aos-delay='600'], body[data-aos-delay='600'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='600'].aos-animate, body[data-aos-delay='600'] [data-aos].aos-animate {
  transition-delay: .6s; }

[data-aos][data-aos][data-aos-duration='650'], body[data-aos-duration='650'] [data-aos] {
  transition-duration: .65s; }

[data-aos][data-aos][data-aos-delay='650'], body[data-aos-delay='650'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='650'].aos-animate, body[data-aos-delay='650'] [data-aos].aos-animate {
  transition-delay: .65s; }

[data-aos][data-aos][data-aos-duration='700'], body[data-aos-duration='700'] [data-aos] {
  transition-duration: .7s; }

[data-aos][data-aos][data-aos-delay='700'], body[data-aos-delay='700'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='700'].aos-animate, body[data-aos-delay='700'] [data-aos].aos-animate {
  transition-delay: .7s; }

[data-aos][data-aos][data-aos-duration='750'], body[data-aos-duration='750'] [data-aos] {
  transition-duration: .75s; }

[data-aos][data-aos][data-aos-delay='750'], body[data-aos-delay='750'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='750'].aos-animate, body[data-aos-delay='750'] [data-aos].aos-animate {
  transition-delay: .75s; }

[data-aos][data-aos][data-aos-duration='800'], body[data-aos-duration='800'] [data-aos] {
  transition-duration: .8s; }

[data-aos][data-aos][data-aos-delay='800'], body[data-aos-delay='800'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='800'].aos-animate, body[data-aos-delay='800'] [data-aos].aos-animate {
  transition-delay: .8s; }

[data-aos][data-aos][data-aos-duration='850'], body[data-aos-duration='850'] [data-aos] {
  transition-duration: .85s; }

[data-aos][data-aos][data-aos-delay='850'], body[data-aos-delay='850'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='850'].aos-animate, body[data-aos-delay='850'] [data-aos].aos-animate {
  transition-delay: .85s; }

[data-aos][data-aos][data-aos-duration='900'], body[data-aos-duration='900'] [data-aos] {
  transition-duration: .9s; }

[data-aos][data-aos][data-aos-delay='900'], body[data-aos-delay='900'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='900'].aos-animate, body[data-aos-delay='900'] [data-aos].aos-animate {
  transition-delay: .9s; }

[data-aos][data-aos][data-aos-duration='950'], body[data-aos-duration='950'] [data-aos] {
  transition-duration: .95s; }

[data-aos][data-aos][data-aos-delay='950'], body[data-aos-delay='950'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='950'].aos-animate, body[data-aos-delay='950'] [data-aos].aos-animate {
  transition-delay: .95s; }

[data-aos][data-aos][data-aos-duration='1000'], body[data-aos-duration='1000'] [data-aos] {
  transition-duration: 1s; }

[data-aos][data-aos][data-aos-delay='1000'], body[data-aos-delay='1000'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1000'].aos-animate, body[data-aos-delay='1000'] [data-aos].aos-animate {
  transition-delay: 1s; }

[data-aos][data-aos][data-aos-duration='1050'], body[data-aos-duration='1050'] [data-aos] {
  transition-duration: 1.05s; }

[data-aos][data-aos][data-aos-delay='1050'], body[data-aos-delay='1050'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1050'].aos-animate, body[data-aos-delay='1050'] [data-aos].aos-animate {
  transition-delay: 1.05s; }

[data-aos][data-aos][data-aos-duration='1100'], body[data-aos-duration='1100'] [data-aos] {
  transition-duration: 1.1s; }

[data-aos][data-aos][data-aos-delay='1100'], body[data-aos-delay='1100'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1100'].aos-animate, body[data-aos-delay='1100'] [data-aos].aos-animate {
  transition-delay: 1.1s; }

[data-aos][data-aos][data-aos-duration='1150'], body[data-aos-duration='1150'] [data-aos] {
  transition-duration: 1.15s; }

[data-aos][data-aos][data-aos-delay='1150'], body[data-aos-delay='1150'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1150'].aos-animate, body[data-aos-delay='1150'] [data-aos].aos-animate {
  transition-delay: 1.15s; }

[data-aos][data-aos][data-aos-duration='1200'], body[data-aos-duration='1200'] [data-aos] {
  transition-duration: 1.2s; }

[data-aos][data-aos][data-aos-delay='1200'], body[data-aos-delay='1200'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1200'].aos-animate, body[data-aos-delay='1200'] [data-aos].aos-animate {
  transition-delay: 1.2s; }

[data-aos][data-aos][data-aos-duration='1250'], body[data-aos-duration='1250'] [data-aos] {
  transition-duration: 1.25s; }

[data-aos][data-aos][data-aos-delay='1250'], body[data-aos-delay='1250'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1250'].aos-animate, body[data-aos-delay='1250'] [data-aos].aos-animate {
  transition-delay: 1.25s; }

[data-aos][data-aos][data-aos-duration='1300'], body[data-aos-duration='1300'] [data-aos] {
  transition-duration: 1.3s; }

[data-aos][data-aos][data-aos-delay='1300'], body[data-aos-delay='1300'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1300'].aos-animate, body[data-aos-delay='1300'] [data-aos].aos-animate {
  transition-delay: 1.3s; }

[data-aos][data-aos][data-aos-duration='1350'], body[data-aos-duration='1350'] [data-aos] {
  transition-duration: 1.35s; }

[data-aos][data-aos][data-aos-delay='1350'], body[data-aos-delay='1350'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1350'].aos-animate, body[data-aos-delay='1350'] [data-aos].aos-animate {
  transition-delay: 1.35s; }

[data-aos][data-aos][data-aos-duration='1400'], body[data-aos-duration='1400'] [data-aos] {
  transition-duration: 1.4s; }

[data-aos][data-aos][data-aos-delay='1400'], body[data-aos-delay='1400'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1400'].aos-animate, body[data-aos-delay='1400'] [data-aos].aos-animate {
  transition-delay: 1.4s; }

[data-aos][data-aos][data-aos-duration='1450'], body[data-aos-duration='1450'] [data-aos] {
  transition-duration: 1.45s; }

[data-aos][data-aos][data-aos-delay='1450'], body[data-aos-delay='1450'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1450'].aos-animate, body[data-aos-delay='1450'] [data-aos].aos-animate {
  transition-delay: 1.45s; }

[data-aos][data-aos][data-aos-duration='1500'], body[data-aos-duration='1500'] [data-aos] {
  transition-duration: 1.5s; }

[data-aos][data-aos][data-aos-delay='1500'], body[data-aos-delay='1500'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1500'].aos-animate, body[data-aos-delay='1500'] [data-aos].aos-animate {
  transition-delay: 1.5s; }

[data-aos][data-aos][data-aos-duration='1550'], body[data-aos-duration='1550'] [data-aos] {
  transition-duration: 1.55s; }

[data-aos][data-aos][data-aos-delay='1550'], body[data-aos-delay='1550'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1550'].aos-animate, body[data-aos-delay='1550'] [data-aos].aos-animate {
  transition-delay: 1.55s; }

[data-aos][data-aos][data-aos-duration='1600'], body[data-aos-duration='1600'] [data-aos] {
  transition-duration: 1.6s; }

[data-aos][data-aos][data-aos-delay='1600'], body[data-aos-delay='1600'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1600'].aos-animate, body[data-aos-delay='1600'] [data-aos].aos-animate {
  transition-delay: 1.6s; }

[data-aos][data-aos][data-aos-duration='1650'], body[data-aos-duration='1650'] [data-aos] {
  transition-duration: 1.65s; }

[data-aos][data-aos][data-aos-delay='1650'], body[data-aos-delay='1650'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1650'].aos-animate, body[data-aos-delay='1650'] [data-aos].aos-animate {
  transition-delay: 1.65s; }

[data-aos][data-aos][data-aos-duration='1700'], body[data-aos-duration='1700'] [data-aos] {
  transition-duration: 1.7s; }

[data-aos][data-aos][data-aos-delay='1700'], body[data-aos-delay='1700'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1700'].aos-animate, body[data-aos-delay='1700'] [data-aos].aos-animate {
  transition-delay: 1.7s; }

[data-aos][data-aos][data-aos-duration='1750'], body[data-aos-duration='1750'] [data-aos] {
  transition-duration: 1.75s; }

[data-aos][data-aos][data-aos-delay='1750'], body[data-aos-delay='1750'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1750'].aos-animate, body[data-aos-delay='1750'] [data-aos].aos-animate {
  transition-delay: 1.75s; }

[data-aos][data-aos][data-aos-duration='1800'], body[data-aos-duration='1800'] [data-aos] {
  transition-duration: 1.8s; }

[data-aos][data-aos][data-aos-delay='1800'], body[data-aos-delay='1800'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1800'].aos-animate, body[data-aos-delay='1800'] [data-aos].aos-animate {
  transition-delay: 1.8s; }

[data-aos][data-aos][data-aos-duration='1850'], body[data-aos-duration='1850'] [data-aos] {
  transition-duration: 1.85s; }

[data-aos][data-aos][data-aos-delay='1850'], body[data-aos-delay='1850'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1850'].aos-animate, body[data-aos-delay='1850'] [data-aos].aos-animate {
  transition-delay: 1.85s; }

[data-aos][data-aos][data-aos-duration='1900'], body[data-aos-duration='1900'] [data-aos] {
  transition-duration: 1.9s; }

[data-aos][data-aos][data-aos-delay='1900'], body[data-aos-delay='1900'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1900'].aos-animate, body[data-aos-delay='1900'] [data-aos].aos-animate {
  transition-delay: 1.9s; }

[data-aos][data-aos][data-aos-duration='1950'], body[data-aos-duration='1950'] [data-aos] {
  transition-duration: 1.95s; }

[data-aos][data-aos][data-aos-delay='1950'], body[data-aos-delay='1950'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1950'].aos-animate, body[data-aos-delay='1950'] [data-aos].aos-animate {
  transition-delay: 1.95s; }

[data-aos][data-aos][data-aos-duration='2000'], body[data-aos-duration='2000'] [data-aos] {
  transition-duration: 2s; }

[data-aos][data-aos][data-aos-delay='2000'], body[data-aos-delay='2000'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2000'].aos-animate, body[data-aos-delay='2000'] [data-aos].aos-animate {
  transition-delay: 2s; }

[data-aos][data-aos][data-aos-duration='2050'], body[data-aos-duration='2050'] [data-aos] {
  transition-duration: 2.05s; }

[data-aos][data-aos][data-aos-delay='2050'], body[data-aos-delay='2050'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2050'].aos-animate, body[data-aos-delay='2050'] [data-aos].aos-animate {
  transition-delay: 2.05s; }

[data-aos][data-aos][data-aos-duration='2100'], body[data-aos-duration='2100'] [data-aos] {
  transition-duration: 2.1s; }

[data-aos][data-aos][data-aos-delay='2100'], body[data-aos-delay='2100'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2100'].aos-animate, body[data-aos-delay='2100'] [data-aos].aos-animate {
  transition-delay: 2.1s; }

[data-aos][data-aos][data-aos-duration='2150'], body[data-aos-duration='2150'] [data-aos] {
  transition-duration: 2.15s; }

[data-aos][data-aos][data-aos-delay='2150'], body[data-aos-delay='2150'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2150'].aos-animate, body[data-aos-delay='2150'] [data-aos].aos-animate {
  transition-delay: 2.15s; }

[data-aos][data-aos][data-aos-duration='2200'], body[data-aos-duration='2200'] [data-aos] {
  transition-duration: 2.2s; }

[data-aos][data-aos][data-aos-delay='2200'], body[data-aos-delay='2200'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2200'].aos-animate, body[data-aos-delay='2200'] [data-aos].aos-animate {
  transition-delay: 2.2s; }

[data-aos][data-aos][data-aos-duration='2250'], body[data-aos-duration='2250'] [data-aos] {
  transition-duration: 2.25s; }

[data-aos][data-aos][data-aos-delay='2250'], body[data-aos-delay='2250'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2250'].aos-animate, body[data-aos-delay='2250'] [data-aos].aos-animate {
  transition-delay: 2.25s; }

[data-aos][data-aos][data-aos-duration='2300'], body[data-aos-duration='2300'] [data-aos] {
  transition-duration: 2.3s; }

[data-aos][data-aos][data-aos-delay='2300'], body[data-aos-delay='2300'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2300'].aos-animate, body[data-aos-delay='2300'] [data-aos].aos-animate {
  transition-delay: 2.3s; }

[data-aos][data-aos][data-aos-duration='2350'], body[data-aos-duration='2350'] [data-aos] {
  transition-duration: 2.35s; }

[data-aos][data-aos][data-aos-delay='2350'], body[data-aos-delay='2350'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2350'].aos-animate, body[data-aos-delay='2350'] [data-aos].aos-animate {
  transition-delay: 2.35s; }

[data-aos][data-aos][data-aos-duration='2400'], body[data-aos-duration='2400'] [data-aos] {
  transition-duration: 2.4s; }

[data-aos][data-aos][data-aos-delay='2400'], body[data-aos-delay='2400'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2400'].aos-animate, body[data-aos-delay='2400'] [data-aos].aos-animate {
  transition-delay: 2.4s; }

[data-aos][data-aos][data-aos-duration='2450'], body[data-aos-duration='2450'] [data-aos] {
  transition-duration: 2.45s; }

[data-aos][data-aos][data-aos-delay='2450'], body[data-aos-delay='2450'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2450'].aos-animate, body[data-aos-delay='2450'] [data-aos].aos-animate {
  transition-delay: 2.45s; }

[data-aos][data-aos][data-aos-duration='2500'], body[data-aos-duration='2500'] [data-aos] {
  transition-duration: 2.5s; }

[data-aos][data-aos][data-aos-delay='2500'], body[data-aos-delay='2500'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2500'].aos-animate, body[data-aos-delay='2500'] [data-aos].aos-animate {
  transition-delay: 2.5s; }

[data-aos][data-aos][data-aos-duration='2550'], body[data-aos-duration='2550'] [data-aos] {
  transition-duration: 2.55s; }

[data-aos][data-aos][data-aos-delay='2550'], body[data-aos-delay='2550'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2550'].aos-animate, body[data-aos-delay='2550'] [data-aos].aos-animate {
  transition-delay: 2.55s; }

[data-aos][data-aos][data-aos-duration='2600'], body[data-aos-duration='2600'] [data-aos] {
  transition-duration: 2.6s; }

[data-aos][data-aos][data-aos-delay='2600'], body[data-aos-delay='2600'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2600'].aos-animate, body[data-aos-delay='2600'] [data-aos].aos-animate {
  transition-delay: 2.6s; }

[data-aos][data-aos][data-aos-duration='2650'], body[data-aos-duration='2650'] [data-aos] {
  transition-duration: 2.65s; }

[data-aos][data-aos][data-aos-delay='2650'], body[data-aos-delay='2650'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2650'].aos-animate, body[data-aos-delay='2650'] [data-aos].aos-animate {
  transition-delay: 2.65s; }

[data-aos][data-aos][data-aos-duration='2700'], body[data-aos-duration='2700'] [data-aos] {
  transition-duration: 2.7s; }

[data-aos][data-aos][data-aos-delay='2700'], body[data-aos-delay='2700'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2700'].aos-animate, body[data-aos-delay='2700'] [data-aos].aos-animate {
  transition-delay: 2.7s; }

[data-aos][data-aos][data-aos-duration='2750'], body[data-aos-duration='2750'] [data-aos] {
  transition-duration: 2.75s; }

[data-aos][data-aos][data-aos-delay='2750'], body[data-aos-delay='2750'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2750'].aos-animate, body[data-aos-delay='2750'] [data-aos].aos-animate {
  transition-delay: 2.75s; }

[data-aos][data-aos][data-aos-duration='2800'], body[data-aos-duration='2800'] [data-aos] {
  transition-duration: 2.8s; }

[data-aos][data-aos][data-aos-delay='2800'], body[data-aos-delay='2800'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2800'].aos-animate, body[data-aos-delay='2800'] [data-aos].aos-animate {
  transition-delay: 2.8s; }

[data-aos][data-aos][data-aos-duration='2850'], body[data-aos-duration='2850'] [data-aos] {
  transition-duration: 2.85s; }

[data-aos][data-aos][data-aos-delay='2850'], body[data-aos-delay='2850'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2850'].aos-animate, body[data-aos-delay='2850'] [data-aos].aos-animate {
  transition-delay: 2.85s; }

[data-aos][data-aos][data-aos-duration='2900'], body[data-aos-duration='2900'] [data-aos] {
  transition-duration: 2.9s; }

[data-aos][data-aos][data-aos-delay='2900'], body[data-aos-delay='2900'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2900'].aos-animate, body[data-aos-delay='2900'] [data-aos].aos-animate {
  transition-delay: 2.9s; }

[data-aos][data-aos][data-aos-duration='2950'], body[data-aos-duration='2950'] [data-aos] {
  transition-duration: 2.95s; }

[data-aos][data-aos][data-aos-delay='2950'], body[data-aos-delay='2950'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2950'].aos-animate, body[data-aos-delay='2950'] [data-aos].aos-animate {
  transition-delay: 2.95s; }

[data-aos][data-aos][data-aos-duration='3000'], body[data-aos-duration='3000'] [data-aos] {
  transition-duration: 3s; }

[data-aos][data-aos][data-aos-delay='3000'], body[data-aos-delay='3000'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='3000'].aos-animate, body[data-aos-delay='3000'] [data-aos].aos-animate {
  transition-delay: 3s; }

[data-aos][data-aos][data-aos-easing=linear], body[data-aos-easing=linear] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75); }

[data-aos][data-aos][data-aos-easing=ease], body[data-aos-easing=ease] [data-aos] {
  transition-timing-function: ease; }

[data-aos][data-aos][data-aos-easing=ease-in], body[data-aos-easing=ease-in] [data-aos] {
  transition-timing-function: ease-in; }

[data-aos][data-aos][data-aos-easing=ease-out], body[data-aos-easing=ease-out] [data-aos] {
  transition-timing-function: ease-out; }

[data-aos][data-aos][data-aos-easing=ease-in-out], body[data-aos-easing=ease-in-out] [data-aos] {
  transition-timing-function: ease-in-out; }

[data-aos][data-aos][data-aos-easing=ease-in-back], body[data-aos-easing=ease-in-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045); }

[data-aos][data-aos][data-aos-easing=ease-out-back], body[data-aos-easing=ease-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }

[data-aos][data-aos][data-aos-easing=ease-in-out-back], body[data-aos-easing=ease-in-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }

[data-aos][data-aos][data-aos-easing=ease-in-sine], body[data-aos-easing=ease-in-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715); }

[data-aos][data-aos][data-aos-easing=ease-out-sine], body[data-aos-easing=ease-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1); }

[data-aos][data-aos][data-aos-easing=ease-in-out-sine], body[data-aos-easing=ease-in-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95); }

[data-aos][data-aos][data-aos-easing=ease-in-quad], body[data-aos-easing=ease-in-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); }

[data-aos][data-aos][data-aos-easing=ease-out-quad], body[data-aos-easing=ease-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }

[data-aos][data-aos][data-aos-easing=ease-in-out-quad], body[data-aos-easing=ease-in-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955); }

[data-aos][data-aos][data-aos-easing=ease-in-cubic], body[data-aos-easing=ease-in-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); }

[data-aos][data-aos][data-aos-easing=ease-out-cubic], body[data-aos-easing=ease-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic], body[data-aos-easing=ease-in-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955); }

[data-aos][data-aos][data-aos-easing=ease-in-quart], body[data-aos-easing=ease-in-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); }

[data-aos][data-aos][data-aos-easing=ease-out-quart], body[data-aos-easing=ease-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }

[data-aos][data-aos][data-aos-easing=ease-in-out-quart], body[data-aos-easing=ease-in-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955); }

[data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  transition-property: opacity,transform; }

[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  transform: translate(0); }

[data-aos=fade-up] {
  transform: translateY(100px); }

[data-aos=fade-down] {
  transform: translateY(-100px); }

[data-aos=fade-right] {
  transform: translate(-100px); }

[data-aos=fade-left] {
  transform: translate(100px); }

[data-aos=fade-up-right] {
  transform: translate(-100px, 100px); }

[data-aos=fade-up-left] {
  transform: translate(100px, 100px); }

[data-aos=fade-down-right] {
  transform: translate(-100px, -100px); }

[data-aos=fade-down-left] {
  transform: translate(100px, -100px); }

[data-aos^=zoom][data-aos^=zoom] {
  opacity: 0;
  transition-property: opacity,transform; }

[data-aos^=zoom][data-aos^=zoom].aos-animate {
  opacity: 1;
  transform: translate(0) scale(1); }

[data-aos=zoom-in] {
  transform: scale(0.6); }

[data-aos=zoom-in-up] {
  transform: translateY(100px) scale(0.6); }

[data-aos=zoom-in-down] {
  transform: translateY(-100px) scale(0.6); }

[data-aos=zoom-in-right] {
  transform: translate(-100px) scale(0.6); }

[data-aos=zoom-in-left] {
  transform: translate(100px) scale(0.6); }

[data-aos=zoom-out] {
  transform: scale(1.2); }

[data-aos=zoom-out-up] {
  transform: translateY(100px) scale(1.2); }

[data-aos=zoom-out-down] {
  transform: translateY(-100px) scale(1.2); }

[data-aos=zoom-out-right] {
  transform: translate(-100px) scale(1.2); }

[data-aos=zoom-out-left] {
  transform: translate(100px) scale(1.2); }

[data-aos^=slide][data-aos^=slide] {
  transition-property: transform; }

[data-aos^=slide][data-aos^=slide].aos-animate {
  transform: translate(0); }

[data-aos=slide-up] {
  transform: translateY(100%); }

[data-aos=slide-down] {
  transform: translateY(-100%); }

[data-aos=slide-right] {
  transform: translateX(-100%); }

[data-aos=slide-left] {
  transform: translateX(100%); }

[data-aos^=flip][data-aos^=flip] {
  backface-visibility: hidden;
  transition-property: transform; }

[data-aos=flip-left] {
  transform: perspective(2500px) rotateY(-100deg); }

[data-aos=flip-left].aos-animate {
  transform: perspective(2500px) rotateY(0); }

[data-aos=flip-right] {
  transform: perspective(2500px) rotateY(100deg); }

[data-aos=flip-right].aos-animate {
  transform: perspective(2500px) rotateY(0); }

[data-aos=flip-up] {
  transform: perspective(2500px) rotateX(-100deg); }

[data-aos=flip-up].aos-animate {
  transform: perspective(2500px) rotateX(0); }

[data-aos=flip-down] {
  transform: perspective(2500px) rotateX(100deg); }

[data-aos=flip-down].aos-animate {
  transform: perspective(2500px) rotateX(0); }

/*# sourceMappingURL=aos.css.map*/
/*!  
 * SmartWizard v4.x
 * jQuery Wizard Plugin
 * http://www.techlaboratory.net/smartwizard
 *
 * Created by Dipu Raj
 * http://dipuraj.me
 *
 * Licensed under the terms of MIT License
 * https://github.com/techlab/SmartWizard/blob/master/LICENSE
 */
/* SmartWizard Basic CSS */
.sw-main {
  position: relative;
  display: block;
  margin: 0;
  padding: 0; }

.sw-main .sw-container {
  display: block;
  margin: 0;
  padding: 0;
  position: relative; }

.sw-main .step-content {
  display: none;
  position: relative;
  margin: 0; }

.sw-main .sw-toolbar {
  margin-left: 0; }

/* SmartWizard Theme: White */
.sw-theme-default {
  -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3); }

.sw-theme-default .sw-container {
  min-height: 250px; }

.sw-theme-default .step-content {
  padding: 10px;
  border: 0px solid #D4D4D4;
  background-color: #FFF;
  text-align: left; }

.sw-theme-default .sw-toolbar {
  background: #f9f9f9;
  border-radius: 0 !important;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 0 !important; }

.sw-theme-default .sw-toolbar-top {
  border-bottom-color: #ddd !important; }

.sw-theme-default .sw-toolbar-bottom {
  border-top-color: #ddd !important; }

.sw-theme-default > ul.step-anchor > li > a, .sw-theme-default > ul.step-anchor > li > a:hover {
  border: none !important;
  color: #bbb;
  text-decoration: none;
  outline-style: none;
  background: transparent !important;
  border: none !important; }

.sw-theme-default > ul.step-anchor > li.clickable > a:hover, #gift .sw-theme-default > ul.step-anchor > li[data-role="banner-close"] > a:hover {
  color: #4285F4 !important;
  background: transparent !important; }

.sw-theme-default > ul.step-anchor > li > a::after {
  content: "";
  background: #4285F4;
  /* #5bc0de #4285F4*/
  height: 2px;
  position: absolute;
  width: 100%;
  left: 0px;
  bottom: 0px;
  -webkit-transition: all 250ms ease 0s;
  transition: all 250ms ease 0s;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0); }

.sw-theme-default > ul.step-anchor > li.active > a {
  border: none !important;
  color: #4285F4 !important;
  background: transparent !important; }

.sw-theme-default > ul.step-anchor > li.active > a::after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.sw-theme-default > ul.step-anchor > li.done > a {
  border: none !important;
  color: #000 !important;
  background: transparent !important; }

.sw-theme-default > ul.step-anchor > li.done > a::after {
  background: #5cb85c;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.sw-theme-default > ul.step-anchor > li.danger > a {
  border: none !important;
  color: #d9534f !important;
  background: transparent !important; }

.sw-theme-default > ul.step-anchor > li.danger > a::after {
  background: #d9534f;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.sw-theme-default > ul.step-anchor > li.disabled > a, .sw-theme-default > ul.step-anchor > li.disabled > a:hover {
  color: #eee !important; }

/* Responsive CSS */
@media screen and (max-width: 768px) {
  .sw-theme-default > .nav-tabs > li {
    float: none !important; } }

/* Loader Animation
Courtesy: http://bootsnipp.com/snippets/featured/loading-button-effect-no-js
*/
@-webkit-keyframes ld {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1); }
  50% {
    -webkit-transform: rotate(180deg) scale(1.1);
    transform: rotate(180deg) scale(1.1); }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1); } }

@keyframes ld {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1); }
  50% {
    -webkit-transform: rotate(180deg) scale(1.1);
    transform: rotate(180deg) scale(1.1); }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1); } }

.sw-theme-default > ul.step-anchor > li.loading:before {
  content: '';
  display: inline-block;
  position: absolute;
  background: transparent;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: #4285f4;
  border-right-color: #4285f4;
  top: 50%;
  left: 50%;
  margin-top: -16px;
  margin-left: -16px;
  width: 32px;
  height: 32px;
  -webkit-animation: ld 1s ease-in-out infinite;
  animation: ld 1s ease-in-out infinite; }

@keyframes cart {
  from {
    transform: rotate(3deg); }
  to {
    transform: rotate(0deg); } }

/* SmartWizard Theme */
.order-wizard.sw-theme-dots ul.nav-tabs {
  box-shadow: none; }

.order-wizard.sw-theme-dots .smart-progress {
  display: block;
  height: 3px;
  width: 0%;
  background: #94ce65;
  background: linear-gradient(to right, #94ce65 0%, #6ed173 100%);
  transition: all .5s ease;
  position: relative; }
  .order-wizard.sw-theme-dots .smart-progress:after {
    content: "\f07a";
    font-family: "fontawesome";
    position: absolute;
    font-size: 16px;
    top: -1.2rem;
    right: 0;
    color: #78cd62;
    animation: cart .2s ease infinite; }
  .order-wizard.sw-theme-dots .smart-progress[style="width: 100%;"]:after {
    font-family: "fontawesome";
    content: "\f058";
    top: -2rem;
    right: .25rem;
    animation: bounceIn 1s ease;
    font-size: 10px; }

.order-wizard.sw-theme-dots .sw-container {
  border-top: 1px solid #eceaea;
  margin-bottom: 1rem;
  padding: .5rem; }
  body:not(.is-index) .order-wizard.sw-theme-dots .sw-container {
    min-height: 300px; }

.order-wizard.sw-theme-dots .step-content {
  width: 100%;
  font-size: .9rem;
  border: none;
  text-align: left; }
  .order-wizard.sw-theme-dots .step-content input[type=range][id]::-ms-track {
    height: 1px;
    background: #E0E0E0; }
  .order-wizard.sw-theme-dots .step-content input[type=range][id]::-moz-range-track {
    height: 1px;
    background: #E0E0E0; }
  .order-wizard.sw-theme-dots .step-content input[type=range][id]::-webkit-slider-runnable-track {
    height: 1px;
    background: #E0E0E0; }
  .order-wizard.sw-theme-dots .step-content input[type=range][id]::-moz-range-thumb {
    background: #4bae4d !important;
    height: 28px;
    width: 28px;
    border: 1px solid white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); }
  .order-wizard.sw-theme-dots .step-content input[type=range][id]::-ms-thumb {
    background: #4bae4d !important;
    height: 28px;
    width: 28px;
    border: 1px solid white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); }
  .order-wizard.sw-theme-dots .step-content input[type=range][id]::-webkit-slider-thumb {
    background: #4bae4d !important;
    height: 28px;
    width: 28px;
    border: 1px solid white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); }
  .order-wizard.sw-theme-dots .step-content p {
    text-align: center;
    color: #696969; }
    .order-wizard.sw-theme-dots .step-content p strong {
      font-weight: 500;
      color: #252525; }
    .order-wizard.sw-theme-dots .step-content p.sw-instructions {
      margin: .5rem auto .25rem;
      font-size: 1.15rem;
      padding: .5rem 0 0;
      line-height: 1.2rem; }
      @media (max-width: 991px) {
        .order-wizard.sw-theme-dots .step-content p.sw-instructions {
          font-size: 1.1rem;
          padding: .9rem 0 0;
          line-height: 1.1rem; } }
      @media (max-width: 767px) {
        .order-wizard.sw-theme-dots .step-content p.sw-instructions {
          line-height: 1rem;
          font-size: 1;
          padding: .5rem 0 0; } }
    .order-wizard.sw-theme-dots .step-content p a {
      padding: .5rem 1rem .3rem; }
  .order-wizard.sw-theme-dots .step-content .switch label input[type="checkbox"]:checked + .lever::after {
    background: #78cd62; }
  .order-wizard.sw-theme-dots .step-content a:not(.btn):not(.nav-link) {
    color: #252525;
    border-bottom: 1px dashed silver; }
  .order-wizard.sw-theme-dots .step-content a.btn-md {
    font-size: 1.2rem; }
  .order-wizard.sw-theme-dots .step-content a.btn-primary, .order-wizard.sw-theme-dots .step-content .fso-widget a.btn-submit, .fso-widget .order-wizard.sw-theme-dots .step-content a.btn-submit, .order-wizard.sw-theme-dots .step-content .wizard > .actions a, .wizard > .actions .order-wizard.sw-theme-dots .step-content a {
    background: #78cd62;
    color: white !important; }
  .order-wizard.sw-theme-dots .step-content body:not(.is-order) #order-wizard input[type=number], .order-wizard.sw-theme-dots .step-content body:not(.is-order) #order-wizard input[type=text], .order-wizard.sw-theme-dots .step-content body:not(.is-order) #order-wizard input[type=password], .order-wizard.sw-theme-dots .step-content body:not(.is-order) #order-wizard input[type=email] {
    border: 1px solid #E0E0E0;
    padding: 0.1rem 0.5rem;
    border-radius: 4px;
    background: #fff; }
  .order-wizard.sw-theme-dots .step-content body:not(.is-order) #order-wizard input.select-dropdown[type=text] {
    margin: 0;
    height: 2.1rem; }
  .order-wizard.sw-theme-dots .step-content #wizzard__pages, .order-wizard.sw-theme-dots .step-content #wizzard__sources {
    background: red;
    padding: 0 2.5rem;
    background: #fff;
    border-radius: 3px;
    text-align: center;
    font-size: 1.2rem; }
  .order-wizard.sw-theme-dots .step-content i[data-control].disabled {
    opacity: .1; }
  .order-wizard.sw-theme-dots .step-content i[data-control]:not(.disabled) {
    cursor: pointer; }
  .order-wizard.sw-theme-dots .step-content i[data-control][data-action="-"]:before {
    content: "\f068";
    left: 1.15rem; }
  .order-wizard.sw-theme-dots .step-content i[data-control][data-action="+"]:before {
    content: "\f067";
    right: 1.15rem; }
  .order-wizard.sw-theme-dots .step-content i[data-control]:before {
    font-style: normal;
    display: block;
    width: 29px;
    height: 29px;
    text-align: center;
    font-family: "fontawesome";
    font-size: 1rem;
    position: absolute;
    border-radius: 5px;
    top: 2px;
    line-height: 1.7rem; }
  .order-wizard.sw-theme-dots .step-content label {
    top: .3rem; }
  .order-wizard.sw-theme-dots .step-content .select-styled {
    border-bottom: 1px solid #e0e0e0;
    border-radius: 4px; }
    .order-wizard.sw-theme-dots .step-content .select-styled select.select-native {
      border: none;
      width: 100%;
      height: 2rem;
      background: transparent; }
    .order-wizard.sw-theme-dots .step-content .select-styled.select-duedate {
      -webkit-appearance: none;
      padding-left: 2rem;
      position: relative;
      background: #fff;
      font-size: 1.1rem; }
      .order-wizard.sw-theme-dots .step-content .select-styled.select-duedate:before {
        content: "\e92b";
        font-family: "essay";
        float: left;
        position: absolute;
        top: .1rem;
        left: .6rem;
        color: grey; }
  .order-wizard.sw-theme-dots .step-content .btn-group .btn.btn-radio, .order-wizard.sw-theme-dots .step-content .btn-group .wizard > .actions a.btn-radio, .wizard > .actions .order-wizard.sw-theme-dots .step-content .btn-group a.btn-radio {
    border-radius: 35px;
    margin: 2px;
    border-bottom: 1px solid #e0e0e0;
    background: #fafafa; }
    .order-wizard.sw-theme-dots .step-content .btn-group .btn.btn-radio:hover,
    .order-wizard.sw-theme-dots .step-content .btn-group .wizard > .actions a.btn-radio:hover, .wizard > .actions .order-wizard.sw-theme-dots .step-content .btn-group a.btn-radio:hover {
      box-shadow: none; }
    .order-wizard.sw-theme-dots .step-content .btn-group .btn.btn-radio.active, .order-wizard.sw-theme-dots .step-content .btn-group .wizard > .actions a.btn-radio.active, .wizard > .actions .order-wizard.sw-theme-dots .step-content .btn-group a.btn-radio.active, .order-wizard.sw-theme-dots .step-content .btn-group .btn.btn-radio.active:hover,
    .order-wizard.sw-theme-dots .step-content .btn-group .wizard > .actions a.btn-radio.active:hover, .wizard > .actions .order-wizard.sw-theme-dots .step-content .btn-group a.btn-radio.active:hover {
      background: #7159B5;
      color: #ffffff;
      box-shadow: inset 0 1px 2px #4f3c86;
      border-color: #7159B5; }
  .order-wizard.sw-theme-dots .step-content .form-icon {
    top: 10px;
    font-size: 1.9rem; }
  .order-wizard.sw-theme-dots .step-content .picker__date-display {
    display: none; }
  .order-wizard.sw-theme-dots .step-content .select2 {
    padding: 0 0 1.2rem; }
    .order-wizard.sw-theme-dots .step-content .select2 .select2-selection__rendered {
      padding-bottom: 0;
      color: #252525; }
      .order-wizard.sw-theme-dots .step-content .select2 .select2-selection__rendered:before {
        content: "\e909";
        font-family: "essay";
        padding-right: .5rem;
        color: silver; }
      .order-wizard.sw-theme-dots .step-content .select2 .select2-selection__rendered + .select2-selection__arrow b {
        top: 50%; }
    .order-wizard.sw-theme-dots .step-content .select2 .select2-selection.select2-selection--single {
      border: 1px solid #e0e0e0;
      border-radius: 5px; }
  .order-wizard.sw-theme-dots .step-content input {
    color: #252525; }
  .order-wizard.sw-theme-dots .step-content input#deadline {
    font-size: 1rem;
    position: relative;
    top: 5px; }
  .order-wizard.sw-theme-dots .step-content #details .md-form:before, .order-wizard.sw-theme-dots .step-content #details .md-form:after {
    position: absolute;
    font-size: 1.2rem; }
  .order-wizard.sw-theme-dots .step-content #details .md-form:before {
    content: "\275D";
    top: -.1rem;
    left: -1.2rem; }
  .order-wizard.sw-theme-dots .step-content #details .md-form:after {
    content: "\275E";
    bottom: -.1rem;
    right: -1.2rem; }
  .order-wizard.sw-theme-dots .step-content #details .md-form textarea#paperDetails {
    font-family: serif !important;
    font-size: 1.2rem;
    text-align: justify;
    font-style: italic;
    color: #1b1b1b; }
  .order-wizard.sw-theme-dots .step-content #paperType + .select2, .order-wizard.sw-theme-dots .step-content #subj + .select2 {
    width: 100% !important; }

.order-wizard.sw-theme-dots .sw-toolbar {
  padding: 0; }
  .order-wizard.sw-theme-dots .sw-toolbar .btn-group {
    width: 100%;
    margin: 0 auto; }
    .order-wizard.sw-theme-dots .sw-toolbar .btn-group button {
      width: 50%;
      box-shadow: none; }
      .order-wizard.sw-theme-dots .sw-toolbar .btn-group button.disabled {
        opacity: .15; }

.order-wizard.sw-theme-dots > ul.step-anchor {
  position: relative;
  display: flex;
  flex-direction: row;
  list-style: none;
  z-index: 0; }
  .order-wizard.sw-theme-dots > ul.step-anchor > li {
    flex-grow: 1;
    text-align: center;
    /* Anchors styles */
    /* Active anchors */
    /* Done anchors */
    /* Danger anchors */ }
    .order-wizard.sw-theme-dots > ul.step-anchor > li > a {
      font-size: .8rem;
      position: relative;
      text-align: center;
      background: transparent;
      color: #fafafa;
      text-decoration: none;
      outline-style: none;
      display: block;
      height: 20px;
      transition: all .2s ease; }
      .order-wizard.sw-theme-dots > ul.step-anchor > li > a i {
        font-size: 1rem; }
      .order-wizard.sw-theme-dots > ul.step-anchor > li > a:hover {
        color: #ccc;
        background: transparent; }
    .order-wizard.sw-theme-dots > ul.step-anchor > li.clickable > a:hover, #gift .order-wizard.sw-theme-dots > ul.step-anchor > li[data-role="banner-close"] > a:hover {
      color: #999; }
    .order-wizard.sw-theme-dots > ul.step-anchor > li.active > a {
      color: #efefef;
      transform: scale(1.3) translate(2px, -5px); }
    .order-wizard.sw-theme-dots > ul.step-anchor > li.done > a {
      color: silver; }
    .order-wizard.sw-theme-dots > ul.step-anchor > li.danger > a {
      color: #d9534f;
      border-color: #c9302c; }
    .order-wizard.sw-theme-dots > ul.step-anchor > li.disabled > a, .order-wizard.sw-theme-dots > ul.step-anchor > li.disabled > a:hover {
      color: #eee !important; }
    .order-wizard.sw-theme-dots > ul.step-anchor > li.disabled > a:after {
      background: #eee; }

.sidebar .widget.order-wizard.sw-theme-dots .smart-progress {
  background: #7159B5; }
  .sidebar .widget.order-wizard.sw-theme-dots .smart-progress:after {
    display: none !important; }

.sidebar .widget.order-wizard.sw-theme-dots > ul.nav > li[id] a {
  color: silver; }

.sidebar .widget.order-wizard.sw-theme-dots > ul.nav > li[id].active a {
  color: #242425; }

.sidebar .widget.order-wizard.sw-theme-dots > ul.nav > li[id].done a {
  color: grey; }

.sidebar .widget.order-wizard.sw-theme-dots .step-content p.sw-instructions {
  font-size: 1rem; }

.sidebar .widget.order-wizard.sw-theme-dots .step-content .hidden-xs-down {
  display: none !important; }

@media (min-width: 1199px) {
  .sidebar .widget.order-wizard.sw-theme-dots .sw-deadline__wrapper {
    width: 45%;
    padding-right: 0; }
  .sidebar .widget.order-wizard.sw-theme-dots .sw-pages__wrapper {
    width: 25%;
    padding-right: 0; }
  .sidebar .widget.order-wizard.sw-theme-dots .sw-sources__wrapper {
    width: 30%; } }

.section-order-wizard {
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
  background: #fafafa;
  background: linear-gradient(45deg, white 0%, #fafafa 25%, #fafafa 75%, white 100%); }
  .section-order-wizard #order-wizard.sw-theme-dots .nav.nav-tabs.step-anchor li a {
    color: silver; }
    .section-order-wizard #order-wizard.sw-theme-dots .nav.nav-tabs.step-anchor li a[href="#step-finish"] {
      color: black !important; }
  .section-order-wizard #order-wizard.sw-theme-dots .nav.nav-tabs.step-anchor li.active a {
    color: grey; }
  @media (max-width: 768px) {
    .section-order-wizard #order-wizard.sw-theme-dots .step-content label[for] {
      padding: .3rem 0; }
    .section-order-wizard #order-wizard.sw-theme-dots .step-content .sw-deadline__wrapper {
      margin-bottom: .5rem; }
      .section-order-wizard #order-wizard.sw-theme-dots .step-content .sw-deadline__wrapper .select-duedate {
        max-width: 180px;
        margin: auto; }
        .section-order-wizard #order-wizard.sw-theme-dots .step-content .sw-deadline__wrapper .select-duedate select {
          text-align: center !important; } }
  @media (min-width: 768px) {
    .section-order-wizard #order-wizard.sw-theme-dots .step-content .btn-group .btn.btn-radio, .section-order-wizard #order-wizard.sw-theme-dots .step-content .btn-group .wizard > .actions a.btn-radio, .wizard > .actions .section-order-wizard #order-wizard.sw-theme-dots .step-content .btn-group a.btn-radio {
      font-size: 1.3rem; } }
  @media (max-width: 767px) {
    .section-order-wizard #order-wizard.sw-theme-dots .step-content .btn-group .btn.btn-radio, .section-order-wizard #order-wizard.sw-theme-dots .step-content .btn-group .wizard > .actions a.btn-radio, .wizard > .actions .section-order-wizard #order-wizard.sw-theme-dots .step-content .btn-group a.btn-radio {
      font-size: 1.1rem; } }
  .section-order-wizard #order-wizard.sw-theme-dots .step-content .btn-group .btn.btn-radio:not(.active), .section-order-wizard #order-wizard.sw-theme-dots .step-content .btn-group .wizard > .actions a.btn-radio:not(.active), .wizard > .actions .section-order-wizard #order-wizard.sw-theme-dots .step-content .btn-group a.btn-radio:not(.active) {
    background: white; }
  .section-order-wizard #order-wizard.sw-theme-dots .step-content .sw-instructions {
    font-size: 1.2rem;
    line-height: 1.2em; }
  .section-order-wizard #order-wizard.sw-theme-dots .navbar.btn-toolbar.sw-toolbar-bottom .btn.btn-default, .section-order-wizard #order-wizard.sw-theme-dots .navbar.btn-toolbar.sw-toolbar-bottom .wizard > .actions a.btn-default, .wizard > .actions .section-order-wizard #order-wizard.sw-theme-dots .navbar.btn-toolbar.sw-toolbar-bottom a.btn-default {
    background: transparent !important;
    padding: 1rem 0;
    font-size: 1.1rem; }

/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  opacity: 0;
  transition: all 1s ease .2s;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block;
    opacity: 1; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    touch-action: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated, .owl-carousel div.add-feature-price {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

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

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

.owl-carousel .fadeOut, .owl-carousel div.add-feature-price:before {
  animation-name: fadeOut; }

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

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }

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

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme div.owl-nav {
  display: none;
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme div.owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme div.owl-nav [class*='owl-']:hover {
      background: #869791;
      color: #FFF;
      text-decoration: none; }
  .owl-theme div.owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

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

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #e0e0e0;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px;
      box-shadow: inset 1px 1px rgba(0, 0, 0, 0.1); }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #7159B5;
      box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1); }

/*! 
 * Copyright learnify.co, 
 * 2014-2018.
 * All rights reserved.
*/

/*# sourceMappingURL=maps/main.css.map */
