/*Global Properties*/
* { margin: 0; padding: 0; outline: 0; }

body {
  height: auto;
  margin: 0 auto;
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.4;
  color: #000;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/*Form Fields*/
input,
textarea,
select {
  font-family: 'Lora', serif;
  font-size: 14px;
} /*font inside of the text area*/

textarea {
  overflow: auto;
}

/*The Box The Content Is In*/
.content-box {
  height: auto;
  top:0;
  padding: 45px 50px 10px;
  margin: 0 auto;
  background: #dedede;
}

.content-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 75px 0 75px;
  border-color: #fff transparent transparent transparent;
  transform: translateX(-50%);
}

/*The Core of The Widget*/
.blackbox {
  background: #dedede;
  border-radius:7px;
  -moz-border-radius:7px;
  -webkit-border-radius:7px;
  margin: 0 auto;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-around;
  flex-direction: row;
}

.blackbox h3,
.blackbox h2 {
  box-sizing: border-box;
  font-size:24px;
  font-weight: 700;
  line-height:1;
  position: relative;
  text-transform: none;
  color: inherit;
  letter-spacing:1px;
}

.blackbox h3 {
  font-size:14px;
  line-height:1;
  padding:12px 30px;
}

.blackbox p {
  padding-top: 5px!important;
  top: 0!important;
  color: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  display: block;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
}

.blackbox form {
  padding:0px;
}

.blackbox .field {
  background-color: #fff;
  font-size: 16px;
  line-height:1.5;
  padding: 8px 16px;
  border: 0;
  width: 100%;
  max-width: 250px;
  margin-bottom: 0px;
  margin-right: 8px;
  max-width: calc(100% - 150px);
}

.blackbox .dropdown {
  background-color:#fff;
  font-size:14px;
  padding:5px 10px;
  border:0;
  width:200px;
  margin-bottom:15px;
}

.blackbox .dropdown:focus {
  background-color:#fff;
  font-size:14px;
  padding:5px 10px;
  border:0;
  width:200px;
  margin-bottom:15px;
}

.blackbox .submit {
  padding: 8px 16px;
  background: #000;
  color:#fff;
  line-height:1.5;
  letter-spacing: 1px;
  font-size:16px;
  cursor:pointer;
  margin:0 auto;
  -webkit-appearance:button;
  border: none;
  border-left:0;
  border-radius: 3px;
}

.blackbox .submit:hover {
  background: #58595b;
  color:#fff;
}

/*Footer*/
.footer { color:#fff;
  text-shadow:1px 1px 1px rgba(0,0,0,0.7)
}

.footer a {
  color:#fff;
}

.legal {
  font-size:14px;
  line-height: 1.3;
  padding-top:5px;
  margin-bottom:15px;
}

.legal a {
  color: #000;
}

select {
  appearance:none;
  -moz-appearance:none; /* Firefox */
  -webkit-appearance:none; /* Safari and Chrome */
  position: relative;
  background-repeat: no-repeat;
  background-size: 18px;
  background-position:center;
  width: 20px;
  height: auto;
}

.drop-d {
  padding-bottom:10px;
  padding-top:5px;
}

.signup-left,
.signup-right {
  flex-basis: 50%;
  padding: 0 10px;
}

#headline {
  font-size: 24px;
  padding-top: 5px;
}

#body-text {
  font-size: 14px;
}

@media (max-width: 600px) {

  .content-box {
    padding: 45px 20px 10px;
  }

  .blackbox {
    flex-direction: column;
  }

  .blackbox .field,
  .blackbox .submit {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }

  .blackbox .field {
    margin-bottom: 8px;
  }

  .blackbox .submit {
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 14px;
  }

  .signup-left,
  .signup-right {
    flex-basis: 100%;
  }

  .legal {
    font-size: 12px;
  }
}