
/* ================ */
/* = Landing page = */
/* ================ */

.TT-landing {
    background-color: #4183C0;
}
.landing-logo-image {
    width: 500px;
    height: 212px;
    margin: 0 auto;
}
.landing {
    text-align: center;
}

.TT-logo-wrapper {
    text-align: center;
    width: 100%;
    position: absolute;
    top:50%;
    left:50%;
    -ms-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

@media screen and (max-width: 550px) {
    .TT-logo-wrapper {
        max-width: 550px;
    }
}

.TT-email-capture {
    text-align: center;
    position: relative;
    width: 100%;
    border-radius: 4px;
}
.TT-landing .homepage-footer {
    padding: 0;
}
.TT-landing .TT-email-capture,
.TT-landing .TT-balloon-wrapper {
    width: 500px;
    margin: 30px auto;
}

.TT-email-submit {
    margin: 0;
    margin-left: -8%;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    background-color: #254055;
    height: 42px;
    padding: 0px 20px;
    width: 120px;
    font-size: 11px;
    text-transform: uppercase;
    cursor: pointer;
    position: absolute;
    right: 0;
}
.TT-email-submit label {
    cursor: inherit;
    display: inline-block;
    position: absolute;
    top: 8px;
    right: 8%;
    bottom: 8px;
    padding: 5px 15px;
    margin-bottom: 0px;
    color: #548EC5;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(19, 74, 70, 0);
    border-radius: 6px;
    background: rgba(122, 184, 147, 0);

}

.balloon {
  display: inline-block;
  height: 42px;
  margin: 0;
  width: 99%;
  float: left;
  padding: 10px 0 10px 15px;
  font-weight: 400;
  color: #377D6A;
  background: #efefef;
  border: 0;
  border-radius: 6px;
  outline: 0;
  text-indent: 60px;
  transition: all .3s ease-in-out;
}
.TT-landing .balloon {
    width: 350px;
}
.balloon::-webkit-input-placeholder {
  color: #efefef;
  text-indent: 0;
  font-weight: 300;
}
.balloon + label {
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 0;
  bottom: 11px;
  padding: 4px 15px 22px;
  margin-top: -11px;
  color: #032429;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(19, 74, 70, 0);
  transition: all .3s ease-in-out;
  border-radius: 6px;
  background: rgba(122, 184, 147, 0);
}
.balloon + label:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 100%;
  left: 50%;
  margin-left: -3px;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid rgba(122, 184, 147, 0);
  transition: all .3s ease-in-out;
}

.balloon:focus,
.balloon:active {
  color: #377D6A;
  text-indent: 0;
  background: #fff;
  border: none;
}
.balloon:focus::-webkit-input-placeholder,
.balloon:active::-webkit-input-placeholder {
  color: #aaa;
}
.balloon:focus + label,
.balloon:active + label {
  color: #548EC5;
  text-shadow: 0 1px 0 rgba(19, 74, 70, 0.4);
  background: #254055;
  transform: translateY(-40px);
  -webkit-transform: translateY(-40px);
}
.balloon:focus + label:after,
.balloon:active + label:after {
  border-top: 4px solid #254055;
}

/* ================= */
/* = Error Balloon = */
/* ================= */

.TT-balloon-error {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 32px;
  margin: 0;
  left: 0;
  top: -24px;
  opacity: 0;
  font-weight: 400;
  color: #377D6A;
  border: 0;
  border-radius: 6px;
  outline: 0;
  transition: all .3s ease-in-out;
}
.TT-balloon-error.active,
.TT-balloon-error.success {
    top: -44px;
    opacity: 1;
}

.TT-balloon-error label {
  display: inline-block;
  position: absolute;
  text-align: center;
  top: 0px;
  left: 0;
  width: 330px;
  bottom: 11px;
  padding: 5px 0px;
  margin-top: -11px;

  color: #fff;
  text-shadow: 0 1px 0 rgba(19, 74, 70, 0.4);
  background: #dd9000;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(19, 74, 70, 0);
  transition: all .3s ease-in-out;
  border-radius: 6px;
}
.TT-balloon-error.success label {
    background: #55b210;
}

.TT-balloon-error label:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: -7px;
  left: 50%;
  margin-left: -3px;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 3px solid rgba(122, 184, 147, 0);
  border-bottom: 4px solid #dd9000;
  transition: all .3s ease-in-out;
}
.TT-balloon-error.success label:after {
    border-bottom: 4px solid #55b210;
}
@media (max-width: 550px) {
    .TT-balloon-error {
    }
}
