/* @import url('/css/MeridixIcons.css');
@import url('/css/MeridixEvents.css'); */

.form_container {
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%;
    max-width: 500px;
    padding: 75px 5% 2.5% 5%;
    background-color: #F7F7F9;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.form_container.no-plan-header {
  padding-top: 25px;
}

input[type=password], select {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #DCDCDC;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 300;
  font-family: "Source Sans Pro", "Helvetica-Neue", sans-serif;
  background-color: #FFFFFF;
  padding: 12px 20px;
  margin: 5px 0 25px;
}

select {
  height: 46px;
}

.plan-selected {
  height: 50px;
  background-color: #BD292F;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  color: white;
  line-height: 46px;
  margin: 0;
  width: auto;
}

p.error {
  margin: -15px 0 10px;
  color: red;
  font-size: 75%;
}

.signup-container .inside-text h4 {
  width: 80%;
  max-width: 320px;
}

h4 a {
  font-size: inherit;
  color: inherit;
  text-decoration: underline;
}

.plan_top_col {
  text-align: center;
  margin-bottom: 20px;
}

.plan_top_col a.button-secondaryred {
  display: block;
  height: auto;
  width: auto;
  padding: 15px;
  margin: 10px 0;
}

.plan_top_col a.button-secondaryred.selected-option {
  color: white;
  background-color: #43444c;
  border: 1px solid #43444c;
}

.plan_top_col h3, .plan_top_col h4 {
  margin: 0;
}

.proceed-button {
  display: block;
  margin: 40px auto;
}

.proceed-button.disabled {
  opacity: 0.7;
  pointer-events: none;
}

.choice-button {
  width: 300px;
  max-width: 90%;
  margin: 40px 5%;
}

.plan-selected .remove-btn {
  display: inline-block;
  height: auto;
  width: auto;
  border: 1px solid white;
  float: right;
  margin: 10px;
  padding: 6px 12px;
  font-size: 85%;
}



.signup-section {
  transition: 0.3s all ease-in-out;
  position: relative;
}

.signup-section.enter {
  opacity: 0;
  left: -100%;
  /* transform: scale(0.9); */
}

.signup-section.enter.active {
  opacity: 1;
  left: 0;
  /* transform: scale(1); */
}


.signup-section.leave {
  opacity: 1;
  right: 0;
  /* transform: scale(1); */
}

.signup-section.leave.active {
  opacity: 0;
  right: -100%;
  /* transform: scale(0.9); */
}

.terms_description a {
  text-decoration: underline;
  font-size: inherit;
  color: inherit;
}

.error > label {
 color: red;
}

.error > input, .error > select {
    border-color: red;
}

.terms_description2 {
  transition: 0.2s all ease;
  color: white;
  max-width: 50%;
  text-align: center;
  margin: 0 auto;
  line-height: 0;
  opacity: 0;
}

.terms_description2 a, .terms_description2 a.link {
  color: white;
  font-size: inherit;
  text-decoration: underline;
}

.terms_description2.visible {
  margin: 20px auto -10px !important;
  line-height: 1.25;
  opacity: 1;
}

.pick-plan-bottom {
  height: 200px;
  padding: 1px;
}

#signuphtml .errorbox {
  border: solid 2px #c00;
  font-size: 1em;
  padding: 20px;
  background-color: #a00;
  color: #fcb;
  border-radius: 5px;
  max-width: 600px;
  margin: -20px auto 20px;
}

@media screen and (max-width: 620px) {
  #signuphtml .signup-container {
    padding-bottom: 0;
  }
}
