/* apply a natural box layout model to all elements, but allowing components to change */

/* as per https://kilianvalkhof.com/2022/css-html/your-css-reset-needs-text-size-adjust-probably/ causing issues with iOS text becoming larger */
html {
  box-sizing: border-box;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  color: #383944;
  background-color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7em;
}

.main-wrapper {
  max-width: 100%;
  margin: 0 auto;
  padding: 10px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 200;
  color: #383944;
  word-break: normal;
}

h1 {
  font-size: 30px !important;
  line-height: 54px;
  margin: 0;
}

.email-form {
  width: 100%;
}

.gform_body {
  width: 80%;
  padding: 0 20px 0 0;
}

ul {
  padding: 0;
  list-style: none;
  text-align: left;
}

.gfield {
  margin: 0 0 10px;
  clear: none;
  width: 100%;
}

.gfield_label {
  font-size: 14px;
}

input,
select,
textarea {
  border: none;
  color: #333;
  padding: 16px;
  font-size: 14px;
  background: #eee;
  display: block;
  width: 100%;
  margin: 0;
}

input[type='text'],
input[type='tel'],
select {
  height: 50px;
  border-radius: 5px;
}

.gfield_radio label {
  margin: 4px 0 0 8px;
  font-size: 14px;
}

.gfield_radio input {
  display: inline-block;
  width: auto;
}

/****** Preview styles *******/
.preview__box {
  border-radius: 5px;
}

.preview__label {
  padding: 5px;
}

.output_wrap {
  padding: 10px;
}

/******* Copy Button *******/
.copy-button, .copy-button-mac-mail {
  padding: 0.3em 1em;
  border: 2px solid #00be9d;
  border-radius: 3px;
  background: #00be9d;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7em;
  color: #fff;
  cursor: pointer;
  margin: 20px 0 0 0;
  display: inline;
}

.notification-push-down {
  height: 30px;
  width: 100%;
  display: none;
}

.notification-push-down.active {
  display: block;
}

.notification {
  transition: all 0.5s linear;
  position: fixed;
  left: 0;
  top:-100px;
  min-height: 40px;
  line-height: 40px;
  width: 100%;
  background: #D86E89;
  text-align: center;
  color: #FFFFFF;
  font-family: sans-serif;
  font-weight: lighter;
  font-size: 14px;
  display: none;
  }

.notification.active{
  top: 0px;
  display: block;
}

.notification p {
  padding: 0;
  margin: 0;
}
