@charset "UTF-8";
button, .role_button, input[type="button"], input[type="submit"] {
  background: #f7f7f7;
  border: none;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  border-bottom: none !important;
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.25);
  color: #161B3C;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  outline: none;
  overflow: visible;
  padding: 0 5px;
  opacity: .8;
  text-align: center;
  vertical-align: middle;
  -webkit-appearance: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -webkit-transition: background-color .1s ease;
  -moz-transition: background-color .1s ease;
  -o-transition: background-color .1s ease;
}
button.small, .role_button.small, input[type="button"].small, input[type="submit"].small {
  font-size: 12px;
  height: 15px;
  line-height: 15px;
  padding: 0 2px;
}
button.large, .role_button.large, input[type="button"].large, input[type="submit"].large {
  font-size: 18px;
  font-weight: 500;
  height: 60px;
  line-height: 60px;
  padding: 0 10px;
  text-transform: none;
}
button:hover, .role_button:hover, input[type="button"]:hover, input[type="submit"]:hover {
  background-color: #ffffff;
  color: #161B3C;
}
button:active, .role_button:active, input[type="button"]:active, input[type="submit"]:active {
  background-color: #f5f5f5;
  box-shadow: none;
  color: #161B3C;
  margin-bottom: -1px;
  margin-top: 1px;
}
button.primary, .role_button.primary, input[type="button"].primary, input[type="submit"].primary {
  background-color: #FAD539;
  color: #111111;
}
button.primary:hover, .role_button.primary:hover, input[type="button"].primary:hover, input[type="submit"].primary:hover {
  background-color: #CE2127;
}
button.secondary, .role_button.secondary, input[type="button"].secondary, input[type="submit"].secondary {
  background-color: #CE2127;
  color: #ffffff;
}
button.secondary:hover, .role_button.secondary:hover, input[type="button"].secondary:hover, input[type="submit"].secondary:hover {
  background-color: #e4514e;
}

input[type="text"], input[type="password"], input[type="email"], input[type="number"] {
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 2px;
  border: none;
  color: #ffffff;
  display: inline-block;
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 300;
  height: 40px;
  padding: 0 5px;
  vertical-align: middle;
  -webkit-transition: all .15s ease-out;
  -moz-transition: all .15s ease-out;
  -o-transition: all .15s ease-out;
}
input[type="text"].large, input[type="password"].large, input[type="email"].large, input[type="number"].large {
  height: 60px;
  font-size: 18px;
}
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="number"]:focus {
  border-color: rgba(255, 255, 255, 0.1);
  outline: none;
}
input[type="text"]:hover, input[type="password"]:hover, input[type="email"]:hover, input[type="number"]:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

input[type="number"] {
  -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

textarea {
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 2px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
  display: inline-block;
  padding: 5px;
  resize: vertical;
  vertical-align: middle;
  -webkit-transition: all .15s ease-out;
  -moz-transition: all .15s ease-out;
  -o-transition: all .15s ease-out;
}
textarea:focus {
  border-color: #CE2127;
  outline: none;
}
textarea:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.select_wrapper {
  background-color: #ffffff;
  border: 1px solid #111111;
  color: #111111;
  cursor: pointer;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  outline: none;
  overflow: visible;
  padding-left: 5px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
}

.select_wrapper:after {
  background-color: #111111;
  color: #ffffff;
  content: "▼";
  font-size: 8px;
  height: 100%;
  right: 0;
  width: 40px;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: 5;
}

.select_wrapper select {
  background: transparent;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 14px;
  height: 40px;
  margin-top: -1px;
  outline: none;
  padding-right: 50px;
  position: relative;
  -webkit-appearance: none;
  appearance: none;
  z-index: 4;
}

.select_wrapper.large {
  font-size: 18px;
  font-weight: 500;
  height: 60px;
  line-height: 60px;
  padding: 0 10px;
  text-transform: none;
}
.select_wrapper.large:after {
  font-size: 8px;
  height: 100%;
  width: 60px;
}
.select_wrapper.large select {
  font-size: 18px;
  height: 60px;
  padding-right: 70px;
}

input[type="checkbox"] {
  display: none;
  visibility: hidden;
}

.role_checkbox {
  background-color: #ffffff;
  border: 1px solid #dadada;
  border-radius: 2px;
  color: transparent;
  cursor: pointer;
  display: inline-block;
  height: 30px;
  position: relative;
  transition: all .1s ease-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  vertical-align: middle;
  width: 30px;
}

.role_checkbox:after {
  content: '✓';
  height: 30px;
  font-size: 18px;
  left: 0;
  line-height: 30px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 30px;
}

.role_checkbox:hover {
  background-color: #dadada;
  color: #ffffff;
}

input[type="checkbox"]:checked + .role_checkbox, input[type="checkbox"]:checked + .role_checkbox:hover {
  background-color: #111111;
  border-color: #111111;
  color: #ffffff;
}

input[type="radio"] {
  display: none;
  visibility: hidden;
}

.role_radio {
  background-color: #ffffff;
  border: 1px solid #dadada;
  border-radius: 100%;
  color: transparent;
  cursor: pointer;
  display: inline-block;
  height: 30px;
  position: relative;
  transition: all .1s ease-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  vertical-align: middle;
  width: 30px;
}

.role_radio:after {
  content: '✓';
  height: 30px;
  font-size: 18px;
  left: 0;
  line-height: 30px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 30px;
}

.role_radio:hover {
  background-color: #dadada;
  color: #ffffff;
}

input[type="radio"]:checked + .role_radio, input[type="radio"]:checked + .role_radio:hover {
  background-color: #111111;
  border-color: #111111;
  color: #ffffff;
}

.imgPreview {
  background-image: url();
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border: 1px solid #dadada;
  border-radius: 100%;
  cursor: pointer;
  display: inline-block;
  height: 100px;
  overflow: hidden;
  position: relative;
  vertical-align: middle;
  width: 100px;
}

.imgPreview:hover {
  background-color: #fafafa;
}

.imgPreview:after {
  /*this is to avoid bug that occurs when dragging preview image */
  color: rgba(0, 0, 0, 0.5);
  content: '';
  font-size: 12px;
  font-weight: 700;
  height: 100%;
  left: 0;
  padding-top: 35px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
}

@media screen and (max-width: 480px) {
  button, .role_button, input[type="button"], input[type="submit"] {
    font-size: 16px;
    height: 40px;
    line-height: 40px;
  }

  input[type="text"], input[type="password"], input[type="email"] {
    font-size: 16px;
    height: 40px;
    line-height: 40px;
  }
}
