
.fws-input-wrapper{
    clear: both;
}
.fws-input-wrapper .woocommerce-input-wrapper{
  position: relative; 
}
.btn-send-otp{
    position: absolute;
    top: -4px;
    right: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 9999;
}
.btn-send-otp span{
    line-height: 0;
}
.fws-hidden{
  display: none;
}
body .fws-modal-header .fws-btn-close{
  cursor: pointer;
  background: none;
  color: black;
  border: none;
  padding: 0;
  line-height: 0;
}
.overflow-hidden{
  overflow: hidden !important;
}

@-webkit-keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  .animate-spin {
    -webkit-animation: spin 1s linear infinite;
            animation: spin 1s linear infinite;
  }
  
  .animate-spin-fast {
    -webkit-animation: spin 0.3s linear infinite;
            animation: spin 0.3s linear infinite;
  }
  .fws-modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
    padding: 16px;
    z-index: 9999999;
    background-color: #0000004d;
  }
  .fws-modal.show{
    display: flex;
  }
  .fws-modal .form-row{
    margin-bottom: 16px;
  }
  .fws-form-message{
    margin-bottom: 16px;
  }
  .fws-modal-dialog{
    width: 100%;
    max-width: 500px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 0 17px 0px #9f9f9f4d;
  }
  .fws-modal-header,.fws-modal-body,.fws-modal-footer{
    padding: 16px;
    position: relative;
  }
  .fws-modal-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .fws-modal-footer{
    text-align: right;
  }
  .fws-message-success{
    width: 100%;
    height:100%;
    background-color: #fff;
    text-align: center;
    font-size: 28px;
    position: absolute;
    z-index: 99999;
    left: 0;
    top:0;
    padding:20px;

}