.pulse-indicator {
  background-color: rgba(15,135,210,0.3);
  border-radius: 50%;
  -webkit-animation: pulse 1s ease-in-out infinite alternate;
          animation: pulse 1s ease-in-out infinite alternate;
}

.pulse-indicator:before,
.pulse-indicator:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: inherit;
  border-radius: inherit;
  -webkit-animation: pulse-inner 1.5s ease-in-out infinite alternate;
          animation: pulse-inner 1.5s ease-in-out infinite alternate;
}

.pulse-indicator:after {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.25);
            transform: scale(0.25);
  }

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

@keyframes pulse {
  0% {
    -webkit-transform: scale(0.25);
            transform: scale(0.25);
  }

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

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

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

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

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

.spinner-indicator {
  border: 1px solid transparent;
  border-radius: 50%;
  -webkit-animation: rotate 1.5s linear infinite both;
          animation: rotate 1.5s linear infinite both;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

.loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .35s ease-in-out 0s,visibility .35s ease-in-out 0s;
  transition: opacity .35s ease-in-out 0s,visibility .35s ease-in-out 0s;
  text-align: center;
  z-index: 1;
}

.loader .loader-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 15%;
}

.loader .loader-content {
  padding-bottom: 100%;
}

.loader .loading-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.loader .loading-indicator-spinner {
  border: 1px solid transparent;
  border-radius: 50%;
  -webkit-animation: rotate 1.5s linear infinite both;
          animation: rotate 1.5s linear infinite both;
}

.loader.visible {
  opacity: 1;
  visibility: visible;
}

