/**
 * Vector Addons for Elementor - Styles
 * @package Vector_Addons_Elementor
 * @since 1.0.0
 */


.vector-wdg-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: all .3s ease;
}

.vector-wdg-button:focus {
  outline: none;
}

.vector-wdg-button__text {
  display: inline-block;
  transition: all .3s ease;
}

.vector-wdg-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vector-wdg-button__icon svg {
  width: auto;
  height: 16px;
  display: block;
  transition: all .3s ease;
}

.vector-wdg-button__icon i {
  font-size: 16px;
  line-height: 1;
  transition: all .3s ease;
}