:root {
  --limited-offer-height: 46px;
  /* --original-header-nav-height: 77px; */
  /* 77px seems to be original size when sticky, and 99px when normal */
  /* --header-nav-height can't be below original height when nav-item are visible (Home/Pricing...), but in mobile view nav-item are hidden so it can be smaller, but cannot be smaller than the icon menu (that opens the nav-item), because of padding on the nav-item i guess */
  --header-nav-height: 77px;
  --header-logo-height: calc(var(--header-nav-height) - 10px);
  /* 77px seems to be original size*/
  /* it's a mess when i change nav-height becauyse of the active effect on nav item */
  --color-plan-basic: #13CF8D;
  --color-plan-pro: #2abed0;
  --color-plan-expert: #4B75E7;
}

@media only screen and (max-width: 992px) {
  :root {
    /* because of some padding, min is like 71px */
    --header-nav-height: 71px;
    --header-logo-height: calc(var(--header-nav-height) - 20px);
  }
}

html {
  scroll-behavior: smooth !important;
}

body {
  /* background: #F7FAFF !important; */
  min-width: 300px !important;
}

.blue-check {
  color: #2196f3;
}

.center-flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-block {
  display: block;
  text-align: center;
}

.intro-screenshot {
  transform: perspective(800px) rotateY(-5deg);
}

.intro-screenshot:hover {
  transform: perspective(800px) rotateY(0) scale(1.1);
}

.button-close-dialog {
  position: absolute;
  right: 12px;
  top: 12px;
  font-size: 1.2rem;
  /* content: "✖"; */
  background: none;
  border: none;
}

.title-contact-us {
  font-size: 45px;
  font-weight: 600;
  color: white;
  line-height: 1.2;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .title-contact-us {
    font-size: 36px;
  }

  .navbar-nav .nav-item a {
    padding: 26px 10px !important;
  }
}

@media (max-width: 767px) {
  .title-contact-us {
    font-size: 36px;
  }
}

.no-style {
  all: unset;
}

.no-style:hover {
  all: unset;
}

.bold {
  font-weight: bold;
}

/* .no-style:focus {
  outline: revert;
} */
.a-no-style {
  color: inherit !important;
  text-decoration: unset !important;
}

.a-no-style:hover {
  color: inherit !important;
  text-decoration: unset !important;
}

.a-text {
  color: inherit;
  text-decoration: underline;
  display: inline;
}

.no-text-decoration {
  text-decoration: none;
}

.a-text:hover {
  color: gray;
}

.background-body {
  /* background: #f2f2f2 !important; */
  /* white slighlty blue */
  background: #F7FAFF !important;
  /* text-align: center; */
  /* really light gray */
}

