
.fzt-search-box-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
  }
  
  .fzt-search-box-container .search-form,
  .fzt-search-box-container .search-form .fzt-search-box-field {
    display: inline-flex;
    flex-wrap: nowrap;
    position: relative;
    width: 100%;
  }
  
  .fzt-search-box-container .search-form input[type='search'] {
    display: flex;
    color: var(--kidizro-light-color);
    background: var(--kidizro-primary-color);
    border-color: var(--kidizro-primary-color);
    border-radius: 8px;
    margin: 0;
    padding: 10px 70px 10px 20px;
    width: 100%;
    line-height: 1;
    min-height: 60px;
  }
  
  .fzt-search-box-container.product-category-search {
    border: 1px solid var(--kidizro-border-light-color);
  }
  
  .fzt-search-box-container .search-form button[type='submit'] {
    position: absolute;
    left: auto;
    right: 5px;
    top: 5px;
    bottom: 5px;
    margin: 0;
    padding: 10px;
    font-size: 0;
    width: 50px;
    border-radius: 8px;
  }

  .fzt-search-box-container .search-form button[type='submit']:hover {
    background: var(--kidizro-body-background-color);
    color: var(--kidizro-primary-color);
  }
  
  .fzt-search-box-container .search-form button[type='submit']:before {
    content: "";
    display: inline-block;
    position: relative;
    font-size: calc(var(--kidizro-body-font-size) + 6px);
    margin: 0;
    background: var(--kidizro-light-color);
    -webkit-mask-image: url(images/search-icon.svg);
    mask-size: 100% auto;
    -webkit-mask-size: 100% auto;
    mask-position: center center;
    -webkit-mask-position: center center;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    width: 22px;
    height: 22px;    
  }
  
  .fzt-search-box-container .search-form button[type='submit']:after {
    content: "";
    position: absolute;
    background: none;
    margin: 0 10px 0 0;
    width: 20px;
    height: 20px;
    border-style: solid;
    border-width: 2px;
    border-radius: 100%;
    border-top-color: currentColor;
    border-bottom-color: currentColor;
    border-right-color: transparent;
    border-left-color: transparent;
    background: transparent;
    color: currentColor;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    animation: cart_loader 1s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
    visibility: hidden;
  }

  .fzt-search-box-container .search-form button[type='submit']:hover:before {
    background: var(--kidizro-primary-color);
}
  
  .fzt-search-box-container .search-form button[type='submit']:focus span,
  .fzt-search-box-container .search-form button[type='submit']:focus:before {
    opacity: 0.2;
  }
  .fzt-search-box-container .search-form button[type='submit']:focus:after {
    visibility: visible;
  }
  
  .fzt-search-box-container .search-form .fzt-search-box-field select,
  .fzt-search-box-container .search-form .fzt-search-box-field + .fzt-search-box-field input[type='search'] {
    border: none;
    box-shadow: none;
  }
  
  /* Type - 2 */
  
  .fzt-search-box-container.type-2 {
    width: auto;
  }
  
  .fzt-search-box-container.type-2:before {
    content: "";
    position: relative;
    font-size: var(--kidizro-h4-font-size);
    color: inherit;
    margin: 0;
    background: var(--kidizro-heading-color);
    -webkit-mask-image: url(images/search-icon.svg);
    mask-size: 100% auto;
    -webkit-mask-size: 100% auto;
    mask-position: center center;
    -webkit-mask-position: center center;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    width: 25px;
    height: 25px;
  }
  
  .fzt-search-box-container.type-2 .fzt-search-box-wrapper {
    background: var(--kidizro-body-background-color);
    padding: 15px;
    margin: 30px 0 0 0;
    border-radius: 8px;
    display: inline-flex;
    opacity: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: 100%;
    min-width: 400px;
    visibility: hidden;
    z-index: 1;
    box-shadow: 0 1px 5px rgba(var(--kidizro-dark-color-rgb), 0.1);
    -webkit-box-shadow: 0 1px 5px rgba(var(--kidizro-dark-color-rgb), 0.1);
    transition: var(--transition);
    -webkit-transition: var(--transition);
  }
  
  .fzt-search-box-container.product-category-search.type-2 {
    border: none;
  }
  
  .fzt-search-box-container.product-category-search.type-2 form {
    border: 1px solid var(--kidizro-border-light-color);
  }
  
  .fzt-search-box-container.type-2:hover .fzt-search-box-wrapper {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  
  .fzt-search-box-container.type-2:hover:before {
    background-color: var(--kidizro-primary-color);
  }
  
  .site-header-sticky.nav-sticky .fzt-search-box-container.type-2 .fzt-search-box-wrapper {
    margin: 20px 0 0 0;
  }