.popup-search-box {
  position: fixed;
  top: 0;
  left: 50%;
  background-color: rgba(0, 0, 0, 0.95);
  height: 0;
  width: 0;
  overflow: hidden;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  transform: translateX(-50%);
  transition: all ease 0.4s;


  button.searchClose {
    width: 50px;
    height: 50px;
    line-height: 46px;
    position: absolute;
    top: 40px;
    right: 40px;
    background-color: transparent;
    font-size: 16px;
    border-radius: 50%;
    transform: rotate(0);
    transition: all ease 0.4s;
    color: $white-color;
    border: 2px solid $white-color;
    &:hover {
      color: $theme-color;
      border-color: $theme-color;
      transform: rotate(90deg);
    }
  }

  form {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    padding-bottom: 40px;
    cursor: auto;
    width: 100%;
    max-width: 700px;
    transform: translate(-50%, 50%) scale(0);
    transition: transform ease 0.4s;

    @include lg {
      max-width: 600px;
    }

    input {
      font-size: 18px;
      height: 70px;
      width: 100%;
      border: none;
      background-color: transparent;
      border: 1px solid $white-color;
      padding: 0 80px 0 30px;
      color: $white-color;
      border-radius: 0px;

      @include inputPlaceholder {
        color: $white-color;
      }
    }

    button {
      position: absolute;
      top: 0px;
      background-color: transparent;
      border: none;
      color: $white-color;
      font-size: 20px;
      right: 12px;
      cursor: pointer;
      width: 70px;
      height: 70px;
      transition: all ease 0.4s;
      transform: scale(1);
      
      &:hover {
        transform: scale(1.1);
        color: $theme-color;
      }
    }

  }

  &.show {
    opacity: 1;
    visibility: visible;
    width: 100.1%;
    height: 100%;
    transition: all ease 0.4s;
    border-radius: 0;

    form {
      transition-delay: 0.5s;
      transform: translate(-50%, -50%) scale(1);
    }
  }

}

@include sm {
  .popup-search-box form {
    width: 80%;
  }
  .popup-search-box form input {
    height: 60px;
  }
  .popup-search-box form button {
    width: 60px;
    line-height: 62px;
    height: 60px;
  }
}