<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.rc-slider {
  position: relative;
  height: 14px;
  padding: 5px 0;
  width: 100%;
  border-radius: 6px;
  -ms-touch-action: none;
  touch-action: none;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.rc-slider * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.rc-slider-rail {
  position: absolute;
  width: 100%;
  background-color: #e9e9e9;
  height: 4px;
  border-radius: 6px;
}

.rc-slider-track {
  position: absolute;
  left: 0;
  height: 4px;
  border-radius: 6px;
  background-color: #abe2fb;
}

.rc-slider-handle {
  position: absolute;
  width: 14px;
  height: 14px;
  cursor: pointer;
  cursor: -webkit-grab;
  margin-top: -5px;
  cursor: grab;
  border-radius: 50%;
  border: solid 2px #96dbfa;
  background-color: #fff;
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.rc-slider-handle:focus {
  border-color: #57c5f7;
  box-shadow: 0 0 0 5px #96dbfa;
  outline: none;
}

.rc-slider-handle-click-focused:focus {
  border-color: #96dbfa;
  box-shadow: unset;
}

.rc-slider-handle:hover {
  border-color: #57c5f7;
}

.rc-slider-handle:active {
  border-color: #57c5f7;
  box-shadow: 0 0 5px #57c5f7;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.rc-slider-mark {
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  font-size: 12px;
}

.rc-slider-mark-text {
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  color: #999;
}

.rc-slider-mark-text-active {
  color: #666;
}

.rc-slider-step {
  position: absolute;
  width: 100%;
  height: 4px;
  background: transparent;
}

.rc-slider-dot {
  position: absolute;
  bottom: -2px;
  margin-left: -4px;
  width: 8px;
  height: 8px;
  border: 2px solid #e9e9e9;
  background-color: #fff;
  cursor: pointer;
  border-radius: 50%;
  vertical-align: middle;
}

.rc-slider-dot-active {
  border-color: #96dbfa;
}

.rc-slider-dot-reverse {
  margin-left: 0;
  margin-right: -4px;
}

.rc-slider-disabled {
  background-color: #e9e9e9;
}

.rc-slider-disabled .rc-slider-track {
  background-color: #ccc;
}

.rc-slider-disabled .rc-slider-handle,
.rc-slider-disabled .rc-slider-dot {
  border-color: #ccc;
  box-shadow: none;
  background-color: #fff;
  cursor: not-allowed;
}

.rc-slider-disabled .rc-slider-mark-text,
.rc-slider-disabled .rc-slider-dot {
  cursor: not-allowed !important;
}

.rc-slider-vertical {
  width: 14px;
  height: 100%;
  padding: 0 5px;
}

.rc-slider-vertical .rc-slider-rail {
  height: 100%;
  width: 4px;
}

.rc-slider-vertical .rc-slider-track {
  left: 5px;
  bottom: 0;
  width: 4px;
}

.rc-slider-vertical .rc-slider-handle {
  margin-left: -5px;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.rc-slider-vertical .rc-slider-mark {
  top: 0;
  left: 18px;
  height: 100%;
}

.rc-slider-vertical .rc-slider-step {
  height: 100%;
  width: 4px;
}

.rc-slider-vertical .rc-slider-dot {
  left: 2px;
  margin-bottom: -4px;
}

.rc-slider-vertical .rc-slider-dot:first-child {
  margin-bottom: -4px;
}

.rc-slider-vertical .rc-slider-dot:last-child {
  margin-bottom: -4px;
}

.rc-slider-tooltip-zoom-down-enter,
.rc-slider-tooltip-zoom-down-appear {
  animation-duration: .3s;
  animation-fill-mode: both;
  display: block !important;
  animation-play-state: paused;
}

.rc-slider-tooltip-zoom-down-leave {
  animation-duration: .3s;
  animation-fill-mode: both;
  display: block !important;
  animation-play-state: paused;
}

.rc-slider-tooltip-zoom-down-enter.rc-slider-tooltip-zoom-down-enter-active,
.rc-slider-tooltip-zoom-down-appear.rc-slider-tooltip-zoom-down-appear-active {
  animation-name: rcSliderTooltipZoomDownIn;
  animation-play-state: running;
}

.rc-slider-tooltip-zoom-down-leave.rc-slider-tooltip-zoom-down-leave-active {
  animation-name: rcSliderTooltipZoomDownOut;
  animation-play-state: running;
}

.rc-slider-tooltip-zoom-down-enter,
.rc-slider-tooltip-zoom-down-appear {
  transform: scale(0, 0);
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.rc-slider-tooltip-zoom-down-leave {
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}

@keyframes rcSliderTooltipZoomDownIn {
  0% {
    opacity: 0;
    transform-origin: 50% 100%;
    transform: scale(0, 0);
  }

  100% {
    transform-origin: 50% 100%;
    transform: scale(1, 1);
  }
}

@keyframes rcSliderTooltipZoomDownOut {
  0% {
    transform-origin: 50% 100%;
    transform: scale(1, 1);
  }

  100% {
    opacity: 0;
    transform-origin: 50% 100%;
    transform: scale(0, 0);
  }
}

.rc-slider-tooltip {
  position: absolute;
  left: -9999px;
  top: -9999px;
  visibility: visible;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.rc-slider-tooltip * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.rc-slider-tooltip-hidden {
  display: none;
}

.rc-slider-tooltip-placement-top {
  padding: 4px 0 8px 0;
}

.rc-slider-tooltip-inner {
  padding: 6px 2px;
  min-width: 24px;
  height: 24px;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #6c6c6c;
  border-radius: 6px;
  box-shadow: 0 0 4px #d9d9d9;
}

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

.rc-slider-tooltip-placement-top .rc-slider-tooltip-arrow {
  bottom: 4px;
  left: 50%;
  margin-left: -4px;
  border-width: 4px 4px 0;
  border-top-color: #6c6c6c;
}
@charset "UTF-8";

@font-face {
  font-family: 'powrconsv4';
  font-display: swap;
  src: url("https://www.powrcdn.com/static/powrconsv4/powrconsv4.eot?x949ix");
  src: url("https://www.powrcdn.com/static/powrconsv4/powrconsv4.eot?x949ix#iefix") format("embedded-opentype"), url("https://www.powrcdn.com/static/powrconsv4/powrconsv4.ttf?x949ix") format("truetype"), url("https://www.powrcdn.com/static/powrconsv4/powrconsv4.woff?x949ix") format("woff"), url("https://www.powrcdn.com/static/powrconsv4/powrconsv4.svg?x949ix#powrconsv4") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'powrconsv4' !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-imdb1:before {
  content: "\E90E";
}

.icon-strava:before {
  content: "\E90F";
}

.icon-telegram:before {
  content: "\E910";
}

.icon-scrolltotop:before {
  content: "\E911";
}

.icon-chat:before {
  content: "\E90D";
}

.icon-booking:before {
  content: "\E90A";
}

.icon-instagramfeed:before {
  content: "\E90B";
}

.icon-socialmediaicons:before {
  content: "\E90C";
}

.icon-notificationbar:before {
  content: "\E900";
}

.icon-menu:before {
  content: "\E901";
}

.icon-vegan:before {
  content: "\E903";
}

.icon-jobboard:before {
  content: "\E904";
}

.icon-businessbooster:before {
  content: "\E905";
}

.icon-bloglovin:before {
  content: "\E608";
}

.icon-aboutme:before {
  content: "\E628";
}

.icon-angellist:before {
  content: "\E629";
}

.icon-vimeogallery:before {
  content: "\E62A";
}

.icon-goodreads:before {
  content: "\E62B";
}

.icon-academia:before {
  content: "\E62C";
}

.icon-houzz:before {
  content: "\E62E";
}

.icon-paypalbutton:before {
  content: "\E630";
}

.icon-celsius:before {
  content: "\E631";
}

.icon-fahrenheit:before {
  content: "\E632";
}

.icon-kelvin:before {
  content: "\E633";
}

.icon-blogger:before {
  content: "\E641";
}

.icon-plug:before {
  content: "\E643";
}

.icon-yelp:before {
  content: "\E64D";
}

.icon-meetup:before {
  content: "\E653";
}

.icon-01d:before {
  content: "\E656";
}

.icon-o1n:before {
  content: "\E657";
}

.icon-02d:before {
  content: "\E658";
}

.icon-02n:before {
  content: "\E659";
}

.icon-50n:before {
  content: "\E65A";
}

.icon-09n:before {
  content: "\E65B";
}

.icon-13n:before {
  content: "\E65C";
}

.icon-11n:before {
  content: "\E65D";
}

.icon-50d:before {
  content: "\E65E";
}

.icon-09d:before {
  content: "\E65F";
}

.icon-13d:before {
  content: "\E660";
}

.icon-11d:before {
  content: "\E661";
}

.icon-03d:before {
  content: "\E662";
}

.icon-03n:before {
  content: "\E663";
}

.icon-04d:before {
  content: "\E664";
}

.icon-04n:before {
  content: "\E665";
}

.icon-10d:before {
  content: "\E666";
}

.icon-10n:before {
  content: "\E667";
}

.icon-musicplayer:before {
  content: "\E906";
}

.icon-logo:before {
  content: "\E907";
}

.icon-helpscout-icon:before {
  content: "\E908";
}

.icon-helpscout-icon2:before {
  content: "\E909";
}

.icon-aboutus:before {
  content: "\E91A";
}

.icon-bannerslider:before {
  content: "\E91B";
}

.icon-button:before {
  content: "\E91C";
}

.icon-comments:before {
  content: "\E91D";
}

.icon-contactform:before {
  content: "\E91E";
}

.icon-countdowntimer:before {
  content: "\E91F";
}

.icon-countuptimer:before {
  content: "\E920";
}

.icon-digitaldownload:before {
  content: "\E921";
}

.icon-ecommerce:before {
  content: "\E923";
}

.icon-eventgallery:before {
  content: "\E924";
}

.icon-eventslider:before {
  content: "\E925";
}

.icon-facebookfeed:before {
  content: "\E926";
}

.icon-faq:before {
  content: "\E927";
}

.icon-feed:before {
  content: "\E928";
}

.icon-fileembed:before {
  content: "\E929";
}

.icon-flickrgallery:before {
  content: "\E92A";
}

.icon-formbuilder:before {
  content: "\E92B";
}

.icon-gallery:before {
  content: "\E92C";
}

.icon-graph:before {
  content: "\E92D";
}

.icon-hitcounter:before {
  content: "\E92E";
}

.icon-holidaycountdown:before {
  content: "\E92F";
}

.icon-imageresizer:before {
  content: "\E930";
}

.icon-imageslider:before {
  content: "\E931";
}

.icon-imdb:before {
  content: "\E932";
}

.icon-mailinglist:before {
  content: "\E935";
}

.icon-map:before {
  content: "\E937";
}

.icon-mediagallery:before {
  content: "\E939";
}

.icon-microblog:before {
  content: "\E93D";
}

.icon-multislider:before {
  content: "\E93F";
}

.icon-orderform:before {
  content: "\E941";
}

.icon-paypalbutton2:before {
  content: "\E943";
}

.icon-photoeditor:before {
  content: "\E945";
}

.icon-photofilter:before {
  content: "\E947";
}

.icon-photogallery:before {
  content: "\E949";
}

.icon-photowatermark:before {
  content: "\E94B";
}

.icon-pinterestfeed:before {
  content: "\E94D";
}

.icon-plancomparison:before {
  content: "\E94F";
}

.icon-poll:before {
  content: "\E951";
}

.icon-popup:before,
.icon-salespop:before {
  content: "\E953";
}

.icon-pricetable:before {
  content: "\E957";
}

.icon-resume:before {
  content: "\E959";
}

.icon-reviews:before {
  content: "\E95B";
}

.icon-rssfeed:before {
  content: "\E95D";
}

.icon-slider:before {
  content: "\E95F";
}

.icon-socialfeed:before {
  content: "\E961";
}

.icon-survey:before {
  content: "\E965";
}

.icon-tabs:before {
  content: "\E967";
}

.icon-telegram-small:before {
  content: "\E968";
}

.icon-tumblrfeed:before {
  content: "\E96B";
}

.icon-twitterfeed:before {
  content: "\E96D";
}

.icon-videogallery:before {
  content: "\E96F";
}

.icon-videoslider:before {
  content: "\E971";
}

.icon-views:before {
  content: "\E973";
}

.icon-vimeogallery2:before {
  content: "\E975";
}

.icon-lookbook:before {
  content: "\E978";
}

.icon-bandcamp:before {
  content: "\E979";
}

.icon-mosaichub:before {
  content: "\E97A";
}

.icon-flipboard:before {
  content: "\E97B";
}

.icon-delicious:before {
  content: "\E97C";
}

.icon-deviantart:before {
  content: "\E97D";
}

.icon-stumbleupon:before {
  content: "\E97E";
}

.icon-reverbnation:before {
  content: "\E97F";
}

.icon-itunes:before {
  content: "\E980";
}

.icon-spotify:before {
  content: "\E981";
}

.icon-myspace:before {
  content: "\E982";
}

.icon-etsy:before {
  content: "\E983";
}

.icon-crunchbase:before {
  content: "\E985";
}

.icon-medium:before {
  content: "\E986";
}

.icon-slideshare:before {
  content: "\E987";
}

.icon-sketchfab:before {
  content: "\E989";
}

.icon-teacherspayteachers:before {
  content: "\E98A";
}

.icon-linemessanger:before {
  content: "\E98B";
}

.icon-weather:before {
  content: "\E98D";
}

.icon-youtubegallery:before {
  content: "\E98F";
}

@font-face {
  font-family: 'Gordita Black';
  src: local("Gordita Black"), url("https://public.powrcdn.com/fonts/gordita/gordita-black-webfont-woff.woff") format("woff"), url("https://public.powrcdn.com/fonts/gordita/gordita-black-webfont-woff2.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gordita Black Italic';
  src: local("Gordita Black Italic"), url("https://public.powrcdn.com/fonts/gordita/gordita-blackitalic-webfont-woff.woff") format("woff"), url("https://public.powrcdn.com/fonts/gordita/gordita-blackitalic-webfont-woff2.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gordita Bold';
  src: local("Gordita Bold"), url("https://public.powrcdn.com/fonts/gordita/gordita-bold-webfont-woff.woff") format("woff"), url("https://public.powrcdn.com/fonts/gordita/gordita-bold-webfont-woff2.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gordita Bold Italic';
  src: local("Gordita Bold Italic"), url("https://public.powrcdn.com/fonts/gordita/gordita-bolditalic-webfont-woff.woff") format("woff"), url("https://public.powrcdn.com/fonts/gordita/gordita-bolditalic-webfont-woff2.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gordita Light';
  src: local("Gordita Light"), url("https://public.powrcdn.com/fonts/gordita/gordita-light-webfont-woff.woff") format("woff"), url("https://public.powrcdn.com/fonts/gordita/gordita-light-webfont-woff2.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gordita Light Italic';
  src: local("Gordita Light Italic"), url("https://public.powrcdn.com/fonts/gordita/gordita-lightitalic-webfont-woff.woff") format("woff"), url("https://public.powrcdn.com/fonts/gordita/gordita-lightitalic-webfont-woff2.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gordita Medium';
  src: local("Gordita Medium"), url("https://public.powrcdn.com/fonts/gordita/gordita-medium-webfont-woff.woff") format("woff"), url("https://public.powrcdn.com/fonts/gordita/gordita-medium-webfont-woff2.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gordita Medium Italic';
  src: local("Gordita Medium Italic"), url("https://public.powrcdn.com/fonts/gordita/gordita-mediumitalic-webfont-woff.woff") format("woff"), url("https://public.powrcdn.com/fonts/gordita/gordita-mediumitalic-webfont-woff2.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gordita';
  src: local("Gordita"), url("https://public.powrcdn.com/fonts/gordita/gordita-regular-webfont-woff.woff") format("woff"), url("https://public.powrcdn.com/fonts/gordita/gordita-regular-webfont-woff2.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gordita Italic';
  src: local("Gordita Italic"), url("https://public.powrcdn.com/fonts/gordita/gordita-regularitalic-webfont-woff.woff") format("woff"), url("https://public.powrcdn.com/fonts/gordita/gordita-regularitalic-webfont-woff2.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gordita Thin';
  src: local("Gordita Thin"), url("https://public.powrcdn.com/fonts/gordita/gordita-thin-webfont-woff.woff") format("woff"), url("https://public.powrcdn.com/fonts/gordita/gordita-thin-webfont-woff2.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gordita Thin Italic';
  src: local("Gordita Thin Italic"), url("https://public.powrcdn.com/fonts/gordita/gordita-thinitalic-webfont-woff.woff") format("woff"), url("https://public.powrcdn.com/fonts/gordita/gordita-thinitalic-webfont-woff2.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gordita Ultra';
  src: local("Gordita Ultra"), url("https://public.powrcdn.com/fonts/gordita/gordita-ultra-webfont-woff.woff") format("woff"), url("https://public.powrcdn.com/fonts/gordita/gordita-ultra-webfont-woff2.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gordita Ultra Italic';
  src: local("Gordita Ultra Italic"), url("https://public.powrcdn.com/fonts/gordita/gordita-ultraitalic-webfont-woff.woff") format("woff"), url("https://public.powrcdn.com/fonts/gordita/gordita-ultraitalic-webfont-woff2.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

/* latin */

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu4mxKKTU1Kg.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body,
html {
  color: #55667D;
  font-family: "Gordita", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  position: relative;
  height: 100%;
  width: 100%;
  font-size: 100%;
  background: none;
  background-color: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.standard-tutorial__step::before,
.h5,
.h6 {
  font-family: "Gordita Bold", sans-serif;
  color: #354051;
}

h1 {
  font-size: 2rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 992px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: 1.625rem;
}

@media (min-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}

@media (min-width: 992px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 1.325rem;
}

@media (min-width: 768px) {
  h3 {
    font-size: 2rem;
  }
}

h4 {
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  h5 {
    font-size: 1.25rem;
  }
}

h6 {
  font-size: 1rem;
}

p {
  color: #55667D;
  line-height: 26px;
  font-size: 1rem;
}

p,
a,
a:link,
a:hover,
a:visited,
a:active {
  font-weight: 400;
}

a,
a:link,
a:hover,
a:visited,
a:active {
  color: inherit;
  text-decoration: none;
}

.section {
  padding: 32px 0;
}

.site-wrapper {
  min-height: 100%;
  padding-top: 60px;
  width: 100%;
}

.site-wrapper .btn-danger,
.site-wrapper .btn-success {
  color: #FFFFFF;
}

#apps-settings .site-wrapper,
#apps-wix_settings .site-wrapper,
#apps-weebly_settings .site-wrapper {
  padding-top: 0;
}

#apps-wix_settings .site-wrapper {
  padding-top: 0;
}

.reseller-nav-hack .site-wrapper {
  padding-top: 100px;
}

.reseller-nav-hack #appSettings .navContainer {
  top: 104px;
}

.reseller-nav-hack #edit-topbar-container,
.reseller-nav-hack .topbar-nav {
  top: 40px;
}

.reseller-nav-hack .publish-uber-panel {
  padding-top: 140px;
}

.reseller-nav-hack #product-navigation-bar-container {
  position: fixed;
  z-index: 99991;
}

.reseller-nav-hack .sideBar.increase-sales-sidebar {
  padding-top: 104px;
}

.reseller-nav-hack .powrDrilldown .powrDrilldownContent {
  height: calc(100% - 104px);
  top: 104px;
}

.reseller-nav-hack .product-updates {
  top: 100px;
}

.reseller-nav-hack .publish-topbar-container {
  top: 40px;
}

.has-promo-banner .site-wrapper {
  padding-top: 114px;
}

.has-promo-banner #appSettings .navContainer {
  top: 114px;
}

.has-promo-banner #appSettings .sectionContainer .section {
  height: 95vh;
}

.has-promo-banner #edit-topbar-container,
.has-promo-banner .topbar-nav {
  top: 50px;
}

.has-promo-banner #product-navigation-bar-container {
  position: fixed;
  z-index: 99991;
}

.has-promo-banner .sideBar.increase-sales-sidebar {
  padding-top: 114px;
}

.has-promo-banner .powrDrilldown .powrDrilldownContent {
  height: calc(100% - 114px);
  top: 114px;
}

.has-promo-banner .product-updates {
  top: 110px;
}

.has-promo-banner .get-started-modal-wrapper .topbar-nav {
  top: 0;
}

.has-promo-banner .powr-checkout-container {
  top: 100px;
}

.has-promo-banner .pricing-usage .powr-checkout-container,
.has-promo-banner .powr-checkout-container.powr-checkout-container--modal-mode {
  top: 0px;
}

.has-promo-banner #appView {
  height: calc(100% - 50px) !important;
}

.has-promo-banner #appView .headerPositioning,
.has-promo-banner #appView .powrNotificationBar {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .has-promo-banner.increase-banner-height-on-mobile .site-wrapper {
    padding-top: 158px;
  }

  .has-promo-banner.increase-banner-height-on-mobile #appSettings .navContainer {
    top: 172px;
  }

  .has-promo-banner.increase-banner-height-on-mobile #edit-topbar-container,
  .has-promo-banner.increase-banner-height-on-mobile .topbar-nav {
    top: 108px;
  }

  .has-promo-banner.increase-banner-height-on-mobile .sideBar.increase-sales-sidebar {
    padding-top: 172px;
  }

  .has-promo-banner.increase-banner-height-on-mobile .powrDrilldown .powrDrilldownContent {
    height: calc(100% - 172px);
    top: 172px;
  }

  .has-promo-banner.increase-banner-height-on-mobile .product-updates {
    top: 168px;
  }

  .has-promo-banner.increase-banner-height-on-mobile .powr-checkout-container {
    top: 158px;
  }

  .has-promo-banner.increase-banner-height-on-mobile #appView {
    bottom: 108px;
  }

  .has-promo-banner.increase-banner-height-on-mobile #appView .headerPositioning,
  .has-promo-banner.increase-banner-height-on-mobile #appView .powrNotificationBar {
    margin-top: 108px;
  }
}

.has-promo-banner .lead-collection-dashboard &gt; div {
  margin-top: 50px;
}

@media (min-width: 768px) {
  .col-sm-15 {
    width: 20%;
    float: left;
  }
}

@media (min-width: 992px) {
  .col-md-15 {
    width: 20%;
    float: left;
  }
}

@media (min-width: 1200px) {
  .col-lg-15 {
    width: 20%;
    float: left;
  }
}

@media (min-width: 768px) {
  .col-sm-19 {
    width: 11%;
    float: left;
  }
}

@media (min-width: 992px) {
  .col-md-19 {
    width: 11%;
    float: left;
  }
}

@media (min-width: 1200px) {
  .col-lg-19 {
    width: 11%;
    float: left;
  }
}

@media (max-width: 992px) {
  #appViewWrapper {
    padding: 10px !important;
  }

  #appViewWrapper #appView {
    margin: 0% !important;
  }
}

.promo-banner.valentines_day_2021 .cont_corazon {
  margin-top: 100px;
  margin-top: -12px;
  width: 50px;
  height: 50px;
  transform: scale(0.15) translate(-120px, -60px);
}

.promo-banner.valentines_day_2021 .cont_corazon &gt; hr {
  width: 300px;
}

.promo-banner.valentines_day_2021 #rect3810,
.promo-banner.valentines_day_2021 #rect3802,
.promo-banner.valentines_day_2021 #rect3826,
.promo-banner.valentines_day_2021 #rect3806,
.promo-banner.valentines_day_2021 #rect3820,
.promo-banner.valentines_day_2021 #rect3818,
.promo-banner.valentines_day_2021 #rect3822,
.promo-banner.valentines_day_2021 #rect3824 {
  z-index: -5;
  position: relative;
  animation-name: mov_1;
  animation-duration: 200ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.promo-banner.valentines_day_2021 #rect3808,
.promo-banner.valentines_day_2021 #rect3828,
.promo-banner.valentines_day_2021 #rect3812,
.promo-banner.valentines_day_2021 #rect3814 {
  position: relative;
  animation-name: mov_1;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
}

.promo-banner.valentines_day_2021 #rect3804 {
  z-index: -5;
  position: relative;
  /*   animation-name: mov_2;
        animation-duration: 2s;
          animation-iteration-count: infinite;
    animation-timing-function: ease-in; */
}

@-webkit-keyframes mov_1 {
  from {
    opacity: 1;
    -webkit-transform: translate(4px, -1px);
    transform: translate(4px, -1px);
  }

  to {
    -webkit-transform: translate(-5px, -1px);
    transform: translate(-5px, -1px);
    opacity: 0;
  }
}

@-o-keyframes mov_1 {
  from {
    opacity: 1;
    -webkit-transform: translate(4px, -1px);
    transform: translate(4px, -1px);
  }

  to {
    -webkit-transform: translate(-5px, -1px);
    transform: translate(-5px, -1px);
    opacity: 0;
  }
}

@-moz-keyframes mov_1 {
  from {
    opacity: 1;
    -webkit-transform: translate(4px, -1px);
    transform: translate(4px, -1px);
  }

  to {
    -webkit-transform: translate(-5px, -1px);
    transform: translate(-5px, -1px);
    opacity: 0;
  }
}

@keyframes mov_1 {
  from {
    opacity: 1;
    -webkit-transform: translate(4px, -1px);
    transform: translate(4px, -1px);
  }

  to {
    -webkit-transform: translate(-5px, -1px);
    transform: translate(-5px, -1px);
    opacity: 0;
  }
}

@-webkit-keyframes mov_2 {
  from {
    opacity: 1;
    -webkit-transform: translate(-4px, -1px);
    transform: translate(-4px, -1px);
  }

  to {
    -webkit-transform: translate(-8px, -1px);
    transform: translate(-8px, -1px);
  }
}

@-o-keyframes mov_2 {
  from {
    opacity: 1;
    -webkit-transform: translate(-4px, -1px);
    transform: translate(-4px, -1px);
  }

  to {
    -webkit-transform: translate(-8px, -1px);
    transform: translate(-8px, -1px);
  }
}

@-moz-keyframes mov_2 {
  from {
    opacity: 1;
    -webkit-transform: translate(-4px, -1px);
    transform: translate(-4px, -1px);
  }

  to {
    -webkit-transform: translate(-8px, -1px);
    transform: translate(-8px, -1px);
  }
}

@keyframes mov_2 {
  from {
    opacity: 1;
    -webkit-transform: translate(-4px, -1px);
    transform: translate(-4px, -1px);
  }

  to {
    -webkit-transform: translate(-8px, -1px);
    transform: translate(-8px, -1px);
  }
}

.promo-banner.valentines_day_2021 svg {
  position: relative;
  animation-name: mov_heart;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
}

@-webkit-keyframes mov_heart {
  0% {
    -webkit-transform: translate(0px, 10px);
    transform: translate(0px, 10px);
  }

  50% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }

  100% {
    -webkit-transform: translate(0px, 10px);
    transform: translate(0px, 10px);
  }
}

@-o-keyframes mov_heart {
  0% {
    -webkit-transform: translate(0px, 10px);
    transform: translate(0px, 10px);
  }

  50% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }

  100% {
    -webkit-transform: translate(0px, 10px);
    transform: translate(0px, 10px);
  }
}

@-moz-keyframes mov_heart {
  0% {
    -webkit-transform: translate(0px, 10px);
    transform: translate(0px, 10px);
  }

  50% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }

  100% {
    -webkit-transform: translate(0px, 10px);
    transform: translate(0px, 10px);
  }
}

@keyframes mov_heart {
  0% {
    -webkit-transform: translate(0px, 10px);
    transform: translate(0px, 10px);
  }

  50% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }

  100% {
    -webkit-transform: translate(0px, 10px);
    transform: translate(0px, 10px);
  }
}

.row.no-pad {
  margin-right: 0;
  margin-left: 0;
}

.row.no-pad &gt; [class*='col-'] {
  padding-right: 0;
  padding-left: 0;
}

.clearfix {
  clear: both;
}

.cursor-pointer {
  cursor: pointer;
}

.dropdown-component__label {
  color: #354051;
  font-size: 1rem;
  font-weight: bold;
}

.list-reset,
.app-market-nav__list,
.open-account-menu .account-menu-list,
.plugins-card__card-menu .links-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

.upper-first-key:first-letter {
  text-transform: uppercase;
}

.text-transform-capitalize-first-letter:first-letter {
  text-transform: uppercase;
}

button.text-underline,
a.text-underline,
.text-underline {
  text-decoration: underline;
}

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

.font-medium {
  font-family: "Gordita Medium", sans-serif;
}

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

.bold-font {
  font-family: "Gordita Bold", sans-serif;
}

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

.upgrade {
  color: #7560DF;
}

.primary {
  color: #3B8CFF;
}

.danger-text {
  color: #EB8281;
}

.paragraph-text {
  color: #55667D;
}

.color7 {
  color: #354051;
}

.color8 {
  color: #a0abbe;
}

.color12-500 {
  color: #FD5A47;
}

.color-14 {
  color: #00B07D;
}

.color-2 {
  color: #FFFFFF;
}

.f1 {
  font-size: 2rem;
}

.f2 {
  font-size: 1.5rem;
}

.f3 {
  font-size: 1.125rem;
}

.f4 {
  font-size: 1rem;
}

.f5 {
  font-size: 0.875rem;
}

.f6 {
  font-size: 0.75rem;
}

.weight500 {
  font-weight: 500;
}

.weight700 {
  font-weight: 700;
}

.has-shadow,
.notification-toast,
.product-updates,
.toastify {
  box-shadow: 0 2px 1px -2px #a0abbe;
  -webkit-box-shadow: 0 2px 1px -2px #a0abbe;
  -moz-box-shadow: 0 2px 1px -2px #a0abbe;
  -ms-box-shadow: 0 2px 1px -2px #a0abbe;
  -o-box-shadow: 0 2px 1px -2px #a0abbe;
}

.has-shadow-dark {
  box-shadow: 0 1px 4px 0px #a0abbe;
  -webkit-box-shadow: 0 1px 4px 0px #a0abbe;
  -moz-box-shadow: 0 1px 4px 0px #a0abbe;
  -ms-box-shadow: 0 1px 4px 0px #a0abbe;
  -o-box-shadow: 0 1px 4px 0px #a0abbe;
}

.has-bottom-shadow {
  box-shadow: 0 10px 10px -10px rgba(85, 102, 125, 0.3);
  -webkit-box-shadow: 0 10px 10px -10px rgba(85, 102, 125, 0.3);
  -moz-box-shadow: 0 10px 10px -10px rgba(85, 102, 125, 0.3);
  -ms-box-shadow: 0 10px 10px -10px rgba(85, 102, 125, 0.3);
  -o-box-shadow: 0 10px 10px -10px rgba(85, 102, 125, 0.3);
}

.position-relative {
  position: relative;
}

.vertical-align-parent {
  font-size: 0;
  position: relative;
}

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

.vertical-align {
  display: inline-block;
  float: none;
  font-size: 1rem;
  vertical-align: middle;
}

.flex-row,
.text-with-button {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.flex-column {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

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

.justify-content-space-evenly {
  justify-content: space-evenly;
}

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

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

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

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

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

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

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

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

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

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

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

.flex-1 {
  flex: 1;
}

.flex-3 {
  flex: 3;
}

.flex-4 {
  flex: 4;
}

.border-none {
  border: none;
}

.border-bottom-light {
  border-bottom: 1px solid #E0E6EA;
}

.border-light {
  border: 1px solid #E0E6EA;
}

.button-default,
.button-l,
.button,
.button-s,
.topbar-nav .nav-links-group li .pricing-nav-tab__business-banner-learn-more {
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  transition: 0.1s ease;
  -webkit-transition: 0.1s ease;
  -moz-transition: 0.1s ease;
  -ms-transition: 0.1s ease;
  -o-transition: 0.1s ease;
}

.button-l {
  font-size: 1.25rem;
  padding: 8px 32px;
}

.button {
  font-size: 1rem;
  padding: 8px 16px;
}

.button .fa {
  margin-right: 8px;
}

.button-s,
.topbar-nav .nav-links-group li .pricing-nav-tab__business-banner-learn-more {
  font-size: 0.875rem;
  padding: 4px 8px;
}

.button-full-width,
.details-view-header__app-cta &gt; button {
  width: 100%;
}

a.button-primary-outline,
.topbar-nav .nav-links-group li a.pricing-nav-tab__business-banner-learn-more,
.button-primary-outline,
.topbar-nav .nav-links-group li .pricing-nav-tab__business-banner-learn-more {
  background-color: transparent;
  border-color: #3B8CFF;
  color: #3B8CFF;
}

a.button-primary-outline:focus,
.topbar-nav .nav-links-group li a.pricing-nav-tab__business-banner-learn-more:focus,
.button-primary-outline:focus,
.topbar-nav .nav-links-group li .pricing-nav-tab__business-banner-learn-more:focus {
  outline: none;
}

a.button-primary-outline:hover,
.topbar-nav .nav-links-group li a.pricing-nav-tab__business-banner-learn-more:hover,
.button-primary-outline:hover,
.topbar-nav .nav-links-group li .pricing-nav-tab__business-banner-learn-more:hover {
  background-color: rgba(59, 140, 255, 0.075);
  border-color: #086eff;
  color: #086eff;
}

a.button-primary-outline.is-disabled,
.topbar-nav .nav-links-group li a.is-disabled.pricing-nav-tab__business-banner-learn-more,
.button-primary-outline.is-disabled,
.topbar-nav .nav-links-group li .is-disabled.pricing-nav-tab__business-banner-learn-more {
  background-color: #a0abbe;
  border-color: #a0abbe;
  color: #FFFFFF;
  opacity: 0.4;
  cursor: not-allowed;
}

a.button-upgrade-outline,
.button-upgrade-outline {
  background-color: transparent;
  border-color: #7560DF;
  color: #7560DF;
}

a.button-upgrade-outline:focus,
.button-upgrade-outline:focus {
  outline: none;
}

a.button-upgrade-outline:hover,
.button-upgrade-outline:hover {
  background-color: rgba(117, 96, 223, 0.075);
  border-color: #5036d6;
  color: #5036d6;
}

a.button-upgrade-outline.is-disabled,
.button-upgrade-outline.is-disabled {
  background-color: #a0abbe;
  border-color: #a0abbe;
  color: #FFFFFF;
  opacity: 0.4;
  cursor: not-allowed;
}

a.button-success-outline,
.button-success-outline {
  background-color: transparent;
  border-color: #36c451;
  color: #36c451;
}

a.button-success-outline:focus,
.button-success-outline:focus {
  outline: none;
}

a.button-success-outline:hover,
.button-success-outline:hover {
  background-color: rgba(54, 196, 81, 0.075);
  border-color: #2b9c40;
  color: #2b9c40;
}

a.button-success-outline.is-disabled,
.button-success-outline.is-disabled {
  background-color: #a0abbe;
  border-color: #a0abbe;
  color: #FFFFFF;
  opacity: 0.4;
  cursor: not-allowed;
}

a.button-failure-outline,
.button-failure-outline {
  background-color: transparent;
  border-color: #EB8281;
  color: #EB8281;
}

a.button-failure-outline:focus,
.button-failure-outline:focus {
  outline: none;
}

a.button-failure-outline:hover,
.button-failure-outline:hover {
  background-color: rgba(235, 130, 129, 0.075);
  border-color: #e45655;
  color: #e45655;
}

a.button-failure-outline.is-disabled,
.button-failure-outline.is-disabled {
  background-color: #a0abbe;
  border-color: #a0abbe;
  color: #FFFFFF;
  opacity: 0.4;
  cursor: not-allowed;
}

a.button-caution-outline,
.button-caution-outline {
  background-color: transparent;
  border-color: #FFD480;
  color: #FFD480;
}

a.button-caution-outline:focus,
.button-caution-outline:focus {
  outline: none;
}

a.button-caution-outline:hover,
.button-caution-outline:hover {
  background-color: rgba(255, 212, 128, 0.075);
  border-color: #ffc34d;
  color: #ffc34d;
}

a.button-caution-outline.is-disabled,
.button-caution-outline.is-disabled {
  background-color: #a0abbe;
  border-color: #a0abbe;
  color: #FFFFFF;
  opacity: 0.4;
  cursor: not-allowed;
}

a.button-white-outline,
.button-white-outline {
  background-color: transparent;
  border-color: #FFFFFF;
  color: #FFFFFF;
}

a.button-white-outline:focus,
.button-white-outline:focus {
  outline: none;
}

a.button-white-outline:hover,
.button-white-outline:hover {
  background-color: rgba(255, 255, 255, 0.075);
  border-color: #e6e6e6;
  color: #e6e6e6;
}

a.button-white-outline.is-disabled,
.button-white-outline.is-disabled {
  background-color: #a0abbe;
  border-color: #a0abbe;
  color: #FFFFFF;
  opacity: 0.4;
  cursor: not-allowed;
}

a.button-secondary-outline,
.button-secondary-outline {
  background-color: transparent;
  border-color: #bec6ca;
  color: #bec6ca;
  color: #3B8CFF;
}

a.button-secondary-outline:focus,
.button-secondary-outline:focus {
  outline: none;
}

a.button-secondary-outline:hover,
.button-secondary-outline:hover {
  background-color: rgba(190, 198, 202, 0.075);
  border-color: #a2adb3;
  color: #a2adb3;
}

a.button-secondary-outline.is-disabled,
.button-secondary-outline.is-disabled {
  background-color: #a0abbe;
  border-color: #a0abbe;
  color: #FFFFFF;
  opacity: 0.4;
  cursor: not-allowed;
}

a.button-secondary-outline:hover,
.button-secondary-outline:hover {
  color: #086eff;
}

a.button-paragraph-outline,
.button-paragraph-outline {
  background-color: transparent;
  border-color: #bec6ca;
  color: #bec6ca;
  color: #55667D;
}

a.button-paragraph-outline:focus,
.button-paragraph-outline:focus {
  outline: none;
}

a.button-paragraph-outline:hover,
.button-paragraph-outline:hover {
  background-color: rgba(190, 198, 202, 0.075);
  border-color: #a2adb3;
  color: #a2adb3;
}

a.button-paragraph-outline.is-disabled,
.button-paragraph-outline.is-disabled {
  background-color: #a0abbe;
  border-color: #a0abbe;
  color: #FFFFFF;
  opacity: 0.4;
  cursor: not-allowed;
}

a.button-paragraph-outline:hover,
.button-paragraph-outline:hover {
  color: #086eff;
}

a.button-primary,
a:link.button-primary,
.button-primary {
  background-color: #3B8CFF;
  border-color: #3B8CFF;
  color: #FFFFFF;
  transition: background 0.2s ease;
  -webkit-transition: background 0.2s ease;
  -moz-transition: background 0.2s ease;
  -ms-transition: background 0.2s ease;
  -o-transition: background 0.2s ease;
}

a.button-primary:focus,
a:link.button-primary:focus,
.button-primary:focus {
  outline: none;
}

a.button-primary:hover,
a:link.button-primary:hover,
.button-primary:hover {
  background: #4f98ff;
}

a.button-primary:active,
a:link.button-primary:active,
.button-primary:active {
  background: #086eff;
}

a.button-primary.is-disabled,
a:link.button-primary.is-disabled,
.button-primary.is-disabled {
  background-color: #a0abbe;
  border-color: #a0abbe;
  color: #FFFFFF;
  opacity: 0.4;
  cursor: not-allowed;
}

a.button-primary.is-disabled-with-color,
a:link.button-primary.is-disabled-with-color,
.button-primary.is-disabled-with-color {
  opacity: 0.4;
  cursor: not-allowed;
}

a.button-secondary,
a:link.button-secondary,
.button-secondary {
  background-color: #354051;
  border-color: #354051;
  color: #FFFFFF;
  transition: background 0.2s ease;
  -webkit-transition: background 0.2s ease;
  -moz-transition: background 0.2s ease;
  -ms-transition: background 0.2s ease;
  -o-transition: background 0.2s ease;
}

a.button-secondary:focus,
a:link.button-secondary:focus,
.button-secondary:focus {
  outline: none;
}

a.button-secondary:hover,
a:link.button-secondary:hover,
.button-secondary:hover {
  background: #3d4a5d;
}

a.button-secondary:active,
a:link.button-secondary:active,
.button-secondary:active {
  background: #212832;
}

a.button-secondary.is-disabled,
a:link.button-secondary.is-disabled,
.button-secondary.is-disabled {
  background-color: #a0abbe;
  border-color: #a0abbe;
  color: #FFFFFF;
  opacity: 0.4;
  cursor: not-allowed;
}

a.button-secondary.is-disabled-with-color,
a:link.button-secondary.is-disabled-with-color,
.button-secondary.is-disabled-with-color {
  opacity: 0.4;
  cursor: not-allowed;
}

a.button-dark,
.button-dark {
  background-color: #354051;
  border-color: #354051;
  color: #FFFFFF;
  transition: background 0.2s ease;
  -webkit-transition: background 0.2s ease;
  -moz-transition: background 0.2s ease;
  -ms-transition: background 0.2s ease;
  -o-transition: background 0.2s ease;
}

a.button-dark:focus,
.button-dark:focus {
  outline: none;
}

a.button-dark:hover,
.button-dark:hover {
  background: #3d4a5d;
}

a.button-dark:active,
.button-dark:active {
  background: #212832;
}

a.button-dark.is-disabled,
.button-dark.is-disabled {
  background-color: #a0abbe;
  border-color: #a0abbe;
  color: #FFFFFF;
  opacity: 0.4;
  cursor: not-allowed;
}

a.button-dark.is-disabled-with-color,
.button-dark.is-disabled-with-color {
  opacity: 0.4;
  cursor: not-allowed;
}

a.button-dark-outline,
.button-dark-outline {
  background-color: transparent;
  border-color: #55667D;
  color: #55667D;
}

a.button-dark-outline:focus,
.button-dark-outline:focus {
  outline: none;
}

a.button-dark-outline:hover,
.button-dark-outline:hover {
  background-color: rgba(85, 102, 125, 0.075);
  border-color: #404d5f;
  color: #404d5f;
}

a.button-dark-outline.is-disabled,
.button-dark-outline.is-disabled {
  background-color: #a0abbe;
  border-color: #a0abbe;
  color: #FFFFFF;
  opacity: 0.4;
  cursor: not-allowed;
}

a.button-upgrade,
a:link.button-upgrade,
.button-upgrade {
  background-color: #7560DF;
  border-color: #7560DF;
  color: #FFFFFF;
  transition: background 0.2s ease;
  -webkit-transition: background 0.2s ease;
  -moz-transition: background 0.2s ease;
  -ms-transition: background 0.2s ease;
  -o-transition: background 0.2s ease;
}

a.button-upgrade:focus,
a:link.button-upgrade:focus,
.button-upgrade:focus {
  outline: none;
}

a.button-upgrade:hover,
a:link.button-upgrade:hover,
.button-upgrade:hover {
  background: #8471e2;
}

a.button-upgrade:active,
a:link.button-upgrade:active,
.button-upgrade:active {
  background: #5036d6;
}

a.button-upgrade.is-disabled,
a:link.button-upgrade.is-disabled,
.button-upgrade.is-disabled {
  background-color: #a0abbe;
  border-color: #a0abbe;
  color: #FFFFFF;
  opacity: 0.4;
  cursor: not-allowed;
}

a.button-upgrade.is-disabled-with-color,
a:link.button-upgrade.is-disabled-with-color,
.button-upgrade.is-disabled-with-color {
  opacity: 0.4;
  cursor: not-allowed;
}

a.button-success,
a:link.button-success,
.button-success {
  background-color: #36c451;
  border-color: #36c451;
  color: #FFFFFF;
  transition: background 0.2s ease;
  -webkit-transition: background 0.2s ease;
  -moz-transition: background 0.2s ease;
  -ms-transition: background 0.2s ease;
  -o-transition: background 0.2s ease;
}

a.button-success:focus,
a:link.button-success:focus,
.button-success:focus {
  outline: none;
}

a.button-success:hover,
a:link.button-success:hover,
.button-success:hover {
  background: #43cb5d;
}

a.button-success:active,
a:link.button-success:active,
.button-success:active {
  background: #2b9c40;
}

a.button-success.is-disabled,
a:link.button-success.is-disabled,
.button-success.is-disabled {
  background-color: #a0abbe;
  border-color: #a0abbe;
  color: #FFFFFF;
  opacity: 0.4;
  cursor: not-allowed;
}

a.button-success.is-disabled-with-color,
a:link.button-success.is-disabled-with-color,
.button-success.is-disabled-with-color {
  opacity: 0.4;
  cursor: not-allowed;
}

a.button-failure,
a:link.button-failure,
.button-failure {
  background-color: #EB8281;
  border-color: #EB8281;
  color: #FFFFFF;
  transition: background 0.2s ease;
  -webkit-transition: background 0.2s ease;
  -moz-transition: background 0.2s ease;
  -ms-transition: background 0.2s ease;
  -o-transition: background 0.2s ease;
}

a.button-failure:focus,
a:link.button-failure:focus,
.button-failure:focus {
  outline: none;
}

a.button-failure:hover,
a:link.button-failure:hover,
.button-failure:hover {
  background: #ee9393;
}

a.button-failure:active,
a:link.button-failure:active,
.button-failure:active {
  background: #e45655;
}

a.button-failure.is-disabled,
a:link.button-failure.is-disabled,
.button-failure.is-disabled {
  background-color: #a0abbe;
  border-color: #a0abbe;
  color: #FFFFFF;
  opacity: 0.4;
  cursor: not-allowed;
}

a.button-failure.is-disabled-with-color,
a:link.button-failure.is-disabled-with-color,
.button-failure.is-disabled-with-color {
  opacity: 0.4;
  cursor: not-allowed;
}

a.button-caution,
a:link.button-caution,
.button-caution {
  background-color: #FFD480;
  border-color: #FFD480;
  color: #FFFFFF;
  transition: background 0.2s ease;
  -webkit-transition: background 0.2s ease;
  -moz-transition: background 0.2s ease;
  -ms-transition: background 0.2s ease;
  -o-transition: background 0.2s ease;
}

a.button-caution:focus,
a:link.button-caution:focus,
.button-caution:focus {
  outline: none;
}

a.button-caution:hover,
a:link.button-caution:hover,
.button-caution:hover {
  background: #ffdb94;
}

a.button-caution:active,
a:link.button-caution:active,
.button-caution:active {
  background: #ffc34d;
}

a.button-caution.is-disabled,
a:link.button-caution.is-disabled,
.button-caution.is-disabled {
  background-color: #a0abbe;
  border-color: #a0abbe;
  color: #FFFFFF;
  opacity: 0.4;
  cursor: not-allowed;
}

a.button-caution.is-disabled-with-color,
a:link.button-caution.is-disabled-with-color,
.button-caution.is-disabled-with-color {
  opacity: 0.4;
  cursor: not-allowed;
}

a.button-facebook,
.button-facebook {
  background-color: #4c66a4;
  border-color: #4c66a4;
  color: #FFFFFF;
  transition: background 0.2s ease;
  -webkit-transition: background 0.2s ease;
  -moz-transition: background 0.2s ease;
  -ms-transition: background 0.2s ease;
  -o-transition: background 0.2s ease;
}

a.button-facebook:focus,
.button-facebook:focus {
  outline: none;
}

a.button-facebook:hover,
.button-facebook:hover {
  background: #546fb0;
}

a.button-facebook:active,
.button-facebook:active {
  background: #3c5081;
}

a.button-facebook.is-disabled,
.button-facebook.is-disabled {
  background-color: #a0abbe;
  border-color: #a0abbe;
  color: #FFFFFF;
  opacity: 0.4;
  cursor: not-allowed;
}

a.button-facebook.is-disabled-with-color,
.button-facebook.is-disabled-with-color {
  opacity: 0.4;
  cursor: not-allowed;
}

a.button-google,
.button-google {
  background-color: #F90101;
  border-color: #F90101;
  color: #FFFFFF;
  transition: background 0.2s ease;
  -webkit-transition: background 0.2s ease;
  -moz-transition: background 0.2s ease;
  -ms-transition: background 0.2s ease;
  -o-transition: background 0.2s ease;
}

a.button-google:focus,
.button-google:focus {
  outline: none;
}

a.button-google:hover,
.button-google:hover {
  background: #fe1010;
}

a.button-google:active,
.button-google:active {
  background: #c60101;
}

a.button-google.is-disabled,
.button-google.is-disabled {
  background-color: #a0abbe;
  border-color: #a0abbe;
  color: #FFFFFF;
  opacity: 0.4;
  cursor: not-allowed;
}

a.button-google.is-disabled-with-color,
.button-google.is-disabled-with-color {
  opacity: 0.4;
  cursor: not-allowed;
}

a.button-yahoo,
.button-yahoo {
  background-color: #7B0099;
  border-color: #7B0099;
  color: #FFFFFF;
  transition: background 0.2s ease;
  -webkit-transition: background 0.2s ease;
  -moz-transition: background 0.2s ease;
  -ms-transition: background 0.2s ease;
  -o-transition: background 0.2s ease;
}

a.button-yahoo:focus,
.button-yahoo:focus {
  outline: none;
}

a.button-yahoo:hover,
.button-yahoo:hover {
  background: #8b00ad;
}

a.button-yahoo:active,
.button-yahoo:active {
  background: #520066;
}

a.button-yahoo.is-disabled,
.button-yahoo.is-disabled {
  background-color: #a0abbe;
  border-color: #a0abbe;
  color: #FFFFFF;
  opacity: 0.4;
  cursor: not-allowed;
}

a.button-yahoo.is-disabled-with-color,
.button-yahoo.is-disabled-with-color {
  opacity: 0.4;
  cursor: not-allowed;
}

a.button-upgrade-gradient {
  background: #7560DF;
  background: -webkit-linear-gradient(to right, #5036d6, #C86DD7);
  background: linear-gradient(to right, #5036d6, #C86DD7);
  border-color: transparent;
  color: #FFFFFF;
}

a.button-info,
.button-info {
  background: #3B8CFF;
  background: linear-gradient(161.04deg, #60B3FD 26.97%, #AA74E5 132.65%, #3B8CFF 186.86%);
  color: #FFFFFF;
  border: none;
}

.button-icon-animation {
  position: relative;
  padding-left: 36px;
}

.button-icon-animation i {
  position: absolute;
  left: 12px;
  top: 53%;
  transform: translateY(-50%);
  transition: all .2s linear;
  font-size: 1rem;
}

.button-icon-animation--zoom:hover i {
  left: 9px;
  font-size: 1.5rem;
}

.button-icon-animation--rotate {
  transform: rotate(0);
}

.button-icon-animation--rotate:hover i {
  top: 12px;
  transform: rotate(72deg);
}

.colored-icon.color10 {
  color: #7560DF;
}

.colored-icon.color12-500 {
  color: #FD5A47;
}

a.link,
a.standard-tutorial__step_show_me,
.link,
.standard-tutorial__step_show_me {
  background-color: transparent;
  border: none;
  color: #3B8CFF;
  cursor: pointer;
  outline: none;
  padding: 4px;
  text-decoration: none;
  font-family: "Gordita Medium", sans-serif;
  font-size: 14px;
  transition: color .2s linear;
}

a.link:hover,
a.standard-tutorial__step_show_me:hover,
.link:hover,
.standard-tutorial__step_show_me:hover {
  color: #3548B8;
}

a.link-underline,
.link-underline {
  text-decoration: underline;
}

a.link-nostyle,
.link-nostyle {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: none;
}

a.link-nostyle--blue,
.link-nostyle--blue {
  color: #3B8CFF;
}

.currency-component__input-group {
  display: flex;
  border: 1px solid #bec6ca;
  background-color: #FFFFFF;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  padding: 8px;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}

.currency-component__input-group.is-focused {
  outline: none;
  border-color: #3B8CFF;
}

.currency-component__input {
  border: none;
  box-shadow: none;
  color: #354051;
  font-weight: 300;
  font-size: 1rem;
  padding: 0;
  width: 100%;
  transform: scale(1);
}

.currency-component__input:focus {
  box-shadow: none;
  outline: none;
}

.currency-component__icon {
  font-weight: 300;
  font-size: 1rem;
  color: #354051;
}

.text-component__label {
  color: #354051;
  display: block;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.text-component__label__hint {
  color: #a0abbe;
  font-size: 14px;
  margin-bottom: 8px;
}

.text-component__input,
.text-component__textarea,
.text-component__select {
  border: 1px solid #bec6ca;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  box-shadow: none;
  color: #354051;
  font-weight: 300;
  font-size: 1rem;
  padding: 8px;
  width: 100%;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transform: scale(1);
}

.text-component__input:focus,
.text-component__textarea:focus,
.text-component__select:focus {
  box-shadow: none;
  outline: none;
  border-color: #3B8CFF;
}

.text-component__input--border-caution,
.text-component__textarea--border-caution,
.text-component__select--border-caution {
  border: 1px solid #FFD480;
}

.text-component__textarea {
  min-height: 50px;
}

.text-component__message {
  font-size: 0.875rem;
}

.text-component select.text-component__input {
  height: 40px;
}

.text-component ::-webkit-input-placeholder {
  /* Chrome */
  opacity: .7;
}

.text-component :-ms-input-placeholder {
  /* IE 10+ */
  opacity: .7;
}

.text-component ::-moz-placeholder {
  /* Firefox 19+ */
  opacity: .7;
}

.text-component :-moz-placeholder {
  /* Firefox 4 - 18 */
  opacity: .7;
}

.text-component--failure .text-component__input,
.text-component--failure .text-component__textarea,
.text-component--failure .text-component__select {
  border: 1px solid #EB8281;
}

.text-component--failure .text-component__message {
  color: #EB8281;
}

.text-component--caution.text-component__input,
.text-component--caution.text-component__textarea {
  border: 1px solid #FFD480;
}

.text-component--caution .text-component__message {
  color: #354051;
}

.text-component--caution .text-component__icon {
  color: #FFD480;
}

.non-editable,
.embed-code textarea {
  background: #E4F3FF;
  border: 1px solid #bec6ca;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.non-editable--url {
  color: #354051;
}

.non-editable--code,
.embed-code textarea {
  resize: none;
  font-family: Monaco, monospace;
  color: #55667D;
  font-size: 0.875rem;
  text-align: center;
}

.text-with-button button,
.text-with-button .button {
  margin-left: -4px;
}

.non-editable,
.embed-code textarea {
  background: #E4F3FF;
  border: 1px solid #bec6ca;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.non-editable--url {
  color: #354051;
}

.non-editable--code,
.embed-code textarea {
  resize: none;
  font-family: Monaco, monospace;
  color: #55667D;
  font-size: 0.875rem;
  text-align: center;
}

.dropdown-component__select {
  background-color: #FFFFFF;
  border: 1px solid #bec6ca;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  box-shadow: none;
  color: #354051;
  font-weight: 300;
  font-size: 1rem;
  height: 36px;
  padding: 8px;
  width: 100%;
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transform: scale(1);
}

.dropdown-component__select:focus {
  border-color: #88b9ff;
  box-shadow: none;
  outline: none;
}

.tab-component-controls-list {
  border-bottom: 2px solid #bec6ca;
  list-style-type: none;
  margin: 16px 0;
  padding: 0;
}

.tab-component-controls-list__item {
  display: inline-block;
  position: relative;
  text-align: center;
}

.tab-component-controls-list__item.active a.tab-component-controls-list__link {
  color: #3B8CFF;
}

.tab-component-controls-list__item.active:after {
  background-color: #3B8CFF;
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  bottom: -2px;
  width: 100%;
}

.tab-component-controls-list__link {
  background-color: transparent;
  border: none;
  color: #55667D;
  cursor: pointer;
  display: inline-block;
  min-width: 75px;
  padding: 8px 16px;
}

.tab-component-controls-list a.tab-component-controls-list__link {
  color: #55667D;
}

.tab-component__pane {
  padding: 32px 0;
}

.modal__title {
  text-align: center;
}

.modal__close {
  border: none;
  color: #a0abbe;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: bold;
  opacity: 0.5;
  position: absolute;
  right: 15px;
  top: 10px;
  -webkit-appearance: none;
}

.modal__close:hover {
  opacity: 1;
}

button.modal__close {
  background: transparent;
}

.circled-close,
.fal.publish-uber-panel__close {
  font-size: 1.5rem;
  cursor: pointer;
  color: #3B8CFF;
  background-color: #eff2f4;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  width: 45px;
  height: 45px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.circled-close:hover,
.fal.publish-uber-panel__close:hover {
  transform: scale(1.1);
}

.modal__content {
  background-clip: padding-box;
  background-color: #FFFFFF;
  border: none;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  box-shadow: 0 0 5px 2px rgba(53, 64, 81, 0.2);
  -webkit-box-shadow: 0 0 5px 2px rgba(53, 64, 81, 0.2);
  -moz-box-shadow: 0 0 5px 2px rgba(53, 64, 81, 0.2);
  -ms-box-shadow: 0 0 5px 2px rgba(53, 64, 81, 0.2);
  -o-box-shadow: 0 0 5px 2px rgba(53, 64, 81, 0.2);
  outline: 0;
  padding: 32px;
  position: relative;
}

.modal__body {
  text-align: center;
}

.modal__footer {
  margin-top: 32px;
  text-align: center;
}

.modal-backdrop {
  background-color: rgba(53, 64, 81, 0.8);
  z-index: 9999;
}

.editor-simulator {
  background-color: #eff2f4;
  height: 500px;
  width: 400px;
}

.card {
  background-color: #FFFFFF;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  padding: 16px;
  position: relative;
  min-height: 100px;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}

.card.has-shadow,
.card.notification-toast,
.card.product-updates,
.card.toastify {
  border: 1px solid #E0E6EA;
  box-shadow: 0 2px 1px -2px #a0abbe;
  -webkit-box-shadow: 0 2px 1px -2px #a0abbe;
  -moz-box-shadow: 0 2px 1px -2px #a0abbe;
  -ms-box-shadow: 0 2px 1px -2px #a0abbe;
  -o-box-shadow: 0 2px 1px -2px #a0abbe;
}

.card--shadow {
  border: 1px solid #E0E6EA;
  box-shadow: 0 10px 10px -10px rgba(85, 102, 125, 0.3);
  -webkit-box-shadow: 0 10px 10px -10px rgba(85, 102, 125, 0.3);
  -moz-box-shadow: 0 10px 10px -10px rgba(85, 102, 125, 0.3);
  -ms-box-shadow: 0 10px 10px -10px rgba(85, 102, 125, 0.3);
  -o-box-shadow: 0 10px 10px -10px rgba(85, 102, 125, 0.3);
}

.notification-banner {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  box-shadow: 0 2px 5px -1px #a0abbe;
  -webkit-box-shadow: 0 2px 5px -1px #a0abbe;
  -moz-box-shadow: 0 2px 5px -1px #a0abbe;
  -ms-box-shadow: 0 2px 5px -1px #a0abbe;
  -o-box-shadow: 0 2px 5px -1px #a0abbe;
  margin: 16px 0;
  padding: 16px;
  width: 100%;
}

.notification-banner--primary {
  background-color: #eef5ff;
  border-top: 3px solid #3B8CFF;
  color: #354051;
}

.notification-banner--caution {
  background-color: #FFF5E0;
  border-top: 3px solid #FFD480;
  color: #354051;
}

.notification-banner--caution a {
  color: #3B8CFF;
}

.notification-banner--failure {
  background-color: #FFEEF0;
  border-top: 3px solid #EB8281;
  color: #EB8281;
}

.notification-banner--failure a {
  color: #3B8CFF;
}

.notification-banner--success {
  background-color: #dbf5e0;
  border-top: 3px solid #5bd272;
  color: #354051;
}

.notification-banner--upgrade {
  background-color: #e4dff9;
  border-top: 3px solid #8775e3;
}

.notification-banner--upgrade-secondary {
  background-color: #f8f9fa;
  border-top: 3px solid #8775e3;
}

.notification-banner--upgrade-secondary i {
  color: #8775e3;
}

.notification-banner .close {
  position: relative;
  z-index: 1;
}

.notification-banner .actionBtn {
  color: #3B8CFF;
  margin-top: 12px;
  display: inline-block;
}

.notification-banner .actionBtn:hover {
  cursor: pointer;
}

.notification-banner-close {
  position: absolute;
  top: 8px;
  right: 10px;
  cursor: pointer;
  color: #a0abbe;
}

.notification-banner_expanded {
  position: relative;
}

.notification-banner_expanded &gt; i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  font-size: 32px;
}

.notification-banner_expanded &gt; div {
  padding: 10px 0 0 45px;
  line-height: 1.5;
  font-size: 14px;
}

.notification-toast {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  margin: 16px auto;
  max-width: 400px;
  padding: 8px 16px;
  text-align: center;
  width: 100%;
}

.notification-toast--primary {
  background-color: #eef5ff;
  border: 1px solid #3B8CFF;
  color: #354051;
}

.notification-toast--caution {
  background-color: white;
  border-top: 3px solid #ffe5b3;
  color: #354051;
}

.notification-toast--failure {
  background-color: white;
  border-top: 3px solid #f2aead;
  color: #EB8281;
}

.notification-toast--failure a {
  color: #3B8CFF;
}

.notification-toast--success {
  background-color: #dbf5e0;
  border-top: 3px solid #5bd272;
  color: #354051;
}

.product-caution-banner {
  z-index: 1030;
  position: fixed;
  top: 0;
  padding-top: 11px;
}

.promo-banner {
  align-items: stretch;
  background-color: blue;
  box-sizing: border-box;
  display: flex;
  height: 50px;
  padding: 8px;
  position: fixed;
  width: 100%;
  z-index: 1030;
  top: 0;
  cursor: pointer;
}

@media only screen and (max-width: 833px) {
  .promo-banner__timer,
  .promo-banner__sale-ends {
    display: none;
  }
}

@media only screen and (max-width: 543px) {
  .promo-banner__title {
    font-size: 0.75rem;
  }
}

.promo-banner.is-primary {
  background-color: #3B8CFF;
}

.promo-banner.is-primary .promo-banner__title,
.promo-banner.is-primary .promo-banner__message,
.promo-banner.is-primary .promo-banner__sale-ends,
.promo-banner.is-primary .promo-banner__timer,
.promo-banner.is-primary .promo-banner__link,
.promo-banner.is-primary .promo-banner__close {
  color: #FFFFFF;
}

.promo-banner.is-secondary {
  background-color: #eef5ff;
}

.promo-banner.is-secondary .promo-banner__title,
.promo-banner.is-secondary .promo-banner__message,
.promo-banner.is-secondary .promo-banner__sale-ends,
.promo-banner.is-secondary .promo-banner__timer,
.promo-banner.is-secondary .promo-banner__link,
.promo-banner.is-secondary .promo-banner__close {
  color: #354051;
}

.promo-banner.is-gray {
  background-color: #354051;
}

.promo-banner.is-gray .promo-banner__title,
.promo-banner.is-gray .promo-banner__message,
.promo-banner.is-gray .promo-banner__sale-ends,
.promo-banner.is-gray .promo-banner__timer,
.promo-banner.is-gray .promo-banner__link,
.promo-banner.is-gray .promo-banner__close {
  color: #FFFFFF;
}

.promo-banner.is-gray .promo-banner__title {
  font-family: "Gordita", sans-serif;
}

@media only screen and (max-width: 543px) {
  .promo-banner .new-timer {
    margin-top: 16px;
  }
}

.promo-banner.black-friday .promo-banner__img,
.promo-banner.cyber-week .promo-banner__img {
  height: 50px;
  width: 100px;
}

@media only screen and (max-width: 543px) {
  .promo-banner.black-friday .promo-banner__img,
  .promo-banner.cyber-week .promo-banner__img {
    background-image: url("https://www.powrcdn.com/images/svgs/promo/bags.svg");
  }
}

.promo-banner.black-friday .promo-banner__img {
  background-image: url("https://www.powrcdn.com/images/svgs/promo/cat-bag.svg");
}

.promo-banner.cyber-week .promo-banner__img {
  background-image: url("https://www.powrcdn.com/images/svgs/promo/bags.svg");
}

.promo-banner.valentines_day_2021 {
  background: linear-gradient(45deg, #FFEEF0 0%, #EDE8FA 100%);
}

.promo-banner.valentines_day_2021 .promo-banner__content {
  flex-wrap: wrap;
}

.promo-banner.valentines_day_2021 .promo-banner__title,
.promo-banner.valentines_day_2021 .promo-banner__message,
.promo-banner.valentines_day_2021 .promo-banner__sale-ends,
.promo-banner.valentines_day_2021 .promo-banner__timer {
  font-family: "Gordita Bold", sans-serif;
}

.promo-banner.valentines_day_2021 .promo-banner__link {
  text-decoration: none;
}

.promo-banner.valentines_day_2021 .promo-banner__img {
  background-image: url("https://www.powrcdn.com/images/svgs/promo/holiday_present.png");
  height: 100%;
  width: 50px;
  margin-right: 16px;
}

.promo-banner.valentines_day_2021 #promo-countdown {
  margin: -4px 0 0 8px;
}

.promo-banner.valentines_day_2021 .snow {
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: -1;
}

.promo-banner.valentines_day_2021 .number-with-text {
  position: relative;
  width: 35px;
  display: inline-block;
}

.promo-banner.valentines_day_2021 .timer-number {
  font-size: 1.5rem;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.promo-banner.valentines_day_2021 .number-descr {
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  font-size: 11px;
  font-family: "Gordita Light", sans-serif;
  text-align: center;
  opacity: 0.6;
}

.promo-banner.valentines_day_2021 .valentines_day_2021__link {
  color: #fc5a47;
}

@media only screen and (max-width: 543px) {
  .promo-banner.valentines_day_2021 .promo-banner__title,
  .promo-banner.valentines_day_2021 .promo-banner__message,
  .promo-banner.valentines_day_2021 .promo-banner__sale-ends {
    font-size: 0.875rem;
  }

  .promo-banner.valentines_day_2021 .promo-banner__message {
    width: 100%;
    text-align: center;
  }

  .promo-banner.valentines_day_2021 .promo-banner__sale-ends {
    margin-top: 16px;
  }
}

@media screen and (max-width: 768px) {
  .promo-banner.valentines_day_2021 {
    height: 108px;
    padding-bottom: 16px;
  }

  .promo-banner.valentines_day_2021 .promo-banner__img {
    height: 40px;
  }
}

@media screen and (max-width: 500px) {
  .promo-banner.valentines_day_2021 .promo-banner__img {
    display: none;
  }
}

.promo-banner__content {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

.promo-banner .promo-banner__title,
.promo-banner .promo-banner__message,
.promo-banner .promo-banner__sale-ends,
.promo-banner .promo-banner__timer {
  line-height: 1.3;
}

.promo-banner .promo-banner__link,
.promo-banner a.promo-banner__link {
  text-decoration: none;
}

.promo-banner .promo-banner__close {
  align-items: center;
  cursor: pointer;
  display: flex;
  opacity: 0.5;
  transition: 0.2s ease;
}

.promo-banner .promo-banner__close:hover {
  opacity: 1;
}

.promo-banner__img {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
  .promo-banner {
    padding: 8px 1%;
  }

  .promo-banner .promo-banner__link {
    margin: 0 8px;
  }
}

.wide {
  max-width: 700px;
}

.theme-1 {
  background-color: #3B8CFF;
  color: #FFFFFF;
}

.theme-1 h1,
.theme-1 h2,
.theme-1 h3,
.theme-1 h4,
.theme-1 p {
  color: #FFFFFF;
}

.theme-1 .card {
  background-color: #227dff;
}

.theme-2 {
  background-color: #354051;
}

.theme-2 h1,
.theme-2 h2,
.theme-2 h3,
.theme-2 h4 {
  color: #FFFFFF;
}

.theme-2 p {
  color: #6b7f9a;
}

.theme-2 .card {
  background-color: #3b475a;
}

.theme-danger {
  background-color: white;
}

.theme-danger h1,
.theme-danger h2,
.theme-danger h3,
.theme-danger h4 {
  color: #EB8281;
}

.theme-danger p {
  color: #EB8281;
}

.theme-danger .card {
  background-color: #ed8f8e;
}

.theme-3 {
  background-color: #eff2f4;
}

.theme-3 h1,
.theme-3 h2,
.theme-3 h3,
.theme-3 h4 {
  color: #354051;
}

.theme-3 p {
  color: #55667D;
}

.theme-3 .card {
  background-color: #FFFFFF;
}

.theme-4,
.signInContent .modal-content .tab-content .sign-in-footer,
.signInContent .signin-signup-platform .tab-content .sign-in-footer {
  background-color: #e0e6ea;
}

.theme-4 h1,
.signInContent .modal-content .tab-content .sign-in-footer h1,
.signInContent .signin-signup-platform .tab-content .sign-in-footer h1,
.theme-4 h2,
.signInContent .modal-content .tab-content .sign-in-footer h2,
.signInContent .signin-signup-platform .tab-content .sign-in-footer h2,
.theme-4 h3,
.signInContent .modal-content .tab-content .sign-in-footer h3,
.signInContent .signin-signup-platform .tab-content .sign-in-footer h3,
.theme-4 h4,
.signInContent .modal-content .tab-content .sign-in-footer h4,
.signInContent .signin-signup-platform .tab-content .sign-in-footer h4 {
  color: #354051;
}

.theme-4 p,
.signInContent .modal-content .tab-content .sign-in-footer p,
.signInContent .signin-signup-platform .tab-content .sign-in-footer p {
  color: #55667D;
}

.theme-4 .card,
.signInContent .modal-content .tab-content .sign-in-footer .card,
.signInContent .signin-signup-platform .tab-content .sign-in-footer .card {
  background-color: #FFFFFF;
}

.bg-mystic-shaded {
  background-color: #eff2f4;
}

.bg-mystic-dark-shaded {
  background-color: #e0e6ea;
}

.bg-primary-shaded {
  background-color: #eef5ff;
}

.page-title {
  margin-bottom: 32px;
  margin-top: 64px;
}

.content-section {
  margin-bottom: 124px;
}

.content {
  margin-bottom: 32px;
}

.small-caption {
  font-size: 0.75rem;
}

.medium-caption {
  font-size: 0.875rem;
}

.word-wrap-break {
  word-wrap: break-word;
}

.word-break-all {
  word-break: break-all;
}

.pad-nil {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

.pad-xs {
  padding: 4px;
}

.pad-s {
  padding: 8px;
}

.pad-m {
  padding: 16px;
}

.pad-l {
  padding: 32px;
}

.pad-xl {
  padding: 64px;
}

.pad-xxl {
  padding: 124px;
}

.pad-v-nil {
  padding-top: 0;
  padding-bottom: 0;
}

.pad-v-xs {
  padding-top: 4px;
  padding-bottom: 4px;
}

.pad-v-s {
  padding-top: 8px;
  padding-bottom: 8px;
}

.pad-v-m {
  padding-top: 16px;
  padding-bottom: 16px;
}

.pad-v-l {
  padding-top: 32px;
  padding-bottom: 32px;
}

.pad-v-xl {
  padding-top: 64px;
  padding-bottom: 64px;
}

.pad-v-xxl {
  padding-top: 124px;
  padding-bottom: 124px;
}

.pad-h-nil {
  padding-left: 0;
  padding-right: 0;
}

.pad-h-xs {
  padding-left: 4px;
  padding-right: 4px;
}

.pad-h-s {
  padding-left: 8px;
  padding-right: 8px;
}

.pad-h-m {
  padding-left: 16px;
  padding-right: 16px;
}

.pad-h-l {
  padding-left: 32px;
  padding-right: 32px;
}

.pad-h-xl {
  padding-left: 64px;
  padding-right: 64px;
}

.pad-h-xxl {
  padding-left: 124px;
  padding-right: 124px;
}

.pad-top-nil {
  padding-top: 0;
}

.pad-top-xs {
  padding-top: 4px;
}

.pad-top-s {
  padding-top: 8px;
}

.pad-top-m {
  padding-top: 16px;
}

.pad-top-l {
  padding-top: 32px;
}

.pad-top-xl {
  padding-top: 64px;
}

.pad-top-xxl {
  padding-top: 124px;
}

.pad-right-nil {
  padding-right: 0;
}

.pad-right-xs {
  padding-right: 4px;
}

.pad-right-s {
  padding-right: 8px;
}

.pad-right-m {
  padding-right: 16px;
}

.pad-right-l {
  padding-right: 32px;
}

.pad-right-xl {
  padding-right: 64px;
}

.pad-right-xxl {
  padding-right: 124px;
}

.pad-bottom-nil {
  padding-bottom: 0;
}

.pad-bottom-xs {
  padding-bottom: 4px;
}

.pad-bottom-s {
  padding-bottom: 8px;
}

.pad-bottom-m {
  padding-bottom: 16px;
}

.pad-bottom-l {
  padding-bottom: 32px;
}

.pad-bottom-xl {
  padding-bottom: 64px;
}

.pad-bottom-xxl {
  padding-bottom: 124px;
}

.pad-left-nil {
  padding-left: 0;
}

.pad-left-xs {
  padding-left: 4px;
}

.pad-left-s {
  padding-left: 8px;
}

.pad-left-m {
  padding-left: 16px;
}

.pad-left-l {
  padding-left: 32px;
}

.pad-left-xl {
  padding-left: 64px;
}

.pad-left-xxl {
  padding-left: 124px;
}

.pad-nil-force {
  padding: 0 !important;
}

.margin-nil {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
}

.margin-xs {
  margin: 4px;
}

.margin-s {
  margin: 8px;
}

.margin-m {
  margin: 16px;
}

.margin-l {
  margin: 32px;
}

.margin-xl {
  margin: 64px;
}

.margin-xxl {
  margin: 124px;
}

.margin-v-nil {
  margin-top: 0;
  margin-bottom: 0;
}

.margin-v-xs {
  margin-top: 4px;
  margin-bottom: 4px;
}

.margin-v-s {
  margin-top: 8px;
  margin-bottom: 8px;
}

.margin-v-m {
  margin-top: 16px;
  margin-bottom: 16px;
}

.margin-v-l {
  margin-top: 32px;
  margin-bottom: 32px;
}

.margin-v-xl {
  margin-top: 64px;
  margin-bottom: 64px;
}

.margin-v-xxl {
  margin-top: 124px;
  margin-bottom: 124px;
}

.margin-h-nil {
  margin-left: 0;
  margin-right: 0;
}

.margin-h-xs {
  margin-left: 4px;
  margin-right: 4px;
}

.margin-h-s {
  margin-left: 8px;
  margin-right: 8px;
}

.margin-h-m {
  margin-left: 16px;
  margin-right: 16px;
}

.margin-h-l {
  margin-left: 32px;
  margin-right: 32px;
}

.margin-h-xl {
  margin-left: 64px;
  margin-right: 64px;
}

.margin-h-xxl {
  margin-left: 124px;
  margin-right: 124px;
}

.margin-top-nil {
  margin-top: 0;
}

.margin-top-xs {
  margin-top: 4px;
}

.margin-top-s {
  margin-top: 8px;
}

.margin-top-m {
  margin-top: 16px;
}

.margin-top-l {
  margin-top: 32px;
}

.margin-top-xl {
  margin-top: 64px;
}

.margin-top-xxl {
  margin-top: 124px;
}

.margin-right-nil {
  margin-right: 0;
}

.margin-right-xxs {
  margin-right: 2px;
}

.margin-right-xs {
  margin-right: 4px;
}

.margin-right-s {
  margin-right: 8px;
}

.margin-right-m {
  margin-right: 16px;
}

.margin-right-l {
  margin-right: 32px;
}

.margin-right-xl {
  margin-right: 64px;
}

.margin-right-xxl {
  margin-right: 124px;
}

.margin-bottom-nil {
  margin-bottom: 0;
}

.margin-bottom-xs {
  margin-bottom: 4px;
}

.margin-bottom-s {
  margin-bottom: 8px;
}

.margin-bottom-m {
  margin-bottom: 16px;
}

.margin-bottom-l {
  margin-bottom: 32px;
}

.margin-bottom-xl {
  margin-bottom: 64px;
}

.margin-bottom-xxl {
  margin-bottom: 124px;
}

.margin-left-nil {
  margin-left: 0;
}

.margin-left-xs {
  margin-left: 4px;
}

.margin-left-s {
  margin-left: 8px;
}

.margin-left-m {
  margin-left: 16px;
}

.margin-left-l {
  margin-left: 32px;
}

.margin-left-xl {
  margin-left: 64px;
}

.margin-left-xxl {
  margin-left: 124px;
}

.margin-h-auto {
  margin-left: auto;
  margin-right: auto;
}

.margin-top-xl2 {
  margin-top: 96px;
}

.margin-bottom-xl2 {
  margin-bottom: 96px;
}

.margin-bottom-m2 {
  margin-bottom: 24px;
}

.gap-nil {
  gap: 0;
}

.gap-xs {
  gap: 4px;
}

.gap-s {
  gap: 8px;
}

.gap-m {
  gap: 16px;
}

.gap-l {
  gap: 32px;
}

.gap-xl {
  gap: 64px;
}

.gap-xxl {
  gap: 124px;
}

.row-gap-nil {
  row-gap: 0;
}

.row-gap-xs {
  row-gap: 4px;
}

.row-gap-s {
  row-gap: 8px;
}

.row-gap-m {
  row-gap: 16px;
}

.row-gap-l {
  row-gap: 32px;
}

.row-gap-xl {
  row-gap: 64px;
}

.row-gap-xxl {
  row-gap: 124px;
}

.column-gap-nil {
  column-gap: 0;
}

.column-gap-xs {
  column-gap: 4px;
}

.column-gap-s {
  column-gap: 8px;
}

.column-gap-m {
  column-gap: 16px;
}

.column-gap-l {
  column-gap: 32px;
}

.column-gap-xl {
  column-gap: 64px;
}

.column-gap-xxl {
  column-gap: 124px;
}

.opacity-0 {
  opacity: 0;
}

.opacity-25 {
  opacity: .25;
}

.opacity-50 {
  opacity: .5;
}

.opacity-75 {
  opacity: .75;
}

.opacity-100 {
  opacity: 1;
}

@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(25px);
    transform: translateY(25px);
    opacity: 0;
  }

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

@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(25px);
    transform: translateY(25px);
    opacity: 0;
  }

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

@-webkit-keyframes scale-in {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0.5;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes scale-in {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0.5;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes ani_blink {
  0% {
    opacity: 1.0;
  }

  50% {
    opacity: 0.0;
  }

  100% {
    opacity: 1.0;
  }
}

@-moz-keyframes ani_blink {
  0% {
    opacity: 1.0;
  }

  50% {
    opacity: 0.0;
  }

  100% {
    opacity: 1.0;
  }
}

@-o-keyframes ani_blink {
  0% {
    opacity: 1.0;
  }

  50% {
    opacity: 0.0;
  }

  100% {
    opacity: 1.0;
  }
}

@keyframes ani_blink {
  0% {
    opacity: 1.0;
  }

  50% {
    opacity: 0.0;
  }

  100% {
    opacity: 1.0;
  }
}

@-webkit-keyframes ani_random_blink {
  0% {
    opacity: 0;
  }

  1% {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
  }

  49% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  55% {
    opacity: 0;
  }

  56% {
    transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
  }

  95% {
    opacity: 0;
  }

  96% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-moz-keyframes ani_random_blink {
  0% {
    opacity: 0;
  }

  1% {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
  }

  49% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  55% {
    opacity: 0;
  }

  56% {
    transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
  }

  95% {
    opacity: 0;
  }

  96% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-o-keyframes ani_random_blink {
  0% {
    opacity: 0;
  }

  1% {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
  }

  49% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  55% {
    opacity: 0;
  }

  56% {
    transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
  }

  95% {
    opacity: 0;
  }

  96% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes ani_random_blink {
  0% {
    opacity: 0;
  }

  1% {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
  }

  49% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  55% {
    opacity: 0;
  }

  56% {
    transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
  }

  95% {
    opacity: 0;
  }

  96% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes ani_glow {
  0% {
    text-shadow: 0 0 10px #FFFFFF;
  }

  50% {
    text-shadow: 0 0 5px #666;
  }

  100% {
    text-shadow: 0 0 10px #FFFFFF;
  }
}

@-moz-keyframes ani_glow {
  0% {
    text-shadow: 0 0 10px #FFFFFF;
  }

  50% {
    text-shadow: 0 0 5px #666;
  }

  100% {
    text-shadow: 0 0 10px #FFFFFF;
  }
}

@-o-keyframes ani_glow {
  0% {
    text-shadow: 0 0 10px #FFFFFF;
  }

  50% {
    text-shadow: 0 0 5px #666;
  }

  100% {
    text-shadow: 0 0 10px #FFFFFF;
  }
}

@keyframes ani_glow {
  0% {
    text-shadow: 0 0 10px #FFFFFF;
  }

  50% {
    text-shadow: 0 0 5px #666;
  }

  100% {
    text-shadow: 0 0 10px #FFFFFF;
  }
}

@-webkit-keyframes ani_tada {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }

  10%, 20% {
    transform: scale(0.9) rotate(-3deg);
    -webkit-transform: scale(0.9) rotate(-3deg);
    -moz-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    -o-transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(3deg);
    -webkit-transform: scale(1.1) rotate(3deg);
    -moz-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    -o-transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    transform: scale(1.1) rotate(-3deg);
    -webkit-transform: scale(1.1) rotate(-3deg);
    -moz-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    -o-transform: scale(1.1) rotate(-3deg);
  }

  100% {
    transform: scale(1) rotate(0);
    -webkit-transform: scale(1) rotate(0);
    -moz-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    -o-transform: scale(1) rotate(0);
  }
}

@-moz-keyframes ani_tada {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }

  10%, 20% {
    transform: scale(0.9) rotate(-3deg);
    -webkit-transform: scale(0.9) rotate(-3deg);
    -moz-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    -o-transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(3deg);
    -webkit-transform: scale(1.1) rotate(3deg);
    -moz-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    -o-transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    transform: scale(1.1) rotate(-3deg);
    -webkit-transform: scale(1.1) rotate(-3deg);
    -moz-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    -o-transform: scale(1.1) rotate(-3deg);
  }

  100% {
    transform: scale(1) rotate(0);
    -webkit-transform: scale(1) rotate(0);
    -moz-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    -o-transform: scale(1) rotate(0);
  }
}

@-o-keyframes ani_tada {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }

  10%, 20% {
    transform: scale(0.9) rotate(-3deg);
    -webkit-transform: scale(0.9) rotate(-3deg);
    -moz-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    -o-transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(3deg);
    -webkit-transform: scale(1.1) rotate(3deg);
    -moz-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    -o-transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    transform: scale(1.1) rotate(-3deg);
    -webkit-transform: scale(1.1) rotate(-3deg);
    -moz-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    -o-transform: scale(1.1) rotate(-3deg);
  }

  100% {
    transform: scale(1) rotate(0);
    -webkit-transform: scale(1) rotate(0);
    -moz-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    -o-transform: scale(1) rotate(0);
  }
}

@keyframes ani_tada {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }

  10%, 20% {
    transform: scale(0.9) rotate(-3deg);
    -webkit-transform: scale(0.9) rotate(-3deg);
    -moz-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    -o-transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(3deg);
    -webkit-transform: scale(1.1) rotate(3deg);
    -moz-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    -o-transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    transform: scale(1.1) rotate(-3deg);
    -webkit-transform: scale(1.1) rotate(-3deg);
    -moz-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    -o-transform: scale(1.1) rotate(-3deg);
  }

  100% {
    transform: scale(1) rotate(0);
    -webkit-transform: scale(1) rotate(0);
    -moz-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    -o-transform: scale(1) rotate(0);
  }
}

@-webkit-keyframes ani_parralax_a {
  0% {
    left: -120px;
    top: -100px;
  }

  50% {
    left: -200px;
    top: -80px;
  }

  100% {
    left: -120px;
    top: -100px;
  }
}

@-moz-keyframes ani_parralax_a {
  0% {
    left: -120px;
    top: -100px;
  }

  50% {
    left: -200px;
    top: -80px;
  }

  100% {
    left: -120px;
    top: -100px;
  }
}

@-o-keyframes ani_parralax_a {
  0% {
    left: -120px;
    top: -100px;
  }

  50% {
    left: -200px;
    top: -80px;
  }

  100% {
    left: -120px;
    top: -100px;
  }
}

@keyframes ani_parralax_a {
  0% {
    left: -120px;
    top: -100px;
  }

  50% {
    left: -200px;
    top: -80px;
  }

  100% {
    left: -120px;
    top: -100px;
  }
}

@-webkit-keyframes ani_parralax_b {
  0% {
    left: 0px;
    top: 0px;
  }

  50% {
    left: -20px;
    top: 0px;
  }

  100% {
    left: 0px;
    top: 0px;
  }
}

@-moz-keyframes ani_parralax_b {
  0% {
    left: 0px;
    top: 0px;
  }

  50% {
    left: -20px;
    top: 0px;
  }

  100% {
    left: 0px;
    top: 0px;
  }
}

@-o-keyframes ani_parralax_b {
  0% {
    left: 0px;
    top: 0px;
  }

  50% {
    left: -20px;
    top: 0px;
  }

  100% {
    left: 0px;
    top: 0px;
  }
}

@keyframes ani_parralax_b {
  0% {
    left: 0px;
    top: 0px;
  }

  50% {
    left: -20px;
    top: 0px;
  }

  100% {
    left: 0px;
    top: 0px;
  }
}

@-webkit-keyframes loading {
  0% {
    transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
  }

  100% {
    transform: rotateZ(360deg);
    -webkit-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    -ms-transform: rotateZ(360deg);
    -o-transform: rotateZ(360deg);
  }
}

@-moz-keyframes loading {
  0% {
    transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
  }

  100% {
    transform: rotateZ(360deg);
    -webkit-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    -ms-transform: rotateZ(360deg);
    -o-transform: rotateZ(360deg);
  }
}

@-o-keyframes loading {
  0% {
    transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
  }

  100% {
    transform: rotateZ(360deg);
    -webkit-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    -ms-transform: rotateZ(360deg);
    -o-transform: rotateZ(360deg);
  }
}

@keyframes loading {
  0% {
    transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
  }

  100% {
    transform: rotateZ(360deg);
    -webkit-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    -ms-transform: rotateZ(360deg);
    -o-transform: rotateZ(360deg);
  }
}

@-webkit-keyframes fade_in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes fade_in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes fade_in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade_in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes delay_fade_in {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes delay_fade_in {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes delay_fade_in {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes delay_fade_in {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes delay_pop_in {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes delay_pop_in {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes delay_pop_in {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes delay_pop_in {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 0;
  }
}

@-moz-keyframes fade_out {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-o-keyframes fade_out {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

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

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes ani_shake {
  0% {
    -webkit-transform: translate(2px, 1px) rotate(0deg);
  }

  10% {
    -webkit-transform: translate(-1px, -2px) rotate(-1deg);
  }

  20% {
    -webkit-transform: translate(-3px, 0px) rotate(1deg);
  }

  30% {
    -webkit-transform: translate(0px, 2px) rotate(0deg);
  }

  40% {
    -webkit-transform: translate(1px, -1px) rotate(1deg);
  }

  50% {
    -webkit-transform: translate(-1px, 2px) rotate(-1deg);
  }

  60% {
    -webkit-transform: translate(-3px, 1px) rotate(0deg);
  }

  70% {
    -webkit-transform: translate(2px, 1px) rotate(-1deg);
  }

  80% {
    -webkit-transform: translate(-1px, -1px) rotate(1deg);
  }

  90% {
    -webkit-transform: translate(2px, 2px) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(1px, -2px) rotate(-1deg);
  }
}

@-moz-keyframes ani_shake {
  0% {
    -webkit-transform: translate(2px, 1px) rotate(0deg);
  }

  10% {
    -webkit-transform: translate(-1px, -2px) rotate(-1deg);
  }

  20% {
    -webkit-transform: translate(-3px, 0px) rotate(1deg);
  }

  30% {
    -webkit-transform: translate(0px, 2px) rotate(0deg);
  }

  40% {
    -webkit-transform: translate(1px, -1px) rotate(1deg);
  }

  50% {
    -webkit-transform: translate(-1px, 2px) rotate(-1deg);
  }

  60% {
    -webkit-transform: translate(-3px, 1px) rotate(0deg);
  }

  70% {
    -webkit-transform: translate(2px, 1px) rotate(-1deg);
  }

  80% {
    -webkit-transform: translate(-1px, -1px) rotate(1deg);
  }

  90% {
    -webkit-transform: translate(2px, 2px) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(1px, -2px) rotate(-1deg);
  }
}

@-o-keyframes ani_shake {
  0% {
    -webkit-transform: translate(2px, 1px) rotate(0deg);
  }

  10% {
    -webkit-transform: translate(-1px, -2px) rotate(-1deg);
  }

  20% {
    -webkit-transform: translate(-3px, 0px) rotate(1deg);
  }

  30% {
    -webkit-transform: translate(0px, 2px) rotate(0deg);
  }

  40% {
    -webkit-transform: translate(1px, -1px) rotate(1deg);
  }

  50% {
    -webkit-transform: translate(-1px, 2px) rotate(-1deg);
  }

  60% {
    -webkit-transform: translate(-3px, 1px) rotate(0deg);
  }

  70% {
    -webkit-transform: translate(2px, 1px) rotate(-1deg);
  }

  80% {
    -webkit-transform: translate(-1px, -1px) rotate(1deg);
  }

  90% {
    -webkit-transform: translate(2px, 2px) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(1px, -2px) rotate(-1deg);
  }
}

@keyframes ani_shake {
  0% {
    -webkit-transform: translate(2px, 1px) rotate(0deg);
  }

  10% {
    -webkit-transform: translate(-1px, -2px) rotate(-1deg);
  }

  20% {
    -webkit-transform: translate(-3px, 0px) rotate(1deg);
  }

  30% {
    -webkit-transform: translate(0px, 2px) rotate(0deg);
  }

  40% {
    -webkit-transform: translate(1px, -1px) rotate(1deg);
  }

  50% {
    -webkit-transform: translate(-1px, 2px) rotate(-1deg);
  }

  60% {
    -webkit-transform: translate(-3px, 1px) rotate(0deg);
  }

  70% {
    -webkit-transform: translate(2px, 1px) rotate(-1deg);
  }

  80% {
    -webkit-transform: translate(-1px, -1px) rotate(1deg);
  }

  90% {
    -webkit-transform: translate(2px, 2px) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(1px, -2px) rotate(-1deg);
  }
}

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

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@-moz-keyframes ani_fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@-o-keyframes ani_fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

@-moz-keyframes ani_fadeOut {
  0% {
    opacity: 1;
    transform: translateY(0px);
  }

  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

@-o-keyframes ani_fadeOut {
  0% {
    opacity: 1;
    transform: translateY(0px);
  }

  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

@keyframes ani_fadeOut {
  0% {
    opacity: 1;
    transform: translateY(0px);
  }

  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

@-webkit-keyframes ani_spin {
  0% {
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
  }

  100% {
    transform: 360deg;
    -webkit-transform: 360deg;
    -moz-transform: 360deg;
    -ms-transform: 360deg;
    -o-transform: 360deg;
  }
}

@-moz-keyframes ani_spin {
  0% {
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
  }

  100% {
    transform: 360deg;
    -webkit-transform: 360deg;
    -moz-transform: 360deg;
    -ms-transform: 360deg;
    -o-transform: 360deg;
  }
}

@-o-keyframes ani_spin {
  0% {
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
  }

  100% {
    transform: 360deg;
    -webkit-transform: 360deg;
    -moz-transform: 360deg;
    -ms-transform: 360deg;
    -o-transform: 360deg;
  }
}

@keyframes ani_spin {
  0% {
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
  }

  100% {
    transform: 360deg;
    -webkit-transform: 360deg;
    -moz-transform: 360deg;
    -ms-transform: 360deg;
    -o-transform: 360deg;
  }
}

@-webkit-keyframes ani_spinner {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}

@-moz-keyframes ani_spinner {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}

@-o-keyframes ani_spinner {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}

@keyframes ani_spinner {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}

@-webkit-keyframes pulse_light {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    opacity: 0.85;
  }

  50% {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    opacity: 0.85;
  }
}

@-moz-keyframes pulse_light {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    opacity: 0.85;
  }

  50% {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    opacity: 0.85;
  }
}

@-o-keyframes pulse_light {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    opacity: 0.85;
  }

  50% {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    opacity: 0.85;
  }
}

@keyframes pulse_light {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    opacity: 0.85;
  }

  50% {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    opacity: 0.85;
  }
}

@-webkit-keyframes ani_pulse {
  0% {
    color: #FFFFFF;
    text-shadow: none;
  }

  50% {
    color: #FFF;
    text-shadow: -1px 1px 5px #ffc, 1px -1px 5px #fff;
  }

  100% {
    color: #FFFFFF;
    text-shadow: none;
  }
}

@-moz-keyframes ani_pulse {
  0% {
    color: #FFFFFF;
    text-shadow: none;
  }

  50% {
    color: #FFF;
    text-shadow: -1px 1px 5px #ffc, 1px -1px 5px #fff;
  }

  100% {
    color: #FFFFFF;
    text-shadow: none;
  }
}

@-o-keyframes ani_pulse {
  0% {
    color: #FFFFFF;
    text-shadow: none;
  }

  50% {
    color: #FFF;
    text-shadow: -1px 1px 5px #ffc, 1px -1px 5px #fff;
  }

  100% {
    color: #FFFFFF;
    text-shadow: none;
  }
}

@keyframes ani_pulse {
  0% {
    color: #FFFFFF;
    text-shadow: none;
  }

  50% {
    color: #FFF;
    text-shadow: -1px 1px 5px #ffc, 1px -1px 5px #fff;
  }

  100% {
    color: #FFFFFF;
    text-shadow: none;
  }
}

@-webkit-keyframes ani_across {
  0% {
    left: -200px;
  }

  100% {
    left: 105%;
  }
}

@-moz-keyframes ani_across {
  0% {
    left: -200px;
  }

  100% {
    left: 105%;
  }
}

@-o-keyframes ani_across {
  0% {
    left: -200px;
  }

  100% {
    left: 105%;
  }
}

@keyframes ani_across {
  0% {
    left: -200px;
  }

  100% {
    left: 105%;
  }
}

@-webkit-keyframes shimmer {
  0% {
    background-position: top left;
  }

  20% {
    background-position: top right;
  }

  100% {
    background-position: top right;
  }
}

@-moz-keyframes shimmer {
  0% {
    background-position: top left;
  }

  20% {
    background-position: top right;
  }

  100% {
    background-position: top right;
  }
}

@-o-keyframes shimmer {
  0% {
    background-position: top left;
  }

  20% {
    background-position: top right;
  }

  100% {
    background-position: top right;
  }
}

@keyframes shimmer {
  0% {
    background-position: top left;
  }

  20% {
    background-position: top right;
  }

  100% {
    background-position: top right;
  }
}

@-webkit-keyframes ani_hover {
  0% {
    transform: rotate(7deg);
    -webkit-transform: rotate(7deg);
    -moz-transform: rotate(7deg);
    -ms-transform: rotate(7deg);
    -o-transform: rotate(7deg);
  }

  50% {
    transform: rotate(-7deg);
    -webkit-transform: rotate(-7deg);
    -moz-transform: rotate(-7deg);
    -ms-transform: rotate(-7deg);
    -o-transform: rotate(-7deg);
  }

  100% {
    transform: rotate(7deg);
    -webkit-transform: rotate(7deg);
    -moz-transform: rotate(7deg);
    -ms-transform: rotate(7deg);
    -o-transform: rotate(7deg);
  }
}

@-moz-keyframes ani_hover {
  0% {
    transform: rotate(7deg);
    -webkit-transform: rotate(7deg);
    -moz-transform: rotate(7deg);
    -ms-transform: rotate(7deg);
    -o-transform: rotate(7deg);
  }

  50% {
    transform: rotate(-7deg);
    -webkit-transform: rotate(-7deg);
    -moz-transform: rotate(-7deg);
    -ms-transform: rotate(-7deg);
    -o-transform: rotate(-7deg);
  }

  100% {
    transform: rotate(7deg);
    -webkit-transform: rotate(7deg);
    -moz-transform: rotate(7deg);
    -ms-transform: rotate(7deg);
    -o-transform: rotate(7deg);
  }
}

@-o-keyframes ani_hover {
  0% {
    transform: rotate(7deg);
    -webkit-transform: rotate(7deg);
    -moz-transform: rotate(7deg);
    -ms-transform: rotate(7deg);
    -o-transform: rotate(7deg);
  }

  50% {
    transform: rotate(-7deg);
    -webkit-transform: rotate(-7deg);
    -moz-transform: rotate(-7deg);
    -ms-transform: rotate(-7deg);
    -o-transform: rotate(-7deg);
  }

  100% {
    transform: rotate(7deg);
    -webkit-transform: rotate(7deg);
    -moz-transform: rotate(7deg);
    -ms-transform: rotate(7deg);
    -o-transform: rotate(7deg);
  }
}

@keyframes ani_hover {
  0% {
    transform: rotate(7deg);
    -webkit-transform: rotate(7deg);
    -moz-transform: rotate(7deg);
    -ms-transform: rotate(7deg);
    -o-transform: rotate(7deg);
  }

  50% {
    transform: rotate(-7deg);
    -webkit-transform: rotate(-7deg);
    -moz-transform: rotate(-7deg);
    -ms-transform: rotate(-7deg);
    -o-transform: rotate(-7deg);
  }

  100% {
    transform: rotate(7deg);
    -webkit-transform: rotate(7deg);
    -moz-transform: rotate(7deg);
    -ms-transform: rotate(7deg);
    -o-transform: rotate(7deg);
  }
}

@-webkit-keyframes ani_grow {
  0% {
    left: 100%;
  }

  100% {
    left: 0%;
  }
}

@-moz-keyframes ani_grow {
  0% {
    left: 100%;
  }

  100% {
    left: 0%;
  }
}

@-o-keyframes ani_grow {
  0% {
    left: 100%;
  }

  100% {
    left: 0%;
  }
}

@keyframes ani_grow {
  0% {
    left: 100%;
  }

  100% {
    left: 0%;
  }
}

@-webkit-keyframes floating_ghost {
  0% {
    top: 2%;
    right: 0%;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }

  25% {
    top: 50%;
    right: 50%;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
  }

  75% {
    top: 2%;
    right: 50%;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }

  100% {
    top: 50%;
    right: 0%;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
  }
}

@-moz-keyframes floating_ghost {
  0% {
    top: 2%;
    right: 0%;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }

  25% {
    top: 50%;
    right: 50%;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
  }

  75% {
    top: 2%;
    right: 50%;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }

  100% {
    top: 50%;
    right: 0%;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
  }
}

@-o-keyframes floating_ghost {
  0% {
    top: 2%;
    right: 0%;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }

  25% {
    top: 50%;
    right: 50%;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
  }

  75% {
    top: 2%;
    right: 50%;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }

  100% {
    top: 50%;
    right: 0%;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
  }
}

@keyframes floating_ghost {
  0% {
    top: 2%;
    right: 0%;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }

  25% {
    top: 50%;
    right: 50%;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
  }

  75% {
    top: 2%;
    right: 50%;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }

  100% {
    top: 50%;
    right: 0%;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
  }
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    -ms-transform: scale(0.3);
    -o-transform: scale(0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
  }

  70% {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}

@-moz-keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    -ms-transform: scale(0.3);
    -o-transform: scale(0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
  }

  70% {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}

@-o-keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    -ms-transform: scale(0.3);
    -o-transform: scale(0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
  }

  70% {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    -ms-transform: scale(0.3);
    -o-transform: scale(0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
  }

  70% {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}

@-webkit-keyframes ani_rise {
  0% {
    bottom: -450px;
  }

  100% {
    bottom: 0px;
  }
}

@-moz-keyframes ani_rise {
  0% {
    bottom: -450px;
  }

  100% {
    bottom: 0px;
  }
}

@-o-keyframes ani_rise {
  0% {
    bottom: -450px;
  }

  100% {
    bottom: 0px;
  }
}

@keyframes ani_rise {
  0% {
    bottom: -450px;
  }

  100% {
    bottom: 0px;
  }
}

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

  33% {
    opacity: 0;
  }

  66% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes ani_homepage_one {
  0% {
    opacity: 1;
  }

  33% {
    opacity: 0;
  }

  66% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes ani_homepage_one {
  0% {
    opacity: 1;
  }

  33% {
    opacity: 0;
  }

  66% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

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

  33% {
    opacity: 0;
  }

  66% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes ani_homepage_two {
  0% {
    opacity: 0;
  }

  33% {
    opacity: 1;
  }

  66% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@-moz-keyframes ani_homepage_two {
  0% {
    opacity: 0;
  }

  33% {
    opacity: 1;
  }

  66% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@-o-keyframes ani_homepage_two {
  0% {
    opacity: 0;
  }

  33% {
    opacity: 1;
  }

  66% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes ani_homepage_two {
  0% {
    opacity: 0;
  }

  33% {
    opacity: 1;
  }

  66% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes ani_homepage_three {
  0% {
    opacity: 0;
  }

  33% {
    opacity: 0;
  }

  66% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-moz-keyframes ani_homepage_three {
  0% {
    opacity: 0;
  }

  33% {
    opacity: 0;
  }

  66% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-o-keyframes ani_homepage_three {
  0% {
    opacity: 0;
  }

  33% {
    opacity: 0;
  }

  66% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes ani_homepage_three {
  0% {
    opacity: 0;
  }

  33% {
    opacity: 0;
  }

  66% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes animateSolar {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}

@-moz-keyframes animateSolar {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}

@-o-keyframes animateSolar {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}

@keyframes animateSolar {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}

@-webkit-keyframes ani_pointer {
  0% {
    left: 3%;
  }

  50% {
    left: 5%;
  }

  100% {
    left: 3%;
  }
}

@-moz-keyframes ani_pointer {
  0% {
    left: 3%;
  }

  50% {
    left: 5%;
  }

  100% {
    left: 3%;
  }
}

@-o-keyframes ani_pointer {
  0% {
    left: 3%;
  }

  50% {
    left: 5%;
  }

  100% {
    left: 3%;
  }
}

@keyframes ani_pointer {
  0% {
    left: 3%;
  }

  50% {
    left: 5%;
  }

  100% {
    left: 3%;
  }
}

@-webkit-keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

@-moz-keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

@-o-keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

@-webkit-keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@-moz-keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@-o-keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes ani_pop {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.1, 1.1);
  }

  100% {
    transform: scale(1, 1);
  }
}

@-moz-keyframes ani_pop {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.1, 1.1);
  }

  100% {
    transform: scale(1, 1);
  }
}

@-o-keyframes ani_pop {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.1, 1.1);
  }

  100% {
    transform: scale(1, 1);
  }
}

@keyframes ani_pop {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.1, 1.1);
  }

  100% {
    transform: scale(1, 1);
  }
}

.ani_pointer {
  animation: ani_pointer 2s ease-in-out infinite;
  -webkit-animation: ani_pointer 2s ease-in-out infinite;
  -moz-animation: ani_pointer 2s ease-in-out infinite;
  -ms-animation: ani_pointer 2s ease-in-out infinite;
  -o-animation: ani_pointer 2s ease-in-out infinite;
}

.ani_homepage_one {
  animation: ani_homepage_one 8s ease infinite;
  -webkit-animation: ani_homepage_one 8s ease infinite;
  -moz-animation: ani_homepage_one 8s ease infinite;
  -ms-animation: ani_homepage_one 8s ease infinite;
  -o-animation: ani_homepage_one 8s ease infinite;
}

.ani_homepage_two {
  animation: ani_homepage_two 8s ease infinite;
  -webkit-animation: ani_homepage_two 8s ease infinite;
  -moz-animation: ani_homepage_two 8s ease infinite;
  -ms-animation: ani_homepage_two 8s ease infinite;
  -o-animation: ani_homepage_two 8s ease infinite;
}

.ani_homepage_three {
  animation: ani_homepage_three 8s ease infinite;
  -webkit-animation: ani_homepage_three 8s ease infinite;
  -moz-animation: ani_homepage_three 8s ease infinite;
  -ms-animation: ani_homepage_three 8s ease infinite;
  -o-animation: ani_homepage_three 8s ease infinite;
}

.ani_all {
  animation: all 1s linear infinite;
  -webkit-animation: all 1s linear infinite;
  -moz-animation: all 1s linear infinite;
  -ms-animation: all 1s linear infinite;
  -o-animation: all 1s linear infinite;
}

.Ani_floating_ghost {
  animation: floating_ghost 10s 0s linear infinite alternate none running;
  -webkit-animation: floating_ghost 10s 0s linear infinite alternate none running;
  -moz-animation: floating_ghost 10s 0s linear infinite alternate none running;
  -ms-animation: floating_ghost 10s 0s linear infinite alternate none running;
  -o-animation: floating_ghost 10s 0s linear infinite alternate none running;
}

.ani_blink {
  animation: ani_blink 1s linear infinite;
  -webkit-animation: ani_blink 1s linear infinite;
  -moz-animation: ani_blink 1s linear infinite;
  -ms-animation: ani_blink 1s linear infinite;
  -o-animation: ani_blink 1s linear infinite;
}

.ani_glow {
  animation: ani_glow 2s linear infinite;
  -webkit-animation: ani_glow 2s linear infinite;
  -moz-animation: ani_glow 2s linear infinite;
  -ms-animation: ani_glow 2s linear infinite;
  -o-animation: ani_glow 2s linear infinite;
}

.ani_fadeIn {
  animation: ani_fadeIn 3s;
  -webkit-animation: ani_fadeIn 3s;
  -moz-animation: ani_fadeIn 3s;
  -ms-animation: ani_fadeIn 3s;
  -o-animation: ani_fadeIn 3s;
}

.ani_fadeOut {
  animation: ani_fadeOut 3s;
  -webkit-animation: ani_fadeOut 3s;
  -moz-animation: ani_fadeOut 3s;
  -ms-animation: ani_fadeOut 3s;
  -o-animation: ani_fadeOut 3s;
}

.ani_tada {
  animation: ani_tada 1s;
  -webkit-animation: ani_tada 1s;
  -moz-animation: ani_tada 1s;
  -ms-animation: ani_tada 1s;
  -o-animation: ani_tada 1s;
}

.ani_parralax_a {
  transform: translate3d(0, 0%, 0);
  -webkit-transform: translate3d(0, 0%, 0);
  -moz-transform: translate3d(0, 0%, 0);
  -ms-transform: translate3d(0, 0%, 0);
  -o-transform: translate3d(0, 0%, 0);
  animation: ani_parralax_a 12s 0s linear infinite alternate none running;
  -webkit-animation: ani_parralax_a 12s 0s linear infinite alternate none running;
  -moz-animation: ani_parralax_a 12s 0s linear infinite alternate none running;
  -ms-animation: ani_parralax_a 12s 0s linear infinite alternate none running;
  -o-animation: ani_parralax_a 12s 0s linear infinite alternate none running;
}

.ani_parralax_b {
  transform: translate3d(0, 0%, 0);
  -webkit-transform: translate3d(0, 0%, 0);
  -moz-transform: translate3d(0, 0%, 0);
  -ms-transform: translate3d(0, 0%, 0);
  -o-transform: translate3d(0, 0%, 0);
  animation: ani_parralax_b 12s 0s linear infinite alternate none running;
  -webkit-animation: ani_parralax_b 12s 0s linear infinite alternate none running;
  -moz-animation: ani_parralax_b 12s 0s linear infinite alternate none running;
  -ms-animation: ani_parralax_b 12s 0s linear infinite alternate none running;
  -o-animation: ani_parralax_b 12s 0s linear infinite alternate none running;
}

.ani_loading {
  animation: loading 1s infinite;
  -webkit-animation: loading 1s infinite;
  -moz-animation: loading 1s infinite;
  -ms-animation: loading 1s infinite;
  -o-animation: loading 1s infinite;
}

.ani_fade_in_500 {
  animation: fade_in 0.5s;
  -webkit-animation: fade_in 0.5s;
  -moz-animation: fade_in 0.5s;
  -ms-animation: fade_in 0.5s;
  -o-animation: fade_in 0.5s;
}

.ani_fade_in_fast {
  animation: fade_in 1s;
  -webkit-animation: fade_in 1s;
  -moz-animation: fade_in 1s;
  -ms-animation: fade_in 1s;
  -o-animation: fade_in 1s;
}

.ani_fade_in_med {
  animation: fade_in 2s;
  -webkit-animation: fade_in 2s;
  -moz-animation: fade_in 2s;
  -ms-animation: fade_in 2s;
  -o-animation: fade_in 2s;
}

.ani_fade_in_slow {
  animation: fade_in 4s;
  -webkit-animation: fade_in 4s;
  -moz-animation: fade_in 4s;
  -ms-animation: fade_in 4s;
  -o-animation: fade_in 4s;
}

.ani_shake {
  animation: ani_shake 0.8s 0s linear infinate;
  -webkit-animation: ani_shake 0.8s 0s linear infinate;
  -moz-animation: ani_shake 0.8s 0s linear infinate;
  -ms-animation: ani_shake 0.8s 0s linear infinate;
  -o-animation: ani_shake 0.8s 0s linear infinate;
  -webkit-transform-origin: 50% 50%;
}

.ani_spin {
  animation: ani_spin 10s 0s linear infinite;
  -webkit-animation: ani_spin 10s 0s linear infinite;
  -moz-animation: ani_spin 10s 0s linear infinite;
  -ms-animation: ani_spin 10s 0s linear infinite;
  -o-animation: ani_spin 10s 0s linear infinite;
}

.ani_pulse_light {
  animation: pulse_light 2s ease infinite;
  -webkit-animation: pulse_light 2s ease infinite;
  -moz-animation: pulse_light 2s ease infinite;
  -ms-animation: pulse_light 2s ease infinite;
  -o-animation: pulse_light 2s ease infinite;
}

.ani_across_super_slow {
  animation: ani_across 55s linear infinite;
  -webkit-animation: ani_across 55s linear infinite;
  -moz-animation: ani_across 55s linear infinite;
  -ms-animation: ani_across 55s linear infinite;
  -o-animation: ani_across 55s linear infinite;
}

.ani_across_slow {
  animation: ani_across 35s linear infinite;
  -webkit-animation: ani_across 35s linear infinite;
  -moz-animation: ani_across 35s linear infinite;
  -ms-animation: ani_across 35s linear infinite;
  -o-animation: ani_across 35s linear infinite;
}

.ani_across_medium {
  animation: ani_across 20s linear infinite;
  -webkit-animation: ani_across 20s linear infinite;
  -moz-animation: ani_across 20s linear infinite;
  -ms-animation: ani_across 20s linear infinite;
  -o-animation: ani_across 20s linear infinite;
}

.ani_across_fast {
  animation: ani_across 10s linear infinite;
  -webkit-animation: ani_across 10s linear infinite;
  -moz-animation: ani_across 10s linear infinite;
  -ms-animation: ani_across 10s linear infinite;
  -o-animation: ani_across 10s linear infinite;
}

.ani_across_super_slow_2 {
  animation: ani_across 35s linear infinite;
  -webkit-animation: ani_across 35s linear infinite;
  -moz-animation: ani_across 35s linear infinite;
  -ms-animation: ani_across 35s linear infinite;
  -o-animation: ani_across 35s linear infinite;
}

.ani_across_slow_2 {
  animation: ani_across 13s linear infinite;
  -webkit-animation: ani_across 13s linear infinite;
  -moz-animation: ani_across 13s linear infinite;
  -ms-animation: ani_across 13s linear infinite;
  -o-animation: ani_across 13s linear infinite;
}

.ani_across_medium_2 {
  animation: ani_across 10s linear infinite;
  -webkit-animation: ani_across 10s linear infinite;
  -moz-animation: ani_across 10s linear infinite;
  -ms-animation: ani_across 10s linear infinite;
  -o-animation: ani_across 10s linear infinite;
}

.ani_across_fast_2 {
  animation: ani_across 5s linear infinite;
  -webkit-animation: ani_across 5s linear infinite;
  -moz-animation: ani_across 5s linear infinite;
  -ms-animation: ani_across 5s linear infinite;
  -o-animation: ani_across 5s linear infinite;
}

.ani_across_medium_3 {
  animation: ani_across 14s linear infinite;
  -webkit-animation: ani_across 14s linear infinite;
  -moz-animation: ani_across 14s linear infinite;
  -ms-animation: ani_across 14s linear infinite;
  -o-animation: ani_across 14s linear infinite;
}

.ani_across_fast_3 {
  animation: ani_across 7s linear infinite;
  -webkit-animation: ani_across 7s linear infinite;
  -moz-animation: ani_across 7s linear infinite;
  -ms-animation: ani_across 7s linear infinite;
  -o-animation: ani_across 7s linear infinite;
}

.ani_pulse {
  animation: ani_pulse 2s linear infinite;
  -webkit-animation: ani_pulse 2s linear infinite;
  -moz-animation: ani_pulse 2s linear infinite;
  -ms-animation: ani_pulse 2s linear infinite;
  -o-animation: ani_pulse 2s linear infinite;
}

.ani_grow {
  animation: ani_grow 0.2s linear;
  -webkit-animation: ani_grow 0.2s linear;
  -moz-animation: ani_grow 0.2s linear;
  -ms-animation: ani_grow 0.2s linear;
  -o-animation: ani_grow 0.2s linear;
}

.ani_bounceIn {
  animation: bounceIn 0.5s linear;
  -webkit-animation: bounceIn 0.5s linear;
  -moz-animation: bounceIn 0.5s linear;
  -ms-animation: bounceIn 0.5s linear;
  -o-animation: bounceIn 0.5s linear;
}

.ani_rise {
  animation: ani_rise 1s linear;
  -webkit-animation: ani_rise 1s linear;
  -moz-animation: ani_rise 1s linear;
  -ms-animation: ani_rise 1s linear;
  -o-animation: ani_rise 1s linear;
}

.ani_slow_blink {
  animation: ani_blink 1s 2s linear infinite;
  -webkit-animation: ani_blink 1s 2s linear infinite;
  -moz-animation: ani_blink 1s 2s linear infinite;
  -ms-animation: ani_blink 1s 2s linear infinite;
  -o-animation: ani_blink 1s 2s linear infinite;
}

.ani_random_blink {
  animation: ani_random_blink 1s 2s linear infinite;
  -webkit-animation: ani_random_blink 1s 2s linear infinite;
  -moz-animation: ani_random_blink 1s 2s linear infinite;
  -ms-animation: ani_random_blink 1s 2s linear infinite;
  -o-animation: ani_random_blink 1s 2s linear infinite;
}

.ani_hover {
  animation: ani_hover 8s ease infinite;
  -webkit-animation: ani_hover 8s ease infinite;
  -moz-animation: ani_hover 8s ease infinite;
  -ms-animation: ani_hover 8s ease infinite;
  -o-animation: ani_hover 8s ease infinite;
}

.ani_spinner {
  animation: ani_spinner 20s 0s linear infinite;
  -webkit-animation: ani_spinner 20s 0s linear infinite;
  -moz-animation: ani_spinner 20s 0s linear infinite;
  -ms-animation: ani_spinner 20s 0s linear infinite;
  -o-animation: ani_spinner 20s 0s linear infinite;
}

.ani_slide_up {
  animation: slideInUp 0.4s 0s linear;
  -webkit-animation: slideInUp 0.4s 0s linear;
  -moz-animation: slideInUp 0.4s 0s linear;
  -ms-animation: slideInUp 0.4s 0s linear;
  -o-animation: slideInUp 0.4s 0s linear;
}

.shake {
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

.scale-in {
  -webkit-animation: scale-in 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: scale-in 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.scale-in-ease {
  -webkit-animation: scale-in 0.5s;
  animation: scale-in 0.5s;
}

.ani_pop {
  animation: ani_pop 0.3s 2;
  -webkit-animation: ani_pop 0.3s 2;
  -moz-animation: ani_pop 0.3s 2;
  -ms-animation: ani_pop 0.3s 2;
  -o-animation: ani_pop 0.3s 2;
}

.powrbutton,
a.powrbutton:link,
a.powrbutton:hover,
a.powrbutton:visited,
a.powrbutton:active {
  color: #FFFFFF;
  background-color: #3B8CFF;
  border: 2px solid #1777ff;
  line-height: 1;
  vertical-align: middle;
  position: relative;
  padding: 10px 20px;
  text-align: center;
  font-size: 1em;
  font-weight: 400;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, margin-left 0.2s ease-in-out, margin-right 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  font-weight: 600;
  border-radius: 3px;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  cursor: pointer;
  cursor: hand;
}

.scheme-1,
.scheme-1-gradient {
  background-color: #3B8CFF;
  color: #FFFFFF;
  border-color: #227dff;
}

.scheme-1 .powrbutton,
.scheme-1-gradient .powrbutton,
.scheme-1 a.powrbutton:link,
.scheme-1-gradient a.powrbutton:link,
.scheme-1 a.powrbutton:hover,
.scheme-1-gradient a.powrbutton:hover,
.scheme-1 a.powrbutton:visited,
.scheme-1-gradient a.powrbutton:visited,
.scheme-1 a.powrbutton:active,
.scheme-1-gradient a.powrbutton:active {
  color: #3B8CFF;
  background-color: #FFFFFF;
  border: 2px solid #ededed;
}

.scheme-1 .hover-scheme:hover,
.scheme-1-gradient .hover-scheme:hover,
.scheme-1 .hover-scheme:focus,
.scheme-1-gradient .hover-scheme:focus {
  color: #3B8CFF;
  background-color: #FFFFFF;
}

.scheme-1 h1,
.scheme-1-gradient h1,
.scheme-1 h2,
.scheme-1-gradient h2,
.scheme-1 h3,
.scheme-1-gradient h3,
.scheme-1 h4,
.scheme-1-gradient h4,
.scheme-1 p,
.scheme-1-gradient p {
  color: #FFFFFF;
}

.scheme-1-gradient {
  background: #3B8CFF;
  background-size: cover;
  background: radial-gradient(ellipse at center, #3B8CFF 0%, #1777ff 100%);
  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #3B8CFF), color-stop(100%, #1777ff));
  background: radial-gradient(center, ellipse cover, #3B8CFF 0%, #1777ff 100%);
  background: -webkit-radial-gradient(center, ellipse cover, #3B8CFF 0%, #1777ff 100%);
  background: -moz-radial-gradient(center, ellipse cover, #3B8CFF 0%, #1777ff 100%);
  background: -ms-radial-gradient(center, ellipse cover, #3B8CFF 0%, #1777ff 100%);
  background: -o-radial-gradient(center, ellipse cover, #3B8CFF 0%, #1777ff 100%);
}

.scheme-2 {
  background-color: #FFFFFF;
  color: #3B8CFF;
  border-color: #f2f2f2;
}

.scheme-2 .hover-scheme:hover,
.scheme-2 .hover-scheme:focus {
  color: #FFFFFF;
  background-color: #3B8CFF;
}

.scheme-3 {
  background-color: #FFFFFF;
  color: #666;
}

.scheme-4 {
  background-color: #EEE;
  color: #666;
  border-color: #e1e1e1;
}

.scheme-5 {
  background-color: #DDD;
  color: #666;
  border-color: #d0d0d0;
}

.scheme-failure {
  color: #FFFFFF;
  background-color: #EB8281;
}

.powrbutton.secondary,
a.secondary.powrbutton:link,
a.secondary.powrbutton:hover,
a.secondary.powrbutton:visited,
a.secondary.powrbutton:active {
  color: #3B8CFF;
  background-color: #FFFFFF;
  border: 2px solid #ededed;
}

.powrbutton.success,
a.success.powrbutton:link,
a.success.powrbutton:hover,
a.success.powrbutton:visited,
a.success.powrbutton:active {
  color: #FFFFFF;
  background-color: #36c451;
  border: 2px solid #2ea845;
}

.powrbutton.failure,
a.failure.powrbutton:link,
a.failure.powrbutton:hover,
a.failure.powrbutton:visited,
a.failure.powrbutton:active {
  color: #FFFFFF;
  background-color: #EB8281;
  border: 2px solid #e66362;
}

.powrbutton.upgrade,
a.upgrade.powrbutton:link,
a.upgrade.powrbutton:hover,
a.upgrade.powrbutton:visited,
a.upgrade.powrbutton:active {
  color: #FFFFFF;
  background-color: #7560DF;
}

.powrbutton.facebook,
a.facebook.powrbutton:link,
a.facebook.powrbutton:hover,
a.facebook.powrbutton:visited,
a.facebook.powrbutton:active {
  background-color: #2b4170;
  color: #FFF;
  border: 2px solid #213256;
}

.powrbutton.linkedin,
a.linkedin.powrbutton:link,
a.linkedin.powrbutton:hover,
a.linkedin.powrbutton:visited,
a.linkedin.powrbutton:active {
  background-color: #0073b2;
  color: #FFF;
  border: 2px solid #005c8e;
}

.powrbutton.twitter,
a.twitter.powrbutton:link,
a.twitter.powrbutton:hover,
a.twitter.powrbutton:visited,
a.twitter.powrbutton:active {
  background-color: #0081ce;
  color: #FFF;
  border: 2px solid #006baa;
}

.powrbutton.small,
a.small.powrbutton:link,
a.small.powrbutton:hover,
a.small.powrbutton:visited,
a.small.powrbutton:active {
  padding: 5px 10px;
}

.sp-preview,
.sp-alpha,
.sp-thumb-el {
  background-image: none;
}

.sp-container button {
  background-image: none;
  width: 100%;
  padding: 10px 0px;
  color: #666c70;
  background-color: white;
  border: 1px solid #c9cdcf;
  border-radius: 2px;
  transition: border 0.2s ease-in-out, background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  color: #2990ea;
  text-align: center;
  outline: none;
  cursor: pointer;
  cursor: hand;
}

.ws-po-box {
  color: black;
}

.prototype {
  display: none !important;
}

.modal {
  z-index: 99999999999;
  outline: none;
}

.modal-lg .modal-dialog {
  width: 800px;
}

.truncated {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hid {
  display: none;
}

.fa.hid,
.fab.hid,
.fad.hid,
.fal.hid,
.far.hid,
.fas.hid {
  display: none;
}

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

.slash {
  text-decoration: line-through;
}

.debug * {
  border: 3px dashed #f00 !important;
}

.maxWidth {
  max-width: 100% !important;
}

.quote:before,
.quote:after {
  content: '"';
}

.width100 {
  width: 100%;
}

.min300 {
  min-width: 300px;
  max-width: 100%;
}

.fullHeight {
  height: 100%;
}

.centerChild {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}

.noPad {
  padding: 0px;
}

.noPadLeft {
  padding-left: 0px;
}

.noPadRight {
  padding-right: 0px;
}

.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
}

.col-xs-15 {
  width: 20%;
  float: left;
}

.col-xs-19,
.col-sm-19,
.col-md-19,
.col-lg-19 {
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
}

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

.notice {
  width: 100%;
  padding: 20px;
  text-align: center;
}

.notice--primary {
  background-color: #eef5ff;
  color: #354051;
}

img {
  max-width: 100%;
}

.failure {
  color: #EB8281;
}

.success:not(.section) {
  color: #36c451;
}

.caution {
  color: #FFD480;
}

.powrbutton.hid,
a.hid.powrbutton:link,
a.hid.powrbutton:hover,
a.hid.powrbutton:visited,
a.hid.powrbutton:active {
  display: none;
}

.navbar-fixed-top {
  z-index: 1030000;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-absolute--bot {
  bottom: 0;
}

.position-absolute--top {
  top: 0;
}

.position-absolute--left {
  left: 0;
}

.position-absolute--right {
  right: 0;
}

.display-block {
  display: block;
}

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

.button-nostyle,
.button-nostyle-muted {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: none;
}

.button-nostyle-muted:hover {
  color: #3B8CFF;
}

.button-nostyle-blue {
  background: none;
  color: #3B8CFF;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: none;
}

.button-round-blue {
  background-color: white;
  border: none;
  color: #3B8CFF;
  padding: 8px 15px;
  text-align: center;
  text-decoration: false;
  display: inline-block;
  font-size: 14px;
  margin: 4px 2px;
  width: 35px;
  border-radius: 60px;
  box-shadow: 0px 0px 2px #3B8CFF;
  padding: 0.5em 0.9em;
  outline: none;
}

.normalWhiteSpace {
  white-space: normal;
}

@media (max-width: 762px) {
  .normalWhiteSpaceXs {
    white-space: normal;
  }
}

.nowrap {
  white-space: nowrap;
}

.wix-col-4 {
  width: 25%;
  float: left;
}

.wix-col-2 {
  width: 50%;
  float: left;
}

.visible {
  overflow: visible;
}

.desktop-only-flex,
.mobile-only-flex {
  display: none;
}

@media (min-width: 833px) {
  .desktop-only-flex {
    display: flex;
    flex-shrink: 0;
  }
}

@media (max-width: 834px) {
  .mobile-only-flex {
    display: flex;
    flex-shrink: 0;
  }

  .mobile-full-width {
    width: 100% !important;
  }
}

@media (max-width: 834px) and (orientation: portrait) {
  .hidden-tablet-portrait {
    display: none !important;
  }

  .show-tablet-portrait {
    display: flex !important;
  }
}

@media (min-width: 1024px) and (orientation: landscape) {
  .hidden-tablet-landscape {
    display: none !important;
  }
}

@media (min-width: 1200px) and (orientation: landscape) {
  .hidden-tablet-landscape {
    display: flex !important;
  }
}

#edit-topbar-container {
  position: fixed;
  z-index: 1031;
  width: 100%;
  height: 64px;
  background-color: #fff;
  border-bottom: 1px solid #e0e6ea;
  box-shadow: 0 2px 1px -2px #a0abbe;
  -webkit-box-shadow: 0 2px 1px -2px #a0abbe;
  -moz-box-shadow: 0 2px 1px -2px #a0abbe;
  -ms-box-shadow: 0 2px 1px -2px #a0abbe;
  -o-box-shadow: 0 2px 1px -2px #a0abbe;
}

#edit-topbar-container .edit-topbar {
  background-color: #fff;
  padding: 12px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#edit-topbar-container .edit-topbar .logo-container {
  padding-top: 4px;
}

@media (max-width: 600px) {
  #edit-topbar-container .edit-topbar .logo-container {
    display: none;
  }
}

#edit-topbar-container .edit-topbar .logo-container .icon-logo {
  width: 10%;
}

#edit-topbar-container .edit-topbar .arrow-container {
  color: #3B8CFF;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

#edit-topbar-container .edit-topbar .arrow-container .back-message {
  color: #354051;
}

#edit-topbar-container .edit-topbar .untitled-nickname {
  display: inline-block;
  cursor: pointer;
  font-style: italic;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
  width: 110px;
}

@media screen and (min-width: 768px) {
  #edit-topbar-container .edit-topbar .untitled-nickname {
    width: 170px;
  }
}

#edit-topbar-container .edit-topbar .left-group {
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  display: flex;
  height: 36px;
}

@media (max-width: 600px) {
  #edit-topbar-container .edit-topbar .left-group {
    padding-top: 4px;
  }
}

#edit-topbar-container .edit-topbar .left-group .nickname-container {
  font-size: 0.875rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 110px;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  #edit-topbar-container .edit-topbar .left-group .nickname-container {
    font-size: 1.1rem;
    width: 170px;
  }
}

#edit-topbar-container .edit-topbar .left-group .nickname-container input {
  padding: 4px;
}

#edit-topbar-container .edit-topbar .left-group .plan-indicator {
  background-color: #eef5ff;
  font-size: .6rem;
  font-weight: 600;
  color: #3B8CFF;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  padding: 4px 8px;
  cursor: default;
}

@media (max-width: 600px) {
  #edit-topbar-container .edit-topbar .left-group .plan-indicator {
    display: none;
  }
}

@media (max-width: 900px) {
  #edit-topbar-container .edit-topbar .center-group {
    display: none;
  }
}

#edit-topbar-container .edit-topbar .notification-link {
  color: #3B8CFF;
}

#edit-topbar-container .edit-topbar .save-indicator span {
  font-size: .8rem;
  color: #a0abbe;
}

@media (max-width: 600px) {
  #edit-topbar-container .edit-topbar .save-indicator {
    display: none;
  }
}

#edit-topbar-container .edit-topbar .right-group {
  display: flex;
  align-self: flex-end;
  align-items: center;
  height: inherit;
}

#edit-topbar-container .edit-topbar .right-group .dashboard-link-settings {
  font-size: .8rem;
}

#edit-topbar-container .edit-topbar .right-group .dashboard-link-settings i {
  margin-right: 4px;
}

@media (max-width: 320px) {
  #edit-topbar-container .edit-topbar .right-group .dashboard-link-settings {
    display: none;
  }
}

#edit-topbar-container .edit-topbar .right-group .top-support-link {
  display: none;
}

@media screen and (min-width: 600px) {
  #edit-topbar-container .edit-topbar .right-group .top-support-link {
    display: inline-block;
  }
}

#edit-topbar-container .edit-topbar .right-group .upgrade-account-group {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 1024px) {
  #edit-topbar-container .edit-topbar .right-group .upgrade-account-group {
    border-left: 1px solid #e0e6ea;
    margin: 0 0 0 15px;
  }
}

#edit-topbar-container .edit-topbar .topbar-tooltip-container .tobar-tooltip-body {
  visibility: hidden;
  width: 200px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  padding: 6px 0;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  position: absolute;
  z-index: 1;
}

.meta-nav__container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  cursor: default;
  padding: 4px;
}

.meta-nav__container .meta-nav__button {
  text-align: center;
  white-space: nowrap;
}

.meta-nav__container .meta-nav__button:first-child {
  margin-left: 0;
}

.meta-nav__container--popup .meta-nav__button {
  width: 100%;
  margin-left: 0;
}

.edit-topbar .meta-nav__container {
  padding-right: 10px;
}

.backNextContainer .meta-nav__container {
  padding-top: 10px;
}

.powrreact-radio-image-component .feature-blocker {
  cursor: pointer;
}

.powrreact-radio-image-component .powrRadioImage {
  list-style-type: none;
  display: flex;
}

.powrreact-radio-image-component .powrRadioImage__content {
  cursor: pointer;
  margin-right: 16px;
}

.powrreact-radio-image-component .opinionSelect,
.powrreact-radio-image-component .reviewSelect,
.powrreact-radio-image-component .helpSelect {
  justify-content: center;
}

.powrreact-radio-image-component .radio-image-list {
  list-style-type: none;
  display: flex;
  flex-flow: row wrap;
}

.powrreact-radio-image-component svg:not(.svg-skip-hover-css).is-active {
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
}

.powrreact-radio-image-component svg:not(.svg-skip-hover-css).is-active path {
  fill: #3B8CFF;
}

.powrreact-radio-image-component svg:not(.svg-skip-hover-css).is-active rect {
  fill: #3B8CFF;
}

[data-qa*="GradientOrientation"] .radioImageContainer {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 120px;
  background-color: #FFFFFF;
}

[data-qa*="GradientOrientation"] .radioImageContainer .radioCaption {
  margin: 0;
  line-height: 0.7;
  font-size: 16px;
}

[data-qa*="GradientOrientation"] .radioImageContainer img {
  width: 75%;
}

[data-qa*="GradientOrientation"] .radioImageContainer svg {
  width: 40px;
  height: 40px;
}

[data-qa*="GradientOrientation"] .radioImageContainer.is-active {
  color: #3B8CFF;
}

[data-qa*="GradientOrientation"] .radioImageContainer.is-active svg path {
  fill: #3B8CFF;
}

[data-qa*="GradientOrientation"] .radioImageContainer.is-active svg rect {
  fill: #3B8CFF;
}

@keyframes preloader-scale {
  0% {
    background-color: #3B8CFF;
    transform: scale(0.5);
  }

  50% {
    background-color: transparent;
    transform: scale(1);
  }

  100% {
    background-color: #3B8CFF;
    transform: scale(0.5);
  }
}

.preloader {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.preloader .preloader__box {
  animation: preloader-scale 2s infinite;
  border: 1px solid #3B8CFF;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  height: 10px;
  left: 0;
  position: absolute;
  transform: transformZ(0);
  width: 10px;
}

.preloader .preloader__box:nth-child(1n) {
  animation-delay: 0s;
  left: -18px;
}

.preloader .preloader__box:nth-child(2n) {
  animation-delay: 0.2s;
  left: 0;
}

.preloader .preloader__box:nth-child(3n) {
  animation-delay: 0.4s;
  left: 18px;
}

.preloader .preloader__message {
  position: absolute;
  width: 300px;
  left: -150px;
  top: 16px;
  text-align: center;
}

.preloader.inline {
  position: relative;
  transform: none;
  width: 0;
  min-height: 30px;
}

.loader {
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.loader .circle {
  background-color: #5287df;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: scale-loader 1.4s infinite ease-in-out both;
  animation: scale-loader 1.4s infinite ease-in-out both;
  vertical-align: middle;
}

.loader .small {
  width: 10px;
  height: 10px;
  opacity: .3;
}

.loader .medium {
  width: 30px;
  height: 30px;
  opacity: .7;
}

.loader .powr-logo-icon {
  fill: #5287df;
  width: 60px;
  height: 60px;
  opacity: 1;
  vertical-align: middle;
  display: inline-block;
  -webkit-animation: scale-loader 1.4s infinite ease-in-out both;
  animation: scale-loader 1.4s infinite ease-in-out both;
}

.loader .small {
  -webkit-animation-delay: -0.48s;
  animation-delay: -0.48s;
}

.loader .medium {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

@-webkit-keyframes scale-loader {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes scale-loader {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.app-search {
  margin-bottom: 32px;
}

.app-search.is-popover {
  margin-bottom: 0;
}

.app-search__input-group {
  position: relative;
}

.app-search__search-icon {
  color: #a0abbe;
  font-size: 1.125rem;
  left: 16px;
  position: absolute;
  top: 22px;
}

.app-search__search-input {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border: 1px solid #bec6ca;
  color: #354051;
  display: block;
  font-size: 1.125rem;
  padding: 16px 16px 16px 40px;
  text-indent: 5px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-search__search-input:focus {
  border-color: #3B8CFF;
  outline: none;
}

.app-search__search-input::placeholder {
  color: #a0abbe;
}

.app-search__search-input.is-popover {
  border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  -ms-border-radius: 4px 4px 0 0;
  -o-border-radius: 4px 4px 0 0;
  border-bottom: 1px solid #bec6ca;
  border-top: none;
  border-left: none;
  border-right: none;
}

.app-search--sm {
  margin-bottom: 0;
}

.app-search--sm .app-search__search-icon {
  font-size: 1rem;
  left: 8px;
  top: 10px;
}

.app-search--sm .app-search__search-input {
  font-size: 0.875rem;
  padding: 6px 8px 6px 24px;
}

.no-search-results {
  margin-top: 64px;
  text-align: center;
  width: 100%;
}

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

.embed-code button {
  margin: 32px;
}

.sidenav-mobile-icon {
  z-index: 2;
  display: block;
  position: fixed;
  top: 16px;
  left: 16px;
  color: #55667D;
  font-size: 2rem;
}

.side-nav {
  border: 1px solid #E0E6EA;
  height: 100vh;
  width: 340px;
  z-index: 1;
  transition: 0.5s;
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.side-nav--fixed-left {
  left: 0;
  top: 0;
  position: fixed;
}

.side-nav--fixed-right {
  right: 0;
  top: 0;
  position: fixed;
}

.side-nav__items {
  overflow-y: auto;
}

.side-nav__item-row {
  cursor: pointer;
  word-wrap: break-word;
  padding: 16px 32px;
}

.side-nav__item-row.active {
  background-color: #E4F3FF;
  color: #3B8CFF;
  font-weight: bold;
}

.side-nav__item-row.active .side-nav__item-label,
.side-nav__item-row.active .side-nav__item-icon {
  color: #3B8CFF;
}

.side-nav__item-row:hover {
  background-color: rgba(228, 243, 255, 0.5);
}

.side-nav__item-row.is-not-clickable {
  cursor: unset;
}

.side-nav__item-row.is-not-clickable:hover {
  background-color: unset;
}

.side-nav__item-label {
  color: #354051;
}

.side-nav__item-icon {
  width: 24px;
  color: #354051;
}

.side-nav__subitems-wrapper {
  overflow: hidden;
}

.side-nav__subitems {
  transition: all 300ms;
}

.side-nav__subitems .side-nav__item-row {
  padding: 8px 64px;
}

.side-nav__subitems .side-nav__item-label,
.side-nav__subitems .side-nav__item-icon {
  color: #55667D;
}

.side-nav__chevron {
  margin-left: auto;
}

.side-nav.collapsed {
  left: -100%;
  width: 328px;
}

.side-nav__items_and_feedback {
  overflow-y: auto;
}

.side-nav__feedback {
  margin-top: 16px;
  height: 300px;
}

.subitems-animation-enter {
  margin-top: -100%;
}

.subitems-animation-enter-active {
  margin-top: 0;
}

.subitems-animation-exit {
  margin-top: 0;
}

.subitems-animation-exit-active {
  margin-top: -100%;
}

.ratio1_1 {
  position: relative;
  width: 100%;
  float: left;
}

.ratio1_1:before {
  content: "";
  float: left;
  padding-top: 100%;
}

.platform-card:hover {
  border-color: #95CEFF;
}

.platform-card__platform-initial {
  background-image: url(https://www.powrcdn.com/platforms/all/blank.png);
  background-size: contain;
  background-repeat: no-repeat;
  font-size: 30px;
  width: 60%;
  margin: auto;
}

.platform-card__platform-name {
  line-height: 1.125rem;
  height: 2rem;
  font-size: 0.875rem;
}

.platforms-1-5 {
  width: 20%;
  display: inline-block;
  float: left;
}

.platforms-2-5 {
  width: 40%;
  display: inline-block;
  float: left;
}

@media screen and (max-width: 614px) {
  .platforms-1-5 {
    width: 50%;
  }

  .platforms-2-5 {
    width: 100%;
  }

  .platforms-2-5 .ratio1_1:before {
    padding-top: 0;
  }
}

@media screen and (min-width: 614px) and (max-width: 768px) {
  .platforms-1-5 {
    width: 20%;
  }

  .platforms-2-5 {
    width: 40%;
  }
}

@media screen and (min-width: 769px) and (max-width: 899px) {
  .platforms-1-5 {
    width: 50%;
  }

  .platforms-2-5 {
    width: 100%;
  }

  .platforms-2-5 .ratio1_1:before {
    padding-top: 0;
  }
}

@media screen and (min-width: 900px) and (max-width: 1080px) {
  .platforms-1-5 {
    width: 30%;
  }

  .platforms-2-5 {
    width: 90%;
  }

  .platforms-2-5 .ratio1_1:before {
    padding-top: 0;
  }
}

.big-commerce-installations-wrapper {
  flex: 0;
  padding-bottom: 40px;
}

.big-commerce-card {
  font-size: 0.8rem;
  border: 1px solid #e0e6ea;
  background-color: #FFFFFF;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.big-commerce-card-clickable {
  cursor: pointer;
}

.big-commerce-card-clickable:hover {
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  border-color: #36c451;
}

.big-commerce-card-promo-banner {
  width: 95%;
}

.big-commerce-label {
  background-color: #dbf5e0;
  color: #36c451;
  width: fit-content;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.big-commerce-title {
  font-weight: bold;
  font-size: 1rem;
  color: #354051;
}

.collapsible .rc-collapse-anim-active {
  transition: height 0.2 ease-out;
  -webkit-transition: height 0.2 ease-out;
  -moz-transition: height 0.2 ease-out;
  -ms-transition: height 0.2 ease-out;
  -o-transition: height 0.2 ease-out;
}

.collapsible .collapsible__panel-content {
  border-top: 1px solid #bec6ca;
  border-right: 1px solid #bec6ca;
  border-bottom: 0px solid #bec6ca;
  border-left: 1px solid #bec6ca;
}

.collapsible .collapsible__panel-content:first-child {
  border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  -ms-border-radius: 4px 4px 0 0;
  -o-border-radius: 4px 4px 0 0;
}

.collapsible .collapsible__panel-content:last-child {
  border-bottom: 1px solid #bec6ca;
  border-radius: 0 0 4px 4px;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  -ms-border-radius: 0 0 4px 4px;
  -o-border-radius: 0 0 4px 4px;
}

.collapsible__panel-header {
  display: block;
  align-items: center;
  cursor: pointer;
  cursor: hand;
  font-weight: bold;
  padding: 16px 0;
  text-align: left;
}

.collapsible__panel-header:hover {
  color: #3B8CFF;
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
}

.collapsible__panel-header:focus {
  outline: 0;
}

.collapsible__panel-header.is-open {
  color: #3B8CFF;
}

.collapsible__panel-header i.arrow {
  float: right;
}

.collapsible__panel-content {
  padding: 16px;
  overflow: hidden;
}

.collapsible__panel-content p:first-child {
  text-align: left;
}

.collapsible__panel-content .share-component &gt; h4 {
  display: none;
}

.collapsible__panel-content .share-component &gt; p {
  text-align: left;
}

.collapsible__panel-content .share-component h5 {
  font-size: 1rem;
}

.collapsible__panel-content .rc-collapse-content-inactive {
  display: none;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.collapsible__panel-content .rc-collapse-content-active {
  transition: all 0.4s ease-in;
  opacity: 1;
  margin-top: 16px;
}

.max752 {
  max-width: 752px;
  margin: 0 auto;
}

.max770 {
  max-width: 770px;
  margin: 0 auto;
}

.blur {
  -webkit-filter: blur(4px);
  -moz-filter: blur(4px);
  -o-filter: blur(4px);
  -ms-filter: blur(4px);
  filter: blur(4px);
  cursor: pointer;
}

a.website-link {
  margin: 0 auto;
  color: #3B8CFF;
  text-align: center;
  font-size: 1.6rem;
}

.weebly-backend-faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.powrbutton,
a.powrbutton:link,
a.powrbutton:hover,
a.powrbutton:visited,
a.powrbutton:active {
  text-align: center;
  margin: 0 auto;
}

.outer-install-container {
  position: relative;
  max-width: 1600px;
  width: 100%;
  display: flex;
}

@media (max-width: 1150px) {
  .outer-install-container {
    margin-bottom: 150px;
  }
}

.publish-nav-container {
  height: 100vh;
  overflow-y: auto;
}

.party-popper__icon {
  font-size: 2rem;
}

.install-container.publish-uber-panel__container {
  margin-bottom: 64px;
  background-color: #FFFFFF;
}

.install-container.publish-uber-panel__container.with-sidenav {
  padding-left: 372px;
  padding-top: 64px;
}

.install-container.publish-uber-panel__container.with-sidenav h3 {
  margin-top: 0;
}

.install-container.publish-uber-panel__container .install-container__content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0px;
}

@media (max-width: 1150px) {
  .install-container.publish-uber-panel__container {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin: 0 0 32px 0;
    padding: 32px 100px;
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  .install-container.publish-uber-panel__container {
    padding: 32px 50px;
  }
}

@media (max-width: 768px) {
  .install-container.publish-uber-panel__container {
    padding: 32px 10px;
  }
}

.callout-sidebar-wrapper {
  width: 300px;
  margin-left: 16px;
  position: absolute;
}

.callout-sidebar {
  width: auto;
  position: fixed;
  bottom: 0;
  right: 16px;
}

.callout-sidebar-container {
  width: 264px;
}

.callout {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  right: 0;
  width: auto;
  background: #f8f9fa;
  padding: 16px;
  border: 1px solid #e0e6ea;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px 0;
  border-top: 3px solid #3B8CFF;
  box-shadow: 0 2px 4px 0px #eff2f4;
  -webkit-box-shadow: 0 2px 4px 0px #eff2f4;
  -moz-box-shadow: 0 2px 4px 0px #eff2f4;
  -ms-box-shadow: 0 2px 4px 0px #eff2f4;
  -o-box-shadow: 0 2px 4px 0px #eff2f4;
}

.callout-shopify {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  right: 0;
  width: auto;
  background-color: #FFFFFF;
  text-align: center;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #e0e6ea;
}

.fade-container {
  padding: 32px 0;
  position: relative;
}

.fade-container-shopify {
  width: 100%;
  max-width: 380px;
  padding: 24px 16px 24px 16px;
  position: relative;
}

@media (max-width: 1150px) {
  .outer-install-container {
    flex-wrap: wrap;
  }

  .callout-sidebar-wrapper {
    width: 100%;
    margin-left: 0;
    top: 100%;
  }

  .callout-sidebar {
    position: relative;
    left: 0;
  }

  .callout-sidebar-container {
    width: 100%;
  }

  .callout {
    position: relative;
    top: 0;
    order: 0;
  }
}

.callout__headline {
  margin-top: 0;
}

.callout__button {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.platform-selector .popular {
  flex-wrap: wrap;
  align-items: center;
  margin-left: -8px;
}

.platform-selector .radio-image-list-item {
  width: 20%;
  min-width: 130px;
}

.platform-selector .radio-image-component {
  margin-bottom: 32px;
  max-width: 900px;
}

.platform-selector .radioImageContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

.platform-selector .radioCaption {
  margin: 0 auto;
}

.platform-selector .radio-image-item-component__content {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  margin: 8px;
  border: 1px solid #eff2f4;
}

.platform-selector .radio-image-item-component__content img {
  max-width: 100px;
  margin-top: -16px;
}

.popular-platforms-selector {
  margin-top: 24px;
}

.platform-img {
  height: 40px;
}

.tutorial-container {
  width: 100%;
}

@media (max-width: 1150px) {
  .tutorial-container {
    order: 2;
  }
}

.shopify-promo-wrap__banner {
  background: #FFE5B3;
  min-height: 248px;
  height: 100%;
  padding: 32px 0 16px;
  display: flex;
  flex-direction: column-reverse;
}

.shopify-promo-wrap__banner-mini {
  height: 166px;
  width: 604px;
  min-height: 166px;
  padding: 8px 0 8px 32px;
  flex-direction: row;
}

.shopify-promo-wrap__banner-mini .shopify-svg-logos {
  height: 140px;
}

.shopify-promo-wrap__banner-mini .person-svg {
  height: 130px;
  margin-left: 32px;
  z-index: 10;
}

.shopify-promo-wrap__banner-mini .shopify_text {
  font-size: 14px;
  font-weight: bold;
}

@media only screen and (min-width: 992px) {
  .shopify-promo-wrap__banner {
    padding: 8px 0 8px 32px;
    flex-direction: row;
  }
}

.shopify-promo-wrap__banner__left {
  margin: 0 auto;
  max-width: 80%;
  text-align: center;
}

.shopify-promo-wrap__banner__left p {
  color: #354051;
  font-weight: 500;
  font-size: 16px;
}

@media only screen and (min-width: 992px) {
  .shopify-promo-wrap__banner__left {
    max-width: 268px;
    margin-top: 32px;
    text-align: left;
  }
}

@media only screen and (max-width: 991px) {
  .shopify-promo-wrap__banner__right {
    justify-content: center;
  }
}

@media only screen and (min-width: 992px) {
  .shopify-promo-wrap__banner__right .shopify-svg-logos {
    position: absolute;
    right: 0;
  }
}

.payment-success-banner {
  align-items: center;
  display: flex;
  position: relative;
}

.payment-success-banner .payment-success-banner__icon-container {
  background-color: rgba(54, 196, 81, 0.38);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  height: 33px;
  margin-right: 16px;
  padding: 4px;
  text-align: center;
  width: 33px;
}

.payment-success-banner .payment-success-banner__icon {
  color: #36c451;
  font-size: 1.5rem;
}

.payment-success-banner .payment-success-banner__title {
  font-size: 1.125rem;
}

.payment-success-banner .payment-success-banner__message {
  color: #55667D;
  font-size: 1rem;
}

.payment-success-banner .payment-success-banner__close {
  color: rgba(85, 102, 125, 0.5);
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.tutorial-greeting {
  padding: 8px 0;
  text-align: center;
}

@media (max-width: 1150px) {
  .tutorial-greeting {
    order: 1;
  }
}

.install-options {
  font-weight: bold;
  border-bottom: 1px solid #e0e6ea;
  padding-bottom: 32px;
  margin: 16px auto;
}

.install-options__item {
  border: 1px solid #e0e6ea;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 130px;
}

.install-options__item.active {
  border: 1px solid #3B8CFF;
  color: #3B8CFF;
  background-color: #f8f9fa;
}

.install-options__item.active .install-options__item_icon {
  color: #3B8CFF;
}

.install-options__item_icon {
  font-size: 2.4rem;
  color: #a0abbe;
}

.change-platform {
  color: #3B8CFF;
  font-weight: bold;
  cursor: pointer;
}

.all-platforms-buttons-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 900px;
  margin-left: -16px;
}

@media (max-width: 768px) {
  .all-platforms-buttons-container {
    justify-content: center;
  }
}

.all-platforms-buttons-container .platform-button {
  margin: 16px;
  color: #6b7f9a;
  border: 1px solid #a0abbe;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  padding: 8px 16px;
  min-width: 160px;
  background: #fff;
}

.all-platforms-buttons-container .platform-button:hover {
  border: 1px solid #36c451;
}

.social-share-button {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  color: #fff;
  outline: none;
  border: none;
  font-size: 1.5rem;
}

.social-share-button:hover {
  opacity: 0.8;
}

.social-share-button.facebook {
  background-color: #3B5998;
}

.social-share-button.twitter {
  background-color: #00ADED;
}

.social-share-button.linkedin {
  background-color: #0077B5;
}

.success-section {
  height: 370px;
  border: 1px solid #E0E6EA;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

@media (min-width: 768px) {
  .success-section {
    background: url("https://www.powrcdn.com/ab_images/install_flow/wavy_bg.png") no-repeat left center/contain;
  }
}

.tutorial-back-button {
  font-size: 1.5rem;
}

.powrreact-radio-image-component .feature-blocker {
  cursor: pointer;
}

.powrreact-radio-image-component .powrRadioImage {
  list-style-type: none;
  display: flex;
}

.powrreact-radio-image-component .powrRadioImage__content {
  cursor: pointer;
  margin-right: 16px;
}

.powrreact-radio-image-component .opinionSelect,
.powrreact-radio-image-component .reviewSelect,
.powrreact-radio-image-component .helpSelect {
  justify-content: center;
}

.powrreact-radio-image-component .radio-image-list {
  list-style-type: none;
  display: flex;
  flex-flow: row wrap;
}

.powrreact-radio-image-component svg:not(.svg-skip-hover-css).is-active {
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
}

.powrreact-radio-image-component svg:not(.svg-skip-hover-css).is-active path {
  fill: #3B8CFF;
}

.powrreact-radio-image-component svg:not(.svg-skip-hover-css).is-active rect {
  fill: #3B8CFF;
}

[data-qa*="GradientOrientation"] .radioImageContainer {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 120px;
  background-color: #FFFFFF;
}

[data-qa*="GradientOrientation"] .radioImageContainer .radioCaption {
  margin: 0;
  line-height: 0.7;
  font-size: 16px;
}

[data-qa*="GradientOrientation"] .radioImageContainer img {
  width: 75%;
}

[data-qa*="GradientOrientation"] .radioImageContainer svg {
  width: 40px;
  height: 40px;
}

[data-qa*="GradientOrientation"] .radioImageContainer.is-active {
  color: #3B8CFF;
}

[data-qa*="GradientOrientation"] .radioImageContainer.is-active svg path {
  fill: #3B8CFF;
}

[data-qa*="GradientOrientation"] .radioImageContainer.is-active svg rect {
  fill: #3B8CFF;
}

.feedback-container {
  height: 0px;
}

.feedback-container .feedback-container__close-icon {
  display: block;
  z-index: 1032;
  position: absolute;
  left: 94%;
}

.feedback-container .feedback-container__fade-entered {
  position: absolute;
  margin: 0;
  z-index: 1031;
  width: 100%;
  border: none;
  height: 100%;
}

.feedback-container .feedback-container__fade-entered h4 {
  margin: 64px 0;
  padding-top: 32px;
}

.feedback-container .feedback-container__fade-entered .powrRadioImage {
  justify-content: space-evenly;
}

.feedback-container .feedback-container__fade-entered .powrRadioImage .radioImageContainer {
  border: 2px solid transparent;
  padding: 4px;
  cursor: pointer;
}

.feedback-container .feedback-container__fade-entered .powrRadioImage .radioImageContainer img {
  width: 90px;
  margin: 0;
}

.feedback-container .feedback-container__fade-entered .powrRadioImage .radioImageContainer:hover {
  border-color: #36c451;
}

.give-feedback-container .review__select {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.give-feedback-container .review__select__sidebar {
  padding: 0 26px 36px 0;
}

.give-feedback-container a.site-link {
  margin-right: 8px;
  color: #3B8CFF;
  text-decoration: underline;
}

.give-feedback-container .opinionSelect,
.give-feedback-container .reviewSelect {
  display: flex;
  align-items: center;
  justify-content: center;
}

.give-feedback-container .askForReview {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-bottom: 1px solid #e0e6ea;
  max-width: 80%;
  margin-bottom: 32px;
}

.give-feedback-container .review-star-icon {
  width: 240px;
  cursor: pointer;
}

.give-feedback-container .radioImageContainer {
  margin-right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.give-feedback-container .radioImage {
  margin-bottom: 8px;
  height: 100px;
  width: 100px;
}

.give-feedback-container .radio-image-component {
  margin-top: 32px;
}

.give-feedback-container .radio-image-item-component {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 160px;
  width: 160px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  margin: 16px 64px;
  padding: 16px;
  border: 1px solid  transparent;
  cursor: pointer;
}

@media (max-width: 900px) {
  .give-feedback-container .radio-image-item-component {
    margin: 8px;
  }
}

.give-feedback-container .radio-image-item-component:hover {
  border-color: #36c451;
}

.give-feedback-container .radio-image-item-component:hover .radioImageContainer {
  border-color: transparent;
}

.close-icon {
  position: relative;
  z-index: 1;
  display: none;
}

.template-review {
  display: grid;
  grid-template-columns: minmax(min-content, 416px);
  justify-content: center;
}

.template-review__title {
  font-family: Gordita Medium, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 24px;
  text-align: center;
  color: #354051;
}

.template-review__content {
  display: grid;
  row-gap: 16px;
  grid-template-areas: "subtitle" "buttons" "link";
}

.template-review__subtitle {
  grid-area: subtitle;
  font-family: Gordita, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  color: #55667D;
  margin-top: 6px;
  margin-bottom: 0;
}

.template-review__buttons {
  column-gap: 22px;
  row-gap: 12px;
  grid-area: buttons;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(197px, 1fr));
}

.template-review__link {
  grid-area: link;
  padding: 8px 20px;
  font-family: Gordita Medium, sans-serif;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  background-color: #3B8CFF;
  color: white !important;
}

.template-review__callout {
  background-color: #E9EFFB;
  width: 170px;
  position: absolute;
  left: 16px;
  top: 16px;
  text-align: left;
}

button.template-review__review-text,
button.template-review__link {
  padding: 8px 20px;
  white-space: pre-wrap;
  font-family: Gordita Medium, sans-serif;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  color: #3B8CFF;
}

button.template-review__review-text.button-primary-outline,
.topbar-nav .nav-links-group li button.template-review__review-text.pricing-nav-tab__business-banner-learn-more {
  border-color: #3B8CFF;
  color: #3B8CFF;
}

.emoji-review__options {
  display: flex;
  flex-direction: row;
  column-gap: 24px;
  align-items: center;
}

.emoji-review {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.opinion-many {
  display: grid;
  grid-template-columns: minmax(min-content, 416px);
  justify-content: center;
}

.opinion-many__sidebar {
  padding: 0 16px 0 16px;
}

.opinion-many__title {
  font-family: "Gordita Medium", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: #354051;
}

.opinion-many__title.opinion-many__unselected {
  font-family: 'Gordita';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: #55667D;
}

.opinion-many__subtitle {
  grid-area: subtitle;
  font-family: "Gordita", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 19px;
  color: #55667D;
  margin-top: 8px;
  margin-bottom: 16px;
}

.opinion-many__emojis-container {
  display: flex;
  justify-content: center;
}

.opinion-many__emoji {
  margin: 4px;
  height: 48px;
  width: 48px;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #EFF2F4;
}

.opinion-many__emoji-publish {
  background: #f8f9fa;
  background-repeat: no-repeat;
  background-position: center;
}

.opinion-many__emoji-modal {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.04);
  background: #FFFFFF;
  background-repeat: no-repeat;
  background-position: center;
}

.opinion-many__angry2,
.opinion-many__angry2-disabled {
  background-image: url("https://www.powrcdn.com/radioImages/reviews/review-angry-red.png");
}

.opinion-many__angry2:hover,
.opinion-many__angry2-selected {
  background-image: url("https://www.powrcdn.com/radioImages/reviews/review-angry-red.png");
  border: 1px solid #FD5A47;
}

.opinion-many__meh2,
.opinion-many__meh2-disabled {
  background-image: url("https://www.powrcdn.com/radioImages/reviews/review-meh-yellow.png");
}

.opinion-many__meh2:hover,
.opinion-many__meh2-selected {
  background-image: url("https://www.powrcdn.com/radioImages/reviews/review-meh-yellow.png");
  border: 1px solid #FFA800;
}

.opinion-many__grin2,
.opinion-many__grin2-disabled {
  background-image: url("https://www.powrcdn.com/radioImages/reviews/review-grin-green.png");
}

.opinion-many__grin2:hover,
.opinion-many__grin2-selected {
  background-image: url("https://www.powrcdn.com/radioImages/reviews/review-grin-green.png");
  border: 1px solid #36c451;
}

.opinion-many__success {
  height: 39px;
  width: 39px;
  background-image: url("https://www.powrcdn.com/radioImages/reviews/review-success.png");
}

.opinion-many__buttons-container {
  display: flex;
  justify-content: flex-start;
}

.opinion-many__buttons {
  width: 99px;
  height: 37px;
  font-size: 14px;
  font-weight: 500;
}

.opinion-many__cancel_btn {
  border: none;
}

.opinion-many__textarea {
  height: 92px;
  overflow: hidden;
  resize: none;
}

.opinion-many__textarea.invalid {
  border: 1px solid #d04239;
}

.opinion-many__warning-msg {
  font-family: "Gordita", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  color: #d04239;
  margin-top: 4px;
  text-align: left;
}

.ReactModal__Content.react-modal-review {
  background: none !important;
  box-shadow: none !important;
}

.ReactModal__Content.react-modal-review .react-modal-close {
  margin-right: 30px;
  margin-top: 16px;
  z-index: 1;
}

.grin-modal-buttons {
  display: flex;
  margin-top: 32px;
  justify-content: center;
  gap: 16px;
}

.grin-modal-buttons &gt; div &gt; div {
  padding: 0 !important;
}

.rewards-container {
  width: 100%;
}

.rewards-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  width: 80%;
  margin: auto;
}

@media (max-width: 600px) {
  .rewards-section {
    width: 100%;
  }
}

.unique-link-container {
  max-width: 900px;
  width: 100%;
}

.rewards-giftbox {
  width: 400px;
}

.rewards-link-label {
  align-self: flex-start;
  font-size: 1.2rem;
  color: #a0abbe;
  margin-top: 32px;
}

.shareURL {
  font-size: 1.6rem;
  width: 100%;
  height: 80px;
}

@media (max-width: 600px) {
  .shareURL {
    font-size: 1rem;
  }
}

.share-button {
  width: 30%;
}

@media (max-width: 600px) {
  .share-button {
    width: 100%;
    margin: 8px 0;
  }
}

.rewards-share-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #fff;
  width: 100%;
  height: 92px;
}

@media (max-width: 600px) {
  .rewards-share-buttons {
    height: auto;
  }
}

.rewards-share-buttons .button {
  height: 60px;
  width: 100%;
  font-size: 1.4rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

@media (max-width: 600px) {
  .rewards-share-buttons .button {
    margin: 8px 0;
  }
}

.rewards-share-buttons .icon-holder {
  width: 50px;
  border-right: 1px solid #eef5ff;
  padding-right: 16px;
  margin-right: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
}

.rewards-share-buttons .button-text-holder {
  display: flex;
  justify-content: center;
}

.rewards-share-buttons .button-primary-outline,
.rewards-share-buttons .topbar-nav .nav-links-group li .pricing-nav-tab__business-banner-learn-more,
.topbar-nav .nav-links-group li .rewards-share-buttons .pricing-nav-tab__business-banner-learn-more {
  color: #3B8CFF;
}

.rewards-link {
  color: #3B8CFF;
  font-size: 0.8rem;
  margin-top: 16px;
}

.rewards-link a {
  color: inherit;
}

.is-highlighted {
  color: #3B8CFF;
}

.publish-uber-panel {
  position: relative;
  margin-bottom: 0;
  width: 100%;
  z-index: 3;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-height: 100vh;
  overflow-y: auto;
}

.publish-uber-panel .save-success-notification-banner {
  max-width: 1600px;
  text-align: center;
  width: 100%;
  padding: 0 8px;
  margin-bottom: 32px;
}

.publish-uber-panel .save-success-notification-banner .publish-success-icon {
  font-size: 1.5rem;
  vertical-align: bottom;
}

.firefox-scroll-hack {
  position: relative;
  min-height: 100px;
  border: 1px solid transparent;
}

.publish-uber-panel__container {
  background-color: #fff;
  width: 100%;
  max-width: 1600px;
  min-width: 320px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  padding: 32px;
  padding-bottom: 64px;
  margin-bottom: 100px;
}

@media (max-width: 1150px) {
  .publish-uber-panel__container {
    margin-top: 16px;
    margin-bottom: 150px;
  }
}

@media (max-width: 600px) {
  .publish-uber-panel__container {
    padding-left: 4px;
    padding-right: 4px;
  }
}

.price-table {
  height: 100%;
}

.select-plan-container.publish-uber-panel__container {
  min-height: initial;
}

@media (max-width: 900px) {
  .select-plan-container.publish-uber-panel__container {
    width: 100%;
    margin-bottom: 150px;
  }
}

.select-plan-container.publish-uber-panel__container .preloader {
  top: 20%;
}

@media (max-width: 600px) {
  .select-plan-container.publish-uber-panel__container {
    padding-top: 0;
  }
}

.fal.publish-uber-panel__close {
  top: 16px;
  right: 32px;
  position: fixed;
  display: flex;
  justify-content: center;
}

.powrreact-radio-image-component .feature-blocker {
  cursor: pointer;
}

.powrreact-radio-image-component .powrRadioImage {
  list-style-type: none;
  display: flex;
}

.powrreact-radio-image-component .powrRadioImage__content {
  cursor: pointer;
  margin-right: 16px;
}

.powrreact-radio-image-component .opinionSelect,
.powrreact-radio-image-component .reviewSelect,
.powrreact-radio-image-component .helpSelect {
  justify-content: center;
}

.powrreact-radio-image-component .radio-image-list {
  list-style-type: none;
  display: flex;
  flex-flow: row wrap;
}

.powrreact-radio-image-component svg:not(.svg-skip-hover-css).is-active {
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
}

.powrreact-radio-image-component svg:not(.svg-skip-hover-css).is-active path {
  fill: #3B8CFF;
}

.powrreact-radio-image-component svg:not(.svg-skip-hover-css).is-active rect {
  fill: #3B8CFF;
}

[data-qa*="GradientOrientation"] .radioImageContainer {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 120px;
  background-color: #FFFFFF;
}

[data-qa*="GradientOrientation"] .radioImageContainer .radioCaption {
  margin: 0;
  line-height: 0.7;
  font-size: 16px;
}

[data-qa*="GradientOrientation"] .radioImageContainer img {
  width: 75%;
}

[data-qa*="GradientOrientation"] .radioImageContainer svg {
  width: 40px;
  height: 40px;
}

[data-qa*="GradientOrientation"] .radioImageContainer.is-active {
  color: #3B8CFF;
}

[data-qa*="GradientOrientation"] .radioImageContainer.is-active svg path {
  fill: #3B8CFF;
}

[data-qa*="GradientOrientation"] .radioImageContainer.is-active svg rect {
  fill: #3B8CFF;
}

.platform-select-dropdown {
  margin-bottom: 15px;
  position: relative;
}

.platform-select-dropdown .dropdown-arrow {
  color: #55667D;
  font-size: 1.3rem;
  position: absolute;
  right: 10px;
  top: 10px;
}

.platform-select-dropdown.open .platform-select-dropdown-btn {
  background-color: #eef5ff;
}

.platform-select-dropdown-btn {
  background: transparent;
  border: 1px solid #bec6ca;
  border-radius: 4px;
  padding: 10px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  width: 100%;
  z-index: 1;
}

.platform-container {
  border: none;
  -webkit-box-shadow: 0 0 6px -2px #a0abbe;
  -moz-box-shadow: 0 0 6px -2px #a0abbe;
  box-shadow: 0 0 6px -2px #a0abbe;
  padding: 10px;
  width: 100%;
}

.platform-container .dropdown-divider {
  background-color: #ededed;
  height: 1px;
  margin: 20px 0;
  width: 100%;
}

.platform-container .platforms-list {
  margin: 15px 0;
  padding: 0;
}

.platform-container .platforms-list .platforms-list-item {
  box-sizing: border-box;
  display: inline-block;
  text-align: center;
  width: 32%;
}

.platform-container .platforms-list .platforms-list-item .dropdown-item {
  border-radius: 4px;
  display: block;
  height: 100%;
  padding: 10px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  width: 100%;
}

.platform-container .platforms-list .platforms-list-item .dropdown-item:hover {
  background-color: #eef5ff;
}

.platform-container .platforms-list .platforms-list-item.popular {
  font-size: 1rem;
}

.platform-container .platforms-list .platforms-list-item.popular .dropdown-tem {
  padding: 10px;
}

.platform-container .platforms-list .platforms-list-item.all {
  font-size: 0.8rem;
}

.platform-container .platforms-list .platforms-list-item.all .dropdown-tem {
  padding: 5px;
}

.platform-container .platforms-list .platforms-list-item .platform-logo {
  display: block;
  height: 48px;
  margin: 0 auto;
  width: 48px;
}

#apps-standalone .platforms-list .platforms-list-item {
  display: inline-block;
}

@media (min-width: 768px) {
  .app-card-cta .platform-container {
    min-width: 400px;
  }
}

@media (min-width: 1200px) {
  .app-card-cta .platform-container {
    float: none;
    left: 100%;
    transform: translateY(-40%);
  }
}

@keyframes preloader-scale {
  0% {
    background-color: #3B8CFF;
    transform: scale(0.5);
  }

  50% {
    background-color: transparent;
    transform: scale(1);
  }

  100% {
    background-color: #3B8CFF;
    transform: scale(0.5);
  }
}

.preloader {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.preloader .preloader__box {
  animation: preloader-scale 2s infinite;
  border: 1px solid #3B8CFF;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  height: 10px;
  left: 0;
  position: absolute;
  transform: transformZ(0);
  width: 10px;
}

.preloader .preloader__box:nth-child(1n) {
  animation-delay: 0s;
  left: -18px;
}

.preloader .preloader__box:nth-child(2n) {
  animation-delay: 0.2s;
  left: 0;
}

.preloader .preloader__box:nth-child(3n) {
  animation-delay: 0.4s;
  left: 18px;
}

.preloader .preloader__message {
  position: absolute;
  width: 300px;
  left: -150px;
  top: 16px;
  text-align: center;
}

.preloader.inline {
  position: relative;
  transform: none;
  width: 0;
  min-height: 30px;
}

.loader {
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.loader .circle {
  background-color: #5287df;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: scale-loader 1.4s infinite ease-in-out both;
  animation: scale-loader 1.4s infinite ease-in-out both;
  vertical-align: middle;
}

.loader .small {
  width: 10px;
  height: 10px;
  opacity: .3;
}

.loader .medium {
  width: 30px;
  height: 30px;
  opacity: .7;
}

.loader .powr-logo-icon {
  fill: #5287df;
  width: 60px;
  height: 60px;
  opacity: 1;
  vertical-align: middle;
  display: inline-block;
  -webkit-animation: scale-loader 1.4s infinite ease-in-out both;
  animation: scale-loader 1.4s infinite ease-in-out both;
}

.loader .small {
  -webkit-animation-delay: -0.48s;
  animation-delay: -0.48s;
}

.loader .medium {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

@-webkit-keyframes scale-loader {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes scale-loader {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.app-search {
  margin-bottom: 32px;
}

.app-search.is-popover {
  margin-bottom: 0;
}

.app-search__input-group {
  position: relative;
}

.app-search__search-icon {
  color: #a0abbe;
  font-size: 1.125rem;
  left: 16px;
  position: absolute;
  top: 22px;
}

.app-search__search-input {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border: 1px solid #bec6ca;
  color: #354051;
  display: block;
  font-size: 1.125rem;
  padding: 16px 16px 16px 40px;
  text-indent: 5px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-search__search-input:focus {
  border-color: #3B8CFF;
  outline: none;
}

.app-search__search-input::placeholder {
  color: #a0abbe;
}

.app-search__search-input.is-popover {
  border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  -ms-border-radius: 4px 4px 0 0;
  -o-border-radius: 4px 4px 0 0;
  border-bottom: 1px solid #bec6ca;
  border-top: none;
  border-left: none;
  border-right: none;
}

.app-search--sm {
  margin-bottom: 0;
}

.app-search--sm .app-search__search-icon {
  font-size: 1rem;
  left: 8px;
  top: 10px;
}

.app-search--sm .app-search__search-input {
  font-size: 0.875rem;
  padding: 6px 8px 6px 24px;
}

.no-search-results {
  margin-top: 64px;
  text-align: center;
  width: 100%;
}

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Arrows */

.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25;
}

.slick-prev:before,
.slick-next:before {
  font-family: 'Font Awesome 5 Pro';
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: #636B75 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -20px;
}

[dir='rtl'] .slick-prev {
  right: -20px;
  left: auto;
}

.slick-prev:before {
  content: '\F053';
}

[dir='rtl'] .slick-prev:before {
  content: '\F054';
}

.slick-next {
  right: -20px;
}

[dir='rtl'] .slick-next {
  right: auto;
  left: -20px;
}

.slick-next:before {
  content: '\F054';
}

[dir='rtl'] .slick-next:before {
  content: '\F053';
}

/* Dots */

.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '\2022';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: .75;
  color: black;
}

.app-market {
  background-color: #f8f9fa;
  display: flex;
  flex-flow: row wrap;
  margin: 0 auto;
  max-width: 2000px;
  padding: 32px 0;
  width: 100%;
}

.app-market__sidebar {
  display: none;
}

.app-market__main-view {
  padding: 0 32px;
  width: 100%;
}

@media (min-width: 1200px) {
  .app-market__sidebar {
    display: flex;
    justify-content: center;
    width: 15%;
  }

  .app-market__main-view {
    width: 85%;
    margin: 0 auto;
  }

  .app-market__pricing-view {
    width: 100%;
  }
}

.app-market-nav {
  position: relative;
}

.app-market-nav__list-item {
  color: #354051;
  cursor: pointer;
  font-size: 1rem;
  margin-bottom: 16px;
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
}

.app-market-nav__list-item:hover {
  color: #3B8CFF;
}

.app-market-nav__list-item.is-active {
  color: #3B8CFF;
  font-weight: bold;
}

.app-market-nav__category-icon {
  margin-right: 8px;
  width: 20px;
}

.app-market-nav__category-icon--all {
  color: #a0abbe;
}

.app-market-nav__category-icon--popular {
  color: #3B8CFF;
}

.app-market-nav__category-icon--boost-conversions {
  color: #3ec28f;
}

.app-market-nav__category-icon--get-more-followers {
  color: #EC407A;
}

.app-market-nav__category-icon--collect-information {
  color: #4DD0E1;
}

.app-market-nav__category-icon--engage-visitors {
  color: #9575CD;
}

.app-market-nav__category-icon--support-customers {
  color: #F79256;
}

.app-market-nav__title {
  color: #a0abbe;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: bold;
}

.app-market-category-dropdown {
  margin-bottom: 16px;
}

.app-market-category-dropdown__label {
  color: #a0abbe;
  font-size: 1rem;
  font-weight: bold;
}

.app-market-category-dropdown__select {
  background-color: #FFFFFF;
  border: 1px solid #bec6ca;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  color: #354051;
  height: 50px;
  width: 100%;
}

@media (min-width: 1200px) {
  .app-market-category-dropdown {
    display: none;
  }
}

.app-category {
  background-color: transparent;
  box-sizing: border-box;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  margin-bottom: 32px;
  position: relative;
  width: 100%;
}

.app-category__category-container {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-left: 2px solid transparent;
  margin-bottom: 32px;
}

.app-category__header {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  display: block;
  padding: 16px 16px 0 16px;
  position: relative;
  width: 100%;
}

.app-category__header--popular .app-category__category-icon {
  color: #3B8CFF;
}

.app-category__header--boost-conversions .app-category__category-icon {
  color: #3ec28f;
}

.app-category__header--get-more-followers .app-category__category-icon {
  color: #EC407A;
}

.app-category__header--collect-information .app-category__category-icon {
  color: #4DD0E1;
}

.app-category__header--engage-visitors .app-category__category-icon {
  color: #9575CD;
}

.app-category__header--support-customers .app-category__category-icon {
  color: #F79256;
}

.app-category__category-icon {
  font-size: 2rem;
  margin-right: 16px;
}

.app-category__category-icon i {
  vertical-align: top;
}

.app-category__title {
  align-items: center;
  display: flex;
  margin: 0;
}

.app-category__description {
  margin-bottom: 0;
  margin-top: 8px;
}

.app-category__title-desc-container {
  margin-bottom: 8px;
  min-width: 300px;
  width: 100%;
}

.app-category__view-all-btn-container {
  min-width: 300px;
  width: 100%;
}

.app-category__body {
  display: flex;
  border-radius: 0 0 4px 4px;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  -ms-border-radius: 0 0 4px 4px;
  -o-border-radius: 0 0 4px 4px;
  flex-wrap: wrap;
}

@media screen and (min-width: 992px) {
  .app-category__header {
    align-items: flex-start;
    display: flex;
  }

  .app-category__title-desc-container {
    width: 75%;
  }

  .app-category__view-all-btn-container {
    align-self: flex-start;
    display: flex;
    justify-content: flex-end;
    width: 25%;
  }
}

.app-card {
  background-color: #FFFFFF;
  display: block;
  margin: 1%;
  min-width: 200px;
  overflow: hidden;
  padding: 16px;
  position: relative;
  width: 100%;
}

.app-card:hover {
  box-shadow: 0 0 10px 1px rgba(160, 171, 190, 0.5);
}

.app-card:hover .app-card__icon {
  transform: translateY(-150%);
}

.app-card:hover .app-card__action-items {
  transform: translateY(-15px);
}

.app-card:hover .app-card__title-desc-container {
  transform: translateY(-50px);
}

.app-card__title-desc-container {
  background-color: #FFFFFF;
  padding-top: 20px;
  text-align: center;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  width: 100%;
}

.app-card__title {
  color: #354051;
  font-size: 1rem;
  font-family: "Gordita Bold", sans-serif;
  margin-bottom: 8px;
}

.app-card__icon {
  background: #3B8CFF;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #61b9ff, #3B8CFF);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #61b9ff, #3B8CFF);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  color: #FFFFFF;
  margin: 0 auto;
  text-align: center;
  -webkit-text-stroke: 1px;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  width: 60px;
  height: 60px;
}

.app-card__description {
  font-size: 0.875rem;
  line-height: 20px;
}

.app-card__action-items {
  bottom: 0;
  left: 0;
  transform: translateY(200%);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  position: absolute;
  right: 0;
  text-align: center;
  width: 100%;
}

.app-card__link {
  font-weight: bold;
  letter-spacing: 0.5px;
}

@media (min-width: 768px) {
  .app-card {
    width: 48%;
  }
}

@media (min-width: 1024px) {
  .app-card {
    width: 31.33333333333333%;
  }
}

@media (min-width: 1024px) and (orientation: landscape) {
  .app-card {
    width: 23%;
  }
}

@media (min-width: 1200px) {
  .app-card {
    width: 23%;
  }
}

.app-details-section {
  margin-bottom: 32px;
  width: 100%;
}

.details-view-header {
  align-items: center;
  display: flex;
  padding: 32px 0;
}

.details-view-header__app-name-container {
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.details-view-header__app-icon-container {
  margin-right: 16px;
}

.details-view-header__app-icon {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  color: #FFFFFF;
  font-size: 4rem;
  text-align: center;
  -webkit-text-stroke: 1px;
  width: 100px;
  min-width: 60px;
  min-height: 60px;
}

.details-view-content__app-screenshots {
  background-color: transparent;
  width: 100%;
}

.details-view-content__app-long-description {
  margin-top: 32px;
}

@media (min-width: 576px) {
  .details-view-header__app-name-container {
    display: flex;
  }

  .details-view-header__cta &gt; button {
    width: auto;
  }
}

@media (min-width: 1200px) {
  .app-details-section {
    margin-left: auto;
    margin-right: auto;
    width: 75%;
  }
}

#static-embed {
  background-color: #f8f9fa;
}

#static-embed .embed-code-snippet {
  margin: 0 auto;
  max-width: 1200px;
  min-width: 300px;
  width: 100%;
}

#static-embed .back-button {
  display: inline-block;
}

#static-embed p {
  color: #55667D;
}

#static-embed h3 {
  color: #354051;
}

/*! purgecss start ignore */

.sprite {
  background: url("//www.powrcdn.com/brand-logos/brandsprite11.png") no-repeat top left;
  width: 70px;
  height: 70px;
}

.sprite.brand-3dcart {
  background-position: 0 0;
}

.sprite.brand-bigcartel {
  background-position: -80px 0;
}

.sprite.brand-bigcommerce {
  background-position: -160px 0;
}

.sprite.brand-blogger {
  background-position: -240px 0;
}

.sprite.brand-blogspot {
  background-position: -240px 0;
}

.sprite.brand-drupal {
  background-position: -320px 0;
}

.sprite.brand-facebook {
  background-position: -400px 0;
}

.sprite.brand-google {
  background-position: -480px 0;
}

.sprite.brand-html {
  background-position: -560px 0;
}

.sprite.brand-ibuildapp {
  background-position: -640px 0;
}

.sprite.brand-iframe {
  background-position: -720px 0;
}

.sprite.brand-jimdo {
  background-position: -800px 0;
}

.sprite.brand-joomla {
  background-position: -880px 0;
}

.sprite.brand-jumpseller {
  background-position: -960px 0;
}

.sprite.brand-moonfruit {
  background-position: -1040px 0;
}

.sprite.brand-mozello {
  background-position: -1120px 0;
}

.sprite.brand-muse {
  background-position: -1200px 0;
}

.sprite.brand-ning {
  background-position: -1280px 0;
}

.sprite.brand-godaddy {
  background-position: -1360px 0;
}

.sprite.brand-oneandone {
  background-position: -1440px 0;
}

.sprite.brand-shopify {
  background-position: -1520px 0;
}

.sprite.brand-spacecraft {
  background-position: -1600px 0;
}

.sprite.brand-squarespace {
  background-position: -1680px 0;
}

.sprite.brand-tumblr {
  background-position: -1760px 0;
}

.sprite.brand-volusion {
  background-position: -1840px 0;
}

.sprite.brand-web {
  background-position: -1920px 0;
}

.sprite.brand-webs {
  background-position: -2000px 0;
}

.sprite.brand-webydo {
  background-position: -2080px 0;
}

.sprite.brand-weebly {
  background-position: -2160px 0;
}

.sprite.brand-wix {
  background-position: -2240px 0;
}

.sprite.brand-wordpress {
  background-position: -2320px 0;
}

.sprite.brand-yola {
  background-position: -2400px 0;
}

.sprite.brand-duda {
  background-position: -2470px 0;
}

.sprite.brand-imcreator {
  background-position: -2540px 0;
}

.sprite.brand-lightcms {
  background-position: -2846px 0;
}

.sprite.brand-showit {
  background-position: -2925px 0;
}

.sprite.brand-webstarts {
  background-position: -2610px 0;
}

.sprite.brand-strikingly {
  background-position: -2680px 0;
}

.sprite.brand-material {
  background-position: -2760px 0;
}

.sprite.brand-pulsecms {
  background-position: -3000px 0;
}

.sprite.brand-lightspeed {
  background-position: -3068px 0;
}

.sprite.brand-seoshop {
  background-position: -3140px 0;
}

.sprite.brand-bookmark {
  background-position: -3220px 0;
}

.sprite.brand-magento {
  background-position: -3300px 0;
}

.sprite.brand-pagecloud {
  background-position: -3380px 0;
}

.sprite.brand-webself {
  background-position: -3460px 0;
}

.sprite.brand-b12 {
  background-position: -3540px 0;
}

.sprite.brand-americommerce {
  background-position: -3617px 0;
}

.sprite.brand-zoho {
  background-position: -3694px 0;
}

.sprite.brand-cloudflare {
  background-position: -3776px 0;
}

.sprite.brand-ecwid {
  background-image: url("https://www.powrcdn.com/integrations/ecwid.svg");
  background-size: contain;
}

/*! purgecss end ignore */

.recommened-apps-section h1 {
  font-size: 2.5rem;
}

.recommened-apps-section .app-market {
  background-color: #fff;
}

.recommened-apps-section .app-category__category-icon .sprite {
  transform: scale(0.55);
  transform-origin: top left;
  margin-right: -35px;
  margin-bottom: -35px;
}

.standard-tutorial__steps {
  list-style: none;
  counter-reset: steps-counter;
  padding-left: 0;
}

.standard-tutorial__step {
  counter-increment: steps-counter;
  margin-bottom: 32px;
  position: relative;
}

.standard-tutorial__step::before {
  content: counter(steps-counter) ".";
  font-size: 1.125rem;
  position: absolute;
  top: -3px;
}

.standard-tutorial__step_content {
  width: 100%;
}

.standard-tutorial__step_title {
  margin: 0 0 8px 24px;
}

.standard-tutorial__step_show_me_icon {
  color: #636b75;
  margin-right: 4px;
}

.standard-tutorial__step_embed_code_wrapper {
  margin-bottom: 16px;
}

.standard-tutorial__step_embed_code_wrapper .embed-code {
  text-align: left;
}

.standard-tutorial__step_embed_code_wrapper .embed-code button {
  margin: 0;
  margin-top: 16px;
}

.standard-tutorial__step_embed_code_wrapper .embed-code textarea {
  margin-top: 16px;
}

.standard-tutorial__switch_option {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  border: 1px solid #E0E6EA;
  cursor: pointer;
  padding: 16px;
  text-align: center;
  color: #354051;
  font-size: 1.125rem;
  font-weight: bold;
  outline: none;
  margin-right: 16px;
  margin-top: 8px;
}

.standard-tutorial__switch_option:hover,
.standard-tutorial__switch_option.active {
  border-color: #3B8CFF;
  background-color: #f8f9fa;
  color: #3B8CFF;
}

.standard-tutorial__feedback {
  width: 800px;
  height: 90px;
  border: 0px;
  position: absolute;
  top: -40px;
  left: -160px;
}

.standard-tutorial__feedback-container {
  position: relative;
  margin-right: 200px;
}

.standard-tutorial__feedback-container .was-this-helpful {
  color: #6b7f9a;
  font-size: 0.875rem;
}

.showme-screen-modal {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  overflow: auto;
}

.showme-screen-modal .modal-description {
  margin-bottom: 16px;
}

.showme-screen-modal .modal-video {
  min-height: 400px;
  width: 100%;
}

.showme-screen-modal .showme-screen-modal-content.ReactModal__Content.ReactModal__Content--after-open {
  max-width: 1000px;
  min-width: 300px;
  width: 90%;
  margin: 100px auto;
}

.showme-screen-modal .modal-body .preloader {
  position: relative;
  display: table;
}

.showme-screen-modal .over-powr-loader {
  z-index: 1;
  position: relative;
}

.clientInviteEmail,
.clientInviteNote {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  color: #a0abbe;
  box-shadow: none;
}

.star-before-input {
  position: absolute;
  left: -16px;
  top: 8px;
}

.no-collaborators .fa-users {
  color: #e0e6ea;
  font-size: 2.75rem;
}

.remove-collaborator {
  color: #EB8281;
}

.powrone-ad-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  height: auto;
  padding: 16px 31px 16px 24px;
  border-radius: 4px;
  cursor: pointer;
}

.powrone-ad-banner__small {
  background: linear-gradient(120deg, transparent 0 80%, #142A60 calc(80% + 1px) 100%), linear-gradient(40deg, #FFD480 0 68%, rgba(255, 212, 128, 0.8) 68% 100%);
  min-width: 440px;
  width: fit-content;
}

@media (max-width: 460px) {
  .powrone-ad-banner__small {
    min-width: auto;
    background: linear-gradient(145deg, transparent 0 66%, #142A60 calc(66% + 1px) 100%), linear-gradient(40deg, #FFD480 0 66%, rgba(255, 212, 128, 0.8) 66% 10%);
  }
}

.powrone-ad-banner__large {
  background: linear-gradient(145deg, transparent 0 66%, #142A60 calc(66% + 1px) 100%), linear-gradient(40deg, #FFD480 0 66%, rgba(255, 212, 128, 0.8) 66% 10%);
  width: 100%;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .powrone-ad-banner__large {
    min-height: 150px;
  }
}

.powrone-ad-banner__wrapper {
  display: flex;
  align-items: center;
}

.powrone-ad-banner__wrapper__small {
  gap: 8px;
}

.powrone-ad-banner__wrapper__large {
  gap: 8px;
}

@media (min-width: 768px) {
  .powrone-ad-banner__wrapper__large {
    gap: 32px;
  }
}

.powrone-ad-banner__text {
  color: #142A60;
}

.powrone-ad-banner__text :first-child {
  color: #142A60 !important;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  margin: 0 !important;
}

.powrone-ad-banner__text :last-child {
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  margin-top: 8px;
}

@media (max-width: 767px) {
  .powrone-ad-banner__text :last-child {
    display: none;
  }
}

.powrone-ad-banner__text__large {
  max-width: 50%;
}

.powrone-ad-banner__icon__small {
  width: 24px;
}

.powrone-ad-banner__icon__large {
  width: 56px;
}

@media (max-width: 767px) {
  .powrone-ad-banner__icon__large {
    width: 24px;
  }
}

.powrone-ad-banner__arrow {
  color: #FFD480;
  width: 14px;
  font-weight: 500 !important;
}

.powrone-ad-banner__arrow__large {
  display: none !important;
}

.powrone-ad-banner__image__large {
  position: absolute;
  display: none;
}

@media (min-width: 768px) {
  .powrone-ad-banner__image__large {
    display: block;
    bottom: -48px;
    right: 20px;
  }
}

.powrone-ad-banner__button__close {
  color: white;
  position: absolute;
  top: 5px;
  right: 10px;
}

.powrone-ad-banner.hid {
  display: none !important;
}

#publish-navigation-container {
  z-index: 1031;
  position: relative;
}

@media (max-width: 600px) {
  #publish-navigation-container {
    position: absolute;
    width: 100%;
  }
}

#publish-navigation-container .publish-navigation {
  z-index: 1030;
  position: fixed;
  width: 100%;
  bottom: 0px;
  background-color: #fff;
  border-top: 1px solid #e0e6ea;
  box-shadow: 0 -2px 1px -2px #a0abbe;
  -webkit-box-shadow: 0 -2px 1px -2px #a0abbe;
  -moz-box-shadow: 0 -2px 1px -2px #a0abbe;
  -ms-box-shadow: 0 -2px 1px -2px #a0abbe;
  -o-box-shadow: 0 -2px 1px -2px #a0abbe;
  height: 100px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 1150px) {
  #publish-navigation-container .publish-navigation {
    height: 150px;
    justify-content: center;
  }
}

#publish-navigation-container .publish-navigation__back-button {
  padding: 8px 32px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  font-size: 1rem;
  margin-left: 64px;
  height: 50px;
}

@media (max-width: 1150px) {
  #publish-navigation-container .publish-navigation__back-button {
    margin: 0 4px;
    width: 90%;
    padding: 0;
    height: 40px;
    font-size: 0.8rem;
  }
}

#publish-navigation-container .publish-navigation__advance-button {
  padding: 8px 32px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  font-size: 1rem;
  margin-right: 64px;
  height: 50px;
}

@media (max-width: 1150px) {
  #publish-navigation-container .publish-navigation__advance-button {
    margin: 0 8px;
    width: 90%;
    padding: 0;
    height: 40px;
    font-size: 0.8rem;
  }
}

#publish-navigation-container .publish-navigation__advance-text {
  margin-right: 64px;
  cursor: pointer;
  color: #3B8CFF;
}

@media (max-width: 1150px) {
  #publish-navigation-container .publish-navigation__advance-text {
    font-size: 0.8rem;
    margin-right: 8px;
  }
}

#publish-navigation-container .disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

@media (max-width: 600px) {
  #publish-navigation-container .hide-mobile {
    display: none;
  }
}

#publish-navigation-container .publish-navigation__nav-point {
  font-size: .8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 130px;
  font-size: 0.8rem;
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
}

#publish-navigation-container .publish-navigation__nav-point:hover {
  color: #3B8CFF;
}

#publish-navigation-container .publish-navigation__nav-point .publish-navigation__step-label {
  height: 20px;
  margin-bottom: 8px;
}

#publish-navigation-container .publish-navigation__nav-point .publish-navigation__icon-bg {
  font-size: 0;
}

#publish-navigation-container .publish-navigation__nav-point .publish-navigation__nav-point-icon:not(.inner-dot) {
  font-size: 1.2rem;
}

