/*
author         FavThemes
author URL     https://www.favthemes.com
copyright      Copyright (C) 2012-2018 FavThemes.com. All Rights Reserved.
license        Licensed under GNU/GPLv3 (http://www.gnu.org/licenses/gpl-3.0.html)
*/

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

1. reset
2. grid
3. content
4. effects

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

/*//////////////////////////////////////////////////////////////////////////////
///
///  1. reset
///
//////////////////////////////////////////////////////////////////////////////*/

/*/
///  CSS variables
/*/

:root {
  --color-main: #0099FF;
  --color-white: #FFFFFF;
  --color-black: #171717;
  --color-grey: #8b8b8b;
  --color-light-grey: #e0e0e0;
  --color-dark-grey: #2e2e2e;
  --color-bg-light: #F8F8F8;
  --color-bg-dark: #171717;
  --color-border: #E8E8E8;
}

/*/
///  reset
/*/

/* links */
a, a:hover, a:focus {
  color: var(--color-main);
  transition: all 0.3s ease-out 0s;
}

/* lists */
ul {
  list-style-type: none;
  padding-left: 0;
}
ul, ol {
  margin-left: inherit;
}

/* images */
img {
  max-width: 100%;
  height: auto; display:
  inline-block;
}

/* visible/hidden */
  /* medium devices (tablets, 768px and up) */
  @media (min-width: 768px) {
    .favth-visible-mobile {
      display: none;
    }
  }

  /* small devices (landscape phones, less than 768px) */
  @media (max-width: 767.98px) {
    .favth-hidden-mobile {
      display: none;
    }
  }

/*//////////////////////////////////////////////////////////////////////////////
///
///  2. grid
///
//////////////////////////////////////////////////////////////////////////////*/

/*/
///  grid elements
/*/

/* grid */
.favth-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr));
  grid-gap: 2rem;
}

  /* medium devices (tablets, less than 992px) */
  @media (max-width: 991.98px) {
    .favth-grid {
      grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    }
  }

/*/
///  grid columns
/*/

/* 5 columns */
.favth-grid.favth-col-5 {
  grid-template-columns: repeat(5, 1fr);
}

  /* medium devices (tablets, less than 992px) */
  @media (max-width: 991.98px) {
    .favth-grid.favth-col-5 {
      grid-template-columns: repeat(2, 1fr);
    }
    .favth-grid.favth-col-5 .favth-grid-cell:nth-child(5) {
      grid-column: 1 / -1;
    }
  }
  /* extra small devices (portrait phones, less than 576px) */
  @media (max-width: 575.98px) {
    .favth-grid.favth-col-5 {
      grid-template-columns: repeat(1, 1fr);
    }
  }

