/*** POPUP ***/
.bnws-tools-popup-bg {
  display:none;
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  left:0;
  top:0;
  right:0;
  bottom:0;
  background-color: rgba(0,0,0,0.4);
}

.bnws-tools-popup {
  display:none;
  background-color: #fff;
  border-radius: var(--bnws-whitespace-l1);
  margin:auto;
  position: fixed;
  max-width: 800px;
  width: 90%;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.14), 0 11px 15px -7px rgba(0, 0, 0, 0.12), 0 24px 38px 3px rgba(0, 0, 0, 0.2);
  min-height: 200px;
  padding:20px;
  max-height: 86vh;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
}
.bnws-tools-popup.fullscreen {
  max-width: 100% !important;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  z-index:1000000;
}

.bnws-tools-popup-close,.bnws-tools-popup-top-button {
  position: sticky;
  float: right;
  margin-left: auto;
  height: 40px;
  width: 40px;
  border-radius: 100%;
  color: #fff;
  background-color: var(--bnws-col-secondary);
  transition: var(--bnws-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  top:0;
  margin-left: var(--bnws-whitespace-l1);
  user-select: none;
  z-index: 3;
}

.bnws-tools-popup-close:hover,.bnws-tools-popup-top-button:hover {
  background-color: var(--bnws-col-secondary);
  opacity: 0.8;
}

.bnws-action-bar-button {
  background: var(--bnws-col-secondary);
  padding: var(--bnws-whitespace-l2) var(--bnws-whitespace-l2);
  margin-right: var(--bnws-whitespace-l1);
}

.bnws-tools-popup-content > .bnws-form > *:nth-last-child(2) {
  margin-bottom: 30px !important;
}

.bnws-popup-button-container {
  background: rgb(255,255,255);
  background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 86%, rgba(255,255,255,0) 100%);
  position: sticky;
  bottom: -20px;
  width: calc(100% + 40px) !important;
  box-sizing: border-box;
  margin: -20px;
  margin-top: auto;
  border-top:3px solid #fff;
  padding: 20px;
  z-index: 2;
}

.bnws-action-bar-button i, .bnws-action-bar-button img {
  margin-right: var(--bnws-whitespace-l2);
}

.bnws-action-bar-button img {
  height: 24px;
}

.bnws-tools-popup-content {
  height: 100%;
  min-height: inherit;
  position: relative;
  height: min-content;
}


.bnws-tools-popup.fullscreen .bnws-tools-popup-content {
  height: 100vh;
}


.bnws-tools-popup-content h1:first-child {
  margin-top: 0px;
}

.bnws-tools-popup-content h1,.bnws-tools-popup-content h2 ,.bnws-tools-popup-content h3 {
  line-height: 1.0em;
}

/*
.bnws-tools-popup-content .bnws-form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  height: 100%;
  min-height: inherit;
  position: relative;
}*/
@media (max-width: 767px) {
  .bnws-tools-popup.fullscreen_mobile {
    max-width: 100% !important;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    z-index:1000000;
  }
}