  /* * {
      box-sizing: border-box;
  } */
	@media screen and (min-device-width: 1360px) and (max-device-width: 1540px) {
.form-container textarea {
height: 40px!important;
}
		.formbold-form-input{
		    padding: 0px 12px!important;
		}
}
  /* Button used to open the chat form - fixed at the bottom of the page */
  .open-button {
      background-color: #555;
      color: white;
      padding: 16px 20px;
      border: none;
      cursor: pointer;
      opacity: 0.8;
      position: fixed;
      bottom: 23px;
      right: 28px;
      width: 280px;
  }

  /* The popup chat - hidden by default */
  .chat-popup {
      display: none;
      position: fixed;
      bottom: 95px;
      right: 15px;
      border: 2px solid #f1f1f1;
      z-index: 9;
      border-radius: 8px 8px 0px 0px;
  }

  /* Add styles to the form container */
  .form-container {
      max-width: 300px;
      padding: 10px;
      background-color: white;
      padding-top: 0px;
  }

  /* Full-width textarea */
  .form-container textarea {
      /* width: 100%;
      padding: 15px;
      margin: 5px 0 22px 0;
      border: none;
      background: #f1f1f1;
      resize: none;
      min-height: 200px; */

    width: 100%;
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    background: white;
    font-weight: 500;
    font-size: 15px;
    color: #6b7280;
    outline: none;
    resize: none;
  }

  textarea::placeholder {
    color: #6b7280;  
    }

  /* When the textarea gets focus, do something */
  .form-container textarea:focus {
    border-color: #6a64f1;
    color: #6b7280;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
  }

  /* Set a style for the submit/send button */
  .form-container .btn {
      /* background-color: #04AA6D; */
      color: rgb(0, 0, 0);
      border: 1px solid #000 !important;
      padding: 10px 10px;
      border: none;
      cursor: pointer;
      /* width: 49%; */
      width: 100%;
      /* margin-bottom: 10px; */
      opacity: 0.8;
      border-radius: 6px;
  }

  .form-container .btn:hover {
      background-color: #ea4e38;
      color: #fff;
      border: 1px solid #000 !important;

      border-radius: 6px;
  }

  /* Add a red background color to the cancel button */
  .form-container .cancel {
      background-color: red;
  }

  /* Add some hover effects to buttons */
  .form-container .btn:hover,
  .open-button:hover {
      opacity: 1;
  }

  /* .se-pre-con {
                position: absolute;
            } */

  .formbold-mb-5 {
      margin-bottom: 5px;
  }

  .formbold-pt-3 {
      padding-top: 12px;
  }

  .formbold-main-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0px;
  }

  .formbold-form-wrapper {
      margin: 0 auto;
      max-width: 550px;
      width: 100%;
      background: white;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      display: none;
  }

  .formbold-form-wrapper.active {
      display: block;
  }

  .formbold-form-label {
      display: block;
      font-weight: 500;
      font-size: 12px;
      color: #07074d;
      margin-bottom: 0px;
  }

  .formbold-form-label-2 {
      font-weight: 600;
      font-size: 20px;
      margin-bottom: 20px;
  }

  .formbold-form-input {
      width: 100%;
      padding: 5px 10px;
      border-radius: 6px;
      border: 1px solid #e0e0e0;
      background: white;
      font-weight: 500;
      font-size: 12px;
      color: #6b7280;
      outline: none;
      resize: none;
  }

  .formbold-form-input:focus {
      border-color: #6a64f1;
      box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
  }

  .formbold-btn {
      text-align: center;
      font-size: 16px;
      border-radius: 6px;
      padding: 14px 32px;
      border: none;
      font-weight: 600;
      background-color: #6a64f1;
      color: white;
      cursor: pointer;
  }

  .formbold-btn:hover {
      box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
  }

  .formbold--mx-3 {
      margin-left: -12px;
      margin-right: -12px;
  }

  .formbold-px-3 {
      padding-left: 12px;
      padding-right: 12px;
  }

  .flex {
      display: flex;
  }

  .flex-wrap {
      flex-wrap: wrap;
  }

  .w-full {
      width: 100%;
  }

  .formbold-form-header {
      background: #6a64f1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 36px;
      border-radius: 8px 8px 0px 0px;
  }

  .formbold-form-header h3 {
      font-weight: 700;
      font-size: 20px;
      color: white;
  }

  .formbold-form-header button {
      color: white;
      background: transparent;
      border: none;
  }

  .formbold-chatbox-form {
      padding: 32px 36px;
  }

  .formbold-action-buttons {
      /* max-width: 550px; */
      margin-left: auto;
      margin-right: auto;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      margin-top: 0px;
  }

  .formbold-action-btn {
      width: 70px;
      height: 70px;
      /* background: #edf2fa; */
      background: #000;
      color: white;
      border-radius: 50%;
      margin-left: 20px;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .formbold-action-btn .formbold-cross-icon {
      display: none;
  }

  .formbold-action-btn.active .formbold-cross-icon {
      display: block;
  }

  .formbold-action-btn.active .formbold-chat-icon {
      display: none;
  }

  .lblh1 {
      background: #000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 65px !important;
      border-radius: 8px 8px 0px 0px;
      font-size: 14px;
      color: #fff !important;
  }

  .lbla {
      color: #000 !important;
  }

  .lblm-b {
      margin-bottom: 20px;
  }
  .lblp{
    color: black !important; 
    display: flex; 
    margin-bottom: 0px;
    font-size: 14px;
  }
  .lblcancle{
    background-color: #ab853c;
    color: #fff !important;
    border: 1px solid #ab853c !important;
    padding: 10px 10px;
    cursor: pointer;
    width: 48%;
    margin-bottom: 10px;
   line-height: 12px;
    border-radius: 6px;
    margin-bottom: 0px !important;
  }
  .banner-area .box-cell, .banner-area .box-cell div, .banner-area.auto-height, .banner-area.auto-height div{
   z-index: 1; 
  }
  .btn{
    line-height: 12px;
  }
  input{
    min-height: 0px;
  }
  .d-n{
    display: none;
  }
  .lblcross{
    color: #000;
    text-align: end;
    font-weight: 800;
    cursor: pointer;
  }
  .lblchat{
    background: #F2F2F2;
    padding: 10px;
   border-radius: 20px 20px 20px 5px;
    margin-bottom: 10px;
    
  }
  .lblchath1{
    font-size: 20px;
    font-weight: 600;
    color: #000!important;
	      margin: 0 0 0px!important;

  }
  .lblh3{
    color: #000 !important;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 5px;
  }
  .lblp1{
    color: #000 !important;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
  }
  .lbllabel{
    color: #000;
    font-size: 11px;
    line-height: 15px;
  }
  .divp{
    color: #000 !important;
    font-size: 12px;
    line-height: 18px;
    margin-top: 50px;
    background: rgb(250, 251, 251);
    padding: 10px;
    border-radius: 8px;
  }
  .lblbefore{
    margin-top: 50px;
  }
  .divp a{
    color: #000 !important;
    border-bottom: 1px solid;
  }