#publish-navigation-container .publish-navigation__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1150px) {
  #publish-navigation-container .publish-navigation__center {
    order: 0;
  }
}

@media (max-width: 1150px) {
  #publish-navigation-container .publish-navigation__center {
    margin-bottom: 16px;
  }
}

#publish-navigation-container .publish-navigation__left {
  width: 300px;
}

@media (max-width: 1150px) {
  #publish-navigation-container .publish-navigation__left {
    order: 2;
    width: 50%;
  }
}

#publish-navigation-container .publish-navigation__right {
  width: 300px;
  text-align: right;
}

@media (max-width: 1150px) {
  #publish-navigation-container .publish-navigation__right {
    order: 2;
    width: 50%;
    text-align: center;
  }
}

#publish-navigation-container .publish-navigation-meter {
  display: flex;
}

#publish-navigation-container .publish-navigation__rewards-label {
  display: flex;
}

#publish-navigation-container .publish-navigation__nav-points {
  display: flex;
  z-index: 2;
}

@media (max-width: 600px) {
  #publish-navigation-container .publish-navigation__nav-points .install {
    display: none;
  }
}

#publish-navigation-container .publish-navigation__rewards-icon {
  height: 15px;
}

#publish-navigation-container .publish-navigation__not-future {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#publish-navigation-container .publish-navigation__icon-bg {
  background-color: #fff;
  border-radius: 50%;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