.loader.visible .loading-indicator {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.loader.overlay {
  background-color: var(--color-surface);
  opacity: 0.9;
}

.loader.fit .loader-container {
  width: 100%;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

.logo {
  display: block;
  height: 100%;
}

.image,
.image .image-source,
.image .image-default {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  overflow: hidden;
}

.image .image-loader {
  display: block;
  width: 0;
  height: 0;
  opacity: 0;
}

.image .image-source {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity .35s ease-in-out 0s,visibility .35s ease-in-out 0s;
  transition: opacity .35s ease-in-out 0s,visibility .35s ease-in-out 0s;
}

.image .image-default {
  background-color: #fff;
}

.image.missing .image-source,
.image.loading .image-source {
  opacity: 0;
  visibility: hidden;
}

.plans {
  padding: 20px 0;
  font-size: 14px;
  text-align: center;
  overflow-x: hidden;
  zoom: 1;
}

.plans:before,
.plans:after {
  content: '';
  display: table;
}

.plans:after {
  clear: both;
}

.plans .plan-pricing-chooser,
.plans .plan-pricing-note {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  zoom: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.plans .plan-pricing-chooser:before,
.plans .plan-pricing-chooser:after,
.plans .plan-pricing-note:before,
.plans .plan-pricing-note:after {
  content: '';
  display: table;
}

.plans .plan-pricing-chooser:after,
.plans .plan-pricing-note:after {
  clear: both;
}

.plans .plan-pricing-chooser-item {
  position: relative;
  float: left;
  width: 50%;
  line-height: 55px;
  text-align: center;
  color: #889197;
  border-bottom: 1px solid #ebeced;
  text-transform: uppercase;
  -webkit-transition: color .35s ease-in-out 0s;
  transition: color .35s ease-in-out 0s;
  cursor: pointer;
}

.plans .plan-pricing-chooser-item:after {
  content: '';
  position: absolute;
  bottom: -1px;
  width: 0;
  height: 3px;
  background-color: #1196ea;
  -webkit-transition: width .35s ease-in-out 0s;
  transition: width .35s ease-in-out 0s;
}

.plans .plan-pricing-chooser-item.active {
  color: #394852;
}

.plans .plan-pricing-chooser-item.active:after {
  width: 100%;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.plans .plan-pricing-chooser-month:after {
  right: 0;
}

.plans .plan-pricing-chooser-year:after {
  left: 0;
}

.plans .plan-pricing-arrow {
  position: absolute;
  top: 10px;
  left: 70%;
  height: 25px;
}

.plans .plan-pricing-note {
  padding-top: 45px;
}

.plans .plan-items {
  padding-top: 10px;
}

.plans .plan-item-container {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  padding: 10px;
}

.plans .plan-item {
  display: block;
  color: #889197;
  text-align: left;
  padding: 0 15px;
  border-radius: 4px;
  border: 1px solid #ebeced;
}

@media only screen and (min-width: 767px) {
  .plans .plan-items-container {
    float: left;
    position: relative;
    left: 50%;
  }

  .plans .plan-items {
    float: left;
    position: relative;
    left: -50%;
    padding: 30px 0 20px;
  }

  .plans .plan-item-container {
    float: left;
    width: 50%;
  }

  .plans .plan-item-container:nth-child(2n+1) {
    clear: both;
    border: none;
  }
}

@media only screen and (min-width: 1280px) {
  .plans .plan-items {
    padding-left: 5px;
    padding-right: 5px;
  }

  .plans .plan-item-container {
    width: 300px;
    padding: 0;
  }

  .plans .plan-item-container:nth-child(2n+1) {
    clear: none;
  }

  .plans .plan-item-container:not(:first-child) {
    border-left: 1px solid #ebeced;
  }

  .plans .plan-item-container:hover {
    color: #394852;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 6px 4px rgba(0,0,0,0.07);
            box-shadow: 0 1px 6px 4px rgba(0,0,0,0.07);
  }

  .plans .plan-item-container:hover+.plan-item {
    border-color: transparent;
  }

  .plans .plan-item {
    border: none;
  }
}

.plan {
  padding: 15px 0;
  color: inherit;
  cursor: default;
}

.plan .plan-illustration {
  position: relative;
  display: none;
  width: 180px;
  height: 180px;
  margin: 0 auto;
}

.plan .plan-name {
  padding: 20px 0 10px;
  height: 59px;
  line-height: 29px;
  font-size: 24px;
  font-weight: 500;
}

.plan .plan-description {
  padding-bottom: 15px;
  line-height: 20px;
  color: #889197;
}

.plan .plan-subscription-container {
  display: block;
  padding-bottom: 20px;
}

.plan .plan-feature {
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  color: inherit;
}

.plan .plan-feature.empty {
  display: none;
}

.plan .plan-vat {
  display: none;
  padding-top: 15px;
  line-height: 20px;
  font-size: 12px;
  color: #889197;
}

.plan .plan-vat.visible {
  display: block;
}

@media only screen and (min-width: 767px) {
  .plan {
    text-align: center;
  }

  .plan .plan-illustration {
    display: block;
  }

  .plan .plan-description {
    display: block;
    display: -webkit-box;
    width: 100%;
    max-height: 80px;
    font-size: 14px;
    line-height: 1.42857;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    box-orient: vertical;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    max-width: 80%;
    height: 80px;
    margin: 0 auto;
    padding-bottom: 0;
  }

  .plan .plan-feature.empty {
    display: block;
  }

  .plan .plan-vat {
    display: block;
    padding-top: 40px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
  }

  .plan .plan-vat.visible {
    opacity: 1;
    visibility: visible;
  }
}

.plan-price {
  position: relative;
  line-height: 14px;
}

.plan-price .plan-price-currency {
  padding-right: 5px;
  font-size: 16px;
  color: #394852;
}

.plan-price .plan-price-integer-part {
  font-size: 50px;
  color: #394852;
}

.plan-price .plan-price-fractional-part {
  font-size: 14px;
  color: #364149;
}

.plan-subscription .plan-subscription-price {
  display: inline-block;
}

.plan-subscription .plan-subscription-state-business .plan-subscription-value-content {
  line-height: 30px;
  font-size: 30px;
  font-weight: 500;
  color: #394852;
}

.plan-subscription .plan-subscription-value {
  position: relative;
  height: 50px;
}

.plan-subscription .plan-subscription-value-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
}

.plan-subscription .plan-subscription-note {
  height: 40px;
  line-height: 30px;
  color: #889197;
}

.plan-subscription .button-subscription-action {
  display: block;
  width: 100%;
  margin: auto;
}

@media only screen and (min-width: 767px) {
  .plan-subscription .plan-subscription-note {
    height: 60px;
    line-height: 40px;
  }

  .plan-subscription .button-subscription-action {
    width: 160px;
  }
}