/* 4 columns */
.favth-grid.favth-col-4 {
  grid-template-columns: repeat(4, 1fr);
}

  /* large devices (desktops, less than 1200px) */
  @media (max-width: 1199.98px) {
    .favth-grid.favth-col-4 {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  /* extra small devices (portrait phones, less than 576px) */
  @media (max-width: 575.98px) {
    .favth-grid.favth-col-4 {
      grid-template-columns: repeat(1, 1fr);
    }
  }

/* 3 columns */
.favth-grid.favth-col-3 {
  grid-template-columns: repeat(3, 1fr);
}

  /* medium devices (tablets, less than 992px) */
  @media (max-width: 991.98px) {
    .favth-grid.favth-col-3 {
      grid-template-columns: repeat(1, 1fr);
    }
  }

/* 2 columns */
.favth-grid.favth-col-2 {
  grid-template-columns: repeat(2, 1fr);
}

  /* extra small devices (portrait phones, less than 576px) */
  @media (max-width: 575.98px) {
    .favth-grid.favth-col-2 {
      grid-template-columns: repeat(1, 1fr);
    }
  }

/* 1 columns */
.favth-grid.favth-col-1 {
  grid-template-columns: 1fr;
}

/*/
///  grid width
/*/

  /* extra large devices (large desktops, 1200px and up) */
  @media (min-width: 1200px) {
    .favth-grid-container {
      max-width: 1199.98px;
    }
  }
  /* large devices (desktops, less than 1200px) */
  @media (max-width: 1199.98px) {
    .favth-grid-container {
      max-width: 100%;
    }
  }

/*//////////////////////////////////////////////////////////////////////////////
///
///  3. content
///
//////////////////////////////////////////////////////////////////////////////*/

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

layout

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

/*/
///  container
/*/

.favpricingtables .favth-grid {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.favpricingtables .favpricingtables-container {
  padding: 4rem 2rem;
  text-align: center;
}

/* style 1 */

  /* large devices (desktops, 992px and up) */
  @media (min-width: 992px) {
    .favpricingtables.favpricingtables-layout-style1 .favpricingtables-col {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .favpricingtables.favpricingtables-layout-style1 .favpricingtables-container {
      display: block;
      width: 100%;
    }
    .favpricingtables.favpricingtables-layout-style1 .favpricingtables-container.favpricingtables-content-highlight {
      padding: 6rem 2rem;
    }
  }

/* style 2 */

  /* large devices (desktops, 992px and up) */
  @media (min-width: 992px) {
    .favpricingtables.favpricingtables-layout-style2 .favth-grid {
      grid-gap: 0;
    }
    .favpricingtables.favpricingtables-layout-style2 .favpricingtables-col {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .favpricingtables.favpricingtables-layout-style2 .favpricingtables-container {
      display: block;
      width: 100%;
    }
    .favpricingtables.favpricingtables-layout-style2 .favpricingtables-container.favpricingtables-content-highlight {
      padding: 6rem 2rem;
    }
    .favpricingtables.favpricingtables-layout-style2 .favpricingtables-col.favpricingtables-content-highlight {
      z-index: 99;
    }
  }

/*/
///  content styles
/*/

/* highlight */
.favpricingtables .favpricingtables-container.favpricingtables-content-highlight {
  box-shadow: 0 0 20px rgba(0,0,0, .27);
}

/*/
///  icon
/*/

.favpricingtables .favpricingtables-icon {
  margin-bottom: 2.4rem;
}
.favpricingtables .favpricingtables-icon i {
  margin: 0;
  padding: 0;
}

/*/
///  title
/*/

.favpricingtables .favpricingtables-title {
  margin-bottom: 1.1rem;
}
.favpricingtables .favpricingtables-title a:hover,
.favpricingtables .favpricingtables-title a:focus {
  background-color: transparent !important;
}

/*/
///  description
/*/

.favpricingtables .favpricingtables-description {
  margin-bottom: 1rem;
}
.favpricingtables .favpricingtables-description ul {
  margin-bottom: 0;
}
.favpricingtables .favpricingtables-description li {
  line-height: 2;
}

/*/
///  price
/*/

.favpricingtables .favpricingtables-price {
  margin-bottom: 2rem;
  line-height: 1.5;
}

/*/
///  buy button
/*/

.favpricingtables .favpricingtables-button .favth-btn {
  margin-bottom: 0;
  border-color: transparent;
}
.favpricingtables .favpricingtables-button .favth-btn:hover,
.favpricingtables .favpricingtables-button .favth-btn:focus {
  background-color: #111 !important;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.17);
}

/*//////////////////////////////////////////////////////////////////////////////
///
///  4. effects
///
//////////////////////////////////////////////////////////////////////////////*/

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

layout effects

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

/*/
///  js classes
/*/

.favhide { opacity: 0; }
.favshow { opacity: 1; }

/*/
///  no effect
/*/

.favpricingtables-layout-effect-none {
  animation: none;
}

/*/
///  layout effect 1
/*/

.favpricingtables-layout-effect1 {
  animation-name: favpricingtables-layout-effect1;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes favpricingtables-layout-effect1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*/
///  layout effect 2
/*/

.favpricingtables-layout-effect2 {
  animation-name: favpricingtables-layout-effect2;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes favpricingtables-layout-effect2 {
  0% {
    opacity: 0;
    transform: translate3d(-25%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

/*/
///  layout effect 3
/*/

.favpricingtables-layout-effect3 {
  animation-name: favpricingtables-layout-effect3;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes favpricingtables-layout-effect3 {
  0% {
    opacity: 0;
    transform: translate3d(25%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

/*/
///  layout effect 4
/*/

.favpricingtables-layout-effect4 {
  animation-name: favpricingtables-layout-effect4;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes favpricingtables-layout-effect4 {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

/*/
///  layout effect 5
/*/

.favpricingtables-layout-effect5 {
  animation-name: favpricingtables-layout-effect5;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes favpricingtables-layout-effect5 {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

/*/
///  layout effect 6
/*/

.favpricingtables-layout-effect6 {
  animation-name: favpricingtables-layout-effect6;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes favpricingtables-layout-effect6 {
  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
  50% {
    opacity: 1;
  }
}

/*/
///  layout effect 7
/*/

.favpricingtables-layout-effect7 {
  animation-name: favpricingtables-layout-effect7;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes favpricingtables-layout-effect7 {
  0% {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transition-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    transform: perspective(400px);
  }
}

/*/
///  layout effect 8
/*/

.favpricingtables-layout-effect8 {
  animation-name: favpricingtables-layout-effect8;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes favpricingtables-layout-effect8 {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 100%, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }
  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -10%, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

icon effects

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

/*/
///  no effect
/*/

.favpricingtables-icon-effect-none {
  transition: none;
}
.favpricingtables-icon-effect-none i {
  cursor: default;
}

/*/
///  icon effect 1
/*/

.favpricingtables-icon-effect1 i {
  transition: all 2s ease-in-out;
  transform: rotateY(-180deg);
}
.favpricingtables-icon-effect1 i:hover {
  transform: rotateY(180deg);
  transition: all 2s ease-in-out;
}

/*/
///  icon effect 2
/*/

.favpricingtables-icon-effect2 i {
  transition: all 1s ease-in-out;
}
.favpricingtables-icon-effect2 i:hover {
  animation: favpricingtables-icon-effect2 1s ease-in-out;
}

@keyframes favpricingtables-icon-effect2 {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(0.7, 0.7, 0.7);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}

/*/
///  icon effect 3
/*/

.favpricingtables-icon-effect3 i {
  transition: all 1s ease-in-out;
}
.favpricingtables-icon-effect3 i:hover {
  transform: rotate(720deg) scale(1.1, 1.1);
  transition: all 1s ease-in-out;
}

/*/
///  icon effect 4
/*/

.favpricingtables-icon-effect4 i {
  transition: all 1s ease-in-out;
}
.favpricingtables-icon-effect4 i:hover {
  animation: favpricingtables-icon-effect4 1s ease-in-out;
}

@keyframes favpricingtables-icon-effect4 {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, .95, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}

/*/
///  icon effect 5
/*/

.favpricingtables-icon-effect5 i {
  transition: all 1s ease-in-out;
}
.favpricingtables-icon-effect5 i:hover {
  transition: all 1s ease-out;
  animation: favpricingtables-icon-effect5 2s linear infinite;
}

@keyframes favpricingtables-icon-effect5 {
  from {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(360deg);
  }
}

/*/
///  icon effect 6
/*/

.favpricingtables-icon-effect6 i {
  transition: all 0.3s linear;
  transform: perspective(1px) translateZ(0);
}
.favpricingtables-icon-effect6 i:hover {
  transition: all 0.3s linear;
  transform: translateY(10%);
}

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

image title effects

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

/*/
///  no effect
/*/

.favpricingtables-image-title-effect-none {
  transition: none;
}
.favpricingtables-image-title-effect-none i {
  cursor: default;
}

/*/
///  effect 1
/*/

.favpricingtables-image-title-effect1 {
  transition: all 0.3s linear;
  transform: perspective(1px) translateZ(0);
}
.favpricingtables-image-title-effect1:hover {
  transform: translateY(30%);
}

/*/
///  effect 2
/*/

.favpricingtables-image-title-effect2 {
  transform: translateZ(0);
}
.favpricingtables-image-title-effect2:hover {
  animation-name: favpricingtables-image-title-effect2;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
}

@keyframes favpricingtables-image-title-effect2 {
  16.65% {
    transform: translateX(4%);
  }
  33.3% {
    transform: translateX(-4%);
  }
  49.95% {
    transform: translateX(2%);
  }
  66.6% {
    transform: translateX(-2%);
  }
  83.25% {
    transform: translateX(1%);
  }
  100% {
    transform: translateX(0);
  }
}

/*/
///  effect 3
/*/

.favpricingtables-image-title-effect3 {
  transition: all 400ms linear;
}
.favpricingtables-image-title-effect3:hover {
  animation-name: favpricingtables-image-title-effect3;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
}

@keyframes favpricingtables-image-title-effect3 {
  20% {
    transform: scale3d(.8, .8, .8);
  }
  40% {
    opacity: 1;
    transform: scale3d(1.3, 1.3, 1.3);
  }
  100% {
    opacity: 0;
    transform: scale3d(.8, .8, .8);
  }
}

/*/
///  effect 4
/*/

.favpricingtables-image-title-effect4 {
  transition: all 0.3s linear;
}
.favpricingtables-image-title-effect4:hover {
  padding: 2rem;
}