/* Utility classes */

#SupportBundle-wrapper .u-marginBottom--more { margin-bottom: 20px; }
#SupportBundle-wrapper .u-marginBottom--most { margin-bottom: 50px; }
#SupportBundle-wrapper .u-textAlign--center { text-align: center }
#SupportBundle-wrapper .u-textAlign--right { text-align: right }

/* Flex classes */

#SupportBundle-wrapper .flex {
	display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
	flex-direction: row;
}
#SupportBundle-wrapper .flex-column {
	display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
#SupportBundle-wrapper .flex-auto {
  -webkit-flex: 0 0 auto;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
#SupportBundle-wrapper .flex0 {
	-webkit-flex: 0;
  -moz-flex: 0;
  -ms-flex: 0;
	flex: 0;
}
#SupportBundle-wrapper .flex1 {
	-webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
	flex: 1;
}
#SupportBundle-wrapper .justifyContent--center {
  justify-content: center;
}

#SupportBundle-wrapper .u-flexMobileReflow,
#SupportBundle-wrapper .u-flexTabletReflow {
	display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
	display: flex;
	flex-direction: column;
}

/* Form styles */

#SupportBundle-wrapper input::-webkit-input-placeholder,
#SupportBundle-wrapper textarea::-webkit-input-placeholder,
#SupportBundle-wrapper input:-moz-placeholder,
#SupportBundle-wrapper textarea:-moz-placeholder,
#SupportBundle-wrapper input::-moz-placeholder,
#SupportBundle-wrapper textarea::-moz-placeholder,
#SupportBundle-wrapper input:-ms-input-placeholder,
#SupportBundle-wrapper textarea:-ms-input-placeholder { color: #C4C7CA; }
#SupportBundle-wrapper input[type="text"],
#SupportBundle-wrapper textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #C4C8CA;
  border-radius: 4px;
  outline: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: normal;
  color: #323232;
  padding: 10px 11px 11px;
  transition: border .2s;
}
#SupportBundle-wrapper input.err {
  border-color: #BC4752;
}
#SupportBundle-wrapper span.err {
  font-size: 12px;
  color: #BC4752;
  padding-left: 10px;
  font-weight: normal;
}
#SupportBundle-wrapper input[type="text"]:active,
#SupportBundle-wrapper input[type="text"]:focus,
#SupportBundle-wrapper textarea:active,
#SupportBundle-wrapper textarea:focus { border-color: #337AB7; }
#SupportBundle-wrapper input[type="text"].has-error,
#SupportBundle-wrapper input[type="text"].has-error:focus,
#SupportBundle-wrapper input[type="text"].has-error:active,
#SupportBundle-wrapper textarea.has-error,
#SupportBundle-wrapper textarea.has-error:focus,
#SupportBundle-wrapper textarea.has-error:active { border-color: #EE5042; }
#SupportBundle-wrapper input[type="text"].is-disabled,
#SupportBundle-wrapper textarea.is-disabled {
  user-select: none;
  cursor: not-allowed;
  background-color: #F8F8F8;
  border-color: #DFDFDF;
  color: #717171;
}
#SupportBundle-wrapper .component { margin-top: 20px; }
#SupportBundle-wrapper .component:first-child { margin-top: 0; }

/* Buttons */

#SupportBundle-wrapper .button-wrapper { margin-top: 14px; }
#SupportBundle-wrapper .btn {
  font-weight: 600;
  cursor: pointer;
  padding: 10px 16px;
  font-size: 13px;
  display: inline-block;
  border: 0;
  border-radius: 4px;
  transition: all .2s;
  outline: none;
  position: relative;
}
#SupportBundle-wrapper .btn.primary {
  background-color: #337AB7;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  color: #ffffff;
  -webkit-box-shadow: inset 0px -2px 0px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: inset 0px -2px 0px 0px rgba(0,0,0,0.25);
  box-shadow: inset 0px -2px 0px 0px rgba(0,0,0,0.25);
}
#SupportBundle-wrapper .btn.primary:not(:disabled):hover { background-color: #2E6DA4; }
#SupportBundle-wrapper .btn.primary.is-disabled,
#SupportBundle-wrapper .btn.primary.is-disabled:hover,
#SupportBundle-wrapper .btn.primary:disabled,
#SupportBundle-wrapper .btn.primary[disabled] {
  cursor: not-allowed;
  border-color: #A3D3E9;
  color: #ffffff;
  background-color: #A3D3E9;
}

