html,
body,
#root {
  margin: 0;
  height: 100%;
  font-family: 'Raleway', 'Open Sans', sans-serif;
  background: #f65a41;
}
* {
  box-sizing: border-box;
}
body,
h1,
h2,
h3 {
  font-weight: 300;
}
a {
  color: white;
  text-decoration: none;
}
a:hover {
  color: #5aadbb;
}
p,
h1,
ul,
li {
  color: #eee;
}
.container {
  max-width: 1000px;
  margin: auto;
  margin-bottom: 50px;
  padding: 15px;
}
.error {
  background: #eee;
  color: #f65a41;
  padding: 15px;
}
.error h3 {
  color: inherit;
}
.ib-btn {
  align-items: center;
  justify-content: center;
  display: flex;
  flex: 0 0 35%;
  color: #e1e1e1;
  padding: 8px 0;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
  transition: border .3s, color .3s;
}
.ib-btn:hover {
  color: #eee;
  border: 1px solid #eee;
  background: #f65339;
  cursor: pointer;
}
.ib-btn:hover a:hover {
  color: #eee;
}
.main-container {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
img.logo {
  height: auto;
  width: 100px;
  margin: auto;
  display: block;
}
.step {
  flex: 1;
  display: flex;
  position: fixed;
  color: #eee;
  max-width: 500px;
  opacity: 1;
  transition: opacity 1s;
}
@media screen and (max-width: 414px) {
  .step {
    position: static;
    width: 70%;
    margin: auto;
  }
}
.step.stepOne {
  top: 15%;
  left: 22%;
}
.step.stepOne.pulse {
  animation-delay: 1s;
}
.step.stepTwo {
  top: 46%;
  left: 76%;
}
.step.stepTwo.pulse {
  animation-delay: 1.2s;
}
.step.stepThree {
  top: 60%;
  left: 6%;
}
.step.stepThree.pulse {
  animation-delay: 1.6s;
}
.step img {
  width: 150px;
  height: auto;
  align-self: center;
}
.step-number {
  background: #ffc80a;
  border-radius: 50%;
  color: #333;
  font-size: 12px;
  font-weight: 700;
  height: 20px;
  line-height: 20px;
  text-align: center;
  width: 20px;
}
.step-content {
  max-width: 250px;
  padding-left: 10px;
  font-size: 12px;
  font-weight: 400;
}
.step-title {
  text-transform: uppercase;
  font-size: inherit;
  margin: 0;
  font-weight: 700;
}
fountain-pan {
  align-self: stretch;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 414px) {
  fountain-pan {
    flex-basis: initial;
    margin-bottom: 30px;
  }
}
.pan {
  flex: 0 1 0;
  max-width: 1150px;
  padding-top: 50px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 67%;
}
.pan-form {
  width: 400px;
  display: flex;
  border: 15px solid #fff;
  transition: border .3s, opaciy 0.3s;
  opacity: 1;
  margin: auto;
  padding: 0 45px;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  text-transform: uppercase;
  color: #eee;
  text-align: center;
  font-weight: 700;
}
.pan-download {
  margin-top: 15%;
}
.pan-download p {
  color: #eee;
  font-size: 18px;
}
.pan-dragover {
  border: 13px solid #eee;
  opacity: .8;
}
.pan-download-links {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 30px;
}
.pan-download-links a {
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  display: flex;
  flex: 0 0 35%;
  color: #e1e1e1;
  padding: 8px 0;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
  transition: border .3s, color .3s;
}
.pan-download-links a:hover {
  color: #eee;
  border: 1px solid #eee;
  background: #f65339;
}
.pan-download-links a img {
  margin-right: 15px;
}
.pan-uploaded-images {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
}
.pan-uploaded-images p,
.pan-uploaded-images a {
  flex-basis: 100%;
  margin-left: 15px;
}
.pan-uploaded-image {
  height: 100px;
  margin: 8px 15px;
}
.pan-uploaded-image img {
  padding: 5px;
  width: auto;
  height: 100%;
  border: 1px solid #f54529;
  background: #f65339;
  border-radius: 3px;
}
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  33% {
    transform: scale3d(1.01, 1.01, 1.01);
  }
  66% {
    transform: scale3d(0.99, 0.99, 0.99);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation: pulse 1.7s ease-in-out 0s infinite;
}
.hide-slowly {
  opacity: 0;
  transition: opacity 1s;
}
#gaf-button {
  position: fixed;
  bottom: 0;
  right: 50px;
  background: rgba(61, 194, 85, 0.8);
  color: #fff;
  padding: 10px 15px;
  font-size: 15px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  z-index: 999999999;
}
#gaf-dialog {
  position: fixed;
  top: 12%;
  left: 25%;
  right: 25%;
  background: #ffffff;
  padding: 30px 20px;
  z-index: 999999999;
}
#gaf-dialog h5 {
  text-align: center;
  font-size: 24px;
  margin: 0 0 20px 0;
  font-weight: 300;
}
#gaf-type {
  text-align: center;
}
#gaf-type a {
  padding: 12px;
  display: inline-block;
  color: #f65a41;
  width: 24%;
  min-width: 6em;
  text-align: center;
  width: 25%;
}
#gaf-type a:hover {
  color: #e05039;
}
#gaf-type a.active {
  background: #e05039;
  color: #fff;
}
#gaf-text,
#gaf-email {
  padding: 1em;
  width: 100%;
  font-size: 14px;
  height: 300px;
  font-family: "Raleway", "Open Sans", sans-serif;
}
#gaf-email {
  height: auto;
  margin-bottom: 15px;
}
#gaf-submit {
  text-align: center;
  display: block;
  background: #f65a41;
  font-weight: 300;
  margin-top: 15px;
  padding: 20px;
}
#gaf-submit:hover {
  background: #e05039;
  color: #fff;
}
#gaf-dialog-close {
  position: fixed;
  top: 19%;
  right: 25%;
  padding: 10px;
  font-size: 24px;
  color: rgba(0, 0, 0, 0.3);
  line-height: 1;
}
#gaf-thankyou {
  text-align: center;
  background: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: 133px;
  bottom: 0;
  display: none;
}
#gaf-thankyou p {
  color: #333;
  text-align: center;
  margin-top: 140px;
}
#close-btn {
  padding: 12px;
  font-size: 18px;
  color: #fff;
  background: #f65a41;
  text-align: center;
  width: 25%;
  margin: auto;
  margin-top: 25px;
  display: block;
}
#close-btn a:hover {
  background: #e05039;
}
@media only screen and (max-width: 800px) {
  #gaf-dialog {
    left: 10%;
    width: 80%;
  }
  #gaf-dialog-close {
    right: 10%;
  }
  .pan-form {
    width: 300px;
  }
}
/* helpme modal */
.modal {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
}
.modal .wrapper {
  background: #f65a41;
  background: #8e1703c4;
  border: 1px solid #eee;
  position: absolute;
  bottom: 15px;
  top: 50vh;
  left: 15px;
  right: 15px;
}
.wrapper {
  display: block;
  text-align: center;
  margin: auto;
  width: 90%;
  width: calc(90%);
  padding: 15px 5px 30px;
  color: #eee;
  min-height: 50vh;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  flex-flow: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  justify-content: center;
}
.wrapper.wrapper-small {
  width: 79%;
  padding: 15px;
  text-align: left;
  min-height: 200px;
  line-height: 1.1em;
}
.wrapper a {
  color: #fff;
  font-weight: 400;
}
.wrapper li {
  margin-top: 10px;
}
.button {
  border: solid 1px white;
  margin: 10px;
  margin-top: 20px;
  padding: 10px;
  color: white;
  background-color: transparent;
  font-size: 1em;
  font-family: inherit;
}