#publish-navigation-container .icon-container {
  position: relative;
}

#publish-navigation-container .inner-dot {
  color: #3B8CFF;
  font-size: 6px;
  height: 7px;
  width: 5px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

#publish-navigation-container .publish-navigation__nav-point--isPast {
  color: #354051;
  cursor: pointer;
}

#publish-navigation-container .publish-navigation__nav-point--isPast .isPast-icon {
  color: #3B8CFF;
}

#publish-navigation-container .publish-navigation__nav-point--isCurrent {
  color: #3B8CFF;
  cursor: pointer;
}

#publish-navigation-container .publish-navigation__nav-point--isCurrent .publish-navigation__step-label {
  font-size: 0.9rem;
  font-weight: bold;
}

#publish-navigation-container .publish-navigation__nav-point--isCurrent .isCurrent-icon {
  color: #3B8CFF;
}

#publish-navigation-container .publish-navigation__nav-point--isFuture {
  color: #a0abbe;
  cursor: pointer;
}

#publish-navigation-container .publish-navigation__nav-point--isFuture .disabled {
  cursor: not-allowed;
}

#publish-navigation-container .publish-navigation__line-container {
  height: 2px;
  background-color: #a0abbe;
  width: 400px;
  position: relative;
  top: -11px;
  z-index: 0;
}

