.sbnc-modal-container {
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.sbnc-modal {
  position: fixed;
  left: 20%;
  right: 20%;
  top: 50px;
  overflow-y: auto;
}

.sbnc-header {
  padding: 4px;
  text-align: center;
}

.sbnc-header-image {
  width: auto;
  max-height: 100px;
  display: inline-block;
}

.sbnc-close {
  position: absolute;
  right: 8px;
  text-decoration: none;
}

.sbnc-content {
  box-sizing: border-box;
  width: 50%;
  padding: 8px;
  float: left;
}

.sbnc-image {
  width: 100%;
}

.snbc-text {
  width: 100%;
}

.sbnc-content-form {
  box-sizing: border-box;
  width: 50%;
  padding: 8px;
  float: right;
}

.sbnc-wide-form {
  width: 100%;
}

.sbnc-form-row {
  text-align: center;
  padding: 4px;
}

.sbnc-form-control {
  width: 100%;
  box-sizing: border-box;
}

.sbnc-privacy-link {
  font-size: 10px;
  color: #ccc;
}

@media (max-device-width: 480px) {
  .sbnc-modal {
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
  }

  .sbnc-content {
    width: 100%;
    float: none;
  }

  .sbnc-content-form {
    width: 100%;
    float: none;
  }
}