.vey-pricing-widget-tabs {
  display: flex;
  justify-content: center;
  padding-bottom: 40px;
}

.vey-pricing-widget-tabs .tab h3 {
  font-family: graphie, sans-serif;
  color: #364344;
  font-size: 25px;
  font-weight: 800;
  line-height: 36px;
  opacity: 0.4;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  margin: 0;
  margin-bottom: 4px;
}

.vey-pricing-widget-tabs .tab h3:hover {
  opacity: 1;
  transition: all 0.4s ease-in-out;
}

.vey-pricing-widget-tabs .tab:nth-child(2) {
  margin-left: 32px;
}

.vey-pricing-widget-tabs .active {
  border-bottom: 2px solid #36cece;
  border-radius: 1px;
}

.vey-pricing-widget-tabs .active h3 {
  opacity: 1;
}

.elementor-widget:not(:last-child) {
  margin-bottom: 0px;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 2s;
  animation-name: fade;
  animation-duration: 1.5s;
}

/* Define animations */
@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
