
.fzt-button-container a {
    display: inline-block;
    padding: 15px 30px;
    font-size: var(--kidizro-body-font-size);
    border: 1px solid var(--kidizro-primary-color);
    border-radius: 50px;
    font-weight: 500;
    line-height: 1;
    background: var(--kidizro-primary-color);
    color: var(--kidizro-light-color);
    -webkit-transition: var(--transition);
            transition: var(--transition);
  }
  
  .fzt-button-container a:hover {
    background: var(--kidizro-secondary-color);
    border-color: var(--kidizro-secondary-color);
  }

/* Type 2 */

.fzt-button-container.type-2 a:hover {
  background: var(--kidizro-primary-color);
  border-color: var(--kidizro-primary-color);
  color: var(--kidizro-light-color);
}

.fzt-button-container.type-2 a {
  background: transparent;
  color: var(--kidizro-primary-color);
}

/* Type 3 */
  
  .fzt-button-container.type-3 a {
    display: inline-flex;
    align-items: center;
    color: var(--kidizro-primary-color);
    border-width: 0 0 2px;
    border-style: solid;
    border-color: rgba(var(--kidizro-primary-color-rgb), 0.2);
    background: transparent;
    font-size: var(--kidizro-body-font-size);
    padding: 0;
    line-height: 1.2;
    position: relative;
    border-radius: 0;
    width: auto;
  }
  
  .fzt-button-container.type-3 a:before {
    background-color: currentColor;
    content: "";
    position: absolute;
    height: 2px;
    bottom: -2px;
    width: 0;
    margin: auto;
    left: 0;
  }
  
  .fzt-button-container.type-3 a:after {
    background-color: currentColor;
    content: "";
    position: absolute;
    height: 2px;
    bottom: -2px;
    width: 0;
    margin: auto;
    right: 0;
    -webkit-transition: width 1s cubic-bezier(0.9, -0.45, 0.30, 1.45);
    transition: width 1s cubic-bezier(0.9, -0.45, 0.30, 1.45);
  }
  
  .fzt-button-container.type-3 a:hover {
    color: var(--kidizro-primary-color);
  }
  
  .fzt-button-container.type-3 a:hover:before {
    width: 100%;
    -webkit-transition: width 1s cubic-bezier(0.9, -0.45, 0.30, 1.45);
    transition: width 1s cubic-bezier(0.9, -0.45, 0.30, 1.45);
  }
  
  .fzt-button-container.type-3 a:hover:after {
    background: transparent;
    width: 100%;
  } 