.body-center-flex {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

.body-container-center-flex {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding-bottom: 20px; */
}

.intro-title {
  font-size: clamp(25px, 2vw, 52px) !important;
}

.hero-title {
  font-size: 51px;
}

/* override */
.hero-wrapper .hero-image {
  padding-top: 0px !important;
}

.recurrence-selected {
  background-image: linear-gradient(135deg, black 10%, gray 100%) !important;
  /* border-color: white !important; */
  border-radius: 5px;
  color: white;
  /* border: 1px solid white !important; */
}

.recurrence-buttons {
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 0 5px black;
  /* border: 0 !important; */
}

.button-no-background {
  background-image: unset !important;
  color: gray;
}

.capitalize {
  text-transform: capitalize;
}

.center-middle-page {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.blink {
  animation: blinker 0.5s linear;
  animation-iteration-count: 3;
}

.blink-50-slow-infinite {
  animation: blinker-50 3.0s linear;
  animation-iteration-count: infinite;
}

.links-dark {
  color: black;
  text-decoration: none;
}

.links-dark:hover {
  color: gray;
}

.shadow-50 {
  box-shadow: 0 0 1rem rgba(0, 0, 0, .5) !important;
}

.shadow-50-white {
  box-shadow: 0 0 1rem rgba(255, 255, 255, .5) !important;
}

.shadow-low {
  box-shadow: 0 15px 35px hsl(0deg 0% 87% / 25%);
}

.shadow-25 {
  box-shadow: 0 0 1rem rgba(0, 0, 0, .25) !important;
}

.shadow-25-white {
  box-shadow: 0 0 1rem rgba(255, 255, 255, .25) !important;
}

.shadow-10 {
  box-shadow: 0 0 1rem rgba(0, 0, 0, .10) !important;
}

.shadow-10-white {
  box-shadow: 0 0 1rem rgba(255, 255, 255, .10) !important;
}

/* .repeat */
@keyframes blinker {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

@keyframes blinker-50 {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

.logo-header {
  height: 100%;
  max-height: var(--header-logo-height);
  padding: 4px;
  max-width: unset !important;
  /* filter: drop-shadow(2px 2px 5px rgb(128, 128, 128, 0.5)); */
}

@media (max-width: 360px) {

  /* the nav menu header box when screen is small */
  .logo-header {
    max-width: 80% !important;
  }
}

/* @media (max-width: XXXpx) {

} */
.limited-offer-header {
  height: var(--limited-offer-height);
  background-image: linear-gradient(135deg, #425b8e 10%, gray 100%) !important;
  /* background-image: linear-gradient(244deg, black 10%, gray 100%) !important; */
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.limited-offer-text-link {
  text-decoration: none;
  color: white;
  width: 100%;
  height: 100%;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  /* text-overflow: ellipsis; */
  overflow: hidden;
}

.limited-offer-text-link:hover {
  color: unset;
  transform: scale(1.1);
}

.transform-ease {
  transition: transform 0.3s ease;
}

.scale-up-on-hover-10:hover {
  transform: scale(1.1);
}

.scale-up-on-hover-20:hover {
  transform: scale(1.2);
}

.limited-offer-span-in-header {
  margin: 4px;
  box-shadow: 0 0 5px white;
  padding: 2px;
  padding-right: 1rem;
  padding-left: 1rem;
  border-radius: 5px;
  letter-spacing: 1px;
}

@media (max-width: 560px) {
  #spanOnOurYearlyPlanToday {
    display: none;
  }
}

.header {
  position: sticky !important;
  z-index: 9999;
}

#divItemsInHeaderMenu {
  /* height: var(--header-nav-height); */
}

.header-gap {
  padding-top: calc((var(--limited-offer-height) + var(--header-nav-height)) * 1.1) !important;
}

.footer-gap {
  padding-top: calc((var(--limited-offer-height) + var(--header-nav-height)) * 1.1) !important;
}

.hero-section {
  /* background-image: linear-gradient(135deg, black 20%, gray 100%) !important; */
  /* padding-top: calc((var(--limited-offer-height) + var(--header-nav-height)) * 1.1) !important; */
  /* should be header size + promo header size + some margin */
}

.logo {
  /* height: 60px;
width: auto; */
}

.pricing-body li {
  /* border-bottom: 2px solid hsla(240, 8%, 85%, 0.253); */
}

.pricing-body {
  background: white !important;
}

/* .vertical-align {
  display: inline-block;
  vertical-align: middle;
  float: none;
} */
.pay-by-text {
  text-transform: uppercase;
  font-weight: bold;
}

.productname-text {
  font-weight: bold;
}

.productname-text sup {
  text-transform: uppercase;
  font-weight: bold;
}

.pricing-body ul {
  display: inline-block;
  text-align: left;
}

.pricing-body i {
  /* margin-right: 0.5rem;
  width: 1.5rem;
  opacity: 0.8;
  filter: drop-shadow(0.5px 0.5px 12px rgb(0, 0, 0, 0.5)); */
  /* color: inherit !important; */
}

.unset-background {
  background: unset !important;
  background-image: unset !important;
}

.opacity-80 {
  opacity: 0.8;
}

.div-flags {
  position: fixed;
  /* top: 5px; */
  right: 5px;
  z-index: 100;
}

.div-flags img {
  max-width: 1rem;
  cursor: pointer;
}

.section-home {
  color: white;
  /* max-width: 80%; */
  margin: auto;
  padding-top: 0px !important;
}

.pointer {
  cursor: pointer;
  /* color: black; */
}

.grab {
  cursor: grab;
}

.a-no-href:hover {
  color: gray;
}

.single-feature:hover .icon-feature-in-box {
  /* color: white !important; */
  /* filter: drop-shadow(2px 2px 4px rgba(255, 255, 255, 0.2)); */
}

.single-feature:hover .fa-linux {
  /* color: white !important; */
}

/* it's using the style of <h4> tag */
.single-feature .title-feature, .single-feature .title-faq {
  font-size: 20px;
  font-weight: 700;
  margin: 0px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.icon-feature-in-box {
  font-size: 45px;
  /* color: blue; */
  /* background-image: linear-gradient(135deg, black 10%, gray 100%) !important; */
  display: inline-block;
  padding-top: 10px;
  padding-bottom: 20px;
  /* display: flex;
  align-items: center;
  justify-content: center; */
  /* display: flex;
  justify-content: center; */
  /* to apply background only to the icon and not its background */
  /* -webkit-background-clip: text; */
  /*
    -webkit-text-fill-color: transparent; */
  -webkit-font-smoothing: antialiased;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.25));
}

.package-name {
  /* margin-bottom: 5px; */
  /* filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.25)); */
}

.package-feature-in-list {
  line-height: 24px !important;
  font-size: 16px !important;
  margin-bottom: 4px !important;
  /* if lower than the font size, it won't do anything*/
}

.package-feature-in-list i {
  margin-right: 0.5rem;
  width: 1.5rem;
  /* color: gray !important; */
  opacity: 0.9;
  filter: drop-shadow(0px 0px 0.5px rgb(0, 0, 0, 0.3));
}

.package-price {
  white-space: nowrap;
  font-size: 3.5rem;
  font-weight: 700;
  /* filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.25)); */
}

.per-month {
  font-size: 0.8rem;
  font-weight: normal;
  /* filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.25)); */
}

dialog {
  /* box-sizing: unset !important; */
  margin: auto !important;
  border: none !important;
  border-radius: 12px;
  padding: 24px;
  max-width: 80vw;
}

dialog::backdrop {
  background: black;
  opacity: 0.5;
  backdrop-filter: blur(1px)
}

.best-seller {
  position: absolute;
  right: 0;
  top: 0;
  background: url(/assets/images/best-seller.png) no-repeat;
  width: 150px;
  height: 121px;
  pointer-events: none;
  z-index: 10;
}

.border-black {
  border: 1px solid black !important;
}

.border-black.radius {
  border-radius: 5px;
}

.border-white {
  border: 1px solid white !important;
}

.margin-10p {
  margin: 10px;
}

.margin-price-box {
  margin-left: 7px;
  margin-right: 7px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.border-white.radius {
  border-radius: 5px;
}

.discount {
  background-color: #d1fad9;
  border-radius: 1.5rem;
  /* color: #2a8233; */
  /* color: #40b040; */
  color: #389b38;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 2rem;
  padding-right: 2rem;
  /* width: 50%; */
  display: inline-block;
  /* padding: 0.4rem 1.6rem; */
}

.discount-small {
  border-radius: 1.0rem;
  font-size: 1rem;
  line-height: 1;
  padding-left: 1rem;
  padding-right: 1rem;
}

.discount-smaller {
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 0.8;
  padding-left: 0.51rem;
  padding-right: 0.5rem;
}

.px128 {
  width: 128px;
  height: 128px;
}

.svg-in-col img {
  max-width: 100% !important;
}

#aContact {
  background: white;
  color: black;
  background-image: unset !important;
}

.special-icons {
  width: 120px !important;
}

/* .about-section */
.faq-section {
  background-color: rgb(247, 250, 255);
  padding-top: 100px;
  padding-bottom: 100px;
}

/*
everything bellow is overriding the css
*/
/* */
.navbar {
  /* height: var(--header-nav-height) !important; */
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar .nav-item a {
    font-size: 17px;
  }

  :root {
    --header-logo-height: calc(var(--header-nav-height) - 20px);
  }
}

.navbar .nav-item {
  white-space: nowrap;
}

.navbar-nav .nav-item a:hover {
  color: gray !important;
}

.navbar-nav .nav-item a.active {
  color: black !important;
}

.navbar-nav .nav-item a::after {
  /* background-image: linear-gradient(226.07deg, gray 14.22%, darkgray 47.19%, black 83.67%) !important; */
  background: black;
  /* top: calc(var(--original-header-nav-height) - var(--header-nav-height)) !important; */
  /* really weird, if I change navbar height, top: 0 is not where it should be,
  if navbar height = 77px, top has to be 0,
  if bigger, top has to be negative*/
  /* background-image: linear-gradient(226.07deg, black 14.22%, darkgray 47.19%, gray 83.67%) !important; */
}

@media (max-width: 991px) {

  /* the nav menu header box when screen is small */
  .navbar-collapse {
    margin-top: 10px !important;
    box-shadow: 0px 15px 20px 0px rgb(0 0 0 / 36%) !important;
  }
}

/* */
.footer {
  background-image: unset !important;
  background: black;
}

.hero-wrapper {
  padding-left: 12px !important;
  padding-right: 12px !important;
  position: inherit !important;
  border-radius: 0px !important;
}

.main-btn {
  /* background-image: linear-gradient(90deg, gray 20.7%, darkgray 36.47%, black 86.05%) !important; */
  background-image: linear-gradient(135deg, black 10%, gray 100%) !important;
  border-color: white !important;
  border-radius: 5px;
  white-space: inherit;
}

.main-btn {
  /* transition: all 0.4s ease-in-out; */
  transition: 0.2s all ease-in-out;
}

.main-btn:hover {
  transform: scale(1.2) !important;
}

.get-started-border {
  border: 1px solid white !important;
}

.button-gray {
  /* background-image: linear-gradient(90deg, gray 20.7%, darkgray 36.47%, black 86.05%) !important; */
  background-image: linear-gradient(135deg, gray 10%, darkgray 100%) !important;
}

.cta-section {
  bottom: 0 !important;
  margin-top: -0px !important;
  background-color: rgb(247, 250, 255) !important;
}

.cta-section .cta-wrapper {
  /* background-image: linear-gradient(90deg, gray 20.7%, darkgray 36.47%, black 86.05%) !important; */
  background-image: linear-gradient(135deg, black 10%, gray 100%) !important;
  position: relative !important;
  bottom: -100px !important;
}

.hero-wrapper::after {
  background-image: linear-gradient(135deg, black 20%, gray 100%) !important;
  opacity: 1.0 !important;
}

/* */
.single-pricing .pricing-body ul li p {
  line-height: 28px !important;
}

.single-pricing .pricing-body ul li {
  margin-bottom: 0px !important;
}

.single-pricing .pricing-header {
  padding: unset !important;
  padding-top: 20px !important;
  padding-bottom: 25px !important;
  padding-left: 50px !important;
  padding-right: 50px !important;
}

.pricing-header p, .pricing-header h3, .pricing-header span {
  /* filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.25)); */
}

.single-pricing .pricing-header::after {
  background-image: none !important;
}

.single-pricing .plan-basic {
  color: white !important;
  /* background-image: linear-gradient(135deg, lightgray 10%, white 50%, lightgray 90%) !important; */
}

.background-plan-basic {
  /* light gray */
  background-image: linear-gradient(135deg, white 20%, lightgray 60%) !important;
  /* light blue */
  background-image: linear-gradient(135deg, #b6e8ff 40%, #dbf3fd 70%) !important;
  /* copper */
  background-image: linear-gradient(135deg, #b87333d4 40%, #b873338a 70%) !important;
  background-image: unset !important;
  /* copper (brown bit red) #b87333 d4  #bc7e45 */
  background: #bc7e45 !important;
  /* green */
  background: #8CC443 !important;
  /* green sb-admin boostrap success */
  background: #13CF8D !important;
  background: var(--color-plan-basic) !important;
}

.background-plan-pro {
  /* black  gray linear */
  background-image: linear-gradient(135deg, black 10%, gray 60%) !important;
  /*blue*/
  background-image: linear-gradient(135deg, #0031ff 10%, #53c4ff 60%) !important;
  /* silver */
  background-image: linear-gradient(135deg, #8b8a8a 10%, silver 60%) !important;
  background-image: linear-gradient(135deg, #8b8a8a 20%, silver 70%) !important;
  /* one color silver dark gray / gray */
  background-image: linear-gradient(135deg, #a5a5a5 20%, #9c9a9a 70%) !important;
  background-image: unset !important;
  background: darkgray !important;
  /* blue */
  background: #1EA8E0 !important;
  /* blue sb-admin boostrap info */
  background: #2abed0 !important;
  /* blue sb-admin boostrap info */
  background: #2abed0 !important;
  background: var(--color-plan-pro) !important;
}

.background-plan-expert {
  /* gray*/
  /* background-image: linear-gradient(135deg, white 20%, darkgray 70%) !important; */
  /*blue*/
  background-image: linear-gradient(135deg, #d2eeff 40%, #f4fdff 70%) !important;
  /* really blue */
  background-image: linear-gradient(135deg, #2e21f3 40%, #2ba1ff 70%) !important;
  /* gold */
  background-image: linear-gradient(135deg, #ffbe00 40%, gold 70%) !important;
  background-image: unset !important;
  /* orange gold #ffbe00  */
  background: #ffbe00 !important;
  /* orange gold #ffbe00  */
  background: #ecbf33 !important;
  /* gold */
  background: #FAA72D !important;
  /* black  gray linear */
  background-image: linear-gradient(135deg, black 10%, gray 60%) !important;
  /* background-image: linear-gradient(135deg, gray 10%, white 50%, gray 90%) !important; */
  /* blue sb-admin boostrap Primary */
  background: var(--color-plan-expert) !important;
}

.single-pricing .plan-pro {
  color: white !important;
}

.button-buy-now-plan-pro {
  /* blue */
  background-image: linear-gradient(135deg, #0031ff 10%, #53c4ff 80%) !important;
  background-image: linear-gradient(135deg, #1EA8E0 30%, #8dd0d8 90%) !important;
}

.single-pricing .plan-expert {
  color: white !important;
}

.single-pricing .pricing-footer .border-btn {
  background: linear-gradient(226.07deg, gray 14.22%, darkgray 47.19%, black 83.67%) !important;
}

.single-pricing .pricing-footer p {}

.single-pricing .pricing-footer {
  padding-top: 0px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  padding-bottom: 20px !important;
  background: white !important;
}

.package-footer-text {
  /* color: black; */
  font-size: 0.9rem;
  /* letter-spacing: 2px; */
  /* line-height: 24px; */
  margin-top: 0.8rem;
}

.single-pricing a {
  color: white;
}

/* */
.feature-section-2 {
  /* padding-bottom: 100px !important; */
}

.feature-section {
  /* padding-top: 120px !important; */
}

.feature-section .feature-wrapper {
  /* margin-left: 4rem !important;
  margin-right: 4rem !important; */
  padding-top: 80px !important;
  padding-bottom: 50px !important;
  /* gray */
  /* background: #f2f2f2 !important; */
  /* white slightly blue */
  background: #F7FAFF !important;
  background: #f3f7ff !important;
  border-top-left-radius: 112px !important;
  border-top-left-radius: 212px !important;
  /* border-top-right-radius: 112px !important;
  border-bottom-left-radius: 112px !important;
  border-bottom-right-radius: 112px !important; */
}

.why-choose-us-section {
  /* background: #f3f7ff !important; */
}

.single-feature .feature-icon {
  background-image: unset !important;
}

.single-feature-wrapper:hover {
  background-image: linear-gradient(226.07deg, lightgray 14.22%, gray 47.19%, darkgray 83.67%) !important;
}

.single-feature:hover {
  /* background-image: linear-gradient(135deg, black 10%, gray 100%) !important; */
  /* color: white !important; */
}

.single-feature:hover a:not([class]) {
  /* light blue */
  /* color: #a4c7f7; */
}

.single-feature .feature-icon i {
  /* background: linear-gradient(226.07deg, gray 14.22%, darkgray 47.19%, black 83.67%) !important; */
  background-image: linear-gradient(135deg, black 10%, gray 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.single-feature:hover .feature-icon i {
  background: white !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* */
/*.testimonial-section .testimonial-wrapper .testimonial-active-wrapper .single-testimonial .testimonial-image::after*/
.testimonial-image::after {
  background: -webkit-linear-gradient(226.07deg, gray 14.22%, darkgray 47.19%, black 83.67%) !important;
}

.testimonial-active-wrapper {
  padding-bottom: 60px !important;
}

.testimonial-section .testimonial-wrapper {
  /* background-image: linear-gradient(90deg, gray 20.7%, darkgray 36.47%, black 86.05%) !important; */
  background: linear-gradient(135deg, black 10%, gray 100%) !important;
  color: white !important;
}

.testimonial-section .info p {
  color: white !important;
}

.testimonial-section .content p {
  color: #bbbbbb !important;
}

.testimonial-section .testimonial-wrapper .testimonial-active-wrapper .tns-controls i {
  background: none !important;
}

.testimonial-section .testimonial-wrapper .testimonial-active-wrapper .tns-controls button {
  background: gray !important;
}

.preloader .loader .spinner-circle {
  border-color: black black rgba(0, 0, 0, 0.1) !important;
}

.footer .links li a:hover {
  color: gray !important;
}

.footer .copyright a:hover {
  color: gray !important;
}

.footer .inline-separator {
  margin-left: 8px;
  margin-right: 8px;
}

.footer-category-title {
  font-size: 25px;
  margin-bottom: 15px;
  margin-top: 10px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}

.scroll-top {
  background: gray !important;
  bottom: 42px !important;
}

.hero-wrapper .hero-content p {
  color: #c1c1c1 !important;
}

/*  */
.no-background-image {
  background-image: initial !important;
  color: initial !important;
}

.no-background-image:hover {
  background-image: initial !important;
  color: initial !important;
}

.wrapper-icon-feature-page {
  position: relative;
}

.icon-feature-page {
  position: absolute;
  top: 10px;
  right: 10px;
  /* width: 20px; */
  /* Adjust size as needed */
  height: 20px;
  z-index: 1;
  text-decoration: none;
  color: inherit;
  /* display: none; */
  opacity: 0.12;
}

.icon-feature-page:hover {
  /* color: initial !important; */
  /* background: initial !important; */
}

.single-feature-wrapper:hover .icon-feature-page {
  display: inherit;
  opacity: 1;
  background: white !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

@keyframes saturateAnimation {
  0% {
    filter: saturate(100%);
  }

  50% {
    filter: saturate(112%);
    transform: scale(1.02);
  }

  100% {
    filter: saturate(100%);
  }
}

.saturate-loop {
  animation: saturateAnimation 5s infinite;
}

@keyframes shakeAnimation {
  0% {
    transform: rotate(0deg) translate(0, 0);
  }

  80% {
    transform: rotate(0deg) translate(0, 0);
  }

  82% {
    transform: rotate(-10deg) translate(-2px, -2px);
  }

  84% {
    transform: rotate(10deg) translate(2px, 2px);
  }

  86% {
    transform: rotate(-10deg) translate(-2px, -2px);
  }

  88% {
    transform: rotate(10deg) translate(2px, 2px);
  }

  90% {
    transform: rotate(-10deg) translate(-2px, -2px);
  }

  92% {
    transform: rotate(10deg) translate(2px, 2px);
  }

  94% {
    transform: rotate(-10deg) translate(-2px, -2px);
  }

  96% {
    transform: rotate(10deg) translate(2px, 2px);
  }

  98% {
    transform: rotate(-10deg) translate(-2px, -2px);
  }

  100% {
    transform: rotate(0deg) translate(0, 0);
  }
}

.shake {
  animation: shakeAnimation 10s;
  /* animation-delay: 5s; */
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.shake:hover {
  animation-play-state: paused;
}

.drop-shadow-low {
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.25));
}

.payment-method {
  padding: 20px 20px !important;
}

.pricing-section .section-title {
  margin-bottom: 30px !important
}

.single-feature-box-container {
  border-radius: 5px;
  padding: 2px;
  /* margin-bottom: 30px; */
  /* transition: all 0.2s ease-out 0s; */
}

.single-feature-box-container:hover {
  /* background: black; */
}

/* .hover-black:hover {
  background: black;
} */
.single-feature-box-container:hover .icon-feature-page {
  display: inherit;
  opacity: 1;
}

.fa-windows {
  color: #00adef !important;
}

.fa-apple {
  color: #949494 !important;
}

.fa-linux {
  color: black !important;
}

.button-green {
  background-image: linear-gradient(135deg, #74d700 10%, #1f9b24 100%) !important;
}

/* @keyframes flip {
  0% { transform: rotateY(180deg); }
    100% { transform: rotateY(0deg); }
} */
/* .flip {
  animation: flip 5s;
} */
@keyframes fade-in-from-bottom {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-from-bottom {
  opacity: 0;
  animation: fade-in-from-bottom 1.0s ease-out forwards;
}

@keyframes move-from-top {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.move-from-top {
  animation: move-from-top 0.5s ease-out forwards;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fade-in {
  opacity: 0;
  animation: fade-in 0.5s ease-out forwards;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-10px);
  }

  40% {
    transform: translateX(10px);
  }

  60% {
    transform: translateX(-10px);
  }

  80% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(0);
  }
}

.shake {
  animation: shake 0.5s;
}

.simple-spinner {
  animation: spin 1s infinite linear;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (min-height: 420px) {
  .elements-to-show-when-visible-when-scroll {
    opacity: 0;
    /*   transform: translateX(50%)lot of problem, sometimes doesn't scroll well */
    /* if 100% it's outside the view so it can't intersect with IntersectionObserver */
    /* transform: translateX(50%); */
    /* transition: opacity 1s ease-out; */
    /* transition: opacity 1s, transform 1s; */
  }

  .elements-to-show-when-visible-when-scroll.show {
    opacity: 1;
    /* transform: translateX(0); */
  }
}
