/**
 * All of the CSS for your deactivate popup functionality should be
 * included in this file.
 */

.gdpr-deactivate-popup-form-wrapper-outer{
      display: none;
  }
  
  .gdpr-deactivate-popup-form-title{
    font-weight: var(--text-semi-bold-font-weight);
    font-size: var(--text-sm-font-size);
    margin:5px 0;
      padding:16px 10px;
      margin:0;
  }
  
  .gdpr-deactivate-popup-form-wrapper{
      display: flex;
      font-family: sans-serif;
      background-color: rgba(0, 0, 0, 0.4);
      position: fixed;
      top:0;
      left:0;
      width: 100%;
      height: 100%;
      z-index: 9999;
      justify-content: center;
      align-items: center;
  }
  .gdpr-deactivate-popup-form{
      display: flex;
      width: 500px;
      flex-direction:column;
      background-color: var(--white-100);
      justify-content:space-between;
    }
    
    .gdpr-deactivate-popup-inputs{
      padding: 0px 10px;
      font-size: var(--text-sm-font-size);
      color: var(--black-50);
    }
  
  .gdpr-deactivate-input-choices{
    display:flex;
    align-items:center;
    margin: 5px 0;
  }
  
    .gdpr-deactivate-popup-inputs input{
      margin: 5px;
    }
  
  .gdpr-gdpr-deactivate-popup-form-buttons-wrap{
      padding: 16px;
  }
  
    .gdpr-deactivate-popup-form-buttons{
      display: flex;
      justify-content: space-between;
    }
    
    .gdpr-deactivate-popup-form-buttons div{
      font-size: var(--text-xs-font-size);
    }
  
  .gdpr-deactivate-popup-form-buttons button{
    padding: 8px 20px;
    margin: 0;
    font-size: var(--text-base-font-size);
    border-radius: 4px;
    border: none;
  }
  
  .gdpr-deactivate-popup-form-buttons>.gdpr-deactivate-delete-button{
      color: var(--white-100);
      display: none;
  }
  
  .gdpr-deactivate-popup-form-buttons>.gdpr-deactivate-button{
      color: var(--white-100);
  }
  
  .gdpr-deactivate-popup-form-buttons>.gdpr-cancel-button{
      background-color: var(--white-100);
  }
  .gdpr-deactivate-popup-form-description{
    padding:0 17px;
  }
  .gdpr-deactivate-popup-form-description-content{
    font-size: var(--text-sm-font-size);
    color: var(--black-50);
  }
 