@media (max-width: 600px) {
  #publish-navigation-container .publish-navigation__line-container {
    width: 270px;
  }
}

#publish-navigation-container .publish-navigation__line-container .publish-navigation__line-meter {
  height: 2px;
  background-color: #3B8CFF;
  position: absolute;
  left: 0;
  z-index: 1;
}

#publish-navigation-container .publish-navigation__line-container .publish-navigation__line-meter-select_plan {
  width: 0;
}

#publish-navigation-container .publish-navigation__line-container .publish-navigation__line-meter-install {
  width: 130px;
}

#publish-navigation-container .publish-navigation__line-container .publish-navigation__line-meter-give_feedback {
  width: 270px;
}

@media (max-width: 600px) {
  #publish-navigation-container .publish-navigation__line-container .publish-navigation__line-meter-give_feedback {
    width: 130px;
  }
}

#publish-navigation-container .publish-navigation__line-container .publish-navigation__line-meter-rewards {
  width: 390px;
}

@media (max-width: 600px) {
  #publish-navigation-container .publish-navigation__line-container .publish-navigation__line-meter-rewards {
    width: 260px;
  }
}

#publish-navigation-container .publish-navigation__line-container.publish-navigation__meter-length-2 {
  width: 140px;
}

#publish-navigation-container .publish-navigation__line-container.publish-navigation__meter-length-2 .publish-navigation__line-meter-rewards {
  width: 140px;
}

