@import url(https://fonts.googleapis.com/css?family=Merriweather);
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,

body{
    
}
.newsletter-form-container{
    display: grid;
    grid-template-columns: 1fr ;
    background-color: #454d66;
    border-radius: 10px;
   display: none;
    position: absolute;
    max-width: 600px;
    /* background: #6c757d; */
    font-family: "Merriweather", sans-serif;
    padding: 1em;
    z-index: 100;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
h2 {
  text-align: center;
  color: #a8a8a8;
  text-shadow: 1px 1px 0 white;
}

.form-newsletter {
  grid-template-columns: 1fr 1fr;
  display: grid;
  gap: 1vw;
  max-width: 600px;
  text-align: center;
  margin: 20px auto;
}
.form-newsletter input,
.form-newsletter textarea {
  margin-bottom: 2vh;
  border: 0;
  outline: 0;
  padding: 1em;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  display: block;
  width: 100%;
  /* margin-top: 1em; */
  font-family: "Merriweather", sans-serif;
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  resize: none;
}
.form-newsletter input:focus,
.form-newsletter textarea:focus {
  -moz-box-shadow: 0 0px 2px #e74c3c !important;
  -webkit-box-shadow: 0 0px 2px #e74c3c !important;
  box-shadow: 0 0px 2px #e74c3c !important;
}
.newsletter-submit {
  color: white;
  background: #e74c3c;
  cursor: pointer;
}
form #input-submit:hover {
  -moz-box-shadow: 0 1px 1px 1px rgba(170, 170, 170, 0.6);
  -webkit-box-shadow: 0 1px 1px 1px rgba(170, 170, 170, 0.6);
  box-shadow: 0 1px 1px 1px rgba(170, 170, 170, 0.6);
}
form textarea {
  height: 126px;
}


@media (max-width: 480px) {
  .half {
    width: 100%;
    float: none;
    margin-bottom: 0;
  }
}


input[type="radio"] {
    /* remove standard background appearance */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* create custom radiobutton appearance */
    display: inline-block;
    width: 25px;
    height: 25px;
    padding: 6px;
    /* background-color only for content */
    background-clip: content-box;
    border: 2px solid #bbb;
    background-color: #e7e6e7;
    border-radius: 50%;
  }
  
  /* appearance for checked radiobutton */
  input[type="radio"]:checked {
    background-color: #e74c3c;
  }
  
  /* optional styles, I'm using this for centering radiobuttons */
  .flex {
    display: flex;
    align-items: center;
  }
  .flex-space-around {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .radio-label{
    color: #e74c3c;
  margin-right: 0.2vw;
    font-size: 0.8em;
    font-weight: 500;
  }
  .radio-btn-container{
    justify-content: space-between;
    display: flex;
  }