:root {
  --primary: #5e22e6;
  --secondary: #0a1f44;
  --primary-invert: #fff;
  --secondary-invert: #fff;

  --gradient-primary: linear-gradient(230deg, #7445ff, #520df4);
  --gradient-secondary: linear-gradient(230deg, #0a1f44, #020024);

  /* DEFAULT COLOR OF TEXTS */
  --text-primary: #0a1f44;

  /* FOR BUTTONS & INPUTS */
  --elements-roundness: 10rem;

  --space-between-blocks: 5.3rem;
  /* for mobiles */
  --space-between-blocks-small-screens: 3rem;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-primary);
  background: #f9f9f9;
  padding-top: 73px;
}

@media(min-width: 992px) {
  body {
    padding-top: 68px;
  }
}

.space-between-blocks {
  padding-top: var(--space-between-blocks-small-screens);
  padding-bottom: var(--space-between-blocks-small-screens);
}

@media (min-width: 992px) {
  .space-between-blocks {
    padding-top: var(--space-between-blocks);
    padding-bottom: var(--space-between-blocks);
  }
}

/* Buttons */

button {
  color: inherit;
  padding: 0;
  background: none;
  border: none;
}

button:focus {
  outline: none;
  box-shadow: none;
}

.btn {
  font-size: 0.87rem;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: var(--elements-roundness);
  transition: 0.2s all;
}

@media (min-width: 992px) {
  .btn {
    padding: 0.8rem 2rem;
  }
}

.btn,
.btn:hover,
.btn:focus {
  border: none;
  box-shadow: none;
  outline: none;
}

.btn:hover,
.btn:focus {
  transform: scale(1.05);
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus {
  background: var(--gradient-primary, --primary);
  color: var(--primary-invert);
}

.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--gradient-secondary, --secondary);
  color: var(--secondary-invert);
}

.btn-primary--empty,
.btn-primary--empty:hover,
.btn-primary--empty:focus {
  color: var(--primary);
}

.btn-sm {
  padding: 0.8rem;
}

.highlight {
  color: var(--primary)
}

/* block header */

.block__header {
  margin-bottom: 4rem;
}

.block__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.4;
}

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

  .block__title--big {
    font-size: 3rem;
    line-height: 1.1;
  }
}

@media(min-width: 1200px) {
  .block__title--big {
    font-size: 3.5rem;
    line-height: 1.2;
  }
}

.block__paragraph {
  font-size: 1.1rem;
  line-height: 1.5;
  opacity: .9;
}

@media(min-width: 992px) {
  .block__paragraph--big {
    font-size: 1.2rem;
    line-height: 1.6;
  }
}

/* Icons */

.fr-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 5px;
  background: rgba(0,0,0,0.04);
  margin-bottom: 1.5rem;
  transition: .5s;
}

.fr-icon--medium {
  font-size: 1.5rem;
  height: 3rem;
  width: 3rem;
}

.fr-icon--large {
  font-size: 1.2rem;
  height: 3.25rem;
  width: 3.25rem;
}

@media (min-width: 992px) {
  .fr-icon--large {
    height: 3.8rem;
    width: 3.8rem;
    font-size: 1.9rem;
  }
}

/* Offer Alert ============================== */