#publish-navigation-container .publish-navigation__line-container.publish-navigation__meter-length-3 {
  width: 260px;
}

#publish-navigation-container .publish-navigation__line-container.publish-navigation__meter-length-3 .publish-navigation__line-meter-rewards {
  width: 260px;
}

#publish-navigation-container .publish-navigation__line-container.publish-navigation__meter-length-4 {
  width: 400px;
}

@media (max-width: 600px) {
  #publish-navigation-container .publish-navigation__line-container.publish-navigation__meter-length-4 {
    width: 260px;
  }
}

@media (max-width: 600px) {
  #publish-navigation-container .publish {
    display: none;
  }
}

#publish-navigation-container .simple-loader {
  font-size: 6rem;
  margin: 100px 50%;
  color: #e0e6ea;
}

#publish-navigation-container .publish-navigation__afterpublish-templates {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1600px;
  min-width: 320px;
}

#publish-navigation-container .publish-navigation__afterpublish-templates.with-sidenav {
  padding-left: 372px;
}

.integration-screen-container {
  z-index: 1031;
  position: relative;
  width: 100%;
  top: 0;
}

@media (max-width: 600px) {
  .integration-screen-container {
    position: absolute;
    width: 100%;
  }
}

.integration-screen-container .integrations-screen {
  background-color: #fff;
  overflow: auto;
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  bottom: 0;
  padding-bottom: 64px;
}

.integration-screen-container .integrations-screen .integrations-screen__close {
  position: fixed;
  top: 30px;
  right: 30px;
  color: #a0abbe;
  cursor: pointer;
  cursor: hand;
  font-size: 1.6rem;
}

@media (max-width: 600px) {
  .integration-screen-container .integrations-screen .integrations-screen__close {
    top: 15px;
    right: 15px;
  }
}

