HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux wordpress-ubuntu-s-2vcpu-4gb-fra1-01 5.4.0-169-generic #187-Ubuntu SMP Thu Nov 23 14:52:28 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/compelsupport/wp-content/themes/compel/assets/scss/_pricing.scss
//
// Pricing
// 


.pricingTable1{
 
  .pricing-icon {
    i{
      width: 64px;
      height: 64px;
      text-align: center;
      line-height: 60px;
      font-size: 24px;
      border: 3px solid $white;
      border-radius: 5px;
      color: $primary;
      background-color: rgba($primary, 0.18);
      box-shadow: 0px 0px 0px 1px rgba($primary, 0.3);
      transition: all 300ms linear 0ms;
    }
  }
}

.pricingTable1 .amount{
  display: block;
  font-size: 36px;
  font-weight: 600;
  color: $gray-700;
}

.pricingTable1 .pricing-content-2{
  margin: 0 0 30px 0;
  border-bottom:1px solid $gray-200;
}
.pricingTable1 .pricing-content-2 li{
  color: $gray-700;
  line-height: 40px;
  &::before{
    content: "\f00c" !important;
    font-family: 'Font Awesome 5 Free' !important;
    font-weight: 600;
    font-size: 12px;
    text-align: center;
    background-color: rgba($secondary, 0.1);
    color: $secondary !important;
    width: 26px;
    height: 26px;
    line-height: 26px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 5px;
  }
}
.pricingTable1 .title1{
  font-weight: 700;
  color: $gray-700;
  font-size: 20px;
  text-transform: capitalize;
}

.pricingTable1 .pricingTable-signup{
  display: block;
  padding: 14px 26px;
  background: $primary;
  border-radius: 52px;
  font-size: 14px;
  font-weight: 700;
  color: $white;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  text-align: center;
  transition: all 300ms linear 0ms;
}
.pricingTable1 .pricingTable-signup:hover{
  background: darken($primary, 5%);
  color: $white;
}
.pricingTable1:hover .pricing-icon i{
  color: $primary;
  background-color: rgba($primary, 0.4);
  box-shadow: 0px 0px 0px 1px rgba($primary, 0.4);
  transition: all 300ms linear 0ms;
  
}

.pricingTable1 .a-animate-blink {
  -webkit-animation: a-animate-blink 1s step-start 0s infinite;
  -moz-animation: a-animate-blink 1s step-start 0s infinite;
  -ms-animation: a-animate-blink 1s step-start 0s infinite;
  -o-animation: a-animate-blink 1s step-start 0s infinite;
  animation: a-animate-blink 1s step-start 0s infinite;
  animation-fill-mode: initial;
}

@-webkit-keyframes a-animate-blink {
  50% {
    opacity: 0.0;
  }
}

@-moz-keyframes a-animate-blink {
  50% {
    opacity: 0.0;
  }
}

@-o-keyframes a-animate-blink {
  50% {
    opacity: 0.0;
  }
}

@keyframes a-animate-blink {
  50% {
    opacity: 0.0;
  }
}