﻿/* 
    initial settings are for when the iframe is at full width: > 299px
    this occurs in the mobile view: when the browser is < 768px
*/
body {
  background: none;
  font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
form .group {
  position: relative;
  margin: 0 0 6px 0;
}
form .group label {
  position: absolute;
  top: 4px;
  left: 6px;
  margin: 0;
  color: #626263;
  font-size: 12px;
  font-weight: 400;
}
form .group input {
  width: 100%;
  padding: 4px 5px;
  height: 25px;
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #626263;
  font-size: 12px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
form .group button {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 25px;
  background: #3e860b;
  color: #fff;
  border: none;
  font-size: 12px;
  font-weight: 700;
  -webkit-appearance: none;
  -moz-appearance: none;
}
@media (min-width: 180px) {
  form .group label {
    font-size: 16px;
  }
  form .group input {
    height: 31px;
    font-size: 16px;
  }
  form .group button {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 8px 0;
    padding: 6px;
    font-weight: 700;
    text-transform: uppercase;
  }
  form .group button i {
    display: none;
  }
  form .group button .sr-only {
    display: block;
    visibility: visible;
    width: auto;
    height: auto;
    margin: 0;
    position: relative;
  }
}