.integration-screen-container .integrations-screen .integrations-screen__content {
  width: 100%;
  max-width: 740px;
  margin: 100px auto 0 auto;
}

@media (max-width: 600px) {
  .integration-screen-container .integrations-screen .integrations-screen__content {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px;
  }
}

.integration-screen-container .integrations-screen .general-customer-radio-inputs input {
  margin-right: 16px;
}

.integration-screen-container .notion-integration-controls__database-container .feature-blocker-container {
  width: 40%;
  margin-bottom: 32px;
}

.integration-screen-container .integrations-screen.fading-out {
  transition: opacity 300ms;
  opacity: 0;
}

.integration-screen-container .integrations-screen__divider {
  color: #a0abbe;
  margin: 32px 0;
}

.delete {
  color: #a0abbe;
  font-size: 1.4rem;
}

.mailchimp-integration-controls,
.vcita-integration-controls,
.notion-integration-controls {
  position: relative;
}

.mailchimp-integration-controls .powrreact-select-component,
.vcita-integration-controls .powrreact-select-component,
.notion-integration-controls .powrreact-select-component {
  width: 300px;
}

@media (max-width: 600px) {
  .mailchimp-integration-controls .powrreact-select-component,
  .vcita-integration-controls .powrreact-select-component,
  .notion-integration-controls .powrreact-select-component {
    width: 180px;
  }
}

.mailchimp-integration-controls .is-disabled.button-secondary-outline:hover,
.vcita-integration-controls .is-disabled.button-secondary-outline:hover,
.notion-integration-controls .is-disabled.button-secondary-outline:hover {
  color: #fff;
}

.mailchimp-integration-controls .mailchimp-integration-controls__logo,
.mailchimp-integration-controls .vcita-integration-controls__logo,
.mailchimp-integration-controls .notion-integration-controls__logo,
.vcita-integration-controls .mailchimp-integration-controls__logo,
.vcita-integration-controls .vcita-integration-controls__logo,
.vcita-integration-controls .notion-integration-controls__logo,
.notion-integration-controls .mailchimp-integration-controls__logo,
.notion-integration-controls .vcita-integration-controls__logo,
.notion-integration-controls .notion-integration-controls__logo {
  width: 60px;
  height: 60px;
  position: absolute;
  left: -74px;
  top: -16px;
}

@media (max-width: 600px) {
  .mailchimp-integration-controls .mailchimp-integration-controls__logo,
  .mailchimp-integration-controls .vcita-integration-controls__logo,
  .mailchimp-integration-controls .notion-integration-controls__logo,
  .vcita-integration-controls .mailchimp-integration-controls__logo,
  .vcita-integration-controls .vcita-integration-controls__logo,
  .vcita-integration-controls .notion-integration-controls__logo,
  .notion-integration-controls .mailchimp-integration-controls__logo,
  .notion-integration-controls .vcita-integration-controls__logo,
  .notion-integration-controls .notion-integration-controls__logo {
    left: -60px;
  }
}

.mailchimp-integration-controls .mailchimp-integration-controls__title_tag,
.vcita-integration-controls .mailchimp-integration-controls__title_tag,
.notion-integration-controls .mailchimp-integration-controls__title_tag {
  display: flex;
  flex-direction: row;
}

.mailchimp-integration-controls .mailchimp-integration-controls__connected-tag,
.mailchimp-integration-controls .vcita-integration-controls__connected-tag,
.vcita-integration-controls .mailchimp-integration-controls__connected-tag,
.vcita-integration-controls .vcita-integration-controls__connected-tag,
.notion-integration-controls .mailchimp-integration-controls__connected-tag,
.notion-integration-controls .vcita-integration-controls__connected-tag {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  background-color: #dbf5e0;
  color: #354051;
  padding: 4px 8px;
  font-size: .8rem;
}

.mailchimp-integration-controls .mailchimp-integration-controls__not-connected-tag,
.vcita-integration-controls .mailchimp-integration-controls__not-connected-tag,
.notion-integration-controls .mailchimp-integration-controls__not-connected-tag {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  background-color: white;
  color: #354051;
  padding: 4px 8px;
  font-size: .8rem;
}

.mailchimp-integration-controls .mailchimp-integration-controls__connected-as,
.mailchimp-integration-controls .vcita-integration-controls__connected-as,
.vcita-integration-controls .mailchimp-integration-controls__connected-as,
.vcita-integration-controls .vcita-integration-controls__connected-as,
.notion-integration-controls .mailchimp-integration-controls__connected-as,
.notion-integration-controls .vcita-integration-controls__connected-as {
  color: #a0abbe;
  font-size: .8rem;
}

.mailchimp-integration-controls .mailchimp-integration-controls__bottom-button-container .generic-tooltip__bubble,
.mailchimp-integration-controls .vcita-integration-controls__bottom-button-container .generic-tooltip__bubble,
.vcita-integration-controls .mailchimp-integration-controls__bottom-button-container .generic-tooltip__bubble,
.vcita-integration-controls .vcita-integration-controls__bottom-button-container .generic-tooltip__bubble,
.notion-integration-controls .mailchimp-integration-controls__bottom-button-container .generic-tooltip__bubble,
.notion-integration-controls .vcita-integration-controls__bottom-button-container .generic-tooltip__bubble {
  margin-bottom: 10px;
}

.mailchimp-integration-controls .mailchimp-integration-controls__fields-container table,
.vcita-integration-controls .mailchimp-integration-controls__fields-container table,
.notion-integration-controls .mailchimp-integration-controls__fields-container table {
  width: 100%;
}

.mailchimp-integration-controls .mailchimp-integration-controls__fields-container th,
.vcita-integration-controls .mailchimp-integration-controls__fields-container th,
.notion-integration-controls .mailchimp-integration-controls__fields-container th {
  color: #6b7f9a;
  font-size: 0.8rem;
  font-weight: normal;
  padding-bottom: 16px;
  width: 50%;
}

.mailchimp-integration-controls .mailchimp-integration-controls__fields-container td,
.vcita-integration-controls .mailchimp-integration-controls__fields-container td,
.notion-integration-controls .mailchimp-integration-controls__fields-container td {
  color: #354051;
  padding-bottom: 16px;
}

.mailchimp-integration-controls .mailchimp-integration-controls__fields-container td .mailchimp-integration-controls__field-warning,
.vcita-integration-controls .mailchimp-integration-controls__fields-container td .mailchimp-integration-controls__field-warning,
.notion-integration-controls .mailchimp-integration-controls__fields-container td .mailchimp-integration-controls__field-warning {
  width: 300px;
  font-size: 0.8rem;
  color: #6b7f9a;
  line-height: 1.1;
  display: flex;
}

@media (max-width: 600px) {
  .mailchimp-integration-controls .mailchimp-integration-controls__fields-container td .mailchimp-integration-controls__field-warning,
  .vcita-integration-controls .mailchimp-integration-controls__fields-container td .mailchimp-integration-controls__field-warning,
  .notion-integration-controls .mailchimp-integration-controls__fields-container td .mailchimp-integration-controls__field-warning {
    width: 215px;
  }
}

.mailchimp-integration-controls .mailchimp-integration-controls__fields-container .hoverDelete .mailchimpField,
.mailchimp-integration-controls .mailchimp-integration-controls__fields-container .hoverDelete .powrField,
.mailchimp-integration-controls .mailchimp-integration-controls__fields-container .hoverDelete .powrField-status,
.vcita-integration-controls .mailchimp-integration-controls__fields-container .hoverDelete .mailchimpField,
.vcita-integration-controls .mailchimp-integration-controls__fields-container .hoverDelete .powrField,
.vcita-integration-controls .mailchimp-integration-controls__fields-container .hoverDelete .powrField-status,
.notion-integration-controls .mailchimp-integration-controls__fields-container .hoverDelete .mailchimpField,
.notion-integration-controls .mailchimp-integration-controls__fields-container .hoverDelete .powrField,
.notion-integration-controls .mailchimp-integration-controls__fields-container .hoverDelete .powrField-status {
  cursor: pointer;
  cursor: hand;
}

.mailchimp-integration-controls .mailchimp-integration-controls__fields-container .hoverDelete .fa-trash-o,
.vcita-integration-controls .mailchimp-integration-controls__fields-container .hoverDelete .fa-trash-o,
.notion-integration-controls .mailchimp-integration-controls__fields-container .hoverDelete .fa-trash-o {
  color: #a0abbe;
}

.mailchimp-integration-controls .mailchimp-integration-controls__fields-container .mailchimpField,
.vcita-integration-controls .mailchimp-integration-controls__fields-container .mailchimpField,
.notion-integration-controls .mailchimp-integration-controls__fields-container .mailchimpField {
  vertical-align: top;
  padding-top: 8px;
}

.mailchimp-integration-controls .mailchimp-integration-controls__fields-container .powrField,
.vcita-integration-controls .mailchimp-integration-controls__fields-container .powrField,
.notion-integration-controls .mailchimp-integration-controls__fields-container .powrField {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mailchimp-integration-controls .mailchimp-integration-controls__fields-container .powrField-status,
.vcita-integration-controls .mailchimp-integration-controls__fields-container .powrField-status,
.notion-integration-controls .mailchimp-integration-controls__fields-container .powrField-status {
  font-size: 1.4rem;
  padding-left: 32px;
}

@media (max-width: 600px) {
  .mailchimp-integration-controls .mailchimp-integration-controls__fields-container .powrField-status,
  .vcita-integration-controls .mailchimp-integration-controls__fields-container .powrField-status,
  .notion-integration-controls .mailchimp-integration-controls__fields-container .powrField-status {
    padding-left: 8px;
  }
}

.mailchimp-integration-controls .mailchimp-integration-controls__fields-container .powrField-requireError .Select .Select-control,
.vcita-integration-controls .mailchimp-integration-controls__fields-container .powrField-requireError .Select .Select-control,
.notion-integration-controls .mailchimp-integration-controls__fields-container .powrField-requireError .Select .Select-control {
  border-color: #EB8281;
}

.mailchimp-integration-controls .mailchimp-integration-controls__fields-container .powrField-typeWarned .Select .Select-control,
.vcita-integration-controls .mailchimp-integration-controls__fields-container .powrField-typeWarned .Select .Select-control,
.notion-integration-controls .mailchimp-integration-controls__fields-container .powrField-typeWarned .Select .Select-control {
  border-color: #FFD480;
}

.mailchimp-integration-controls .notion-integration-controls__fields-container table,
.vcita-integration-controls .notion-integration-controls__fields-container table,
.notion-integration-controls .notion-integration-controls__fields-container table {
  width: 100%;
}

.mailchimp-integration-controls .notion-integration-controls__fields-container th,
.vcita-integration-controls .notion-integration-controls__fields-container th,
.notion-integration-controls .notion-integration-controls__fields-container th {
  color: #6b7f9a;
  font-size: 0.875rem;
  font-weight: normal;
  padding-bottom: 16px;
  width: 50%;
}

.mailchimp-integration-controls .notion-integration-controls__fields-container td,
.vcita-integration-controls .notion-integration-controls__fields-container td,
.notion-integration-controls .notion-integration-controls__fields-container td {
  color: #354051;
  padding-bottom: 16px;
}

.mailchimp-integration-controls .notion-integration-controls__fields-container td .notion-integration-controls__field-warning,
.vcita-integration-controls .notion-integration-controls__fields-container td .notion-integration-controls__field-warning,
.notion-integration-controls .notion-integration-controls__fields-container td .notion-integration-controls__field-warning {
  width: 300px;
  font-size: 0.8rem;
  color: #6b7f9a;
  line-height: 1.1;
  display: flex;
}

@media (max-width: 600px) {
  .mailchimp-integration-controls .notion-integration-controls__fields-container td .notion-integration-controls__field-warning,
  .vcita-integration-controls .notion-integration-controls__fields-container td .notion-integration-controls__field-warning,
  .notion-integration-controls .notion-integration-controls__fields-container td .notion-integration-controls__field-warning {
    width: 215px;
  }
}

.mailchimp-integration-controls .notion-integration-controls__fields-container .hoverDelete .notionField,
.mailchimp-integration-controls .notion-integration-controls__fields-container .hoverDelete .powrField,
.mailchimp-integration-controls .notion-integration-controls__fields-container .hoverDelete .powrField-status,
.vcita-integration-controls .notion-integration-controls__fields-container .hoverDelete .notionField,
.vcita-integration-controls .notion-integration-controls__fields-container .hoverDelete .powrField,
.vcita-integration-controls .notion-integration-controls__fields-container .hoverDelete .powrField-status,
.notion-integration-controls .notion-integration-controls__fields-container .hoverDelete .notionField,
.notion-integration-controls .notion-integration-controls__fields-container .hoverDelete .powrField,
.notion-integration-controls .notion-integration-controls__fields-container .hoverDelete .powrField-status {
  cursor: pointer;
  cursor: hand;
}

.mailchimp-integration-controls .notion-integration-controls__fields-container .hoverDelete .fa-trash-o,
.vcita-integration-controls .notion-integration-controls__fields-container .hoverDelete .fa-trash-o,
.notion-integration-controls .notion-integration-controls__fields-container .hoverDelete .fa-trash-o {
  color: #a0abbe;
}

.mailchimp-integration-controls .notion-integration-controls__fields-container .notionpField,
.vcita-integration-controls .notion-integration-controls__fields-container .notionpField,
.notion-integration-controls .notion-integration-controls__fields-container .notionpField {
  vertical-align: top;
  padding-top: 8px;
}

.mailchimp-integration-controls .notion-integration-controls__fields-container .powrField,
.vcita-integration-controls .notion-integration-controls__fields-container .powrField,
.notion-integration-controls .notion-integration-controls__fields-container .powrField {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mailchimp-integration-controls .notion-integration-controls__fields-container .powrField-status,
.vcita-integration-controls .notion-integration-controls__fields-container .powrField-status,
.notion-integration-controls .notion-integration-controls__fields-container .powrField-status {
  font-size: 1.4rem;
  padding-left: 32px;
}

@media (max-width: 600px) {
  .mailchimp-integration-controls .notion-integration-controls__fields-container .powrField-status,
  .vcita-integration-controls .notion-integration-controls__fields-container .powrField-status,
  .notion-integration-controls .notion-integration-controls__fields-container .powrField-status {
    padding-left: 8px;
  }
}

.mailchimp-integration-controls .notion-integration-controls__fields-container .powrField-requireError .Select .Select-control,
.vcita-integration-controls .notion-integration-controls__fields-container .powrField-requireError .Select .Select-control,
.notion-integration-controls .notion-integration-controls__fields-container .powrField-requireError .Select .Select-control {
  border-color: #EB8281;
}

.mailchimp-integration-controls .notion-integration-controls__fields-container .powrField-typeWarned .Select .Select-control,
.vcita-integration-controls .notion-integration-controls__fields-container .powrField-typeWarned .Select .Select-control,
.notion-integration-controls .notion-integration-controls__fields-container .powrField-typeWarned .Select .Select-control {
  border-color: #FFD480;
}

.vcita-required-warning {
  font-size: 0.8rem;
  display: flex;
}

.account-menu .avatar--has-notification:after,
.open-account-menu .account-menu-list__link.has-notification:after {
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border: 2px solid #FFFFFF;
  box-sizing: border-box;
  content: "";
  background-image: linear-gradient(45deg, #ff4e50 0%, #f9d423 100%);
  height: 15px;
  position: absolute;
  width: 15px;
}

.react-account-container {
  display: flex;
  align-items: center;
}

.account-menu {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.account-menu .account-menu__mobile-icon {
  color: #354051;
  font-size: 1.5rem;
}

.account-menu .avatar--has-notification {
  position: relative;
}

.account-menu .avatar--has-notification:after {
  border: 2px solid #FFFFFF;
  bottom: auto;
  left: auto;
  right: -5px;
  top: -2px;
}

.account-menu .avatar-placeholder {
  border-radius: 50%;
  background-color: #eff2f4;
  height: 36px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.account-menu .avatar-placeholder .alert-indicator {
  position: absolute;
  top: -5px;
  left: -5px;
}

.account-menu .avatar-placeholder .alert-indicator i {
  color: #FFC400;
  font-weight: 900;
}

.account-menu .avatar-placeholder i {
  font-size: 1.1rem;
}

.account-menu i {
  color: #55667D;
  font-weight: lighter;
}

.account-menu .signed-in-menu,
.account-menu .signed-out-menu {
  display: flex;
  align-items: center;
}

.avatar-image {
  border-radius: 50%;
  height: 36px;
  width: 36px;
}

.avatar-image-menu {
  border-radius: 50%;
  height: 36px;
  width: 36px;
  margin-right: 16px;
}

.open-account-menu {
  position: absolute;
  z-index: 3;
  background-color: #fff;
  top: 76px;
  right: 14px;
  width: 210px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  box-shadow: 0 1px 4px 0px #a0abbe;
  -webkit-box-shadow: 0 1px 4px 0px #a0abbe;
  -moz-box-shadow: 0 1px 4px 0px #a0abbe;
  -ms-box-shadow: 0 1px 4px 0px #a0abbe;
  -o-box-shadow: 0 1px 4px 0px #a0abbe;
}

@media screen and (orientation: landscape) and (max-height: 400px) {
  .open-account-menu {
    height: 300px;
    overflow: auto;
  }
}

.open-account-menu .email-container {
  padding: 24px 24px 10px 24px;
  font-size: .9rem;
  color: #a0abbe;
  display: block;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.open-account-menu .sign-out-container {
  padding: 20px 24px;
  cursor: pointer;
  border-top: 1px solid #eff2f4;
}

.open-account-menu .sign-out-container:hover {
  background-color: #eff2f4;
  border-radius: 0 0 4px 4px;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  -ms-border-radius: 0 0 4px 4px;
  -o-border-radius: 0 0 4px 4px;
}

.open-account-menu .account-menu-list__link {
  display: block;
  padding: 12px 24px;
  cursor: pointer;
}

.open-account-menu .account-menu-list__link:hover {
  background-color: #eff2f4;
}

.open-account-menu .account-menu-list__link.has-icon {
  align-items: center;
  display: flex;
}

.open-account-menu .account-menu-list__link.has-notification {
  position: relative;
}

.open-account-menu .account-menu-list__link.has-notification:after {
  bottom: auto;
  left: 5px;
  right: auto;
  top: 15px;
}

.open-account-menu .account-menu-list__link--share {
  padding: 0;
}

.open-account-menu .account-menu-list__link--share .button-nostyle-muted {
  padding: 12px 24px 12px 24px;
  text-align: left;
  width: 100%;
}

.open-account-menu .account-menu-list__link--share .button-nostyle-muted:hover {
  color: #55667D;
}

.open-account-menu .account-menu-list__img {
  height: 20px;
  margin-left: 10px;
}

.plugins-cards-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.plugins-card {
  border: 1px solid #e0e6ea;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 240px;
  margin: 16px;
  background-color: #e0e6ea;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  width: calc(100% - 32px);
  cursor: pointer;
}

.plugins-card__paused {
  position: absolute;
  bottom: 100%;
  left: 0;
  text-align: center;
  width: 100%;
  color: #fff;
  background: rgba(53, 64, 81, 0.4);
}

@media screen and (min-width: 600px) {
  .plugins-card {
    width: calc(50% - 32px);
  }
}

@media screen and (min-width: 1024px) {
  .plugins-card {
    width: calc(33.33333333333% - 32px);
  }
}

@media screen and (min-width: 1200px) {
  .plugins-card {
    width: calc(25% - 32px);
  }
}

.plugins-card__link {
  width: 100px;
  margin: 0 auto;
}

.plugins-card__top-menu {
  display: flex;
  justify-content: space-between;
}

.plugins-card__app-status-tag {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 24px;
  font-size: .8rem;
  padding: 0 16px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  color: #fff;
  cursor: default;
}

.plugins-card__app-status-tag.published {
  background: #36c451;
}

.plugins-card__app-status-tag.unpublished-content {
  background: #FFD480;
}

.plugins-card__app-status-tag.draft {
  background: #55667D;
}

.plugins-card__nickname-container {
  color: #354051;
  width: 240px;
  font-size: 1.1rem;
  text-align: center;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 auto;
  padding: 0 16px;
  cursor: pointer;
}

@media screen and (min-width: 1024px) and (max-width: 1200px) {
  .plugins-card__nickname-container {
    width: 200px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1275px) {
  .plugins-card__nickname-container {
    width: 175px;
  }
}

@media screen and (min-width: 1275px) and (max-width: 1450px) {
  .plugins-card__nickname-container {
    width: 200px;
  }
}

.plugins-card__nickname-container input {
  width: 100%;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 4px;
}

.plugins-card__details {
  background: #fff;
  padding: 8px;
  border-radius: 0 0 4px 4px;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  -ms-border-radius: 0 0 4px 4px;
  -o-border-radius: 0 0 4px 4px;
}

.plugins-card__attributes {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 4px 0;
}

.plugins-card__apptype-display {
  color: #a0abbe;
  font-size: .7rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.plugins-card__plan-indicator {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eef5ff;
  font-size: .2rem;
  color: #3B8CFF;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  cursor: default;
  height: 19px;
  padding: 0 4px;
}

.plugins-card__upgrade-indicator {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #EDE8FA;
  font-size: .2rem;
  color: #7560DF;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  cursor: pointer;
  height: 19px;
  padding: 0 4px;
}

.plugins-card__hover-menu {
  box-sizing: border-box;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #eff2f4;
  bottom: 0;
  width: 100%;
  font-size: 0.8rem;
  padding: 8px;
  border-radius: 0 0 4px 4px;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  -ms-border-radius: 0 0 4px 4px;
  -o-border-radius: 0 0 4px 4px;
}

.plugins-card__hover-menu-edit:hover {
  color: #3B8CFF;
}

.plugins-card__hover-menu-button {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.plugins-card__card-menu-trigger {
  color: #55667D;
  font-size: 1.2rem;
  cursor: pointer;
}

.plugins-card__card-menu {
  width: 130px;
  position: absolute;
  z-index: 3;
  background: #fff;
  top: 24px;
  right: -48px;
  font-size: .8rem;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  box-shadow: 0 1px 4px 0px #a0abbe;
  -webkit-box-shadow: 0 1px 4px 0px #a0abbe;
  -moz-box-shadow: 0 1px 4px 0px #a0abbe;
  -ms-box-shadow: 0 1px 4px 0px #a0abbe;
  -o-box-shadow: 0 1px 4px 0px #a0abbe;
}

@media screen and (max-width: 768px) {
  .plugins-card__card-menu {
    right: -30px;
  }
}

.plugins-card__card-menu .links-container {
  padding: 0;
}

.plugins-card__card-menu .links-container .plugins-card__card-menu-link {
  display: block;
  font-size: 0.875rem;
  padding: 8px 16px;
  cursor: pointer;
  color: #55667D;
}

.plugins-card__card-menu .links-container .plugins-card__card-menu-link.last-updated {
  color: #a0abbe;
  font-size: .6rem;
  width: 100%;
}

.plugins-card__card-menu .links-container .plugins-card__card-menu-delete {
  color: #d74545;
}

.plugins-card__card-menu .links-container li:hover {
  background-color: #eff2f4;
}

.status-tooltip {
  font-size: .8rem;
}

.update-status {
  color: #3B8CFF !important;
  text-decoration: underline;
}

.auto-generated-feed-modal-overlay,
.app-draft-status-update-modal-overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 9999;
  background-color: rgba(53, 64, 81, 0.5);
}

.ReactModalPortal .ReactModal__Content.ReactModal__Content--after-open.app-draft-status-update-modal-content {
  left: 0;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  right: 0;
  max-width: 525px;
}

.generic-tooltip {
  position: relative;
  display: inline;
}

.generic-tooltip .generic-tooltip__bubble {
  min-width: 120px;
  max-width: 300px;
  position: absolute;
  z-index: 10;
  border-color: #354051;
}

.generic-tooltip .generic-tooltip__bubble::after {
  content: '';
  position: absolute;
}

.generic-tooltip .generic-tooltip__content {
  background: #354051;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  color: #FFFFFF;
  font-size: .9rem;
  line-height: 1.25rem;
  padding: 8px;
}

.generic-tooltip .generic-tooltip__title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.generic-tooltip .generic-tooltip__close {
  float: right;
}

.generic-tooltip .generic-tooltip__close-icon {
  color: #495870;
}

.generic-tooltip .generic-tooltip__close-icon:hover {
  color: #53657f;
}

.generic-tooltip .is-light {
  color: #eef5ff;
  background-color: #6b7f9a;
}

.generic-tooltip .is-light.generic-tooltip__bubble.is-light {
  border-bottom: #6b7f9a;
  background-color: transparent;
  border-color: #6b7f9a;
}

.generic-tooltip .is-white.generic-tooltip__bubble {
  border-color: #FFFFFF;
}

.generic-tooltip .is-white.generic-tooltip__content {
  background: #FFFFFF;
  color: #354051;
}

.generic-tooltip .is-blue.generic-tooltip__bubble {
  border-color: #3B8CFF;
}

.generic-tooltip .is-blue.generic-tooltip__content {
  background: #3B8CFF;
  color: #FFFFFF;
}

.generic-tooltip .is-top {
  bottom: 100%;
  left: 50%;
  padding-bottom: 9px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.generic-tooltip .is-top::after {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid;
  border-top-color: inherit;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.generic-tooltip .is-bottom {
  top: 100%;
  left: 50%;
  padding-top: 12px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.generic-tooltip .is-bottom::after {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid;
  border-bottom-color: inherit;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.generic-tooltip .is-corner-bottom {
  top: 100%;
  left: -60px;
  padding-top: 12px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.generic-tooltip .is-corner-bottom::after {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid;
  border-bottom-color: inherit;
  top: 4px;
  left: 83%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.generic-tooltip .is-left {
  top: 50%;
  right: 100%;
  padding-right: 9px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.generic-tooltip .is-left::after {
  border-left: 9px solid;
  border-left-color: inherit;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.generic-tooltip .is-right {
  top: 50%;
  left: 100%;
  padding-left: 9px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.generic-tooltip .is-right::after {
  border-right: 9px solid;
  border-right-color: inherit;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.ReactModalPortal .ReactModal__Overlay.ReactModal__Overlay--after-open.recover-changes-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7) !important;
  height: 100%;
  width: 100%;
}

.ReactModalPortal .buttonOptions {
  display: flex;
  justify-content: center;
}

.product-updates {
  background-color: #FFFFFF;
  border-left: 1px solid #E0E6EA;
  height: 100%;
  top: 60px;
  position: fixed;
  right: 0;
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  width: 300px;
  z-index: 4;
}

@media screen and (min-width: 400px) {
  .product-updates {
    width: 400px;
  }
}

@media screen and (min-width: 768px) {
  .product-updates {
    width: 500px;
  }
}

.product-updates.is-open {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}

.product-updates .product-updates__header {
  align-items: center;
  background-color: #FFFFFF;
  border-bottom: 1px solid #E0E6EA;
  display: flex;
  height: 64px;
  justify-content: space-between;
  padding: 32px;
  width: 100%;
  z-index: 3;
}

.product-updates .product-updates__title {
  color: #55667D;
  margin: 0;
}

.product-updates .product-updates__body {
  height: calc(100% - 64px);
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 64px;
}

.product-updates .pu-post {
  padding: 16px 32px;
}

.product-updates .pu-post__title {
  line-height: 1.75rem;
}

.product-updates .pu-post__details {
  align-items: center;
  color: #a0abbe;
  display: flex;
  font-size: 0.875rem;
}

.product-updates .pu-post__tag {
  background-color: #7560DF;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  color: #FFFFFF;
  margin-right: 16px;
  min-width: 50px;
  padding: 2px 4px;
  text-align: center;
  text-transform: capitalize;
}

.product-updates .pu-post__tag.is-fix {
  background-color: #36c451;
}

.product-updates .pu-post__tag.is-feature {
  background-color: #7560DF;
}

.product-updates .pu-post__tag.is-bug {
  background-color: #EB8281;
}

.product-updates .pu-post__tag.is-announcement {
  background-color: #3B8CFF;
}

.product-updates .pu-post__content-container {
  margin: 16px 0;
}

.product-updates .pu-post__image-container {
  margin: 16px 0;
}

.product-updates .pu-post__image {
  max-height: 400px;
}

.product-updates .pu-post__footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}

.product-updates .pu-post__footer-link-container {
  color: #3B8CFF;
}

.product-updates .pu-post__likes {
  color: #a0abbe;
  cursor: pointer;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}

.product-updates .pu-post__likes:hover {
  color: #3B8CFF;
}

.product-updates .pu-post__likes.has-voted {
  color: #3B8CFF;
}

.product-updates .no-more-product-updates {
  color: #a0abbe;
  padding: 32px;
  text-align: center;
}

.powrReactPopoverContainer {
  position: absolute;
  z-index: 5;
}

.powrReactPopoverContainer .popover-arrow {
  height: 15px;
  width: 15px;
  background: #ffffff;
  transform-origin: 0 100%;
  position: absolute;
  transform: rotate(45deg);
}

.powrReactPopoverContainer .popover-arrow-bottom {
  border-top: 1px solid #e0e6ea;
  border-left: 1px solid #e0e6ea;
}

.powrReactPopoverContainer .popover-arrow-top {
  border-bottom: 1px solid #e0e6ea;
  border-right: 1px solid #e0e6ea;
}

.modal-backdrop-disable {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1031;
  background-color: rgba(53, 64, 81, 0.8);
}

.cookie_shim {
  height: 50px;
  width: 100%;
  display: none;
}

@media (max-width: 1140px) {
  .cookie_shim {
    height: 60px;
  }
}

.cookie_modal_fix {
  margin-top: 60px;
}

.cookie_bar,
.maintenance-mode {
  width: 100%;
  z-index: 999999;
  position: fixed;
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
}

@media (max-width: 992px) {
  .cookie_bar,
  .maintenance-mode {
    font-size: .8rem;
  }
}

.cookie_bar {
  min-height: 50px;
  display: none;
  font-size: .8rem;
}

.maintenance-mode {
  min-height: 60px;
  display: block;
}

.cookie_info_toggle {
  cursor: pointer;
}

.cookie_button_on {
  display: none;
}

@media (max-width: 992px) {
  .cookie_button_on,
  .cookie_button_off {
    margin-bottom: 10px;
  }
}

.cookie_info_buttons {
  display: inline-block;
}

.cookie_fine_top {
  font-size: 1rem;
}

.cookie_info {
  width: 500px;
  top: 44px;
  right: 10px;
  position: fixed;
  z-index: 999999;
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  font-size: .8rem;
  display: none;
}

.cookie_info p {
  font-size: .8rem;
  line-height: 1.2rem;
  padding-bottom: .3rem;
}

.cookie_info a {
  font-weight: 600;
}

@media (max-width: 954px) {
  .cookie_info {
    width: 400px;
    top: 150px;
    left: 0px;
    position: absolute;
  }
}

@media (max-width: 400px) {
  .cookie_info {
    width: 400px;
    top: 170px;
    left: 0px;
    position: absolute;
  }
}

.nav-mobile-menu {
  display: none;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 99999;
}

.nav-mobile-menu .menu-close {
  color: #354051;
  cursor: pointer;
  font-size: 1.5rem;
  padding: 16px 32px;
}

.nav-mobile-menu .nav-item {
  color: #354051;
  border-bottom: 1px solid #bec6ca;
  display: block;
  font-size: 1.5rem;
  padding: 32px 0;
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
}

.nav-mobile-menu .nav-item:hover,
.nav-mobile-menu .nav-item:active {
  background-color: #FFFFFF;
}

.nav-mobile-menu .signedOut {
  display: block;
  margin: 16px auto;
  max-width: 500px;
}

.topbar-nav {
  background-color: #FFFFFF;
  border-bottom: 1px solid #e0e6ea;
  box-shadow: 0 2px 1px -2px #a0abbe;
  -webkit-box-shadow: 0 2px 1px -2px #a0abbe;
  -moz-box-shadow: 0 2px 1px -2px #a0abbe;
  -ms-box-shadow: 0 2px 1px -2px #a0abbe;
  -o-box-shadow: 0 2px 1px -2px #a0abbe;
  height: 64px;
  padding: 0 1%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1031;
  display: flex;
}

.topbar-nav .nav-logo,
.topbar-nav .nav-account-settings {
  height: 100%;
}

@media (max-width: 992px) {
  .topbar-nav .nav-link {
    display: none;
  }
}

.topbar-nav .nav-wrapper {
  display: flex;
  width: 100%;
}

@media (max-width: 992px) {
  .topbar-nav .nav-wrapper .upgrade-button {
    display: none;
  }
}

.topbar-nav .nav-account-settings {
  margin-left: auto;
}

@media (max-width: 992px) {
  .topbar-nav .nav-account-settings {
    width: 50%;
  }
}

.topbar-nav .nav-account-settings #js-user-journey {
  display: none;
}

.topbar-nav .nav-logo {
  display: flex;
  align-items: center;
}

.topbar-nav .nav-logo &gt; a {
  white-space: nowrap;
}

.topbar-nav .nav-account-settings {
  display: flex;
  justify-content: flex-end;
}

.topbar-nav .nav-account-settings .nav-desktop {
  display: flex;
}

@media (max-width: 1150px) {
  .topbar-nav .nav-account-settings .nav-desktop .triggerHelp,
  .topbar-nav .nav-account-settings .nav-desktop .button-upgrade {
    display: none;
  }
}

.topbar-nav .nav-account-settings .signed-in-container,
.topbar-nav .nav-account-settings .signed-out-container {
  display: flex;
  align-items: center;
}

@media (max-width: 992px) {
  .topbar-nav .nav-account-settings .signed-out-container .button {
    padding: 8px;
  }
}

.topbar-nav .nav-account-settings .signedOut {
  display: flex;
  align-items: center;
}

.topbar-nav .nav-account-settings .nav-item {
  cursor: pointer;
}

.topbar-nav .nav-account-settings .nav-item:not(.button-upgrade) {
  color: #55667D;
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
}

.topbar-nav .nav-account-settings .nav-item:not(.button-upgrade) i {
  color: #55667d;
  color: #a0abbe;
}

.topbar-nav .nav-account-settings .nav-item:not(.button-upgrade):hover {
  color: #3B8CFF;
}

.topbar-nav .nav-account-settings-mobile .signed-out-container .signedOut {
  font-family: "Gordita Medium", sans-serif;
  font-size: 1.125rem;
  width: 50%;
}

.topbar-nav .nav-mobile {
  display: none;
}

@media (max-width: 1150px) {
  .topbar-nav .nav-mobile {
    display: flex;
    width: 100%;
  }

  .topbar-nav .nav-mobile i.fal {
    color: #354051;
    font-size: 30px;
  }

  .topbar-nav .nav-account-settings,
  .topbar-nav .nav-logo {
    display: none;
  }
}

.topbar-nav .nav-user-settings {
  min-width: 160px;
  position: relative;
  text-align: left;
}

.topbar-nav .nav-user-settings .userAccountWithoutArrow,
.topbar-nav .nav-user-settings .user-image-container {
  display: inline-block;
  vertical-align: middle;
  max-width: 300px;
  overflow: hidden;
}

.topbar-nav .nav-user-settings .user-image-container {
  background-color: transparent;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  cursor: pointer;
  height: 35px;
  position: relative;
  overflow: hidden;
  width: 35px;
}

.topbar-nav .nav-user-settings .user-image-container .user-image {
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  background-position: center center;
  background-size: cover;
  height: 100%;
  position: relative;
  vertical-align: top;
  width: 100%;
}

.topbar-nav .nav-user-settings .user-image-container .user-image.placeholder {
  border: 1px solid #e0e6ea;
}

.topbar-nav .nav-user-settings .user-account-popover {
  background-color: #FFFFFF;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  cursor: default;
  display: none;
  min-width: 200px;
  position: absolute;
  right: 0;
  top: 48px;
  width: 100%;
  box-shadow: 0 1px 4px 0px #a0abbe;
  -webkit-box-shadow: 0 1px 4px 0px #a0abbe;
  -moz-box-shadow: 0 1px 4px 0px #a0abbe;
  -ms-box-shadow: 0 1px 4px 0px #a0abbe;
  -o-box-shadow: 0 1px 4px 0px #a0abbe;
}

.topbar-nav .nav-user-settings .user-account-popover .user-account {
  padding: 16px;
  text-align: center;
}

.topbar-nav .nav-user-settings .user-account-popover .user-account .user-image-container {
  height: 45px;
  width: 45px;
}

.topbar-nav .nav-user-settings .user-account-popover .user-account-details {
  line-height: 25px;
}

.topbar-nav .nav-user-settings .user-account-popover .user-account-details .userAccountWithoutArrow {
  display: block;
  color: #354051;
  font-weight: bold;
}

.topbar-nav .nav-user-settings .user-account-popover .user-account-details .member-since {
  color: #6b7f9a;
  font-size: 0.8rem;
}

.topbar-nav .nav-user-settings .user-account-popover .user-menu {
  border-top: 1px solid #bec6ca;
  border-radius: 0 0 4px 4px;
  display: block;
  color: #55667D;
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
}

.topbar-nav .nav-user-settings .user-account-popover .user-sign-out {
  background-color: #eff2f4;
  border-top: 1px solid #bec6ca;
  border-radius: 0 0 4px 4px;
  color: #3B8CFF;
  display: block;
  text-align: center;
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
}

.topbar-nav .nav-user-settings .user-account-popover .user-sign-out:hover {
  background-color: #e0e6ea;
}

.topbar-nav .nav-user-settings .user-account-popover.is-open {
  -webkit-animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  display: block;
}

@media (max-width: 1150px) {
  .topbar-nav #nav-links-group {
    display: none;
  }
}

.topbar-nav .nav-links-group {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
}

.topbar-nav .nav-links-group li {
  height: 100%;
  position: relative;
  margin: 0 16px;
}

.topbar-nav .nav-links-group li:not(.pricing-nav-tab):hover a {
  color: #3B8CFF;
}

.topbar-nav .nav-links-group li a {
  transition: ease all 0.2s;
  -webkit-transition: ease all 0.2s;
  -moz-transition: ease all 0.2s;
  -ms-transition: ease all 0.2s;
  -o-transition: ease all 0.2s;
  display: block;
  font-size: 16px;
  padding: 16px 0;
  white-space: nowrap;
  color: #55667D;
  font-family: "Gordita Medium", sans-serif;
}

.topbar-nav .nav-links-group li.active-link a {
  color: #3B8CFF;
}

.topbar-nav .nav-links-group li.active-link a:before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 4px;
  background-color: #3B8CFF;
}

.topbar-nav .nav-links-group li .pricing-nav-tab__button {
  display: flex;
  align-items: center;
  padding: 16px 0;
  background: none;
  color: #55667D;
  font-family: "Gordita Medium", sans-serif;
  border: none;
  outline: none;
  cursor: pointer;
}

.topbar-nav .nav-links-group li .pricing-nav-tab__button:hover {
  color: #3B8CFF;
}

.topbar-nav .nav-links-group li .pricing-nav-tab__button i {
  margin-top: 3px;
}

.topbar-nav .nav-links-group li .pricing-nav-tab__dropdown {
  position: absolute;
  top: 78px;
  left: 16px;
  width: 820px;
  padding: 40px 64px 40px 32px;
  background-color: #FFFFFF;
  border: 1px solid #e0e6ea;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  /* CSS specific to Safari devices */
}

.topbar-nav .nav-links-group li .pricing-nav-tab__dropdown .row:before,
.topbar-nav .nav-links-group li .pricing-nav-tab__dropdown .row:after {
  display: inline-block;
}

.topbar-nav .nav-links-group li .pricing-nav-tab__dropdown-arrow {
  display: block;
  height: 20px;
  width: 20px;
  background-color: inherit;
  border: inherit;
  position: absolute;
  top: -10px;
  left: 40px;
  clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
  transform: rotate(135deg);
  border-radius: 3px;
}

.topbar-nav .nav-links-group li .pricing-nav-tab__dropdown-close-icon {
  position: absolute;
  top: 16px;
  right: 16px;
}

.topbar-nav .nav-links-group li .pricing-nav-tab__dropdown-link,
.topbar-nav .nav-links-group li .pricing-nav-tab__view-all-link {
  display: inline-block;
  color: #354051;
  padding: 0;
  cursor: pointer;
  margin-top: 16px;
}

.topbar-nav .nav-links-group li .pricing-nav-tab__dropdown-link:hover,
.topbar-nav .nav-links-group li .pricing-nav-tab__view-all-link:hover {
  color: #3B8CFF;
}

.topbar-nav .nav-links-group li .pricing-nav-tab__dropdown-link:first-child,
.topbar-nav .nav-links-group li .pricing-nav-tab__view-all-link:first-child {
  margin-top: none;
}

.topbar-nav .nav-links-group li .pricing-nav-tab__view-all-link {
  position: absolute;
  bottom: 0;
}

.topbar-nav .nav-links-group li .pricing-nav-tab__business-banner {
  padding: 32px;
  background-color: #F2F8FE;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.topbar-nav .nav-links-group li .pricing-nav-tab__business-banner-subtitle {
  color: #55667D;
  margin-bottom: 32px;
}

.topbar-nav .nav-links-group--mobile {
  padding: 0 30px;
}

.topbar-nav .nav-links-group--mobile li {
  margin: 0;
}

.topbar-nav .nav-links-group--mobile li a {
  padding-left: 0;
  padding-right: 0;
  font-size: 20px;
}

.topbar-nav .nav-links-group--mobile li a:before {
  bottom: 4px;
}

.topbar-nav .nav-links-group--mobile li.active-link {
  display: inline-block;
}

.slide-menu-container {
  display: none;
  position: fixed;
  top: 63px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1035;
}

.slide-menu-container nav {
  top: 0;
  left: -100%;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  z-index: 2;
}

@media (max-width: 1112px) and (min-width: 414px) {
  .slide-menu-container nav {
    width: 100%;
  }
}

.slide-menu-container .nav-menu-divider {
  border-top: 1px solid #e0e6ea;
  margin: 32px 0;
}

.slide-menu-container .nav-account-settings-mobile .account-name,
.slide-menu-container .nav-account-settings-mobile .sign-out-link {
  font-size: 20px;
  color: #55667D;
  font-family: "Gordita Medium", sans-serif;
}

#static-home .topbar-nav {
  transition: background-color 0.2s ease;
  -webkit-transition: background-color 0.2s ease;
  -moz-transition: background-color 0.2s ease;
  -ms-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
}

#static-home .topbar-nav:not(.is-scrolling) {
  background-color: transparent;
  border-bottom: none;
  box-shadow: none;
}

#static-home .topbar-nav:not(.is-scrolling) a.nav-link {
  color: #ffffff;
}

#static-home .topbar-nav:not(.is-scrolling) .nav-mobile {
  color: #FFFFFF;
}

#static-home .topbar-nav:not(.is-scrolling) .nav-logo {
  color: #FFFFFF;
}

#static-home .topbar-nav:not(.is-scrolling) a.signUpTab {
  background-color: #FFFFFF;
  background-image: none;
  border: 2px solid transparent;
  color: #3B8CFF;
}

#static-home .topbar-nav:not(.is-scrolling) a.signUpTab:hover {
  color: #3B8CFF;
}

#static-home .topbar-nav:not(.is-scrolling) a.signInTab {
  background-color: transparent;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
}

#apps-wix_settings .topbar-nav,
#mailchimp-connect .topbar-nav,
#static-embed .topbar-nav {
  display: none;
}

.step-badge {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  width: 35px;
  height: 20px;
  background-color: #F8CED4;
  text-align: center;
}

@media (max-width: 992px) {
  .journey-title {
    white-space: nowrap;
  }
}

.journey-progress-bar {
  height: 6px;
  background-color: #C2DEFB;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  cursor: pointer;
}

.journey-progress-bar__completed {
  width: 0px;
  background-color: #3B8CFF;
}

.journey-progress-bar .is-25 {
  width: 25%;
}

.journey-progress-bar .is-33 {
  width: 33%;
}

.journey-progress-bar .is-50 {
  width: 50%;
}

.journey-progress-bar .is-66 {
  width: 66%;
}

.journey-progress-bar .is-75 {
  width: 75%;
}

.journey-progress-bar .is-99 {
  width: 99%;
}

.journey-progress-bar .is-100 {
  width: 100%;
}

.journey-tooltip {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  box-shadow: 0 5px 10px rgba(160, 171, 190, 0.3);
  -webkit-box-shadow: 0 5px 10px rgba(160, 171, 190, 0.3);
  -moz-box-shadow: 0 5px 10px rgba(160, 171, 190, 0.3);
  -ms-box-shadow: 0 5px 10px rgba(160, 171, 190, 0.3);
  -o-box-shadow: 0 5px 10px rgba(160, 171, 190, 0.3);
  border: 1px solid #e0e6ea;
  background-color: #FFFFFF;
  width: 312px;
}

@media (max-width: 762px) {
  .journey-tooltip {
    width: 218px;
    font-size: 0.8rem;
  }
}

.tooltip-controls {
  padding: 8px 8px 0 16px;
}

.tooltip-body {
  padding: 0 16px 16px 16px;
}

.step-icon__is-checked {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #dbf5e0;
  color: #36c451;
  padding: 3px;
}

.step-icon__is-unchecked {
  color: #e0e6ea;
  font-size: 24px;
}

.step-title__is-checked {
  color: #a0abbe;
  text-decoration-line: line-through;
}

.step-title__is-unchecked {
  color: #354051;
  cursor: pointer;
}

.is-disabled {
  color: #a0abbe;
}

.chevron-icon {
  font-size: 14px;
  cursor: pointer;
}

.chevron-icon__is-disabled {
  cursor: unset;
  color: #a0abbe;
}

.price-badge {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  background-color: #dbf5e0;
  color: #36c451;
  font-size: 0.7rem;
  vertical-align: middle;
  white-space: nowrap;
}

@media (max-width: 762px) {
  .price-badge {
    width: 218px;
    font-size: 0.4rem;
  }
}

.back-button {
  font-size: 14px;
  color: #666;
}

.back-arrow {
  color: #a0abbe;
  font-size: 16px;
}

.optional-text {
  color: #a0abbe;
  font-size: 12px;
}

.sub-title {
  font-size: 14px;
}

.secondary-text {
  color: #a0abbe;
  font-size: 14px;
}

.cursor-pointer {
  cursor: pointer;
}

.progress-bar-container:hover {
  background-color: #eff2f4;
}

.topbar-nav-container {
  background-color: #FFFFFF;
  border-bottom: 1px solid #e0e6ea;
  box-shadow: 0 2px 1px -2px #a0abbe;
  -webkit-box-shadow: 0 2px 1px -2px #a0abbe;
  -moz-box-shadow: 0 2px 1px -2px #a0abbe;
  -ms-box-shadow: 0 2px 1px -2px #a0abbe;
  -o-box-shadow: 0 2px 1px -2px #a0abbe;
  height: 64px;
  padding: 0 1%;
  position: fixed;
  top: -64px;
  transition: top 0.3s;
  width: 100%;
  z-index: 1031;
  display: flex;
  justify-content: center;
}

.topbar-nav-container .container {
  top: -64px;
  padding: 0px 15px;
  transition: top 0.3s;
}

.topbar-nav-container .container .start-free-button {
  display: none;
}

.topbar-nav-container .container .sign-up-btn,
.topbar-nav-container .container .log-in-btn {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  font-family: Gordita;
}

@media (max-width: 768px) {
  .topbar-nav-container .container .sign-up-btn,
  .topbar-nav-container .container .log-in-btn {
    font-size: 14px;
  }
}

.topbar-nav-container .container .sign-up-btn {
  background: #3B8CFF;
  border-radius: 5px;
  color: #FFFFFF;
  border: none;
  padding: 8px 22px;
}

@media (max-width: 768px) {
  .topbar-nav-container .container .sign-up-btn {
    margin-right: 0px;
  }
}

.topbar-nav-container .container .log-in-btn {
  color: #354051;
  border: none;
}

.topbar-nav-container.topbar-container .upgrade-button {
  display: none;
}

.topbar-nav-container.topbar-container .account-button {
  display: none;
}

.topbar-nav-container.topbar-container .start-free-button {
  display: block;
}

#toast-container {
  position: fixed;
  width: 100%;
  top: 100px;
  display: flex;
  justify-content: center;
  z-index: 1031;
}

#toast-container .url-link {
  color: #3B8CFF;
  text-decoration: underline;
}

#toast-container .publish-success {
  font-size: 1.2rem;
}

