.leadcapture {
  width: 100%;
  height: auto;
  display: block;
  position: relative;    
}

.leadcapture__section {
  width: calc(50% - 3.2rem);
  height: auto;
  background-color: white;
  display: inline-block;
  margin: 1.6rem;
  padding: 1rem;
  vertical-align: top;
  box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.3);
  transition: all 200ms linear;
}

.leadcapture__full {
  width: calc(100% - 3.2rem);
  height: auto;
  background-color: white;
  display: inline-block;
  margin: 1.6rem;
  padding: 1rem;
  vertical-align: top;
  box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.3);
  transition: all 200ms linear;
}

.leadcapture__heading {
  width: 100%;
  height: 2.2rem;
  font-size: 2.3rem;
  line-height: 2.2rem;
  position: relative;
  color: #5cb85c;
  font-weight: 800;
  margin-bottom: 1rem;
  text-align: center;
}

.leadcapture__wrapper {
  margin: 1rem 0;
}
.leadcapture__buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-items: center;
}
/* .leadcapture__buttons .button__primary{
} */
.leadcapture__forminfo {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-items: center;
}
.leadcapture .conatainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: center;
}

.leadcapture a.button__flatPrimary.small {
  border-radius: 0;
  height: 54px;
  line-height: 54px;
  width: 114px;
}

.leadcapture a.button__flatPrimary.large {
  border-radius: 0;
  height: 54px;
  line-height: 54px;
  width: 250px;
}

.leadcapture a.button__flatPrimary span,
.leadcapture a.button__flatPrimary.import,
.leadcapture a.button__flatPrimary.export {
  display: initial;
}

.copyembed.button__primary {
  cursor: pointer;
  width: 13rem;
}

.button__primary {
  margin-right: 0.5rem;
}

.leadcapture-radiobuttons {
  display: flex;
  justify-content: space-around;
  width: 100%;
}
.leadcapture-radiobuttons .item {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
  align-content: center;
  text-align: center;
  width: 33%;
}
.leadcapture-radiobuttons .item label
{
  width: 100%;
}

input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 2.45rem !important;
  height: 2.45rem !important;
  border: 0.0175rem solid black;
  content: "";
  display: inline-block;
  border-radius: 50px;
  background-color: white;
}

input[type=radio]:checked {
  width: 2.45rem;
  height: 2.45rem;
  border: 0.0175rem solid black;
  border-radius: 50px;
}

input[type=radio]:checked:after {
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 2.3625rem !important;
  height: 2.3625rem !important;
  border: 0.4375rem solid white;
  content: "";
  display: inline-block;
  border-radius: 50px;
  background-color: lightblue;
}

input[type=radio]:focus, input:focus {
  outline: none;
}

@media screen and (max-width: 991px) {
  .copyembed.button__primary {
    width: 20rem;
  }
  .leadcapture {
      justify-content: flex-start;
      flex-wrap: wrap;
      white-space: wrap;
  }

  .leadcapture__section {
      flex-shrink: 0;
      width: calc(100% - 3.2rem);
      height: auto;
      background-color: white;
      display: inline-block;
      margin: 1.6rem;
      padding: 1rem;
      vertical-align: top;
      box-shadow: 0 1px 4px 1px rgb(0 0 0 / 30%);
      -webkit-transition: all 200ms linear;
      transition: all 200ms linear;
  }
  .button__primary {
    font-size: 1.25rem;
    margin: 1rem 0;
  }
}