.offer-alert {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  background: linear-gradient(45deg, #ffd400, #ffe876);
  font-size: 0.85rem;
  z-index: 2;
  transition: .3s;
}

.offer-alert--hidden {
  visibility: hidden;
  opacity: 0;
}

.offer-alert .btn {
  font-size: 0.9em;
}

@media(min-width: 992px) {
  .offer-alert {
    font-size: 0.95em;
  }

  .offer-alert .btn {
    width: auto;
    font-size: 0.95em;
  }
}

.offer-alert__container {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  text-align: left;
}

@media(min-width: 992px) {
  .offer-alert__container {
    display: block;
    text-align: center;
  }
}

.offer-alert__btn {
  color: var(--primary-invert);
  background: linear-gradient(230deg, #7445ff, #520df4);
  padding: .5rem .8rem;
  margin-top: .5rem;
  border-radius: 5px;
  transition: .2s all;
}

@media(min-width: 922px) {
  .offer-alert__btn {
    margin: 0 .5rem;
  }
}

.offer-alert__btn:hover,
.offer-alert__btn:focus {
  background-color: var(--primary);
  color: var(--primary-invert);
  text-decoration: none;
  transform: scale(1.1);
}

/* ***************************************** */

.popup__iframe-container {
  width: 328px;
  height: 184.6px;
}

@media (min-width: 992px) {
  .popup__iframe-container {
    width: 854px;
    height: 480px;
  }
}

/* ***************************************** */

.section-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

/* ***************************************** */

.header {
  background: var(--bg-primary);
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
}

.header__title {
  color: var(--primary-invert);
  font-size: 4.4rem;
  font-weight: 900;
}

.alert-info {
  padding: .5rem;
  text-align: center;
  margin-bottom: 2rem;
  width: auto;
  color: #0277BD;
  background-color: #E1F5FE;
}

/* Hero Nav ***************************************** */


.hero {
  --hero-nav-height: 100px;
  --block-background: linear-gradient(#7445ff, #520df4);
  --block-text-color: var(--primary-invert);
  background: var(--block-background);
  color: var(--block-text-color);
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 0;
}

.hero-nav {
  margin: 0 -1rem;
  width: 100%;
  height: var(--hero-nav-height);
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-nav__item {
  text-align: center;
  font-size: 1.1rem;
}

@media(min-width: 992px) {
  .hero-nav__item {
    margin: 0 1rem;
  }
}

@media(min-width: 992px) {
  .nav--lg-side {
    flex-direction: row-reverse;
  }
}

.hero-nav__logo {
  height: 35px;
}

.hero-nav__link {
  color: inherit;
  opacity: .9;
}

.hero-nav__link:hover,
.hero-nav__link:focus {
  color: var(--block-text-color);
  text-decoration: none;
  opacity: 1;
}

.hero__row {
  height: 100%;
}

.hero_empty-column {
  height: 100%;
}

.hero__image-column {
  height: 100%;
  background-position: center;
  background-size: cover;
}

.hero__content {
  text-align: initial;
  padding-top: 2rem;
  padding-bottom: 7rem;
  z-index: 1;
}

@media(min-width:992px) {
  .hero__content {
    padding-top: 4rem;
    padding-bottom: 8rem;
  }
}

.hero__title-215 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

@media(min-width: 992px) {
  .hero__title-215 {
    font-size: 2.8rem;
  }
}

.hero__title {
  font-size: 1.8rem;
  font-weight: 900;
}

.hero__paragraph {
  font-size: .9rem;
  font-weight: 400;
  opacity: .9;
}

@media (min-width: 576px) {
  .hero__title {
    font-size: 2.5rem;
    line-height: 1.17;
  }
  
  .hero__paragraph {
    width: 80%;
    margin: auto;
  }
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 3rem;
  }
}

@media(min-width: 992px) {
  .hero__title {
    font-size: 2.5rem;
    line-height: 1.17;
  }

  .hero__paragraph {
    font-size: 1.5rem;
    width: 70%;
  }
}

@media(min-width: 1200px) {
  .hero__title {
    font-size: 3.5rem;
    line-height: 1.17;
  }
}

.hero__btns-container {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
  margin: auto;
}

.hero__btn {
  display: inline-block;
  width: 100%;
}

@media(min-width: 992px) {
  .hero__btns-container {
    width: auto;
    flex-direction: row;
  }

  .hero__btn {
    width: auto;
  }
}

.highlight {
  color: var(--primary);
}

/* ----------------------------- */

.ft-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2000;
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@media (print),
(prefers-reduced-motion: reduce) {
  .ft-menu {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}

.ft-menu .hero-nav__item {
  width: 100%;
  margin-top: .75rem;
  margin-bottom: .75rem;
}

@media(min-width: 992px) {
  .ft-menu .hero-nav__item {
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
  }
}

.ft-menu--js-show {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
}

.ft-menu::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: var(--secondary);
  opacity: .9;
  z-index: -1;
}

@media(min-width: 992px) {
  .ft-menu {
    -webkit-animation-name: none;
    animation-name: none;
    position: static;
    z-index: auto;
  }

  .ft-menu::before {
    content: none;
  }
}

.ft-menu__slider {
  width: 80%;
  height: 100%;
  background: var(--block-background);
  overflow: hidden;
  transform: translateX(-100%);
  transition: .5s transform;
}

@media(min-width: 992px) {
  .ft-menu__slider {
    width: auto;
    height: auto;
    background: none;
    transform: none;
    display: flex;
    align-items: center;
  }
}

.menu__ul {
  padding-top: 25px;
  padding-bottom: 25px;
  margin: 0;
}

.ft-menu--js-show .ft-menu__slider {
  transform: translateX(0%);
}

.ft-menu__close-btn {
  color: var(--primary-invert);
  position: absolute;
  right: 0;
  top: 0;
  font-size: 2rem;
  margin: 1rem;
  transform: translateX(100%);
  transition: .5s transform;
}

@media(min-width: 992px) {
  .ft-menu__close-btn {
    display: none;
  }
}

.ft-menu--js-show .ft-menu__close-btn {
  transform: translateX(0%);
}

.ft-menu__close-btn:hover,
.ft-menu__close-btn:focus {
  color: var(--primary-invert);
}

.pattern {
  position: absolute;
  height: 47%;
  width: 17%;
  opacity: .5;
}

.pattern--primary {
  color: var(--primary);
}

.pattern--left-bottom {
  bottom: 0;
  left: 0;
}

.pattern--right {
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

/* ------------------------------- */

/* Fade in */

@-webkit-keyframes fadeIn {
  from {
    visibility: hidden;
    opacity: 0;
  }

  to {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    visibility: hidden;
    opacity: 0;
  }

  to {
    visibility: visible;
    opacity: 1;
  }
}

/* Fade out */

@-webkit-keyframes fadeOut {
  from {
    visibility: visible;
    opacity: 1;
  }

  to {
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    visibility: visible;
    opacity: 1;
  }

  to {
    visibility: hidden;
    opacity: 0;
  }
}

/* ***************************************** */

.content {
  background-image: linear-gradient(to bottom, var(--bg-primary) 85px, transparent 0%);
}

.menu, .blocks {
  border-radius: 10px;
  background-color: #ffffff;
  /* border: solid 1px #e5e7eb; */
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.07);
}

/* Categories Section ======================== */
.categories-mb-menu__open-btn {
  position: fixed;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10rem;
  background: var(--gradient-primary);
  font-size: 1.6rem;
  z-index: 1;
  bottom: 0;
  left: 0;
  margin: 2rem;
  color: white;
  box-shadow: 0 0 20px rgb(0 0 0 / 53%);
}

/* Blocks Categories Menu ================== */

.menu__li {
  font-size: .87rem;
  margin-bottom: 1.25rem;
  transition: .2s all;
  cursor: pointer;
}

.menu__li:hover {
  color: var(--primary);
}

.menu__li:last-child {
  margin-bottom: 0;
}

.menu__li-number {
  color: var(--primary);
}

.menu__li__tag-container {
  position: relative;
  transform: translateY(5px);
}

.menu__li__tag {
  position: absolute;
  top: -19px;
  left: -1px;
  font-size: 10px;
  background: linear-gradient( 45deg, #6eff00, #d7ff76);
  color: #254412;
  border-radius: .2rem;
  font-weight: 600;
  padding: 1px 5px;
}

/* **************************************** */

.group-title {
  font-size: .9rem;
  font-weight: 600;
  opacity: .8;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
}

/* .preview-block {
  position: relative;
  margin-bottom: 1.5rem;
} */

.preview-block {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
  padding: 10px;
  padding-bottom: 20px;
  border: 1px solid rgb(238 238 238 / 56%);
  border-bottom: none;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

@media(min-width: 992px) {
  .preview-block {
    padding-bottom: 10px;
  }
}

.tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  border-radius: .2rem;
  margin: 0 .5rem .5rem 0;
}

.tag--js {
  background: linear-gradient(45deg, #ffd400, #ffe876);
  padding: 1px 6px;
}

.tag--style {
  border: 1px solid #eee;
  text-transform: capitalize;
}

.tag--style,
.tag--new {
  font-size: 12px;
  font-weight: 600;
  padding: 1px 6px;
}

.tag--new {
  background: linear-gradient(45deg, #6eff00, #d7ff76);
  color: #254412;
}

.tag--name {
  background: transparent;
  text-transform: capitalize;
}

.preview-block-panel {
  background-color: #f9f9f9;
  padding: 0 10px;
  padding-bottom: 10px;
  border: 1px solid rgb(238 238 238 / 56%);
  border-top: none;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.preview-block-panel__btn {
  font-size: 13px;
  padding: .3rem .5rem;
  background-color: #eae0ff;
  color: #5e22e6;
  border-radius: 3px;
  transition: .1s all;
}


.preview-block-panel__btn:hover,
.preview-block-panel__btn:focus {
  color: #eae0ff;
  background-color: #5e22e6;
}

.preview-block-panel__btn--cursor-not-allowed {
  cursor: not-allowed !important;
  filter: grayscale(1);
}

.preview-block-panel__btn--cursor-not-allowed:hover,
.preview-block-panel__btn--cursor-not-allowed:focus {
  background-color: #eae0ff;
  color: #5e22e6;
}

.preview-block-panel__btn--loading {
  opacity: 1;
  cursor: progress;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.preview-block-panel__btn--loading::before,
.preview-block-panel__btn--loading::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.preview-block-panel__btn--loading::before {
  background: var(--primary);
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.preview-block-panel__btn--loading::after {
  margin: auto;
  border: 2px solid transparent;
  border-radius: 50%;
  border-top: 2px solid var(--primary-invert);
  width: 1rem;
  height: 1rem;
  -webkit-animation: spin .5s linear infinite; /* Safari */
  animation: spin .5s linear infinite;
  z-index: 2;
}

.preview-block__premium-icon {
  font-size: 2rem;
  position: absolute;
  top: 0;
  right: 0;
  margin: 1rem;
}

.preview-block:hover {
  cursor: pointer;
}

.preview-block:hover .preview-block__img {
  box-shadow: 0 0 0 4px rgba(117, 64, 238, 0.36);
}

.preview-block:hover .preview-block__name {
  color: var(--primary);
}

.preview-block__img {
  width: 100%;
  background: #eee;
  display: block;
  transition: .2s all;
  box-shadow: 0px 5px 25px 5px rgba(0, 0, 0, 0.09);
  border-radius: 5px;
}

.preview-block__name {
  margin: 0;
}

.carousel-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  color: var(--primary-invert);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10rem;
  margin: auto;
  box-shadow: 0 2px 9px rgb(0 0 0 / 18%);
  transition: .1s all;
}

.carousel-btn:hover,
.carousel-btn:focus {
  transform: scale(1.1);
}

.carousel-btn--left {
  left: 0;
}

.carousel-btn--right {
  right: 0;
}

/* ****************************** */

.features {
  --block-background: white;
  --block-text-color: var(--text-primary);
  background: var(--block-background);
  color: var(--block-text-color);
  padding: 5rem 0;
  text-align: initial;
}

.features__header {
  margin-bottom: 4rem;
}

.features__title-supplement {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
}

.features__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.4;
}

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

.feature {
  display: flex;
  align-items: flex-start;
  text-align: initial;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.feature__content {
  padding: 0 1.4rem;
}

.feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  height: 3.25rem;
  width: 3.25rem;
  border-radius: var(--elements-roundness);
  background: var(--primary);
  color: var(--primary);
}

@media(min-width: 992px) {
  .feature__icon {
    height: 4.25rem;
    width: 4.25rem;
  }
}

.feature__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

@media(min-width: 992px) {
  .feature__title {
    font-size: 1.5rem;
  }
}

.feature__paragraph {
  font-size: .9rem;
  opacity: .9;
  line-height: 1.7;
}

/* ************************************ */
.cta-sm-txt {
  text-align: center;
  font-size: .8rem;
  opacity: .9;
}

/* Preview ======================================== */

.responsive-preview {
  position: fixed;
  background: #333;
  padding: 1rem !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  transition: .2s padding, .2s opacity ease-in-out;
  z-index: 3;
}

.responsive-preview--show {
  display: flex;
}

.responsive-preview__iframe-container {
  height: 100%;
  width: 390px;
  box-shadow: black 0px 0px 20px;
  transition: .2s all ease-in-out;
}

.responsive-preview__iframe {
  height: 100%;
  width: 100%;
  background: white;
  border: none;
}

.responsive-preview__panel {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2rem;
}

.responsive-preview__panel-item {
  margin: 0 .5rem;
}

.responsive-preview__panel-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(22, 22, 22);
  color: white;
  box-shadow: 0 0 0 3px rgba(255,255,255,.3);
}

.responsive-preview__download-btn {
  margin: 0 1rem;
  color: white;
  background: rgb(179, 66, 245);
  box-shadow: 0 0 0 3px rgb(210, 144, 249);
  transform: scale(1.2);
  transition: .2s all ease-in-out;
}

.responsive-preview__download-btn:hover,
.responsive-preview__download-btn:focus {
  margin: 0 1.2rem;
  color: white;
  background: rgb(143, 48, 221);
}

/* --------------------------------------------- */
.plan-switch__type {
  font-size: .87rem;
  font-weight: 600;
  opacity: .9;
}

.plan-switch__type--selected {
  color: var(--secondary);
  opacity: 1;
}

.switch {
  font-size: 1em;
  position: relative;
  --switch-background--default: var(--gradient-secondary);
  --switch-btn-background: white;
  --switch-background--checked: var(--primary);
  --switch-background--disabled: #ccc;
}
.switch input {
  position: absolute;
  height: 1px;
  width: 1px;
  background: none;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  padding: 0;
}
.switch input + label {
  position: relative;
  min-width: calc(calc(2.375em * .8) * 2);
  border-radius: calc(2.375em * .8);
  height: calc(2.375em * .8);
  line-height: calc(2.375em * .8);
  display: inline-block;
  cursor: pointer;
  outline: none;
  user-select: none;
  vertical-align: middle;
  text-indent: calc(calc(calc(2.375em * .8) * 2) + .5em);
}
.switch input + label::before,
.switch input + label::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(calc(2.375em * .8) * 2);
  bottom: 0;
  display: block;
}
.switch input + label::before {
  right: 0;
  background: var(--switch-background--default);
  border-radius: calc(2.375em * .8);
  transition: 0.2s all;
}
.switch input + label::after {
  top: .25em;
  left: .25em;
  width: calc(calc(2.375em * .8) - calc(.25em * 2));
  height: calc(calc(2.375em * .8) - calc(.25em * 2));
  border-radius: 50%;
  background-color: var(--switch-btn-background);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.45);
  transition: 0.2s all;
}
.switch input:checked + label::before {
  background-color: var(--switch-background--checked);
}
.switch input:checked + label::after {
  margin-left: calc(2.375em * .8);
}
.switch input:focus + label::before {
  outline: none;
  box-shadow: 0 0 0 0.2em rgba(0,0,0,0.1);
}
.switch input:disabled + label {
  color: #868e96;
  cursor: not-allowed;
}
.switch input:disabled + label::before {
  background-color: var(--switch-background--disabled);
}
.switch + .switch {
  margin-left: 1em;
}

/* Hero Testimonial ----------------------- */

.testimonial-card-3 {
  background: var(--primary);
  color: var(--primary-invert);
  padding: 3.1rem 2.1rem;
  position: relative;
  z-index: 1;
}

.testimonial-card-3__paragraph {
  font-size: .87rem;
  opacity: .9;
  line-height: 1.7;
}

.testimonial-card-3__quote-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--primary-invert);
  font-size: 1.3rem;
  border: 2px solid white;
  border-radius: 10rem;
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  margin: auto;
}

.person__avatar {
  padding: 3px;
  width: 68px;
  height: 68px;
  background: white;
  border-radius: 10rem;
}

.person__rating {
  font-size: .75rem;
  color: #ffe200;
}

.person__name {
  font-size: .87rem;
  font-weight: 600;
}

.person__info {
  color: var(--block-text-color);
  font-size: .8rem;
  font-weight: 600;
  opacity: .8;
}

.person__info:hover,
.person__info:focus {
  color: var(--block-text-color);
  text-decoration: underline;
}

/* swal 2 -------------------- */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 3;
  overflow: auto;
  padding: 1rem;
}

@media(min-width: 992px) {
  .popup {
    padding: 3rem;
  }
}

.popup--show {
  display: block;
}

.popup__close-btn {
  position: absolute;
  right: -.8rem;
  top: -.8rem;
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  border-radius: 10rem;
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Loader ----------------------------- */

.page-is-loading {
  position:fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width:100%;
  height:100%;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:var(--primary-invert);
  z-index: 9999;
}

.page-is-loading__loader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-is-loading__logo {
  height: 50px;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.page-is-loading__spinner {
  border: 2px solid transparent;
  border-radius: 50%;
  border-top: 2px solid var(--primary);
  width: 50px;
  height: 50px;
  -webkit-animation: spin .5s linear infinite; /* Safari */
  animation: spin .5s linear infinite;
}

/* Clipboard Alerts ----------------------------------- */

.clipboard-alerts {
  position: fixed;
  top: 0;
  right: 0;
  margin: 2rem;
  z-index: 99;
}

.clipboard-alerts * {
  transition: .2s all;
}

.clipboard-alerts__toast {
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  padding: 1rem;
  background-color: white;
  font-size: 14px;
  border-radius: 5px;
  box-shadow: 0 6px 20px 5px rgb(0 0 0 / 12%);
  display: block;
  margin-bottom: 1.5rem;
}

.clipboard-alerts__icon {
  color: #66d016;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

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

.animated {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* ---------------------------------------------------- */

.mb-4rem {
  margin-bottom: 4rem;
}

.h-100 {
  height: 100%;
}

/*------------------------------*/
/*--Popup pricing table---------*/
/*------------------------------*/
.block-15__header {
  --elements-roundness: 5px;
  --block-background: white;
  --block-text-color: var(--text-primary);
  background: var(--block-background);
  color: var(--block-text-color)
}

.plan-card {
  padding: 3.5rem 2rem;
  background: #fff;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, .1);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  height: 100%
}

@media(min-width:1200px) {
  .plan-card {
    padding: 3.5rem
  }
}

.discount {
  transform: scale(1.2)
}

.discount__old-price {
  font-size: 1.9rem;
  text-decoration: line-through;
  font-weight: 300;
  opacity: .7
}

.discount__percentage {
  font-size: .87rem;
  color: var(--primary-invert);
  background: var(--gradient-primary, --primary);
  padding: .3rem .9rem;
  border-radius: 10rem
}

.plan-card--recommended {
  background: var(--gradient-primary, --primary);
  color: var(--primary-invert);
  padding-top: 5rem;
  position: relative;
  z-index: 1
}

.plan-card--recommended .discount {
  color: var(--primary-invert)
}

.plan-card--recommended .discount__old-price {
  opacity: .9
}

.plan-card--recommended .discount__percentage {
  color: var(--primary);
  background: var(--primary-invert)
}

.plan-card--recommended .btn-primary {
  background: var(--primary-invert);
  color: var(--primary)
}

.plan-card--recommended .plan-features__icon {
  background-color: rgba(255, 255, 255, .3) !important;
  color: #fff !important
}

@media(min-width:992px) {
  .plan-card--recommended {
    height: calc(100% + 50px);
    width: calc(100% + 25px);
    margin-left: -12.5px;
    margin-top: -25px;
    padding-bottom: calc(3.5rem + 25px)
  }
}

.plan-card__tag {
  font-size: .9rem;
  padding: .6rem .8rem;
  border-bottom-left-radius: .8rem;
  border-bottom-right-radius: .8rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 60%;
  margin: auto;
  background: var(--gradient-secondary);
  color: var(--primary-invert);
  overflow: hidden
}

.plan-card__tag::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, .2);
  z-index: -1
}

.plan-card__name {
  font-size: 1.5rem;
  font-weight: 600
}

.plan-card__price {
  font-size: 4.3rem;
  font-weight: 600
}

.plan-card__duration {
  font-size: .9rem;
  text-transform: uppercase
}

.plan-features {
  text-align: initial;
  margin: auto;
  width: auto
}

.plan-features__li {
  font-size: 1rem;
  margin-bottom: 1.3rem;
  display: flex
}

.plan-features__li-icon {
  color: #33c58d
}

.plan-card--recommended .plan-features__li-icon {
  color: var(--primary-invert)
}

.plan-features__li--disabled {
  text-decoration: line-through;
  opacity: .7
}

.plan-features__li--disabled .plan-features__li-icon {
  filter: grayscale(10)
}
