.agc-help {
  position: relative;
  display: inline;
  overflow: hidden;
}
.agc-help:hover, .agc-help:focus {
  overflow: visible;
}
.agc-help:before {
  content: "?";
  position:relative;
  top: -5px;
  color: #333;
  font-size: 10px;
  background: #eee;
  border: 1px solid #011875;
  border-radius: 20px;
  padding: 3px 8px;
  margin: 0 12px 5px 0;
  transition: background 0.6s ease;
}
.agc-help:hover:before {
  background: #fff;
}
.agc-help-text {
  position: absolute;
  z-index:100;
  font-weight: normal;
  min-width: 300px;
  max-height: 500px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #011875;
  border-radius: 5px;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.agc-help:hover .agc-help-text, .agc-help:focus .agc-help-text {
  opacity:1;
}

.agc-form-help {
  position: relative;
  min-height: 45px;
  overflow: hidden;
  display: inline;
  margin: 0 12px;
}
.agc-form-help:hover {
  overflow: visible;
}

.agc-form-help:before {
  content: "?";
  color: #333;
  font-size: 18px;
  background: #eee;
  border: 1px solid #011875;
  border-radius: 20px;
  padding: 0 8px;
  margin: 0 12px 5px 0;
  transition: background 0.6s ease;
}
.agc-form-help:hover:before {
  background: #fff;
}
.agc-form-help-text {
  position: absolute;
  bottom: 0;
  z-index:100;
  font-weight: normal;
  color: #000;
  width: 400px;
  max-height: 500px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #011875;
  border-radius: 5px;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: none;
}
.agc-form-help:hover .agc-form-help-text, .agc-form-help:focus .agc-form-help-text {
  display: block;
  opacity:1;
}

label.agc-sendsave-label {
  display: inline;
  margin-right: 12px;
}
input.agc-sendsave-input {
  width: auto !important;
}

.agc-gdpr-link {
  text-align: center;
}
.agc-gdpr-link-inner {
  display: inline-block;
  color: #fff !important;
  font-size: 11px;
  background: #011875; /* Old browsers */
  background: -moz-linear-gradient(top, #011875 0%, #2b56ad 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #011875 0%,#2b56ad 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #011875 0%,#2b56ad 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#011875', endColorstr='#2b56ad',GradientType=0 ); /* IE6-9 */
  border: 1px solid #eee;
  box-shadow: 0 5px 15px #666;
  padding: 3px 15px;
}
.agc-gdpr-link a {
  color: #eee;
  text-decoration: none;
}
.agc-gdpr-link a:hover, .agc-gdpr-link a:active {
  color: #ffe957 !important;
}

@media only screen and (max-width: 768px) {
  .agc-help {
    float: right;
    margin-right: 12px;
  }
  .agc-help-text {
    top: 24px;
    right: 0;
    max-width: 80pc;
  }
  .agc-form-help-text {
    width: 350px;
  }
}