#toastify-container {
  z-index: 1031;
}

.toastify {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  max-width: 400px;
  padding: 8px 16px;
  text-align: center;
  width: 100%;
  z-index: 1;
  position: relative;
}

.toastify a {
  text-decoration: underline;
}

.toastify--primary {
  background-color: #eef5ff;
  border: 1px solid #3B8CFF;
  color: #354051;
}

.toastify--caution {
  background-color: white;
  border-top: 3px solid #ffe5b3;
  color: #354051;
}

.toastify--failure {
  background-color: white;
  border-top: 3px solid #f2aead;
  color: #EB8281;
}

.toastify--failure a {
  color: #3B8CFF;
}

.toastify--success {
  background-color: #dbf5e0;
  border-top: 3px solid #5bd272;
  color: #354051;
}

.toastify--unblock-feature {
  background-color: #354051;
  color: #F8F9FA;
  text-align: left;
}

.toastify_with-icon &gt; i {
  top: 20px;
  left: 15px;
  position: absolute;
  font-size: 32px;
}

.toastify_with-icon &gt; i.unblock-feature {
  color: #7560DF;
}

.toastify_with-icon &gt; div {
  padding: 10px 10px 10px 45px;
  font-size: 14px;
}

.toastify-reset.Toastify__toast-container {
  padding: 0;
  width: inherit;
}

.toastify-reset.Toastify__toast--default {
  background: inherit;
}

.toastify-reset .Toastify__toast {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.toastify-reset .Toastify__close-button {
  position: absolute;
  color: #fff;
  top: 4px;
  right: 9px;
  z-index: 1;
}

.toastify-popout.Toastify__toast-container {
  width: 100%;
}

.Toastify__toast-container {
  z-index: 9999;
  -webkit-transform: translate3d(0, 0, 9999px);
  position: fixed;
  padding: 4px;
  width: 320px;
  box-sizing: border-box;
  color: #fff;
}

.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}

.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  margin-left: -160px;
}

.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}

.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}

.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  margin-left: -160px;
}

.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }

  .Toastify__toast-container--top-left,
  .Toastify__toast-container--top-center,
  .Toastify__toast-container--top-right {
    top: 0;
  }

  .Toastify__toast-container--bottom-left,
  .Toastify__toast-container--bottom-center,
  .Toastify__toast-container--bottom-right {
    bottom: 0;
  }

  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}

.Toastify__toast {
  position: relative;
  min-height: 64px;
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 1px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-height: 800px;
  overflow: hidden;
  font-family: sans-serif;
  cursor: pointer;
  direction: ltr;
}

.Toastify__toast--rtl {
  direction: rtl;
}

.Toastify__toast--default {
  background: #fff;
  color: #aaa;
}

.Toastify__toast--info {
  background: #3498db;
}

.Toastify__toast--success {
  background: #07bc0c;
}

.Toastify__toast--warning {
  background: #f1c40f;
}

.Toastify__toast--error {
  background: #e74c3c;
}

.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1;
  flex: 1;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast {
    margin-bottom: 0;
  }
}

.Toastify__close-button {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.Toastify__close-button--default {
  color: #000;
  opacity: 0.3;
}

.Toastify__close-button:hover,
.Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0);
  }
}

.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 9999;
  opacity: 0.7;
  background-color: rgba(255, 255, 255, 0.7);
  transform-origin: left;
}

.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}

.Toastify__progress-bar--controlled {
  transition: transform .2s;
}

.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}

.Toastify__progress-bar--default {
  background: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.Toastify__bounce-enter--top-left,
.Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}

.Toastify__bounce-enter--top-right,
.Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left,
.Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}

.Toastify__bounce-exit--top-right,
.Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}

@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}

@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}

@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}

.Toastify__slide-enter--top-left,
.Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}

.Toastify__slide-enter--top-right,
.Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left,
.Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}

.Toastify__slide-exit--top-right,
.Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

.fade-entering {
  opacity: 0;
  transition: opacity 0.5s;
}

.fade-entered {
  opacity: 1;
  transition: opacity 0.5s;
}

.fade-exiting {
  opacity: 0;
  transition: opacity 0.5s;
}

.fade-exited {
  opacity: 0;
  transition: opacity 0.5s;
}

.notification-banner--review {
  background-color: #FFFFFF;
  box-shadow: 0 2px 1px -2px #a0abbe;
  -webkit-box-shadow: 0 2px 1px -2px #a0abbe;
  -moz-box-shadow: 0 2px 1px -2px #a0abbe;
  -ms-box-shadow: 0 2px 1px -2px #a0abbe;
  -o-box-shadow: 0 2px 1px -2px #a0abbe;
  width: 100%;
}

.notification-banner__ratings {
  display: flex;
  color: #3B8CFF;
  justify-content: flex-start;
  flex-direction: column;
  float: left;
}

.notification-banner__ratings .rate {
  padding: 8px;
  min-width: 45px;
  min-height: 45px;
  display: inline-block;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  cursor: pointer;
  cursor: hand;
  margin: 8px 8px 8px 0;
  border: 2px solid;
  text-align: center;
}

.notification-banner__ratings .rate:hover {
  border: 2px solid;
}

.radio-image-component .slick-arrow.slick-next::before {
  content: url("https://s3-us-west-1.amazonaws.com/www.powrcdn.com/radioImages/slider-next-arrow-solid.png");
}

.radio-image-component .slick-arrow.slick-prev::before {
  content: url("https://s3-us-west-1.amazonaws.com/www.powrcdn.com/radioImages/slider-prev-arrow-solid.png");
}

.radio-image-component .radio-image-component__suboption-title {
  margin-bottom: 4px;
}

.radio-image-component .radio-image-component__image-container {
  height: 100px;
  overflow: hidden;
  position: relative;
}

.radio-image-component .radio-image-list-item {
  padding: 0;
}

.radio-image-component .fluxslider {
  min-height: 95px;
}

.radio-image-component .fluxslider .images {
  left: 0 !important;
  min-height: 95px !important;
}

.radio-image-component .fluxslider .image1,
.radio-image-component .fluxslider .image2 {
  z-index: -1 !important;
}

.radio-image-component .fluxslider:not(:last-child) {
  display: none;
}

.radio-image-component .star-container .premium-star-react {
  top: 4px;
  right: 4px;
  background-color: #eff2f4;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  height: 20px;
  width: 20px;
  padding: 4px;
  z-index: 4;
}

.app-theme {
  cursor: pointer;
  cursor: hand;
  height: 100%;
  border: solid 2px transparent;
  background-color: transparent;
  border-radius: 4px;
  align-items: initial;
  width: 100%;
  padding: 0;
  outline: none;
}

.app-theme:hover {
  border-color: #36c451;
}

.app-theme.selected {
  border-color: #5fa1ff;
}

.radioImageContainer,
.multiSelectContainer {
  cursor: pointer;
  cursor: hand;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  padding: 4px;
  margin: 2px;
  border: solid 2px transparent;
  border-radius: 4px;
  text-align: center;
}

.radioImageContainer label,
.multiSelectContainer label {
  margin: 0;
  display: block;
}

.radioImageContainer label span,
.multiSelectContainer label span {
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: capitalize;
}

.radioImageContainer.selected,
.radioImageContainer.selectedRadio,
.radioImageContainer.selectedCheckbox,
.multiSelectContainer.selected,
.multiSelectContainer.selectedRadio,
.multiSelectContainer.selectedCheckbox {
  border-color: #5fa1ff;
}

.radioImageContainer:hover,
.multiSelectContainer:hover {
  border-color: #36c451;
}

.radioImageContainer.premium .animationName,
.multiSelectContainer.premium .animationName {
  position: relative;
}

.radioImageContainer.premium .animationName:after,
.multiSelectContainer.premium .animationName:after {
  content: '\F005';
  color: #7560DF;
  font-family: 'Font Awesome 5 Pro';
  font-size: 12px;
  position: absolute;
  right: 0;
}

.radioImageContainer.fade,
.multiSelectContainer.fade {
  opacity: 1;
}

.radioImageContainer .radioCaption,
.multiSelectContainer .radioCaption {
  margin: 5px auto;
  font-weight: bold;
  font-size: 13px;
}

.radioImageContainer .radioSubCaption,
.multiSelectContainer .radioSubCaption {
  font-size: 12px;
}

.radioImageContainer .small-emoji,
.multiSelectContainer .small-emoji {
  width: 90px;
}

.radioImageContainer .radioButton,
.multiSelectContainer .radioButton {
  font-size: 12px;
  color: #3B8CFF;
}

.radioImageContainer img,
.multiSelectContainer img {
  width: 100%;
}

.radioImageContainer .fa-,
.multiSelectContainer .fa- {
  padding: 4px;
}

.radioImageContainer .radioImg,
.radioImageContainer .multiSelectImg,
.multiSelectContainer .radioImg,
.multiSelectContainer .multiSelectImg {
  width: 100%;
  font-size: 20px;
}

.radioImageContainer .radioImg img,
.radioImageContainer .multiSelectImg img,
.multiSelectContainer .radioImg img,
.multiSelectContainer .multiSelectImg img {
  pointer-events: none;
}

.radioIcon {
  display: inline-block;
  margin: 15px 5px;
}

.radioIcon span {
  padding: 5px;
  cursor: pointer;
  cursor: hand;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  font-size: 3rem;
  border: 2px solid rgba(0, 0, 0, 0);
}

.radioIcon .iconInput:checked + span {
  border: 2px solid #36c451;
}

.radioIcon .iconInputWix:checked + span {
  border: 2px solid #ccc;
}

.iconSelect form {
  height: 200px;
  overflow-y: auto;
}

.iconSelect .radioIcon {
  margin: 5px;
}

.iconSelect .radioIcon span {
  font-size: 1.3rem;
}

.places_autocomplete__input {
  position: relative;
}

.places_autocomplete__input input {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  padding-right: 32px;
}

.places_autocomplete__icon,
.places_autocomplete__clear {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  color: #a0abbe;
}

.places_autocomplete__icon {
  left: 16px;
}

.places_autocomplete__clear {
  right: 15px;
  cursor: pointer;
}

.places_autocomplete__icon + input {
  padding-left: 40px;
}

.places_autocomplete__container {
  position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
  border-left: 1px solid #3B8CFF;
  border-right: 1px solid #3B8CFF;
  border-bottom: 1px solid #3B8CFF;
  border-top: 1px solid #bec6ca;
  background-color: #FFFFFF;
  margin-top: -2px;
  z-index: 1;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.places_autocomplete__container li {
  padding: 12px 9px;
}

.places_autocomplete__container li:hover {
  cursor: pointer;
  background-color: #eef5ff;
}

.places_autocomplete__suggestion-item-active {
  background-color: #eef5ff;
}

.places_autocomplete--invalid .places_autocomplete__input input {
  border-color: #EB8281;
}

.form-element.premium:before {
  content: '\F005';
  color: #7560DF;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  right: 10px;
  top: 12px;
  z-index: 1;
}

.doubleInput .form-element.premium:before {
  right: 0;
  top: 0;
}

.form-element {
  display: inline-block;
  width: 100%;
  border-bottom: none;
  padding: 15px 25px;
  position: relative;
}

.form-element.full-width {
  padding-left: 0;
  padding-right: 0;
}

.form-element.no-pad-top {
  padding-top: 0;
}

.form-element.full-width.premium:before {
  right: -10px;
  top: 5px;
}

.form-element:last-child {
  border-bottom: none;
}

.form-element.successometer {
  position: relative;
}

.form-element.successometerSuccess label:before {
  color: #36c451;
  content: "\F05D";
  font-family: FontAwesome;
  position: absolute;
  right: -15px;
  top: 50%;
  font-size: 16px;
  margin-top: -4px;
}

.form-element.successometerFail label:before {
  color: #EB8281;
  content: "\F071";
  font-family: FontAwesome;
  position: absolute;
  right: -14px;
  top: 50%;
  font-size: 13px;
  margin-top: 0px;
}

.form-element input[type='text'],
.form-element textarea,
.form-element input[type='email'],
.form-element input[type='name'],
.form-element input[type='number'],
.form-element input[type='password'],
.form-element input[type='tel'],
.form-element input[type='url'] {
  width: 100%;
  box-sizing: border-box;
  height: auto;
  padding: 8px;
  transition: border 0.2s ease-in-out, background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.form-element .fileInput .powrbutton {
  border: 0px;
  border-top: 1px solid;
}

.form-element .slideHelper {
  position: absolute;
  animation: all 1s linear infinite;
  -webkit-animation: all 1s linear infinite;
  -moz-animation: all 1s linear infinite;
  -ms-animation: all 1s linear infinite;
  -o-animation: all 1s linear infinite;
  right: -100%;
  z-index: 5;
  width: 100%;
  padding: 15px;
  font-size: 12px;
  top: 0px;
}

.form-element label {
  display: block;
  width: 100%;
}

.form-element .sliderContainer .slideHeight {
  min-height: 21px;
}

.form-element .sliderContainer .slider {
  height: 2px;
  margin-top: 15px;
  width: 100%;
}

.form-element .sliderContainer .slider::after,
.form-element .sliderContainer .slider::before {
  content: '';
  position: absolute;
  top: -3px;
  bottom: -2px;
  width: 2px;
  bottom: -2px;
  width: 2px;
  height: 6px;
}

.form-element .sliderContainer .slider::after {
  right: -2px;
}

.form-element .sliderContainer .slider::before {
  left: -2px;
}

.form-element .sliderContainer .slider .ui-slider-handle {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  outline: none;
  cursor: pointer;
  cursor: hand;
  vertical-align: middle;
  height: 16px !important;
  width: 16px;
  top: -8px;
}

.form-element .sliderContainer .rangeDisplay {
  padding: 5px;
  border: 1px solid #3B8CFF;
  text-align: center;
}

.form-element .sliderContainer .rangeDisplay:focus {
  border: 1px solid #63b6ff;
  outline: none;
}

.form-element .selectContainer {
  position: relative;
}

.form-element .selectContainer .selectDrop {
  pointer-events: none;
  position: absolute;
  right: 10px;
  font-size: 12px;
  top: 14px;
  z-index: 2;
}

.form-element .selectContainer select {
  color: #787878;
  border-radius: 2px;
  background-color: #FFFFFF;
  border-color: #bec6ca;
  font-size: 12px;
  padding: 10px 12px;
  width: 100%;
  position: relative;
  z-index: 1;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  cursor: pointer;
  cursor: hand;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
}

.form-element .selectContainer select:focus {
  outline: none;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
}

.form-element .selectContainer select::-ms-expand {
  display: none;
}

.form-element .multiToggleContainer input {
  display: none;
}

.form-element .multiToggleContainer .multiToggle {
  border-top: solid 1px #bec6ca;
  border-bottom: solid 1px #bec6ca;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

.form-element .multiToggleContainer .multiToggle:first-child {
  border-left: solid 1px #bec6ca;
  border-right: solid 1px #bec6ca;
}

.form-element .multiToggleContainer .multiToggle:last-child {
  border-right: solid 1px #bec6ca;
  border-left: solid 1px #bec6ca;
}

.form-element .multiToggleContainer .multiToggle.active {
  border: solid 1px #3B8CFF;
}

.form-element .multiToggleContainer .multiToggle:hover label,
.form-element .multiToggleContainer .multiToggle.active label {
  color: #3B8CFF;
}

.form-element .multiToggleContainer label {
  cursor: pointer;
  line-height: 1.2;
  margin: 10px 0;
  padding: 2px 6px;
}

.form-element .powrToggle label {
  cursor: pointer;
  cursor: hand;
}

.form-element .powrToggle .switch {
  background: rgba(53, 64, 81, 0.1);
  position: relative;
  display: inline-block;
  text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.8);
  height: 20px;
  padding: 0px 18px;
  border-radius: 40px;
  box-shadow: 1px 0px 0px rgba(53, 64, 81, 0.3), inset 0px 4px 3px 0px rgba(53, 64, 81, 0.2);
  vertical-align: middle;
  transition: all 0.15s ease-in-out;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  float: right;
}

.form-element .powrToggle .switch.on {
  background: #3B8CFF;
}

.form-element .powrToggle .switch.on:before {
  content: '';
  font-size: 8px;
  position: absolute;
  left: 7px;
  top: -2px;
  font-weight: 100;
}

.form-element .powrToggle .switch.on .toggle {
  border: 1px solid #3B8CFF;
}

.form-element .powrToggle .switch.off:before {
  content: '';
  font-size: 8px;
  position: absolute;
  right: 7px;
  top: -2px;
  font-weight: 100;
}

.form-element .powrToggle .switch.off .toggle {
  border: 1px solid #c9cdcf;
}

.form-element .powrToggle .switch .toggle {
  background: #FFFFFF;
  position: absolute;
  top: 0px;
  width: 20px;
  height: 20px;
  border-radius: 40px;
  box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5);
  z-index: 2;
  transition: all 0.15s ease-in-out;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
}

.form-element .powrToggle .switch.round.off .toggle {
  left: 3%;
}

.form-element .powrToggle .switch.round.on .toggle {
  left: 50%;
}

.form-element .transparentToggle .switch,
.form-element .gradientToggle .switch {
  float: none;
}

.form-element .previewImage {
  max-width: 100%;
}

.popover .powrbutton,
.popover a.powrbutton:link,
.popover a.powrbutton:hover,
.popover a.powrbutton:visited,
.popover a.powrbutton:active,
.popover-title .powrbutton,
.popover-title a.powrbutton:link,
.popover-title a.powrbutton:hover,
.popover-title a.powrbutton:visited,
.popover-title a.powrbutton:active {
  box-shadow: none;
  padding: 0px;
}

.add:last-child {
  margin: 0;
}

.doubleInput .form-element {
  padding: 0;
}

#apps-wix_settings .form-element {
  padding: 15px 0;
  position: relative;
}

#apps-wix_settings .form-element.premium:before {
  display: none;
}

#apps-wix_settings .form-element:last-child {
  border-bottom: none;
}

#apps-wix_settings .form-element.removePowrLogoCheckbox {
  padding: 10px 5px;
}

#apps-wix_settings .wixDropdownWrapper {
  color: #666;
}

#apps-wix_settings .successometerSuccess .col-xs-8.noPad:before {
  color: #36c451 !important;
  content: "\F05D" !important;
  font-family: FontAwesome;
  position: absolute;
  left: -18px;
  right: auto;
  top: 0px;
  font-size: 19px;
  margin-top: 0;
  opacity: 0.6;
}

#apps-wix_settings .successometerFail .col-xs-8.noPad:before {
  color: #EB8281;
  content: "\F071";
  font-family: FontAwesome;
  position: absolute;
  left: -18px;
  right: auto;
  top: 3px;
  font-size: 17px;
  margin-top: 0;
  opacity: 0.6;
}

.sideBarToggle,
.sideBarToggleSignedOut {
  position: fixed;
  top: 0px;
  right: 0px;
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  z-index: 100000;
  font-size: 14px;
  cursor: pointer;
  cursor: hand;
  min-height: 20px;
  text-align: center;
  border-radius: 0px 0px 0px 5px;
  -webkit-border-radius: 0px 0px 0px 5px;
  -moz-border-radius: 0px 0px 0px 5px;
  -ms-border-radius: 0px 0px 0px 5px;
  -o-border-radius: 0px 0px 0px 5px;
  padding: 5px;
  border-right: none;
}

.sideBarToggle .closeSideBar,
.sideBarToggleSignedOut .closeSideBar {
  display: none;
}

.sideBarToggle.opened,
.sideBarToggleSignedOut.opened {
  right: 25%;
  padding: 10px;
}

.sideBarToggle.opened .closeSideBar,
.sideBarToggleSignedOut.opened .closeSideBar {
  display: block;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  text-align: center;
}

.sideBarToggle.opened .userInfo,
.sideBarToggleSignedOut.opened .userInfo {
  display: none;
}

.sideBarToggle .signedIn.toggle,
.sideBarToggleSignedOut .signedIn.toggle {
  padding: 5px 15px;
}

.sideBarToggle .userImage.thumb,
.sideBarToggleSignedOut .userImage.thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: none;
}

.sideBarToggle .userAccountWithoutArrow,
.sideBarToggleSignedOut .userAccountWithoutArrow {
  display: inline-block;
}

.sideBarToggle.signedOut {
  padding: 5px 20px;
}