/* Typography */

#SupportBundle-wrapper {
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  font-weight: normal;
  font-size: 14px;
  color: #323232;
  -webkit-font-smoothing: antialiased;
}
#SupportBundle-wrapper a,
#SupportBundle-wrapper a:hover,
#SupportBundle-wrapper a:focus,
#SupportBundle-wrapper a:active { text-decoration: none; }
#SupportBundle-wrapper h3 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 18px;
}
#SupportBundle-wrapper p {
  font-size: 14px;
  line-height: 22px;
  color: #9B9B9B;
  margin-bottom: 5px;
  margin-top: 0;
}
#SupportBundle-wrapper .link-text {
  color: #337AB7;
  cursor: pointer;
}
#SupportBundle-wrapper .link-text:hover { text-decoration: underline; }
#SupportBundle-wrapper label {
  font-weight: 600;
  margin-bottom: 10px;
}
#SupportBundle-wrapper label.required span {
  color: #BC4752;
  margin-left: 4px;
}
#SupportBundle-wrapper .disclaimer-text {
  font-size: 12px;
  color: #C4C7CA;
  line-height: 18px;
  margin: 0;
}
#SupportBundle-wrapper .disclaimer-text span { color: #9B9B9B; }

/* Create ticket component */

#SupportBundle-wrapper .CreateTicket-wrapper {
  background-color: #ffffff;
  border: 1px solid #DFDFDF;
  border-radius: 4px;
  padding: 20px;
  margin: 0;
}

/* Custom file upload */
#SupportBundle-wrapper .FileUpload-wrapper.err {
  border-color: #BC4752;
  background: #FBEDEB;
}
#SupportBundle-wrapper .FileUpload-wrapper {
  cursor: default;
  border-radius: 4px;
  border: 1px dashed #C4C7CA;
  padding: 20px 15px 18px;
  margin-bottom: 10px;
}
#SupportBundle-wrapper .FileUpload-wrapper .files {
  display: inline-block;
  background: url("../images/file_types@2x.png");
  background-size: 100%;
  background-repeat: no-repeat;
  width: 129px;
  height: 58px;
  margin-bottom: 12px;
}

/* Success wrapper */

#SupportBundle-wrapper .UploadSuccess-wrapper {
  padding: 20px;
  text-align: center;
}
#SupportBundle-wrapper .UploadSuccess-wrapper .checkmark {
  display: inline-block;
  background: url("../images/checkmark@2x.png");
  background-size: 100%;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
}
#SupportBundle-wrapper .UploadSuccess-wrapper p.sub {
  font-size: 16px;
  line-height: 24px;
  color: #9B9B9B;
}
#SupportBundle-wrapper .UploadSuccess-wrapper .bundle-id {
  display: inline-block;
  margin: 20px 0 12px;
  padding: 10px 18px 11px;
  font-size: 20px;
  font-weight: 600;
  color: #717171;
  line-height: 20px;
  background-color: #F7F7F7;
  border: 1px solid #C4C7CA;
  border-radius: 4px;
}


/* Media queries */

/* ≥ 568px */
@media screen and (min-width: 35.5em) {
  #SupportBundle-wrapper .u-flexMobileReflow { flex-direction: row; }
  #SupportBundle-wrapper .component { margin-top: 0; }
  #SupportBundle-wrapper .component.right { padding-left: 5px; }
  #SupportBundle-wrapper .component.left { padding-right: 5px; }
  #SupportBundle-wrapper { font-size: 16px; }
  #SupportBundle-wrapper h3 {
    font-size: 24px;
    line-height: 32px;
  }
  #SupportBundle-wrapper .FileUpload-wrapper { padding: 25px 20px 23px; }
  #SupportBundle-wrapper .UploadSuccess-wrapper,
  #SupportBundle-wrapper .CreateTicket-wrapper { padding: 25px; }
}

/* ≥ 768px */
@media screen and (min-width: 48em) {
  #SupportBundle-wrapper .u-flexTabletReflow { flex-direction: row; }
  #SupportBundle-wrapper .btn { font-size: 14px; }
}
