/* Invest Form */
.deployform {
  border-radius: 4em;
  text-align: center;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 220px;
  height: 60px;
  background-color: #424242;
  cursor: pointer;
  -webkit-transform-origin: right bottom;
  -moz-transform-origin: right bottom;
  -o-transform-origin: right bottom;
  transform-origin: right bottom;
  transition: all 0.35s cubic-bezier(0.91, -0.28, 0.06, 1.3), background-color 0.25s ease;
  -webkit-box-shadow: 0px 13px 40px 0px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 0px 13px 40px 0px rgba(0, 0, 0, 0.21);
  box-shadow: 0px 13px 40px 0px rgba(0, 0, 0, 0.21);
}

.deployform:hover {
  background-color: #696969;
}

.deployform.open {
  width: 300px;
  height: auto;
  border-radius: 3px;
  background-color: #fff;
  cursor: default;
}

.deployform.open .icon {
  opacity: 0;
  transition-delay: 0.01s;
}

.deployform.open .cancel {
  opacity: 1;
  transition-delay: 0.25s;
}

.deployform.open .form-div {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.2s;
  height: inherit;
}

.deployform .icon {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: opacity 0.1s ease;
  transition-delay: 0.2s;
  color: #fff;
  font-size: 18px;
}

.deployform .cancel {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 18px;
  opacity: 0;
  transition-delay: 0.01s;
  cursor: pointer;
  padding: 6px 10px;
  color: #3c4351;
}

.deployform .form-div {
  margin-top: 40px;
  opacity: 0;
  visibility: hidden;
  transition-delay: 0.01s;
}

.deployform .form-div input {
  margin: 0.5em 0em;
  width: 236px;
  height: 45px;
  padding: 0 10px;
  border: 2px solid #e3e3e3;
  background-color: #f1f1f1;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.deployform .form-div input:hover,
.deployform .form-div input:focus {
  border: 2px solid #d7d7d7;
  outline: 0;
}

.deployform .form-div button {
  width: 260px;
  height: 45px;
  margin-left: 20px;
  margin-top: 10px;
  border: none;
  background-color: #df5151;
  border-radius: 2px;
  color: #fff;
  text-transform: uppercase;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.deployform .form-div button:hover {
  background-color: #da3737;
}

.form h3 {
  padding: 1em 2em 0 2em;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
}

.cancelicon {
  width: 35px;
  position: absolute;
}

fieldset#login_fieldset {
  display: none;
  border: 0px;
}

.fs-title {
  font-size: 18px;
  font-weight: 600;
}

fieldset {
  padding: 2em 1em;
  border: 0px;
}

.fs-subtitle {
  font-size: 15px;
  line-height: 22px;
}

.invest-icon-closed {
  position: absolute;
  left: 15px;
  line-height: 6px;
  margin: -0.1em 0 0.5em 0.1em;
}

.cta {
  padding-left: 27px;
}

input.next.action-button,
input#signing-submit {
  background: #8ca16a;
  border: none;
  color: white;
  cursor: pointer;
  margin: 0.5em auto 0 auto;
}

@media only screen and (max-width: 720px) {
  .deployform {
    display: none;
  }
}