.staticSideBar {
  position: fixed;
  overflow-y: auto;
  overflow-x: hidden;
  background: #559bff;
  background-size: cover;
  background: radial-gradient(ellipse at center, #559bff 0%, #227dff 100%);
  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #559bff), color-stop(100%, #227dff));
  background: radial-gradient(center, ellipse cover, #559bff 0%, #227dff 100%);
  background: -webkit-radial-gradient(center, ellipse cover, #559bff 0%, #227dff 100%);
  background: -moz-radial-gradient(center, ellipse cover, #559bff 0%, #227dff 100%);
  background: -ms-radial-gradient(center, ellipse cover, #559bff 0%, #227dff 100%);
  background: -o-radial-gradient(center, ellipse cover, #559bff 0%, #227dff 100%);
  right: -25%;
  z-index: 10000;
  width: 25%;
  height: 100vh;
  text-align: center;
  border-left: 1px solid #FFFFFF;
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
}

.staticSideBar.opened {
  right: 0%;
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  box-shadow: -4px 0px 5px 1px rgba(0, 0, 0, 0.18);
  -webkit-box-shadow: -4px 0px 5px 1px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: -4px 0px 5px 1px rgba(0, 0, 0, 0.18);
  -ms-box-shadow: -4px 0px 5px 1px rgba(0, 0, 0, 0.18);
  -o-box-shadow: -4px 0px 5px 1px rgba(0, 0, 0, 0.18);
}

.staticSideBar.opened .userImage.thumb {
  display: none;
}

.staticSideBar.opened .closeSideBar {
  display: block;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  text-align: center;
}

.staticSideBar .userImageContainer {
  overflow-x: hidden;
  padding: 7% 25%;
  background: #737373;
  background-size: cover;
  background: radial-gradient(ellipse at center, #737373 0%, #595959 100%);
  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #737373), color-stop(100%, #595959));
  background: radial-gradient(center, ellipse cover, #737373 0%, #595959 100%);
  background: -webkit-radial-gradient(center, ellipse cover, #737373 0%, #595959 100%);
  background: -moz-radial-gradient(center, ellipse cover, #737373 0%, #595959 100%);
  background: -ms-radial-gradient(center, ellipse cover, #737373 0%, #595959 100%);
  background: -o-radial-gradient(center, ellipse cover, #737373 0%, #595959 100%);
}

.staticSideBar .userImageContainer .imc {
  position: relative;
  cursor: pointer;
  cursor: hand;
}

.staticSideBar .userImageContainer .imc i {
  display: none;
  font-size: 3rem;
  top: 7%;
  width: 100%;
  margin-top: -15px;
  position: absolute;
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.staticSideBar .userImage {
  width: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 2px solid #FFFFFF;
  margin-bottom: 10px;
  box-shadow: 5px 5px 13px 0px rgba(0, 0, 0, 0.35);
  -webkit-box-shadow: 5px 5px 13px 0px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 5px 5px 13px 0px rgba(0, 0, 0, 0.35);
  -ms-box-shadow: 5px 5px 13px 0px rgba(0, 0, 0, 0.35);
  -o-box-shadow: 5px 5px 13px 0px rgba(0, 0, 0, 0.35);
}

.staticSideBar .sidebarNavLinks {
  list-style: none;
  padding: 0px;
  overflow-x: hidden;
  overflow: auto;
}

.staticSideBar .sidebarNavLinks li {
  list-style: none;
  width: 100%;
  text-align: left;
  padding: 20px 25px;
  box-shadow: 0px 4px 13px -2px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 4px 13px -2px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 4px 13px -2px rgba(0, 0, 0, 0.5);
  -ms-box-shadow: 0px 4px 13px -2px rgba(0, 0, 0, 0.5);
  -o-box-shadow: 0px 4px 13px -2px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  cursor: hand;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

.staticSideBar .sidebarNavLinks li i {
  font-size: 1.5rem;
  vertical-align: middle;
  float: right;
}

.staticSideBar .sidebarNavLinks li:hover {
  padding: 30px 10px;
}

.staticSideBar .sidebarNavLinks li:hover i {
  font-size: 2rem;
}

.reviewModal {
  width: 800px;
}

.review-card {
  cursor: pointer;
  cursor: hand;
}

.post-preview img,
.post-preview .imageWrapper {
  display: none;
}

.post-preview {
  display: inline-block;
}

.post-preview &gt; a {
  color: #55667D;
}

.post-preview &gt; a:hover,
.post-preview &gt; a:focus {
  text-decoration: none;
}

.post-preview &gt; a &gt; .post-title {
  color: #354051;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 8px;
  line-height: 1.5;
}

.post-preview &gt; a &gt; .post-title-featured {
  color: #354051;
  font-weight: bold;
  margin-top: 16px;
  margin-bottom: 8px;
}

.post-preview &gt; a &gt; .post-subtitle {
  color: #354051;
  margin: 0;
  font-weight: 300;
  margin-bottom: 8px;
}

.link,
.standard-tutorial__step_show_me {
  color: #3B8CFF;
  text-decoration: underline;
}

.post-preview &gt; .post-meta {
  font-size: 18px;
  font-style: italic;
  margin-top: 0;
}

.post-preview &gt; .post-meta &gt; a {
  text-decoration: none;
}

.post-preview &gt; .post-meta &gt; a:hover,
.post-preview &gt; .post-meta &gt; a:focus {
  text-decoration: underline;
}

.post-preview.compact {
  color: #55667D;
}

.post-preview.compact h2 {
  color: #FFFFFF;
  margin: 0;
  margin-bottom: 5px;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
}

.post-preview.compact h3 {
  color: #55667D;
  font-size: .8rem;
  font-style: italic;
  line-height: 1.3rem;
  font-weight: 300;
}

.post-preview.compact small {
  display: none;
}

.post-preview.compact .post-subtitle {
  color: #a0abbe;
}

.post-preview.compact .post-title {
  color: #a0abbe;
}

.dashboardFooter footer a &gt; .post-title,
.dashboardFooter footer a &gt; .post-subtitle {
  color: #55667D;
}

.commonFooter {
  background-color: #354051;
  color: #6b7f9a;
  display: inline-block;
  width: 100%;
  padding: 40px;
}

.commonFooter ul li {
  margin-bottom: 8px;
}

.commonFooter .footer__subtitle {
  color: #FFFFFF;
  margin-bottom: 32px;
}

.commonFooter a {
  color: #6b7f9a;
  text-decoration: none;
}

.commonFooter .ourSocialIcons {
  margin-top: 10px;
}

.commonFooter .ourSocialIcons li {
  display: inline-block;
}

.commonFooter .ourSocialIcons .fa {
  display: inline-block;
  min-width: 35px;
  text-align: center;
  padding: 10px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  display: inline-block;
  margin: 0px 5px;
}

footer {
  padding-top: 40px;
  padding-bottom: 20px;
}

footer .fa {
  padding: 3px 10px;
  border-radius: 3px;
}

footer .d-flex {
  display: flex !important;
}

footer .mb-1 {
  margin-bottom: 1rem !important;
}

footer .pr-4 {
  padding-right: 2rem !important;
}

.half-spacing {
  height: 10px;
  display: block;
}

.spacing {
  height: 20px;
}

.dashboardFooter {
  border-top: 1px solid #DDD;
  padding-top: 15px;
  margin-top: 15px;
}

.dashboardFooter footer {
  background-color: transparent;
}

.dashboardFooter footer .footer__subtitle {
  font-weight: bold;
  color: #55667D;
}

.dashboardFooter footer .partners-item a {
  white-space: nowrap;
}

.dashboardFooter footer li a {
  color: #3B8CFF;
}

.common-footer__new-design {
  padding: 32px;
  margin-top: 8px;
}

.common-footer__new-design * {
  font-family: Gordita;
}

@media (max-width: 768px) {
  .common-footer__new-design {
    padding: 0px;
  }
}

.common-footer__new-design .footer-col {
  min-height: 245px;
}

.common-footer__new-design .footer__subtitle {
  margin-bottom: 16px;
  font-family: Gordita Medium;
}

@media (max-width: 768px) {
  .common-footer__new-design .footer__subtitle {
    margin-top: 32px;
  }
}

.common-footer__new-design li a,
.common-footer__new-design div {
  line-height: 28px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .common-footer__new-design .footer__links {
    display: none;
  }
}

@keyframes preloader-scale {
  0% {
    background-color: #3B8CFF;
    transform: scale(0.5);
  }

  50% {
    background-color: transparent;
    transform: scale(1);
  }

  100% {
    background-color: #3B8CFF;
    transform: scale(0.5);
  }
}

.preloader {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.preloader .preloader__box {
  animation: preloader-scale 2s infinite;
  border: 1px solid #3B8CFF;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  height: 10px;
  left: 0;
  position: absolute;
  transform: transformZ(0);
  width: 10px;
}

.preloader .preloader__box:nth-child(1n) {
  animation-delay: 0s;
  left: -18px;
}

.preloader .preloader__box:nth-child(2n) {
  animation-delay: 0.2s;
  left: 0;
}

.preloader .preloader__box:nth-child(3n) {
  animation-delay: 0.4s;
  left: 18px;
}

.preloader .preloader__message {
  position: absolute;
  width: 300px;
  left: -150px;
  top: 16px;
  text-align: center;
}

.preloader.inline {
  position: relative;
  transform: none;
  width: 0;
  min-height: 30px;
}

.loader {
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.loader .circle {
  background-color: #5287df;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: scale-loader 1.4s infinite ease-in-out both;
  animation: scale-loader 1.4s infinite ease-in-out both;
  vertical-align: middle;
}

.loader .small {
  width: 10px;
  height: 10px;
  opacity: .3;
}

.loader .medium {
  width: 30px;
  height: 30px;
  opacity: .7;
}

.loader .powr-logo-icon {
  fill: #5287df;
  width: 60px;
  height: 60px;
  opacity: 1;
  vertical-align: middle;
  display: inline-block;
  -webkit-animation: scale-loader 1.4s infinite ease-in-out both;
  animation: scale-loader 1.4s infinite ease-in-out both;
}

.loader .small {
  -webkit-animation-delay: -0.48s;
  animation-delay: -0.48s;
}

.loader .medium {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

@-webkit-keyframes scale-loader {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes scale-loader {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.humanistic-ab-group-humanistic .signUpLink,
.humanistic-ab-group-humanistic .signInLink,
.signin-group-humanistic .signUpLink,
.signin-group-humanistic .signInLink {
  font-size: 1rem;
}

.humanistic-ab-group-humanistic #sign-in-modal .modal-dialog,
.signin-group-humanistic #sign-in-modal .modal-dialog {
  position: absolute !important;
  top: 0;
  padding: 0px;
  width: 100%;
}

@media (min-width: 768px) {
  .humanistic-ab-group-humanistic #sign-in-modal .modal-dialog,
  .signin-group-humanistic #sign-in-modal .modal-dialog {
    width: 100%;
  }
}

.humanistic-ab-group-humanistic .tab-content,
.signin-group-humanistic .tab-content {
  height: 100%;
}

.humanistic-ab-group-humanistic .tab-content .tab-content-title,
.signin-group-humanistic .tab-content .tab-content-title {
  font-size: 2rem;
}

.humanistic-ab-group-humanistic .signInContent,
.signin-group-humanistic .signInContent {
  height: 100vh;
  position: absolute;
  top: 0;
}

@media (min-width: 768px) {
  .humanistic-ab-group-humanistic .signInContent,
  .signin-group-humanistic .signInContent {
    width: 100%;
    height: 100vh;
  }
}

.humanistic-ab-group-humanistic .signInContent .modal-content,
.humanistic-ab-group-humanistic .signInContent .signin-signup-platform,
.signin-group-humanistic .signInContent .modal-content,
.signin-group-humanistic .signInContent .signin-signup-platform {
  overflow-y: auto;
  height: 100%;
}

.humanistic-ab-group-humanistic .signInContent .modal-content .modal-header,
.humanistic-ab-group-humanistic .signInContent .signin-signup-platform .modal-header,
.signin-group-humanistic .signInContent .modal-content .modal-header,
.signin-group-humanistic .signInContent .signin-signup-platform .modal-header {
  display: contents;
}

.humanistic-ab-group-humanistic .signInContent .modal-content .modal-header .closeModal:after,
.humanistic-ab-group-humanistic .signInContent .signin-signup-platform .modal-header .closeModal:after,
.signin-group-humanistic .signInContent .modal-content .modal-header .closeModal:after,
.signin-group-humanistic .signInContent .signin-signup-platform .modal-header .closeModal:after {
  content: '\F00D';
  font-family: 'Font Awesome 5 Pro';
  font-size: 0.9375rem;
  opacity: 0.5;
  top: 16px;
  right: 32px;
  position: fixed;
  justify-content: center;
  cursor: pointer;
  color: #3B8CFF;
  width: 45px;
  height: 45px;
  z-index: 1;
  display: flex;
  align-items: center;
  background-color: #eff2f4;
  border-radius: 100%;
}

.humanistic-ab-group-humanistic .signInContent .modal-content .sign_in__form_panel,
.humanistic-ab-group-humanistic .signInContent .modal-content .sign-up__form,
.humanistic-ab-group-humanistic .signInContent .signin-signup-platform .sign_in__form_panel,
.humanistic-ab-group-humanistic .signInContent .signin-signup-platform .sign-up__form,
.signin-group-humanistic .signInContent .modal-content .sign_in__form_panel,
.signin-group-humanistic .signInContent .modal-content .sign-up__form,
.signin-group-humanistic .signInContent .signin-signup-platform .sign_in__form_panel,
.signin-group-humanistic .signInContent .signin-signup-platform .sign-up__form {
  margin-left: auto;
  margin-right: auto;
  width: 386px;
}

@media (max-width: 768px) {
  .humanistic-ab-group-humanistic .signInContent .modal-content .sign_in__form_panel,
  .humanistic-ab-group-humanistic .signInContent .modal-content .sign-up__form,
  .humanistic-ab-group-humanistic .signInContent .signin-signup-platform .sign_in__form_panel,
  .humanistic-ab-group-humanistic .signInContent .signin-signup-platform .sign-up__form,
  .signin-group-humanistic .signInContent .modal-content .sign_in__form_panel,
  .signin-group-humanistic .signInContent .modal-content .sign-up__form,
  .signin-group-humanistic .signInContent .signin-signup-platform .sign_in__form_panel,
  .signin-group-humanistic .signInContent .signin-signup-platform .sign-up__form {
    padding-left: 16px;
    padding-right: 32px;
  }
}

@media (min-width: 768px) {
  .humanistic-ab-group-humanistic .signInContent .modal-content,
  .humanistic-ab-group-humanistic .signInContent .signin-signup-platform,
  .signin-group-humanistic .signInContent .modal-content,
  .signin-group-humanistic .signInContent .signin-signup-platform {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    max-width: 100%;
  }
}

.humanistic-ab-group-humanistic .col-lg-5,
.signin-group-humanistic .col-lg-5 {
  padding-left: 0px;
}

.humanistic-ab-group-humanistic .col-lg-7,
.signin-group-humanistic .col-lg-7 {
  padding: 0px;
}

.humanistic-ab-group-humanistic .left-section,
.signin-group-humanistic .left-section {
  height: 100%;
}

@media (max-width: 1199px) {
  .humanistic-ab-group-humanistic .left-section,
  .signin-group-humanistic .left-section {
    display: none;
  }
}

@media (min-width: 1200px) {
  .humanistic-ab-group-humanistic .left-section .left-img,
  .signin-group-humanistic .left-section .left-img {
    height: 100vh;
    background-position: center;
    background-size: cover;
    width: 100%;
    background-image: linear-gradient(104.32deg, rgba(82, 135, 223, 0.33) 34.43%, rgba(170, 116, 229, 0.33) 132.21%, rgba(82, 135, 223, 0.33) 183.13%), url("https://www.powrcdn.com/registration/photo-of-woman-using-her-laptop.jpg");
  }

  .humanistic-ab-group-humanistic .left-section .square-form-builder,
  .signin-group-humanistic .left-section .square-form-builder {
    height: 100vh;
    background-position: center;
    background-size: cover;
    width: 100%;
    background-image: url("https://www.powrcdn.com/registration/square_form_builder_main.jpg");
  }

  .humanistic-ab-group-humanistic .left-section .square-multi-slider,
  .signin-group-humanistic .left-section .square-multi-slider {
    height: 100vh;
    background-position: center;
    background-size: cover;
    width: 100%;
    background-image: url("https://www.powrcdn.com/registration/square_slider_main.jpg");
  }

  .humanistic-ab-group-humanistic .left-section .app-details,
  .signin-group-humanistic .left-section .app-details {
    position: fixed;
    top: 38%;
    left: 6%;
  }

  .humanistic-ab-group-humanistic .left-section .app-details .powr_square_logo_with_dashed,
  .signin-group-humanistic .left-section .app-details .powr_square_logo_with_dashed {
    content: url("https://www.powrcdn.com/registration/powr+square_logo_main.png");
    width: 185px;
    height: 80px;
    margin-bottom: 8px;
    position: relative;
    left: -8%;
  }

  .humanistic-ab-group-humanistic .left-section .app-details__description,
  .signin-group-humanistic .left-section .app-details__description {
    width: 250px;
    line-height: 24px;
    font-size: 0.875rem;
  }
}

.humanistic-ab-group-humanistic .right-section,
.signin-group-humanistic .right-section {
  padding-top: 100px;
}

.humanistic-ab-group-humanistic .right-section .button,
.signin-group-humanistic .right-section .button {
  max-width: 386px;
}

.humanistic-ab-group-humanistic .right-section .input-group,
.signin-group-humanistic .right-section .input-group {
  max-width: 386px;
}

.humanistic-ab-group-humanistic .right-section .terms,
.signin-group-humanistic .right-section .terms {
  max-width: 386px;
}

.humanistic-ab-group-humanistic .right-section .login-divider,
.signin-group-humanistic .right-section .login-divider {
  align-items: center;
  display: flex;
  justify-content: space-between;
  text-align: center;
  font-size: 0.875rem;
  max-width: 386px;
  margin: 0 auto;
  margin-top: 16px;
  margin-bottom: 16px;
}

.humanistic-ab-group-humanistic .right-section .login-divider .login-divider__copy,
.signin-group-humanistic .right-section .login-divider .login-divider__copy {
  color: #354051;
  width: 50%;
}

.humanistic-ab-group-humanistic .right-section .login-divider .login-divider__line,
.signin-group-humanistic .right-section .login-divider .login-divider__line {
  background-color: #e0e6ea;
  height: 1px;
  width: 40%;
}

.humanistic-ab-group-humanistic .right-section__form,
.signin-group-humanistic .right-section__form {
  margin: 0 auto;
  width: 386px;
}

@media (max-width: 1199px) {
  .humanistic-ab-group-humanistic .right-section .with-powr-square-logo,
  .signin-group-humanistic .right-section .with-powr-square-logo {
    padding-top: 24px;
  }

  .humanistic-ab-group-humanistic .right-section .powr_square_logo,
  .signin-group-humanistic .right-section .powr_square_logo {
    content: url("https://www.powrcdn.com/registration/powr+square_logo_tablet.png");
    width: 152px;
    height: 48px;
    display: block;
    margin: 0 auto 32px auto;
  }
}

.humanistic-ab-group-humanistic .signInContent__logo,
.signin-group-humanistic .signInContent__logo {
  position: absolute;
}

.humanistic-ab-group-humanistic .sign_up,
.humanistic-ab-group-humanistic .sign_in,
.signin-group-humanistic .sign_up,
.signin-group-humanistic .sign_in {
  position: relative;
}

.humanistic-ab-group-humanistic .sign_up .col-lg-5,
.humanistic-ab-group-humanistic .sign_in .col-lg-5,
.signin-group-humanistic .sign_up .col-lg-5,
.signin-group-humanistic .sign_in .col-lg-5 {
  padding: 0px;
}

.humanistic-ab-group-humanistic .sign_up .col-lg-7,
.humanistic-ab-group-humanistic .sign_in .col-lg-7,
.signin-group-humanistic .sign_up .col-lg-7,
.signin-group-humanistic .sign_in .col-lg-7 {
  padding: 0px;
}

.humanistic-ab-group-humanistic .text-component__label,
.signin-group-humanistic .text-component__label {
  background: none;
}

.humanistic-ab-group-humanistic .text-component__label__hint,
.signin-group-humanistic .text-component__label__hint {
  font-weight: normal;
}

/**
 * React Select
 * ============
 * Created by Jed Watson and Joss Mackison for KeystoneJS, http://www.keystonejs.com/
 * https://twitter.com/jedwatson https://twitter.com/jossmackison https://twitter.com/keystonejs
 * MIT License: https://github.com/JedWatson/react-select
*/

/*! purgecss start ignore */

/*! purgecss end ignore */

@keyframes Select-animation-spin {
  to {
    transform: rotate(1turn);
  }
}

@-webkit-keyframes Select-animation-spin {
  to {
    -webkit-transform: rotate(1turn);
  }
}

/*! purgecss start ignore */

.Select {
  position: relative;
}

.Select input::-webkit-contacts-auto-fill-button,
.Select input::-webkit-credentials-auto-fill-button {
  display: none !important;
}

.Select input::-ms-clear {
  display: none !important;
}

.Select input::-ms-reveal {
  display: none !important;
}

.Select,
.Select div,
.Select input,
.Select span {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.Select.is-disabled .Select-arrow-zone {
  cursor: default;
  pointer-events: none;
}

.Select.is-disabled &gt; .Select-control {
  background-color: #f9f9f9;
}

.Select.is-disabled &gt; .Select-control:hover {
  box-shadow: none;
}

.Select.is-searchable.is-open &gt; .Select-control {
  cursor: text;
}

.Select.is-searchable.is-focused:not(.is-open) &gt; .Select-control {
  cursor: text;
}

.Select.is-open &gt; .Select-control {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background: #fff;
  border-color: #b3b3b3 #ccc #d9d9d9;
}

.Select.is-open &gt; .Select-control .Select-arrow {
  top: -2px;
  border-color: transparent transparent #999;
  border-width: 0 5px 5px;
}

.Select.is-focused &gt; .Select-control {
  background: #fff;
}

.Select.is-focused:not(.is-open) &gt; .Select-control {
  border-color: #08c #0099e6 #0099e6;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 5px -1px fade(#08c, 50%);
}

.Select.has-value.is-clearable.Select--single &gt; .Select-control .Select-value {
  padding-right: 42px;
}

.Select.has-value.Select--single &gt; .Select-control .Select-value .Select-value-label,
.Select.has-value.is-pseudo-focused.Select--single &gt; .Select-control .Select-value .Select-value-label {
  color: #333;
}

.Select.has-value.Select--single &gt; .Select-control .Select-value a.Select-value-label,
.Select.has-value.is-pseudo-focused.Select--single &gt; .Select-control .Select-value a.Select-value-label {
  cursor: pointer;
  text-decoration: none;
}

.Select.has-value.Select--single &gt; .Select-control .Select-value a.Select-value-label:hover,
.Select.has-value.Select--single &gt; .Select-control .Select-value a.Select-value-label:focus,
.Select.has-value.is-pseudo-focused.Select--single &gt; .Select-control .Select-value a.Select-value-label:hover,
.Select.has-value.is-pseudo-focused.Select--single &gt; .Select-control .Select-value a.Select-value-label:focus {
  color: #08c;
  outline: none;
  text-decoration: underline;
}

.Select.has-value.Select--single &gt; .Select-control .Select-value a.Select-value-label:focus,
.Select.has-value.is-pseudo-focused.Select--single &gt; .Select-control .Select-value a.Select-value-label:focus {
  background: #fff;
}

.Select.has-value.is-pseudo-focused .Select-input {
  opacity: 0;
}

.Select.is-open .Select-arrow,
.Select .Select-arrow-zone:hover &gt; .Select-arrow {
  border-top-color: #666;
}

.Select.Select--rtl {
  direction: rtl;
  text-align: right;
}

.Select-control {
  background-color: #fff;
  border-color: #d9d9d9 #ccc #b3b3b3;
  border-radius: 4px;
  border: 1px solid #ccc;
  color: #333;
  cursor: default;
  display: table;
  border-spacing: 0;
  border-collapse: separate;
  height: 36px;
  outline: none;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.Select-control:hover {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.Select-control .Select-input:focus {
  outline: none;
  background: #fff;
}

.Select-placeholder,
.Select--single &gt; .Select-control .Select-value {
  bottom: 0;
  color: #aaa;
  left: 0;
  line-height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  position: absolute;
  right: 0;
  top: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.Select-input {
  height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: middle;
}

.Select-input &gt; input {
  width: 100%;
  background: none transparent;
  border: 0 none;
  box-shadow: none;
  cursor: default;
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  outline: none;
  line-height: 17px;
  /* For IE 8 compatibility */
  padding: 8px 0 12px;
  /* For IE 8 compatibility */
  -webkit-appearance: none;
}

.is-focused .Select-input &gt; input {
  cursor: text;
}

.Select-control:not(.is-searchable) &gt; .Select-input {
  outline: none;
}

.Select-loading-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 16px;
}

.Select-loading {
  -webkit-animation: Select-animation-spin 400ms infinite linear;
  -o-animation: Select-animation-spin 400ms infinite linear;
  animation: Select-animation-spin 400ms infinite linear;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-right-color: #333;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.Select-clear-zone {
  -webkit-animation: Select-animation-fadeIn 200ms;
  -o-animation: Select-animation-fadeIn 200ms;
  animation: Select-animation-fadeIn 200ms;
  color: #999;
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 17px;
}

.Select-clear-zone:hover {
  color: #D0021B;
}

.Select-clear {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
}

.Select--multi .Select-clear-zone {
  width: 17px;
}

.Select--multi .Select-multi-value-wrapper {
  display: inline-block;
}

.Select .Select-aria-only {
  position: absolute;
  display: inline-block;
  height: 1px;
  width: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  float: left;
}

.Select-arrow-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 25px;
  padding-right: 5px;
}

.Select--rtl .Select-arrow-zone {
  padding-right: 0;
  padding-left: 5px;
}

.Select-arrow {
  border-color: #999 transparent transparent;
  border-style: solid;
  border-width: 5px 5px 2.5px;
  display: inline-block;
  height: 0;
  width: 0;
  position: relative;
}

@-webkit-keyframes Select-animation-fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes Select-animation-fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*! purgecss end ignore */

.Select-menu-outer {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top-color: #e6e6e6;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  margin-top: -1px;
  max-height: 200px;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 1000;
  -webkit-overflow-scrolling: touch;
}

.Select-menu {
  max-height: 198px;
  overflow-y: auto;
}

.Select-option {
  box-sizing: border-box;
  background-color: #fff;
  color: #666666;
  cursor: pointer;
  display: block;
}

.Select-option:last-child {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.Select-option.is-selected {
  background-color: #f5faff;
  color: #333;
}

.Select-option.is-focused {
  background-color: #f2f9fc;
  color: #333;
}

.Select-option.is-disabled {
  color: #cccccc;
  cursor: default;
}

.Select-noresults {
  box-sizing: border-box;
  color: #999999;
  cursor: default;
  display: block;
  padding: 8px 10px;
}

.Select--multi .Select-input {
  vertical-align: middle;
  margin-left: 10px;
  padding: 0;
}

.Select--multi.Select--rtl .Select-input {
  margin-left: 0;
  margin-right: 10px;
}

.Select--multi.has-value .Select-input {
  margin-left: 5px;
}

.Select--multi .Select-value {
  background-color: #f2f9fc;
  border-radius: 2px;
  border: 1px solid #c9e6f2;
  color: #08c;
  display: inline-block;
  font-size: 0.9em;
  margin-left: 5px;
  margin-top: 5px;
  vertical-align: top;
}

.Select--multi .Select-value-icon,
.Select--multi .Select-value-label {
  display: inline-block;
  vertical-align: middle;
}

.Select--multi .Select-value-label {
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
  cursor: default;
  padding: 2px 5px;
}

.Select--multi a.Select-value-label {
  color: #08c;
  cursor: pointer;
  text-decoration: none;
}

.Select--multi a.Select-value-label:hover {
  text-decoration: underline;
}

.Select--multi .Select-value-icon {
  cursor: pointer;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  border-right: 1px solid #c9e6f2;
  padding: 1px 5px 3px;
}

.Select--multi .Select-value-icon:hover,
.Select--multi .Select-value-icon:focus {
  background-color: #ddeff7;
  color: #0077b3;
}

.Select--multi .Select-value-icon:active {
  background-color: #c9e6f2;
}

.Select--multi.Select--rtl .Select-value {
  margin-left: 0;
  margin-right: 5px;
}

.Select--multi.Select--rtl .Select-value-icon {
  border-right: none;
  border-left: 1px solid #c9e6f2;
}

.Select--multi.is-disabled .Select-value {
  background-color: #fcfcfc;
  border: 1px solid #e3e3e3;
  color: #333;
}

.Select--multi.is-disabled .Select-value-icon {
  cursor: not-allowed;
  border-right: 1px solid #e3e3e3;
}

.Select--multi.is-disabled .Select-value-icon:hover,
.Select--multi.is-disabled .Select-value-icon:focus,
.Select--multi.is-disabled .Select-value-icon:active {
  background-color: #fcfcfc;
}

@keyframes Select-animation-spin {
  to {
    transform: rotate(1turn);
  }
}

@-webkit-keyframes Select-animation-spin {
  to {
    -webkit-transform: rotate(1turn);
  }
}

.choose-site-overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 3;
  background-color: #FFFFFF;
}

.choose-site-overlay__content h4 {
  font-family: "Gordita Bold", sans-serif;
}

.choose-site-overlay__dropdown {
  width: 315px;
}

.choose-site-overlay__dropdown .Select-control {
  height: 45px;
}

.choose-site-overlay__dropdown .Select--single &gt; .Select-control .Select-value {
  line-height: 42px;
}

.choose-site-overlay__dropdown .select-component .option-component__content {
  padding: 8px;
}

.choose-site-overlay__dropdown img {
  width: 30px;
  margin-right: 8px;
}

.choose-site-overlay button {
  width: initial;
}

#sign-in-modal {
  z-index: 999999999;
}

@media (min-width: 768px) {
  #sign-in-modal {
    position: fixed;
  }
}

#sign-in-modal .modal-dialog {
  padding: 0;
  width: 100%;
}

@media (min-width: 768px) {
  #sign-in-modal .modal-dialog {
    padding: 10px;
    width: 600px;
  }
}

.signInContent {
  color: #354051;
  margin: 0 auto;
  width: 100%;
  font-size: .9rem;
}

@media (min-width: 768px) {
  .signInContent {
    width: 350px;
  }
}

.signInContent p {
  line-height: .9rem;
}

.signInContent .modal-content,
.signInContent .signin-signup-platform {
  border-radius: 0;
  right: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
  height: auto;
  width: 100%;
  border-top: none;
}

@media (max-width: 400px) {
  .signInContent .modal-content,
  .signInContent .signin-signup-platform {
    height: 100vh;
  }
}

@media (min-width: 768px) {
  .signInContent .modal-content,
  .signInContent .signin-signup-platform {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    max-width: 800px;
  }
}

.signInContent .modal-content .industry-container .industry,
.signInContent .signin-signup-platform .industry-container .industry {
  background: transparent;
  color: grey;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  cursor: pointer;
  z-index: 2;
}

.signInContent .modal-content .industry-container:after,
.signInContent .signin-signup-platform .industry-container:after {
  content: '\F078';
  font-family: 'Font Awesome 5 Pro';
  position: absolute;
  right: 25px;
  top: 7px;
  z-index: 1;
}

.signInContent .modal-content .signTabParent,
.signInContent .signin-signup-platform .signTabParent {
  border-bottom: 0.5px solid grey;
  opacity: 0.1;
  border-radius: 6px;
}

.signInContent .modal-content .signTab,
.signInContent .signin-signup-platform .signTab {
  border-top: 2px;
  border-radius: 0px 0px 0px 0px;
  -webkit-border-radius: 0px 0px 0px 0px;
  -moz-border-radius: 0px 0px 0px 0px;
  -ms-border-radius: 0px 0px 0px 0px;
  -o-border-radius: 0px 0px 0px 0px;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.signInContent .modal-content .signTab.signUpTab.active,
.signInContent .modal-content .signTab.signInTab.active,
.signInContent .signin-signup-platform .signTab.signUpTab.active,
.signInContent .signin-signup-platform .signTab.signInTab.active {
  text-align: center;
  z-index: 10000000000;
}

.signInContent .modal-content .signTab.signUpTab,
.signInContent .signin-signup-platform .signTab.signUpTab {
  display: table;
  margin: auto;
  position: relative;
  left: 75%;
  width: 100%;
}

.signInContent .modal-content .signTab.signUpTab.active,
.signInContent .signin-signup-platform .signTab.signUpTab.active {
  font-weight: bold;
  border-bottom: 2px solid #5287DF;
}

.signInContent .modal-content .signTab.signInTab,
.signInContent .signin-signup-platform .signTab.signInTab {
  display: table;
  margin: auto;
  position: relative;
  left: 15%;
  width: 100%;
}

.signInContent .modal-content .signTab.signInTab.active,
.signInContent .signin-signup-platform .signTab.signInTab.active {
  font-weight: bold;
  border-bottom: 2px solid #5287DF;
}

.signInContent .modal-content .modal-header,
.signInContent .signin-signup-platform .modal-header {
  border: none;
  border-radius: 3px 3px 0px 0px;
  -webkit-border-radius: 3px 3px 0px 0px;
  -moz-border-radius: 3px 3px 0px 0px;
  -ms-border-radius: 3px 3px 0px 0px;
  -o-border-radius: 3px 3px 0px 0px;
}

.signInContent .modal-content .modal-header .closeModal:after,
.signInContent .signin-signup-platform .modal-header .closeModal:after {
  content: '\F00D';
  font-family: 'Font Awesome 5 Pro';
  font-size: 0.9375rem;
  position: absolute;
  right: 10px;
  top: 5px;
  cursor: pointer;
  opacity: 0.5;
}

.signInContent .modal-content .tab-content,
.signInContent .signin-signup-platform .tab-content {
  margin: 0px;
}

.signInContent .modal-content .tab-content .loader,
.signInContent .signin-signup-platform .tab-content .loader {
  width: 100%;
}

.signInContent .modal-content .tab-content .tab-content-title,
.signInContent .signin-signup-platform .tab-content .tab-content-title {
  font-weight: bold;
  font-size: 1.5rem;
}

.signInContent .modal-content .tab-content .tab-content-title.old_login,
.signInContent .signin-signup-platform .tab-content .tab-content-title.old_login {
  font-weight: unset;
}

.signInContent .modal-content .tab-content .sign-in-footer,
.signInContent .modal-content .tab-content .resetPassword,
.signInContent .signin-signup-platform .tab-content .sign-in-footer,
.signInContent .signin-signup-platform .tab-content .resetPassword {
  font-size: 0.8rem;
}

.signInContent .modal-content .tab-content .recieve-email-text,
.signInContent .signin-signup-platform .tab-content .recieve-email-text {
  color: #636b75;
}

.signInContent .modal-content .tab-content .terms,
.signInContent .signin-signup-platform .tab-content .terms {
  font-size: 0.625rem;
}

.signInContent .modal-content .tab-content .terms .text,
.signInContent .signin-signup-platform .tab-content .terms .text {
  text-decoration: underline;
}

.signInContent .modal-content .tab-content .resetPassword,
.signInContent .signin-signup-platform .tab-content .resetPassword {
  padding: 20px;
}

.signInContent .modal-content .tab-content .resetPassword.old_login,
.signInContent .signin-signup-platform .tab-content .resetPassword.old_login {
  text-align: center;
  display: block;
}

.signInContent .modal-content .tab-content .link,
.signInContent .modal-content .tab-content .standard-tutorial__step_show_me,
.signInContent .signin-signup-platform .tab-content .link,
.signInContent .signin-signup-platform .tab-content .standard-tutorial__step_show_me {
  cursor: pointer;
  display: inline-block;
  color: #3B8CFF;
  text-decoration: underline;
}

.signInContent .modal-content .tab-content .sign-in,
.signInContent .modal-content .tab-content .sign-up,
.signInContent .signin-signup-platform .tab-content .sign-in,
.signInContent .signin-signup-platform .tab-content .sign-up {
  padding: 0 50px;
}

.signInContent .modal-content .tab-content .sign-in .remember-me,
.signInContent .modal-content .tab-content .sign-up .remember-me,
.signInContent .signin-signup-platform .tab-content .sign-in .remember-me,
.signInContent .signin-signup-platform .tab-content .sign-up .remember-me {
  font-size: 10px;
}

.signInContent .modal-content .tab-content .sign-in .old-login-container,
.signInContent .modal-content .tab-content .sign-up .old-login-container,
.signInContent .signin-signup-platform .tab-content .sign-in .old-login-container,
.signInContent .signin-signup-platform .tab-content .sign-up .old-login-container {
  font-size: 20px;
}

.signInContent .modal-content .tab-content .sign-in .old-login-container .link,
.signInContent .modal-content .tab-content .sign-in .old-login-container .standard-tutorial__step_show_me,
.signInContent .modal-content .tab-content .sign-up .old-login-container .link,
.signInContent .modal-content .tab-content .sign-up .old-login-container .standard-tutorial__step_show_me,
.signInContent .signin-signup-platform .tab-content .sign-in .old-login-container .link,
.signInContent .signin-signup-platform .tab-content .sign-in .old-login-container .standard-tutorial__step_show_me,
.signInContent .signin-signup-platform .tab-content .sign-up .old-login-container .link,
.signInContent .signin-signup-platform .tab-content .sign-up .old-login-container .standard-tutorial__step_show_me {
  cursor: pointer;
  color: #354051;
  text-decoration: unset;
  font-weight: normal;
}

.signInContent .modal-content .tab-content .sign-in .old-login-container .link.active,
.signInContent .modal-content .tab-content .sign-in .old-login-container .active.standard-tutorial__step_show_me,
.signInContent .modal-content .tab-content .sign-up .old-login-container .link.active,
.signInContent .modal-content .tab-content .sign-up .old-login-container .active.standard-tutorial__step_show_me,
.signInContent .signin-signup-platform .tab-content .sign-in .old-login-container .link.active,
.signInContent .signin-signup-platform .tab-content .sign-in .old-login-container .active.standard-tutorial__step_show_me,
.signInContent .signin-signup-platform .tab-content .sign-up .old-login-container .link.active,
.signInContent .signin-signup-platform .tab-content .sign-up .old-login-container .active.standard-tutorial__step_show_me {
  text-decoration: underline;
  font-weight: bold;
}

.signInContent .modal-content .tab-content .euVersion .facebookSignIn,
.signInContent .modal-content .tab-content .euVersion .googleSignIn,
.signInContent .modal-content .tab-content .euVersion #sign-up-submit,
.signInContent .signin-signup-platform .tab-content .euVersion .facebookSignIn,
.signInContent .signin-signup-platform .tab-content .euVersion .googleSignIn,
.signInContent .signin-signup-platform .tab-content .euVersion #sign-up-submit {
  display: none;
}

.signInContent .modal-content .tab-content .button,
.signInContent .signin-signup-platform .tab-content .button {
  display: block;
  width: 100%;
}

.signInContent .modal-content .tab-content .form-group,
.signInContent .signin-signup-platform .tab-content .form-group {
  margin: 0;
}

.signInContent .modal-content .tab-content .socialSignIn,
.signInContent .signin-signup-platform .tab-content .socialSignIn {
  width: 100%;
  font-size: .8rem;
  text-align: left;
  font-size: 1rem;
}

.signInContent .modal-content .tab-content .socialSignIn .googleSignIn,
.signInContent .signin-signup-platform .tab-content .socialSignIn .googleSignIn {
  background-color: white;
  position: relative;
}

.signInContent .modal-content .tab-content .socialSignIn .googleSignIn .text,
.signInContent .signin-signup-platform .tab-content .socialSignIn .googleSignIn .text {
  color: grey;
}

.signInContent .modal-content .tab-content .socialSignIn .googleSignIn .googleImg,
.signInContent .signin-signup-platform .tab-content .socialSignIn .googleSignIn .googleImg {
  position: absolute;
  width: 20px;
  left: 12px;
}

.signInContent .modal-content .tab-content .socialSignIn .googleSignInEUContinue,
.signInContent .signin-signup-platform .tab-content .socialSignIn .googleSignInEUContinue {
  background-color: white;
  position: relative;
}

.signInContent .modal-content .tab-content .socialSignIn .googleSignInEUContinue .text,
.signInContent .signin-signup-platform .tab-content .socialSignIn .googleSignInEUContinue .text {
  color: grey;
}

.signInContent .modal-content .tab-content .socialSignIn .googleSignInEUContinue .googleImg,
.signInContent .signin-signup-platform .tab-content .socialSignIn .googleSignInEUContinue .googleImg {
  position: absolute;
  width: 15px;
  left: 12px;
}

.signInContent .modal-content .tab-content .socialSignIn .facebookSignIn,
.signInContent .signin-signup-platform .tab-content .socialSignIn .facebookSignIn {
  position: relative;
}

.signInContent .modal-content .tab-content .socialSignIn .facebookSignIn .FBimage,
.signInContent .signin-signup-platform .tab-content .socialSignIn .facebookSignIn .FBimage {
  position: absolute;
  left: 15px;
  width: 11px;
}

.signInContent .modal-content .tab-content .socialSignIn .facebookSignInEUContinue,
.signInContent .signin-signup-platform .tab-content .socialSignIn .facebookSignInEUContinue {
  position: relative;
}

.signInContent .modal-content .tab-content .socialSignIn .facebookSignInEUContinue .FBimage,
.signInContent .signin-signup-platform .tab-content .socialSignIn .facebookSignInEUContinue .FBimage {
  position: absolute;
  left: 15px;
  width: 9px;
}

.signInContent .modal-content .tab-content .saveProgress,
.signInContent .signin-signup-platform .tab-content .saveProgress {
  font-size: 1rem;
}

.signInContent .modal-content .tab-content .input-group,
.signInContent .signin-signup-platform .tab-content .input-group {
  display: block;
  width: 100%;
}

.signInContent .modal-content .tab-content .input-group input,
.signInContent .signin-signup-platform .tab-content .input-group input {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.signInContent .modal-content .tab-content .input-group.flex-row,
.signInContent .modal-content .tab-content .input-group.text-with-button,
.signInContent .signin-signup-platform .tab-content .input-group.flex-row,
.signInContent .signin-signup-platform .tab-content .input-group.text-with-button {
  display: flex;
}

.signInContent .modal-content .tab-content ul,
.signInContent .signin-signup-platform .tab-content ul {
  margin: 0px;
}

.signInContent .modal-content .tab-content ul .errors,
.signInContent .signin-signup-platform .tab-content ul .errors {
  border-radius: 5px;
}

.signInContent .modal-content .tab-content ul .errors ul,
.signInContent .signin-signup-platform .tab-content ul .errors ul {
  margin: 0px;
}

.signInContent .modal-content .tab-content ul label,
.signInContent .signin-signup-platform .tab-content ul label {
  font-size: 11px;
}

.signInContent .modal-content .tab-content ul .small,
.signInContent .signin-signup-platform .tab-content ul .small {
  font-size: 12px;
}

.signInContent .modal-content .tab-content .noPadRight,
.signInContent .signin-signup-platform .tab-content .noPadRight {
  padding-right: 0px;
}

.signInContent .modal-content .tab-content .login-divider,
.signInContent .signin-signup-platform .tab-content .login-divider {
  align-items: center;
  display: flex;
  justify-content: space-between;
  text-align: center;
  font-size: 0.875rem;
  margin: 16px 0;
}

@media (min-width: 768px) {
  .signInContent .modal-content .tab-content .login-divider.old_login,
  .signInContent .signin-signup-platform .tab-content .login-divider.old_login {
    padding-top: 55px;
  }
}

.signInContent .modal-content .tab-content .login-divider .login-divider__copy,
.signInContent .signin-signup-platform .tab-content .login-divider .login-divider__copy {
  color: #354051;
  width: 50%;
}

.signInContent .modal-content .tab-content .login-divider .login-divider__line,
.signInContent .signin-signup-platform .tab-content .login-divider .login-divider__line {
  background-color: #e0e6ea;
  height: 1px;
  width: 25%;
}

.signInContent .modal-content .tab-content .small,
.signInContent .signin-signup-platform .tab-content .small {
  font-size: 12px;
}

.signInContent .modal-content .tab-content .optional,
.signInContent .signin-signup-platform .tab-content .optional {
  opacity: 0.6;
  font-size: 10px;
}

.signInContent .modal-content .tab-content #sign-in-submit,
.signInContent .modal-content .tab-content #sign-up-submit,
.signInContent .signin-signup-platform .tab-content #sign-in-submit,
.signInContent .signin-signup-platform .tab-content #sign-up-submit {
  font-size: 1rem;
}

.signInContent .signin-signup-platform .pane {
  padding: 0;
}

.signInContent .signin-signup-platform .pane .input-group {
  display: block;
  width: 100%;
}

.signInContent .signin-signup-platform .pane .input-group input {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.signInContent .signin-signup-platform .pane .input-group.flex-row,
.signInContent .signin-signup-platform .pane .input-group.text-with-button {
  display: flex;
}

.signInContent .signin-signup-platform .pane .terms {
  font-size: .625rem;
}

.signInContent .signin-signup-platform .pane .recieve-email-text {
  color: #636b75;
}

.signInContent .successfulSign {
  font-size: 2rem;
  font-family: 'Roboto', sans-serif;
}

.signInContent .form-panel {
  max-width: 350px;
  margin-left: 350px;
}

@media (max-width: 768px) {
  .signInContent .form-panel {
    margin-left: 0;
  }
}

.signInContent .promo-panel {
  max-width: 350px;
  width: 350px;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  color: #ffffff;
}

@media (max-width: 768px) {
  .signInContent .promo-panel {
    display: none;
  }
}

.signInContent .sign-in-promo {
  background-image: url("https://www.powrcdn.com/images/sign_in_promo.jpg");
  background-size: 350px 520px;
  color: #ffffff;
}

.signInContent .sign-in-promo .business-promo {
  width: 260px;
  margin: auto;
  margin-top: 170px;
}

.signInContent .sign-in-promo .contrast {
  color: #ffffff;
}

.signInContent .sign-in-promo .button.button-primary-outline,
.signInContent .sign-in-promo .topbar-nav .nav-links-group li .button.pricing-nav-tab__business-banner-learn-more,
.topbar-nav .nav-links-group li .signInContent .sign-in-promo .button.pricing-nav-tab__business-banner-learn-more {
  border-color: #ffffff;
  width: 120px;
  margin: auto;
  margin-top: 32px;
  padding: 8px;
}

.signInContent .sign-up-promo {
  background-image: url("https://www.powrcdn.com/images/sign_up_promo_no_words.jpg");
  background-size: 350px 500px;
}

.signInContent .sign-up-promo .testimonial {
  position: absolute;
  bottom: 0px;
  color: #ffffff;
  font-size: .9rem;
  font-weight: bold;
}

.signInContent .sign-up-promo .testimonial .author {
  font-weight: bold;
  font-size: .8rem;
}

.signInContent .sign-up-promo .testimonial .author span {
  font-weight: normal;
  font-style: italic;
}

.signInContent .sign-up-promo .testimonial:before {
  content: "\201C";
  display: block;
  font-size: 3rem;
  line-height: 30%;
  color: #3B8CFF;
  font-family: serif;
}

@media (min-width: 768px) {
  .signInContent.with_photo {
    width: 700px;
  }
}

@media (max-width: 768px) {
  .signInContent.with_photo {
    width: 350px;
  }
}

.signInContent.with_photo .theme-3 {
  background-color: #ffffff;
}

.session-profile-image {
  position: absolute;
  right: 7px;
  bottom: 4px;
  max-height: 30px;
  border-radius: 3px;
}

.pluginReference h1 {
  text-align: center;
  margin: 30px 0px;
}

.pluginReference h3 {
  display: table;
  margin: 20px auto 30px auto;
  width: 75%;
}

.pluginReference h3 li {
  margin: 10px 0;
}

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

.pluginReference .pluginContainer img {
  width: 500px;
}

.pluginReference .nav-tabs li {
  margin: 0px 2px;
}

.pluginReference .nav-tabs li a {
  border-radius: 3px 3px 0px 0px;
  -webkit-border-radius: 3px 3px 0px 0px;
  -moz-border-radius: 3px 3px 0px 0px;
  -ms-border-radius: 3px 3px 0px 0px;
  -o-border-radius: 3px 3px 0px 0px;
  font-size: 12px;
}

.pluginReference .pluginContainer {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  margin: 20px 0px;
  padding: 30px;
  border: 1px solid #666;
}

.pluginReference .pluginContainer .name {
  font-size: 1.5rem;
}

.pluginReference .pluginContainer .name .powrIcon {
  font-size: 3rem;
  vertical-align: middle;
}

.pluginReference .pluginContainer .shortcode {
  font-size: 1rem;
  margin-top: 20px;
}
</pre></body></html>