.opt-out {
  display: block;
  margin: 0 auto;
  margin-top: 100px;
  font-family: 'Open Sans', sans-serif;
  width: 500px;
}
.opt-out.opted-out .pre-opt-out-wrapper {
  display: none;
}
.opt-out.opted-out .opted-out-message {
  display: block;
}
.opt-out .opted-out-message {
  display: none;
  text-align: center;
}
.opt-out .opt-out-buttons {
  margin-top: 25px;
}
.opt-out .respond-option-message {
  margin-top: 25px;
}
.opt-out .respond-button {
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  padding: 7px 14px 8px 14px;
  color: white;
  background-color: green;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  font-weight: normal;
  -webkit-font-smoothing: auto;
  float: left;
}
.opt-out .respond-button:hover {
  text-decoration: none;
}
.opt-out .respond-button:active {
  background-color: #000000;
  transition: color 150ms, background-color 150ms;
  outline: none;
}
.opt-out .respond-button.disabled,
.opt-out .respond-button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.opt-out .respond-button.disabled:active,
.opt-out .respond-button[disabled]:active,
.opt-out .respond-button.disabled:hover,
.opt-out .respond-button[disabled]:hover {
  background-color: green;
}
.opt-out .respond-button:hover {
  transition: color 150ms, background-color 150ms;
  background-color: #004d00;
}
.opt-out .opt-out-button {
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  padding: 7px 14px 8px 14px;
  color: white;
  background-color: red;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  font-weight: normal;
  -webkit-font-smoothing: auto;
  float: left;
}
.opt-out .opt-out-button:hover {
  text-decoration: none;
}
.opt-out .opt-out-button:active {
  background-color: #800000;
  transition: color 150ms, background-color 150ms;
  outline: none;
}
.opt-out .opt-out-button.disabled,
.opt-out .opt-out-button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.opt-out .opt-out-button.disabled:active,
.opt-out .opt-out-button[disabled]:active,
.opt-out .opt-out-button.disabled:hover,
.opt-out .opt-out-button[disabled]:hover {
  background-color: red;
}
.opt-out .opt-out-button:hover {
  transition: color 150ms, background-color 150ms;
  background-color: #cc0000;
}

body.is-mobile .completed-modal-view .centered-box {
  position: absolute;
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
}
body.is-mobile .completed-modal-view .link-container input[type=text] {
  display: none;
}
body.is-desktop .completed-modal-view .centered-box {
  top: 50%;
  height: 330px;
  margin-top: -330px/2;
  left: 50%;
  width: 600px;
  margin-left: -600px/2;
}
@media all and (max-height: 330px) {
  body.is-desktop .completed-modal-view .centered-box {
    margin-top: 0px;
    top: 0;
    height: 100%;
  }
}
@media all and (max-width: 600px) {
  body.is-desktop .completed-modal-view .centered-box {
    margin-left: 0px;
    left: 0;
    width: 100%;
  }
}
body.is-desktop .completed-modal-view .link-container span {
  display: none;
}
.completed-modal-view {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20000;
}
.completed-modal-view .background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.95;
  background-color: #000;
  z-index: 10;
}
.completed-modal-view .link-container input[type=text] {
  background-color: #222;
  border: 1px solid #222;
  box-shadow: none;
  color: #CCC;
  cursor: pointer;
  display: inline;
  margin-bottom: 0;
  margin-top: 6px;
  padding: 10px 14px;
  width: 350px;
  font-size: 16px;
  border-radius: 2px;
  text-align: center;
}
.completed-modal-view .link-container input[type=text]:focus {
  border: 1px solid #36CC2E;
  outline: none;
}
.completed-modal-view .link-container span {
  background-color: #222;
  border: 1px solid #222;
  box-shadow: none;
  color: #CCC;
  cursor: pointer;
  display: inline;
  margin-bottom: 0;
  margin-top: 6px;
  padding: 10px 14px;
  font-size: 16px;
  border-radius: 2px;
  text-align: center;
  border: 1px solid #36CC2E;
}
.completed-modal-view .centered-box {
  position: absolute;
  margin: 0 auto;
  box-sizing: border-box;
  z-index: 20;
  overflow: auto;
  font-family: 'Open Sans', sans-serif;
  text-align: center;
}
.completed-modal-view .centered-box .fa-smile-o {
  color: #404040;
  font-size: 46px;
}
.completed-modal-view .centered-box h1 {
  color: #36cc29;
  font-size: 34px;
  font-weight: 400;
  line-height: 38px;
  margin-bottom: 5px;
  margin-top: 15px;
}
.completed-modal-view .centered-box p {
  color: #DDD;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  margin-top: 20px;
}
.completed-modal-view .centered-box .return-button {
  color: #999;
  font-size: 13px;
  border-radius: 4px;
  cursor: pointer;
  width: 135px;
  padding: 11px;
  margin: 0 auto;
  margin-top: 60px;
}
.completed-modal-view .centered-box .return-button .fa {
  font-size: 17px;
  margin-right: 8px;
}
.completed-modal-view .centered-box .return-button:hover {
  color: #EEE;
}

.edit-media-response-view {
  text-align: center;
}
.edit-media-response-view textarea,
.edit-media-response-view input[type=text] {
  display: block;
  border: 1px solid #CCC;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  color: #666;
  padding: 8px 10px;
  font-size: 16px;
  height: 125px;
  background-color: #FFF;
  line-height: 17px;
  margin: 0 auto;
  resize: none;
  width: 100%;
  box-sizing: border-box;
}
.edit-media-response-view textarea:focus,
.edit-media-response-view input[type=text]:focus {
  border: 1px solid #24BAF2;
  outline: none;
}
.edit-media-response-view input[type=text] {
  height: 1em;
}
.edit-media-response-view .thumbnail-container {
  width: 28%;
  height: 150px;
  overflow: hidden;
  text-align: center;
  display: inline-block;
}
.edit-media-response-view .thumbnail-container img {
  height: 100%;
  display: inline;
}
@media only screen and (orientation: landscape) {
  .edit-media-response-view .thumbnail-container {
    width: 90%;
  }
}
.edit-media-response-view .text-edit-container {
  width: 60%;
  display: inline-block;
  vertical-align: top;
  margin: 0 auto;
}
.edit-media-response-view .caption-container span {
  float: left;
  font-size: 13px;
  padding-bottom: 7px;
}
.edit-media-response-view .save-button {
  padding: 7px 14px 8px 14px;
  color: #FFF;
  background-color: #666;
  display: inline-block;
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  display: block;
  font-weight: normal;
  -webkit-font-smoothing: auto;
  margin: 0 auto;
  margin-top: 10px;
  padding: 10px 14px;
  width: 120px;
}
.edit-media-response-view .save-button:hover {
  text-decoration: none;
}
.edit-media-response-view .save-button:active {
  background-color: #262626;
  transition: color 150ms, background-color 150ms;
  outline: none;
}
.edit-media-response-view .save-button.disabled,
.edit-media-response-view .save-button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.edit-media-response-view .save-button.disabled:active,
.edit-media-response-view .save-button[disabled]:active,
.edit-media-response-view .save-button.disabled:hover,
.edit-media-response-view .save-button[disabled]:hover {
  background-color: #666;
}
.edit-media-response-view .save-button:hover {
  background: #444;
}
.edit-media-response-view .save-button:focus {
  outline: none;
}
.edit-media-response-view .back-button {
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  padding: 4px 9px;
  color: white;
  border: none;
  border-radius: 3px;
  text-decoration: none;
  background-color: inherit;
  cursor: pointer;
  display: inline-block;
  -webkit-font-smoothing: auto;
}
.edit-media-response-view .back-button:hover {
  text-decoration: underline;
  color: #e6e6e6;
}
.edit-media-response-view .back-button:focus {
  outline: none;
}
.edit-media-response-view .back-button.disabled,
.edit-media-response-view .back-button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.edit-media-response-view .back-button.disabled:active,
.edit-media-response-view .back-button[disabled]:active,
.edit-media-response-view .back-button.disabled:hover,
.edit-media-response-view .back-button[disabled]:hover {
  text-decoration: none;
  color: white;
}
body.is-android .edit-media-response-fullpage-view .thumbnail-container {
  float: left;
  width: 35%;
}
body.is-android .edit-media-response-fullpage-view .thumbnail-container .response-thumbnail-view {
  width: 100%;
}
body.is-android .edit-media-response-fullpage-view .text-edit-container {
  width: 60%;
  margin-top: 20px;
}
.edit-media-response-fullpage-view {
  background-color: white;
}
.edit-media-response-fullpage-view .header {
  background-color: black;
  width: 100%;
  height: 3.8em;
  color: #CCC;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}
.edit-media-response-fullpage-view .back-wrapper {
  float: left;
  padding: 18px 22px;
  z-index: 6;
}
.edit-media-response-fullpage-view .button-back {
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  padding: 4px 9px;
  color: #DDD;
  border: none;
  border-radius: 3px;
  text-decoration: none;
  background-color: inherit;
  display: inline-block;
  -webkit-font-smoothing: auto;
  cursor: pointer;
  font-size: 14px;
  padding: 0;
  padding-top: 1px;
}
.edit-media-response-fullpage-view .button-back:hover {
  text-decoration: underline;
  color: #c4c4c4;
}
.edit-media-response-fullpage-view .button-back:focus {
  outline: none;
}
.edit-media-response-fullpage-view .button-back.disabled,
.edit-media-response-fullpage-view .button-back[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.edit-media-response-fullpage-view .button-back.disabled:active,
.edit-media-response-fullpage-view .button-back[disabled]:active,
.edit-media-response-fullpage-view .button-back.disabled:hover,
.edit-media-response-fullpage-view .button-back[disabled]:hover {
  text-decoration: none;
  color: #DDD;
}
.edit-media-response-fullpage-view .button-back .fa {
  font-size: 19px;
  margin-right: 6px;
  vertical-align: top;
}
.edit-media-response-fullpage-view .button-back:hover {
  text-decoration: none;
}
.edit-media-response-fullpage-view .button-back:focus {
  outline: none;
}
.edit-media-response-fullpage-view h2 {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  padding-top: 16px;
}
.edit-media-response-fullpage-view .save-button {
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  padding: 7px 14px 8px 14px;
  color: #FFF;
  background-color: #36cc29;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  font-weight: normal;
  -webkit-font-smoothing: auto;
  float: right;
  font-size: 14px;
  margin-top: 10px;
  padding: 11px 30px 12px 30px;
  margin-right: 12px;
}
.edit-media-response-fullpage-view .save-button:hover {
  text-decoration: none;
}
.edit-media-response-fullpage-view .save-button:active {
  background-color: #1a6214;
  transition: color 150ms, background-color 150ms;
  outline: none;
}
.edit-media-response-fullpage-view .save-button.disabled,
.edit-media-response-fullpage-view .save-button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.edit-media-response-fullpage-view .save-button.disabled:active,
.edit-media-response-fullpage-view .save-button[disabled]:active,
.edit-media-response-fullpage-view .save-button.disabled:hover,
.edit-media-response-fullpage-view .save-button[disabled]:hover {
  background-color: #36cc29;
}
.edit-media-response-fullpage-view .field-header {
  border-bottom: 1px solid #BBB;
}
.edit-media-response-fullpage-view .thumbnail-container {
  display: block;
  margin-bottom: 15px;
  margin-top: 20px;
  width: initial;
}
.edit-media-response-fullpage-view .thumbnail-container .response-thumbnail-view {
  width: 200px;
  height: 150px;
  margin: auto;
  overflow: hidden;
  background-color: #444;
  border: 4px solid #FFF;
  position: relative;
}
.edit-media-response-fullpage-view .text-edit-container {
  width: 90%;
}
.edit-media-response-fullpage-view .caption-container span {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
}

.edit-text-response-view {
  text-align: center;
}
.edit-text-response-view textarea,
.edit-text-response-view input[type=text] {
  display: block;
  border: 1px solid #CCC;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  color: #666;
  padding: 8px 10px;
  font-size: 16px;
  height: 90px;
  background-color: #FFF;
  line-height: 17px;
  margin: 0 auto;
  resize: none;
  width: 60%;
}
.edit-text-response-view textarea:focus,
.edit-text-response-view input[type=text]:focus {
  border: 1px solid #24BAF2;
  outline: none;
}
.edit-text-response-view input[type=text] {
  height: 1em;
}
.edit-text-response-view .save-button {
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  padding: 7px 14px 8px 14px;
  color: white;
  background-color: #666;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  font-weight: normal;
  -webkit-font-smoothing: auto;
  margin-top: 10px;
  padding: 10px 14px;
  width: 100px;
}
.edit-text-response-view .save-button:hover {
  text-decoration: none;
}
.edit-text-response-view .save-button:active {
  background-color: #262626;
  transition: color 150ms, background-color 150ms;
  outline: none;
}
.edit-text-response-view .save-button.disabled,
.edit-text-response-view .save-button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.edit-text-response-view .save-button.disabled:active,
.edit-text-response-view .save-button[disabled]:active,
.edit-text-response-view .save-button.disabled:hover,
.edit-text-response-view .save-button[disabled]:hover {
  background-color: #666;
}
.edit-text-response-view .save-button:hover {
  background: #444;
}
.edit-text-response-view .save-button:focus {
  outline: none;
}
.edit-text-response-fullpage-view {
  background-color: #FFF;
}
.edit-text-response-fullpage-view .header {
  overflow: hidden;
  background-color: black;
  width: 100%;
  height: 3.8em;
  color: #CCC;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}
.edit-text-response-fullpage-view .back-wrapper {
  float: left;
  padding: 18px 22px;
  z-index: 6;
}
.edit-text-response-fullpage-view .button-back {
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  padding: 4px 9px;
  color: #DDD;
  border: none;
  border-radius: 3px;
  text-decoration: none;
  background-color: inherit;
  display: inline-block;
  -webkit-font-smoothing: auto;
  cursor: pointer;
  font-size: 14px;
  padding: 0;
  padding-top: 1px;
}
.edit-text-response-fullpage-view .button-back:hover {
  text-decoration: underline;
  color: #c4c4c4;
}
.edit-text-response-fullpage-view .button-back:focus {
  outline: none;
}
.edit-text-response-fullpage-view .button-back.disabled,
.edit-text-response-fullpage-view .button-back[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.edit-text-response-fullpage-view .button-back.disabled:active,
.edit-text-response-fullpage-view .button-back[disabled]:active,
.edit-text-response-fullpage-view .button-back.disabled:hover,
.edit-text-response-fullpage-view .button-back[disabled]:hover {
  text-decoration: none;
  color: #DDD;
}
.edit-text-response-fullpage-view .button-back .fa {
  font-size: 19px;
  margin-right: 6px;
  vertical-align: top;
}
.edit-text-response-fullpage-view .button-back:hover {
  text-decoration: none;
}
.edit-text-response-fullpage-view .button-back:focus {
  outline: none;
}
.edit-text-response-fullpage-view h2 {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  padding-top: 16px;
}
.edit-text-response-fullpage-view .save-button {
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  padding: 7px 14px 8px 14px;
  color: #FFF;
  background-color: #36cc29;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  font-weight: normal;
  -webkit-font-smoothing: auto;
  float: right;
  font-size: 14px;
  margin-top: 10px;
  padding: 11px 30px 12px 30px;
  margin-right: 12px;
}
.edit-text-response-fullpage-view .save-button:hover {
  text-decoration: none;
}
.edit-text-response-fullpage-view .save-button:active {
  background-color: #1a6214;
  transition: color 150ms, background-color 150ms;
  outline: none;
}
.edit-text-response-fullpage-view .save-button.disabled,
.edit-text-response-fullpage-view .save-button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.edit-text-response-fullpage-view .save-button.disabled:active,
.edit-text-response-fullpage-view .save-button[disabled]:active,
.edit-text-response-fullpage-view .save-button.disabled:hover,
.edit-text-response-fullpage-view .save-button[disabled]:hover {
  background-color: #36cc29;
}
.edit-text-response-fullpage-view .save-button:hover {
  background-color: #36cc29;
}
.edit-text-response-fullpage-view textarea {
  height: 200px;
  margin-top: 15px;
  width: 88%;
}

@media all and (max-width: 960px) {
  body.is-desktop .respond-view {
    width: 760px;
  }
}
.respond-view {
  border: 1px solid #BBB;
  border-radius: 3px;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  margin: 8px auto;
  box-sizing: border-box;
  width: 80%;
}
.respond-view:hover {
  border: 1px solid #36cc29;
}
.respond-view:hover .field-header .respond-button {
  background-color: #36cc29;
  color: #FFF;
}
.respond-view.drag-upload-hover {
  background: #cff5cc;
}
.respond-view.expanded {
  border: 2px solid #36cc29;
  margin: 7px auto;
}
.respond-view.expanded .field-header {
  border-bottom: 1px solid #CCC;
  padding-bottom: 20px;
}
.respond-view.expanded .field-header .respond-button {
  display: none;
}
.respond-view.expanded .field-header .done-skip-container {
  display: block;
}
.respond-view.expanded .field-header .field-details-container {
  display: block;
}
.respond-view.responded .field-header .status-checkmark {
  color: #36cc29;
}
.respond-view.responded .field-header .count-text {
  color: #36cc29;
}
.respond-view.responded .field-header .skip-button {
  display: none;
}
.respond-view.responded .field-header .done-button {
  display: block;
}
.respond-view.responded .response-fyi-container {
  display: none;
}
.respond-view.responded .responses-container {
  display: block;
}
.respond-view .field-header {
  color: #555;
  font-size: 15px;
  cursor: pointer;
  padding: 18px 18px 20px 18px;
  position: relative;
}
.respond-view .field-header .status-checkmark-container {
  position: absolute;
  left: 18px;
  width: 40px;
  top: 18px;
  bottom: 0;
}
.respond-view .field-header .status-checkmark {
  color: #E4E4E4;
  font-size: 25px;
  margin-top: -1px;
}
.respond-view .field-header .field-title-container {
  position: relative;
  margin-left: 40px;
  margin-right: 165px;
}
.respond-view .field-header .field-details-container {
  position: relative;
  line-height: 17px;
  margin-left: 40px;
  margin-right: 165px;
  margin-top: 4px;
  display: none;
}
.respond-view .field-header .field-details {
  color: #999;
  font-size: 12px;
  font-style: italic;
}
.respond-view .field-header .respond-button-container {
  position: absolute;
  right: 0;
  width: 165px;
  top: 8px;
  bottom: 0;
}
.respond-view .field-header .done-skip-container {
  position: absolute;
  right: -1px;
  width: 165px;
  top: 8px;
  bottom: 0;
  display: none;
  text-align: right;
}
.respond-view .field-header .done-button {
  padding: 7px 14px 8px 14px;
  color: #FFF;
  background-color: #36cc29;
  border: none;
  border-radius: 3px;
  display: inline-block;
  cursor: pointer;
  display: block;
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  font-weight: normal;
  -webkit-font-smoothing: auto;
  padding: 11px 14px 13px 14px;
  width: 150px;
  display: none;
}
.respond-view .field-header .done-button:hover {
  text-decoration: none;
}
.respond-view .field-header .done-button:active {
  background-color: #1a6214;
  transition: color 150ms, background-color 150ms;
  outline: none;
}
.respond-view .field-header .done-button.disabled,
.respond-view .field-header .done-button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.respond-view .field-header .done-button.disabled:active,
.respond-view .field-header .done-button[disabled]:active,
.respond-view .field-header .done-button.disabled:hover,
.respond-view .field-header .done-button[disabled]:hover {
  background-color: #36cc29;
}
.respond-view .field-header .done-button:hover {
  background-color: #11BB02;
  color: #FFF;
}
.respond-view .field-header .done-button:focus {
  outline: focus;
}
.respond-view .field-header .skip-button {
  padding: 4px 9px;
  color: #777;
  border: none;
  border-radius: 3px;
  text-decoration: none;
  background-color: inherit;
  display: inline-block;
  color: #888;
  cursor: pointer;
  display: block;
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  font-weight: normal;
  -webkit-font-smoothing: auto;
  padding: 11px 14px 13px 14px;
  width: 150px;
}
.respond-view .field-header .skip-button:hover {
  text-decoration: underline;
  color: #5e5e5e;
}
.respond-view .field-header .skip-button:focus {
  outline: none;
}
.respond-view .field-header .skip-button.disabled,
.respond-view .field-header .skip-button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.respond-view .field-header .skip-button.disabled:active,
.respond-view .field-header .skip-button[disabled]:active,
.respond-view .field-header .skip-button.disabled:hover,
.respond-view .field-header .skip-button[disabled]:hover {
  text-decoration: none;
  color: #777;
}
.respond-view .field-header .skip-button:hover {
  text-decoration: underline;
}
.respond-view .field-header .skip-button:focus {
  outline: focus;
}
.respond-view .field-header .respond-button {
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  padding: 7px 14px 8px 14px;
  color: #333;
  background-color: #CCC;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  font-weight: normal;
  -webkit-font-smoothing: auto;
  padding: 11px 14px 13px 14px;
  width: 150px;
  display: block;
}
.respond-view .field-header .respond-button:hover {
  text-decoration: none;
}
.respond-view .field-header .respond-button:active {
  background-color: #8c8c8c;
  transition: color 150ms, background-color 150ms;
  outline: none;
}
.respond-view .field-header .respond-button.disabled,
.respond-view .field-header .respond-button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.respond-view .field-header .respond-button.disabled:active,
.respond-view .field-header .respond-button[disabled]:active,
.respond-view .field-header .respond-button.disabled:hover,
.respond-view .field-header .respond-button[disabled]:hover {
  background-color: #CCC;
}
.respond-view .field-header .respond-button:focus {
  outline: none;
}
.respond-view .add-containers {
  height: 60px;
  margin-left: 10px;
  margin-right: 10px;
  position: relative;
  text-align: center;
}
.respond-view .add-containers.button-count-1 .add-container-any-upload,
.respond-view .add-containers.button-count-1 .add-container-video-upload,
.respond-view .add-containers.button-count-1 .add-container-record,
.respond-view .add-containers.button-count-1 .add-container-text {
  position: absolute;
  left: 25%;
  right: 25%;
  top: 0;
  bottom: 0;
}
.respond-view .add-containers.button-count-2 .add-container-any-upload,
.respond-view .add-containers.button-count-2 .add-container-video-upload,
.respond-view .add-containers.button-count-2 .add-container-record,
.respond-view .add-containers.button-count-2 .add-container-text {
  display: inline-block;
  float: left;
  position: relative;
  width: 50%;
  left: initial;
  right: initial;
}
.respond-view .add-containers.button-count-3 .add-container-any-upload {
  position: absolute;
  left: 0;
  right: 66.66%;
  top: 0;
  bottom: 0;
}
.respond-view .add-containers.button-count-3 .add-container-video-upload {
  position: absolute;
  left: 33.33%;
  right: 33.33%;
  top: 0;
  bottom: 0;
}
.respond-view .add-containers.button-count-3 .add-container-record {
  position: absolute;
  left: 33.33%;
  right: 33.33%;
  top: 0;
  bottom: 0;
}
.respond-view .add-containers.button-count-3 .add-container-text {
  position: absolute;
  left: 66.66%;
  right: 0;
  top: 0;
  bottom: 0;
}
.respond-view .add-upload-container {
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  padding: 7px 14px 8px 14px;
  color: #444;
  background-color: #CECECE;
  border: none;
  border-radius: 3px;
  display: inline-block;
  font-weight: normal;
  -webkit-font-smoothing: auto;
  margin: 10px 2px;
  cursor: pointer;
  display: block;
  padding: 14px;
}
.respond-view .add-upload-container:hover {
  text-decoration: none;
}
.respond-view .add-upload-container:active {
  background-color: #8e8e8e;
  transition: color 150ms, background-color 150ms;
  outline: none;
}
.respond-view .add-upload-container.disabled,
.respond-view .add-upload-container[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.respond-view .add-upload-container.disabled:active,
.respond-view .add-upload-container[disabled]:active,
.respond-view .add-upload-container.disabled:hover,
.respond-view .add-upload-container[disabled]:hover {
  background-color: #CECECE;
}
.respond-view .add-upload-container .fa {
  color: #666;
  font-size: 16px;
  margin-right: 12px;
  padding-top: 1px;
  vertical-align: top;
}
.respond-view .add-upload-container:hover {
  background: #BDBDBD;
}
.respond-view .add-upload-container .uploader-view {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0;
}
.respond-view .add-upload-container .uploader-view input[type=file] {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}
.respond-view .add-text-button {
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  padding: 7px 14px 8px 14px;
  color: #444;
  background-color: #CECECE;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  font-weight: normal;
  -webkit-font-smoothing: auto;
  margin: 10px 2px;
  display: block;
  padding: 14px;
}
.respond-view .add-text-button:hover {
  text-decoration: none;
}
.respond-view .add-text-button:active {
  background-color: #8e8e8e;
  transition: color 150ms, background-color 150ms;
  outline: none;
}
.respond-view .add-text-button.disabled,
.respond-view .add-text-button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.respond-view .add-text-button.disabled:active,
.respond-view .add-text-button[disabled]:active,
.respond-view .add-text-button.disabled:hover,
.respond-view .add-text-button[disabled]:hover {
  background-color: #CECECE;
}
.respond-view .add-text-button:hover {
  background: #BDBDBD;
}
.respond-view .add-text-button .fa {
  color: #666;
  font-size: 16px;
  margin-right: 12px;
  padding-top: 1px;
  vertical-align: top;
}
.respond-view .record-button {
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  padding: 7px 14px 8px 14px;
  color: #444;
  background-color: #CECECE;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  font-weight: normal;
  -webkit-font-smoothing: auto;
  margin: 10px 2px;
  display: block;
  padding: 14px;
}
.respond-view .record-button:hover {
  text-decoration: none;
}
.respond-view .record-button:active {
  background-color: #8e8e8e;
  transition: color 150ms, background-color 150ms;
  outline: none;
}
.respond-view .record-button.disabled,
.respond-view .record-button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.respond-view .record-button.disabled:active,
.respond-view .record-button[disabled]:active,
.respond-view .record-button.disabled:hover,
.respond-view .record-button[disabled]:hover {
  background-color: #CECECE;
}
.respond-view .record-button:hover {
  background: #BDBDBD;
}
.respond-view .record-button .fa {
  color: #666;
  font-size: 16px;
  margin-right: 12px;
  padding-top: 2px;
  vertical-align: top;
}
.respond-view .workspace {
  padding: 15px;
  padding-bottom: 20px;
  cursor: default;
}
.respond-view .video-button-wrapper {
  display: block;
  padding-bottom: 25px;
  text-align: center;
}
.respond-view .cancel-button-container {
  display: inline-block;
  text-align: center;
  margin: 0 auto;
}
.respond-view .cancel-button-container .cancel-button {
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  padding: 4px 9px;
  color: red;
  border: none;
  border-radius: 3px;
  text-decoration: none;
  background-color: inherit;
  cursor: pointer;
  display: inline-block;
  -webkit-font-smoothing: auto;
  font-size: 12px;
}
.respond-view .cancel-button-container .cancel-button:hover {
  text-decoration: underline;
  color: #cc0000;
}
.respond-view .cancel-button-container .cancel-button:focus {
  outline: none;
}
.respond-view .cancel-button-container .cancel-button.disabled,
.respond-view .cancel-button-container .cancel-button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.respond-view .cancel-button-container .cancel-button.disabled:active,
.respond-view .cancel-button-container .cancel-button[disabled]:active,
.respond-view .cancel-button-container .cancel-button.disabled:hover,
.respond-view .cancel-button-container .cancel-button[disabled]:hover {
  text-decoration: none;
  color: red;
}
.respond-view .cancel-button-container .cancel-button .fa {
  margin-right: 3px;
}
.respond-view .cancel-button-container .cancel-button:hover {
  color: red;
}
.respond-view .camera-help-button-container {
  display: inline-block;
  margin: 0 auto;
  margin-right: 10px;
  text-align: center;
}
.respond-view .camera-help-button-container .camera-help-button {
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  padding: 7px 14px 8px 14px;
  color: white;
  background-color: #FFEFB8;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  font-weight: normal;
  -webkit-font-smoothing: auto;
  color: #333;
  font-size: 12px;
  padding: 6px 12px;
}
.respond-view .camera-help-button-container .camera-help-button:hover {
  text-decoration: none;
}
.respond-view .camera-help-button-container .camera-help-button:active {
  background-color: #ffd239;
  transition: color 150ms, background-color 150ms;
  outline: none;
}
.respond-view .camera-help-button-container .camera-help-button.disabled,
.respond-view .camera-help-button-container .camera-help-button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.respond-view .camera-help-button-container .camera-help-button.disabled:active,
.respond-view .camera-help-button-container .camera-help-button[disabled]:active,
.respond-view .camera-help-button-container .camera-help-button.disabled:hover,
.respond-view .camera-help-button-container .camera-help-button[disabled]:hover {
  background-color: #FFEFB8;
}
.respond-view .camera-help-button-container .camera-help-button .fa {
  color: #FFFFFF;
  font-size: 12px;
  margin-right: 3px;
}
.respond-view .camera-help-button-container .camera-help-button:hover {
  background-color: #FFB707;
}
.respond-view .response-fyi-container {
  color: #AAA;
  font-size: 13px;
  padding: 35px 25px 40px 25px;
  text-align: center;
}
.respond-view .response-explanation {
  display: none;
  border-top: 1px solid #EEE;
  color: #999;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-top: 8px;
  padding-top: 15px;
  text-align: center;
  text-transform: uppercase;
}
.respond-view .responses-container {
  padding: 15px;
  display: none;
}
.respond-view .responses-container .response-thumbnail-view {
  width: 80px;
  height: 80px;
  margin: 5px;
  overflow: hidden;
  background-color: #444;
  border: 4px solid #FFF;
  cursor: pointer;
  display: inline-block;
  position: relative;
}
.respond-view .responses-container .response-thumbnail-view:hover {
  background-color: #222;
  border: 4px solid #EEE;
}
.respond-view .responses-container .text-response-thumbnail-view {
  cursor: pointer;
}
.respond-view.respond-fullpage-view {
  background-color: white;
  margin: 0;
  width: 100%;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #BBB;
}
.respond-view.respond-fullpage-view .header {
  overflow: hidden;
  height: 3.4em;
  background-color: black;
  position: relative;
  font-size: 1.2em;
  color: white;
}
.respond-view.respond-fullpage-view .header .back-wrapper {
  float: left;
  padding: 16px 22px;
  z-index: 6;
}
.respond-view.respond-fullpage-view .header .back-button {
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  padding: 4px 9px;
  color: #BBB;
  border: none;
  border-radius: 3px;
  text-decoration: none;
  background-color: inherit;
  display: inline-block;
  -webkit-font-smoothing: auto;
  cursor: pointer;
  font-size: 14px;
  padding: 0;
  padding-top: 1px;
}
.respond-view.respond-fullpage-view .header .back-button:hover {
  text-decoration: underline;
  color: #a2a2a2;
}
.respond-view.respond-fullpage-view .header .back-button:focus {
  outline: none;
}
.respond-view.respond-fullpage-view .header .back-button.disabled,
.respond-view.respond-fullpage-view .header .back-button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.respond-view.respond-fullpage-view .header .back-button.disabled:active,
.respond-view.respond-fullpage-view .header .back-button[disabled]:active,
.respond-view.respond-fullpage-view .header .back-button.disabled:hover,
.respond-view.respond-fullpage-view .header .back-button[disabled]:hover {
  text-decoration: none;
  color: #BBB;
}
.respond-view.respond-fullpage-view .header .back-button .fa {
  font-size: 19px;
  margin-right: 6px;
  vertical-align: top;
}
.respond-view.respond-fullpage-view .header .back-button:hover {
  text-decoration: none;
}
.respond-view.respond-fullpage-view .header .back-button:focus {
  outline: none;
}
.respond-view.respond-fullpage-view .header .save-button {
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  padding: 7px 14px 8px 14px;
  color: #FFF;
  background-color: #36cc29;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  font-weight: normal;
  -webkit-font-smoothing: auto;
  float: right;
  font-size: 14px;
  margin-top: 10px;
  padding: 11px 30px 12px 30px;
  margin-right: 12px;
}
.respond-view.respond-fullpage-view .header .save-button:hover {
  text-decoration: none;
}
.respond-view.respond-fullpage-view .header .save-button:active {
  background-color: #1a6214;
  transition: color 150ms, background-color 150ms;
  outline: none;
}
.respond-view.respond-fullpage-view .header .save-button.disabled,
.respond-view.respond-fullpage-view .header .save-button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.respond-view.respond-fullpage-view .header .save-button.disabled:active,
.respond-view.respond-fullpage-view .header .save-button[disabled]:active,
.respond-view.respond-fullpage-view .header .save-button.disabled:hover,
.respond-view.respond-fullpage-view .header .save-button[disabled]:hover {
  background-color: #36cc29;
}
.respond-view.respond-fullpage-view.expanded {
  border: none;
  padding-bottom: 50px;
}
.respond-view.respond-fullpage-view.expanded .done-skip-container {
  display: none;
}
.respond-view.respond-fullpage-view.expanded .field-header {
  border-bottom: none;
}
.respond-view.respond-fullpage-view.expanded .field-header .respond-button {
  display: none;
}
.respond-view.respond-fullpage-view.expanded .response-fyi-container {
  padding-bottom: 20px;
}
.respond-view.respond-fullpage-view .field-header {
  font-size: 1.05em;
  line-height: 1.3em;
}
.respond-view.respond-fullpage-view .field-header .status-checkmark {
  font-size: 1.5em;
}
.respond-view.respond-fullpage-view .field-header .field-title-container {
  margin-right: 0;
}
.respond-view.respond-fullpage-view .field-header .field-details-container {
  margin-right: 0;
}
.respond-view.respond-fullpage-view .field-header .respond-button-container {
  display: block;
  position: relative;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.respond-view.respond-fullpage-view .field-header .respond-button {
  width: 50%;
  margin: 1em auto 0 auto;
  font-size: 0.9em;
  padding: 0.9em 0.7em 1em 0.7em;
}
.respond-view.respond-fullpage-view .field-header .respond-button.active {
  background-color: #36cc29;
  color: #FFF;
}
.respond-view.respond-fullpage-view .add-containers {
  height: auto;
}
.respond-view.respond-fullpage-view .add-containers.button-count-1 .add-container-any-upload,
.respond-view.respond-fullpage-view .add-containers.button-count-2 .add-container-any-upload,
.respond-view.respond-fullpage-view .add-containers.button-count-3 .add-container-any-upload,
.respond-view.respond-fullpage-view .add-containers.button-count-1 .add-container-video-upload,
.respond-view.respond-fullpage-view .add-containers.button-count-2 .add-container-video-upload,
.respond-view.respond-fullpage-view .add-containers.button-count-3 .add-container-video-upload,
.respond-view.respond-fullpage-view .add-containers.button-count-1 .add-container-record,
.respond-view.respond-fullpage-view .add-containers.button-count-2 .add-container-record,
.respond-view.respond-fullpage-view .add-containers.button-count-3 .add-container-record,
.respond-view.respond-fullpage-view .add-containers.button-count-1 .add-container-text,
.respond-view.respond-fullpage-view .add-containers.button-count-2 .add-container-text,
.respond-view.respond-fullpage-view .add-containers.button-count-3 .add-container-text {
  position: relative;
  display: block;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  float: none;
  width: auto;
  margin: 2px;
  margin-top: -4px;
}
.respond-view.respond-fullpage-view .add-containers .add-upload-container,
.respond-view.respond-fullpage-view .add-containers .add-text-button {
  font-size: 15px;
  padding: 17px;
}
.respond-view.respond-fullpage-view .response-explanation {
  margin-top: 20px;
}
.respond-view.respond-fullpage-view .action-interstitial-interceptor {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0;
  z-index: 1000;
}

.media-response-thumbnail-view.currently-editing {
  outline: 1px solid #24BAF3;
}
.media-response-thumbnail-view .processing,
.media-response-thumbnail-view .loading {
  display: block;
  position: absolute;
  left: 28%;
  right: 25%;
  top: 34%;
  bottom: 25%;
  z-index: 5;
}
.media-response-thumbnail-view .processing svg,
.media-response-thumbnail-view .loading svg {
  height: 25px;
  width: 25px;
}
.media-response-thumbnail-view .loading {
  z-index: 6;
}
.media-response-thumbnail-view .content-preview-container,
.media-response-thumbnail-view .icon-container,
.media-response-thumbnail-view .thumb {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.media-response-thumbnail-view .icon-container .file-text {
  font-size: 10px;
  color: #5D5D5D;
  margin-top: 2px;
  font-family: 'Open Sans', sans-serif;
}
.media-response-thumbnail-view .completed {
  position: absolute;
  color: #36cc29;
  right: 3px;
  bottom: 3px;
  z-index: 10;
}
.media-response-thumbnail-view .failed {
  position: absolute;
  color: red;
  right: 3px;
  bottom: 3px;
  z-index: 10;
}
.media-response-thumbnail-view .thumb {
  z-index: 1;
}
.media-response-thumbnail-view .icon-container .fa {
  color: #5D5D5D;
  font-size: 32px;
  margin-top: 20px;
  margin-left: 2px;
}

.respond-view .mobile-video-interstitial {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: auto;
  z-index: 1500;
}
.respond-view .mobile-video-interstitial .video-tips-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  color: #FFF;
  padding: 1em 2em;
  text-align: center;
  z-index: 10;
}
.respond-view .mobile-video-interstitial .video-tips-wrapper h2 {
  position: absolute;
  bottom: 2.5em;
  left: 2em;
  right: 2em;
  background: #21C623;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  color: #FFF;
  display: block;
  font-weight: 400;
  font-size: 19px;
  line-height: 20px;
  margin: 0 auto;
  margin-top: 2em;
  padding: 17px 10px;
}
.respond-view .mobile-video-interstitial .video-tips-wrapper h4 {
  color: #666;
  font-size: 16px;
  margin-bottom: 3em;
  text-align: center;
}
.respond-view .mobile-video-interstitial .video-tips-wrapper p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 1.5em;
}
.respond-view .mobile-video-interstitial .video-tips-wrapper .tip-number {
  font-weight: bold;
  margin-right: 6px;
  color: #20C122;
}
.respond-view .mobile-video-interstitial .background-overlay {
  position: absolute;
  z-index: 0;
  background-color: #000;
  opacity: 0.95;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.respond-view .mobile-video-interstitial .camera-help-button-container {
  width: 250px;
  text-align: center;
  margin: 0 auto;
  font-size: 15px;
  display: block;
}
.respond-view .mobile-video-interstitial .camera-help-button-container .camera-help-button {
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  padding: 4px 9px;
  color: #BDAF96;
  border: none;
  border-radius: 3px;
  text-decoration: none;
  background-color: inherit;
  cursor: pointer;
  display: inline-block;
  -webkit-font-smoothing: auto;
  border: 1px solid #BDAF96;
}
.respond-view .mobile-video-interstitial .camera-help-button-container .camera-help-button:hover {
  text-decoration: underline;
  color: #a99777;
}
.respond-view .mobile-video-interstitial .camera-help-button-container .camera-help-button:focus {
  outline: none;
}
.respond-view .mobile-video-interstitial .camera-help-button-container .camera-help-button.disabled,
.respond-view .mobile-video-interstitial .camera-help-button-container .camera-help-button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.respond-view .mobile-video-interstitial .camera-help-button-container .camera-help-button.disabled:active,
.respond-view .mobile-video-interstitial .camera-help-button-container .camera-help-button[disabled]:active,
.respond-view .mobile-video-interstitial .camera-help-button-container .camera-help-button.disabled:hover,
.respond-view .mobile-video-interstitial .camera-help-button-container .camera-help-button[disabled]:hover {
  text-decoration: none;
  color: #BDAF96;
}

body.is-mobile .questions-header-view {
  height: auto;
}
body.is-mobile .questions-header-view .im-finished-container {
  position: static;
  padding: 10px 15px;
}
body.is-mobile .questions-header-view .questions-count-container {
  background-color: #222;
  padding: 13px 13px 14px 13px;
  position: static;
}
body.is-mobile .questions-header-view .back-wrapper {
  bottom: 55px;
  right: 60%;
}
body.is-mobile .questions-header-view .back-to-intro {
  display: none;
}
body.is-desktop .questions-header-view .mobile-back-to-intro {
  display: none;
}
.questions-header-view {
  font-family: 'Open Sans', sans-serif;
  background-color: #111;
  height: 65px;
  position: relative;
  margin-bottom: 30px;
  font-size: 14px;
}
.questions-header-view.fixed {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  display: none;
  z-index: 10000;
}
.questions-header-view .back-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 80%;
  padding: 20px 22px;
  z-index: 6;
}
.questions-header-view .back-to-intro,
.questions-header-view .mobile-back-to-intro {
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  padding: 4px 9px;
  color: #BBB;
  border: none;
  border-radius: 3px;
  text-decoration: none;
  background-color: inherit;
  display: inline-block;
  -webkit-font-smoothing: auto;
  cursor: pointer;
  font-size: 14px;
  padding: 0;
  padding-top: 1px;
}
.questions-header-view .back-to-intro:hover,
.questions-header-view .mobile-back-to-intro:hover {
  text-decoration: underline;
  color: #a2a2a2;
}
.questions-header-view .back-to-intro:focus,
.questions-header-view .mobile-back-to-intro:focus {
  outline: none;
}
.questions-header-view .back-to-intro.disabled,
.questions-header-view .mobile-back-to-intro.disabled,
.questions-header-view .back-to-intro[disabled],
.questions-header-view .mobile-back-to-intro[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.questions-header-view .back-to-intro.disabled:active,
.questions-header-view .mobile-back-to-intro.disabled:active,
.questions-header-view .back-to-intro[disabled]:active,
.questions-header-view .mobile-back-to-intro[disabled]:active,
.questions-header-view .back-to-intro.disabled:hover,
.questions-header-view .mobile-back-to-intro.disabled:hover,
.questions-header-view .back-to-intro[disabled]:hover,
.questions-header-view .mobile-back-to-intro[disabled]:hover {
  text-decoration: none;
  color: #BBB;
}
.questions-header-view .back-to-intro .fa,
.questions-header-view .mobile-back-to-intro .fa {
  font-size: 19px;
  margin-right: 6px;
  vertical-align: top;
}
.questions-header-view .back-to-intro:hover,
.questions-header-view .mobile-back-to-intro:hover {
  text-decoration: none;
}
.questions-header-view .back-to-intro:focus,
.questions-header-view .mobile-back-to-intro:focus {
  outline: none;
}
.questions-header-view .questions-count-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 20px 22px;
  text-align: center;
  z-index: 3;
}
.questions-header-view .questions-count-container .questions-count-text {
  color: #BBB;
  font-size: 14px;
}
.questions-header-view .questions-count-container .questions-count {
  color: #36cc29;
  font-size: 16px;
  font-weight: 400;
  margin-right: 4px;
}
.questions-header-view .im-finished-container {
  position: absolute;
  left: 25%;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 10px 22px;
  z-index: 5;
}
.questions-header-view .im-finished-container .im-finished-button {
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  padding: 7px 14px 8px 14px;
  color: #FFF;
  background-color: #36cc29;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  font-weight: normal;
  -webkit-font-smoothing: auto;
  float: right;
  font-size: 15px;
  padding: 11px 30px 12px 30px;
}
.questions-header-view .im-finished-container .im-finished-button:hover {
  text-decoration: none;
}
.questions-header-view .im-finished-container .im-finished-button:active {
  background-color: #1a6214;
  transition: color 150ms, background-color 150ms;
  outline: none;
}
.questions-header-view .im-finished-container .im-finished-button.disabled,
.questions-header-view .im-finished-container .im-finished-button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.questions-header-view .im-finished-container .im-finished-button.disabled:active,
.questions-header-view .im-finished-container .im-finished-button[disabled]:active,
.questions-header-view .im-finished-container .im-finished-button.disabled:hover,
.questions-header-view .im-finished-container .im-finished-button[disabled]:hover {
  background-color: #36cc29;
}
.questions-header-view .im-finished-container .im-finished-button:hover,
.questions-header-view .im-finished-container .im-finished-button:focus {
  background-color: #11BB02;
}

body.is-desktop {
  min-width: 760px;
}
body {
  margin: 0;
  padding: 0;
}
.dont-leave {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #FFBF25;
  box-shadow: 0px -2px 12px rgba(0, 0, 0, 0.2);
  color: #333333;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  line-height: 20px;
  padding: 1.2em 1em 1.4em 1em;
  text-align: center;
  z-index: 1000;
}
.dont-leave .fa {
  color: #FFFFFF;
  font-size: 13px;
  margin-right: 6px;
}
.dont-leave .emph {
  font-weight: bold;
}
.dont-leave .progress-wrap {
  width: 100%;
  height: 5px;
  background: #FFF6EA;
  overflow: hidden;
  position: relative;
  border-radius: 2px;
  margin-bottom: 10px;
}
.dont-leave .progress-wrap .progress-bar {
  width: 100%;
  height: 5px;
  background: #EFA900;
  left: 0;
  position: absolute;
  top: 0;
}
.video-js {
  width: 100% !important;
  height: 100% !important;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
.respond-app-view {
  width: 100%;
  background-color: white;
  font-size: 15px;
  font-family: sans-serif;
}
.respond-app-view .main-section {
  width: 100%;
  position: relative;
  display: block;
  overflow: hidden;
}
.respond-app-view .main-section .questions-section {
  position: relative;
  padding-bottom: 150px;
}
.respond-app-view .main-section .view-stack-item {
  z-index: 100;
  background-color: white;
}
.respond-app-view .respond-screen-company-logo-wrapper {
  display: none;
  position: relative;
}
.respond-app-view .respond-screen-company-logo {
  margin: 0 auto;
  width: 100px;
  height: 50px;
  background-size: contain;
}
.footer {
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}
.footer a {
  color: #666;
  text-decoration: none;
}
.footer a:hover {
  cursor: 'hand';
}

.foobar {
  background-color: red;
}

body.is-mobile .welcome-view .welcome-section-wrapper {
  width: 100%;
  padding: 0px 3px;
}
body.is-mobile .welcome-view .intro-message-section {
  margin-top: 20px;
  margin-bottom: 20px;
}
body.is-mobile .welcome-view .intro-message-container {
  font-size: 14px;
  margin: 0 auto;
  padding: 30px;
}
body.is-mobile .welcome-view .intro-video-section {
  margin-bottom: 20px;
}
body.is-mobile .welcome-view .intro-video-section .video-container {
  width: 100%;
}
body.is-mobile .welcome-view .get-started-button {
  margin-top: 25px;
}
body.is-mobile .welcome-view .name-email-container .name-email-form label input {
  width: 72%;
}
body.is-desktop .welcome-view .welcome-message-spacer {
  height: 25px;
  width: 100%;
}
body.is-desktop .welcome-view .welcome-section-wrapper {
  width: 725px;
  padding: 0px 20px;
}
body.is-desktop .welcome-view .intro-message-container {
  margin: 0px auto;
  padding: 30px 40px 35px 40px;
}
body.is-desktop .welcome-view .intro-video-section {
  margin-bottom: 25px;
}
body.is-desktop .welcome-view .intro-video-section .video-container {
  width: 475px;
}
.welcome-view {
  padding-bottom: 40px;
}
.welcome-view .welcome-section-wrapper {
  margin: 0 auto;
  box-sizing: border-box;
}
.welcome-view .welcome-screen-company-logo-wrapper {
  display: none;
  position: relative;
}
.welcome-view .welcome-screen-company-logo {
  margin: 0 auto;
  background-size: contain;
}
.welcome-view .intro-message-section {
  color: #444;
  font-size: 1.1em;
}
.welcome-view .intro-message-container {
  background-color: #F1F1F1;
  color: #666;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 20px;
  word-wrap: break-word;
}
.welcome-view .intro-video-section .video-container {
  margin: auto;
}
.welcome-view .intro-video-section .video-container:hover .vjs-big-play-button {
  opacity: 1;
}
.welcome-view .intro-video-section .vjs-big-play-button {
  background-color: #36cc29;
  border: none;
  -webkit-border-radius: 4em !important;
  -moz-border-radius: 4em !important;
  border-radius: 4em !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  color: #FFFFFF;
  font-size: 4em;
  height: 2.5em;
  margin-left: -1.25em;
  opacity: 0.9;
  width: 2.5em;
}
.welcome-view .intro-video-section .vjs-big-play-button:before {
  line-height: 2.5em;
  padding-left: 3px;
  text-shadow: none !important;
}
.welcome-view .continue-section {
  text-align: center;
  position: relative;
}
.welcome-view .name-email-container {
  margin: auto;
}
.welcome-view .name-email-container label {
  display: block;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
}
.welcome-view .name-email-container input[type=text],
.welcome-view .name-email-container input[type=email] {
  background-color: #FFF;
  border: 1px solid #CCC;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  box-shadow: none !important;
  box-sizing: border-box;
  color: #333;
  font-size: 16px;
  height: 50px;
  margin: 4px;
  margin-left: 12px;
  padding: 8px 20px 9px 15px;
  width: 400px;
}
.welcome-view .name-email-container input[type=text]:focus,
.welcome-view .name-email-container input[type=email]:focus {
  border: 1px solid #36cc29;
  outline: none;
}
.welcome-view .name-email-container input[type=text].invalid-email,
.welcome-view .name-email-container input[type=email].invalid-email {
  border: 1px solid red;
}
.welcome-view .name-email-container button {
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  padding: 7px 14px 8px 14px;
  color: #FFF;
  background-color: #36cc29;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  font-weight: normal;
  -webkit-font-smoothing: auto;
  margin-top: 14px;
  font-size: 16px;
  padding: 14px 34px 15px 34px;
}
.welcome-view .name-email-container button:hover {
  text-decoration: none;
}
.welcome-view .name-email-container button:active {
  background-color: #1a6214;
  transition: color 150ms, background-color 150ms;
  outline: none;
}
.welcome-view .name-email-container button.disabled,
.welcome-view .name-email-container button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.welcome-view .name-email-container button.disabled:active,
.welcome-view .name-email-container button[disabled]:active,
.welcome-view .name-email-container button.disabled:hover,
.welcome-view .name-email-container button[disabled]:hover {
  background-color: #36cc29;
}
.welcome-view .name-email-container button:hover,
.welcome-view .name-email-container button:focus {
  background-color: #11BB02;
}
.welcome-view .name-email-form {
  padding: 10px 0px 0px 0px;
}
.welcome-view .get-started-button {
  color: #FFF;
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  background-color: #36cc29;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  font-weight: normal;
  -webkit-font-smoothing: auto;
  font-size: 18px;
  margin-top: 40px;
  padding: 14px 30px 16px 30px;
}
.welcome-view .get-started-button:hover {
  transition: color 150ms, background-color 150ms;
  background-color: #2ba220;
}
.welcome-view .get-started-button:focus {
  outline: none;
}
.welcome-view .logged-in-as {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: #666;
  line-height: 19px;
  padding: 2px;
  margin: auto;
  margin-top: 28px;
}

.camera-help-modal-view {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
  background-color: #000;
  font-family: 'Open Sans', sans-serif;
  opacity: 0.98;
  overflow: scroll;
}
.camera-help-modal-view .close-container {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 26px;
  line-height: 12px;
  background: #000;
  border: none;
  color: #CCC !important;
  cursor: pointer;
  padding: 5px 8px;
  border-radius: 2px;
}
.camera-help-modal-view .close-container:hover {
  color: #666 !important;
}
.camera-help-modal-view img {
  max-width: 100%;
}
.camera-help-modal-view .url {
  background: #FFF;
  border-radius: 2px;
  font-size: 12px;
  font-weight: bold;
  margin-right: 5px;
  padding: 3px 6px;
}
.camera-help-modal-view .help-section .help-title {
  font-weight: 400;
  font-size: 18px;
  color: #666;
  margin-bottom: 25px;
  margin-left: 10px;
}
.camera-help-modal-view .help-section .help-item-container {
  margin: 7px 0;
}
.camera-help-modal-view .help-section .help-item-container .help-item-header {
  background-color: #222222;
  border-radius: 2px;
  color: #CCC;
  font-size: 15px;
  padding: 1em;
  cursor: pointer;
}
.camera-help-modal-view .help-section .help-item-container .help-item-header .fa-question-circle {
  color: #DDD;
}
.camera-help-modal-view .help-section .help-item-container .help-item-header:hover {
  color: #FFB80A;
}
.camera-help-modal-view .help-section .help-item-container .help-item-header:hover .fa-question-circle {
  color: #AAA;
}
.camera-help-modal-view .help-section .help-item-container .help-item-body {
  background-color: #CCC;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  font-size: 13px;
  padding: 1em 1.5em;
}
.camera-help-modal-view .help-section .help-item-container .help-item-body img {
  display: block;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  width: 50%;
}
.camera-help-modal-view .help-section .help-item-container.opened .help-item-header {
  color: #FFB80A;
}
.camera-help-modal-view.mobile {
  padding-top: 15px;
}
.camera-help-modal-view.mobile .desktop-help-section {
  display: none;
}
.camera-help-modal-view.mobile .help-section {
  margin: auto 3%;
}
.camera-help-modal-view.desktop {
  padding-top: 50px;
}
.camera-help-modal-view.desktop .mobile-help-section {
  display: none;
}
.camera-help-modal-view.desktop .help-section {
  margin: auto 15%;
}

.zoomforth-recorder {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 25000;
  font-family: 'Open Sans', sans-serif;
}
.zoomforth-recorder.zfr-is-full-window {
  position: fixed;
}
.zoomforth-recorder .zfr-background {
  position: absolute;
  opacity: 0.98;
  background-color: #0C162F;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
}
.zoomforth-recorder .zfr-player {
  position: absolute;
  top: 5%;
  left: 0;
  right: 0;
  bottom: 120px;
  z-index: 150;
}
.zoomforth-recorder .zfr-player video {
  width: 100%;
  height: 100%;
}
.zoomforth-recorder .zfr-ui-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
}
.zoomforth-recorder .zfr-ui-bottom-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  z-index: 100;
}
.zoomforth-recorder .zfr-recording-timer,
.zoomforth-recorder .zfr-flattery {
  color: #CCC;
  display: block;
  float: left;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-top: 42px;
  margin-left: 40px;
  vertical-align: top;
}
.zoomforth-recorder .zfr-flattery {
  float: right;
  margin-left: 0;
  margin-right: 40px;
}
.zoomforth-recorder .zfr-main-button {
  background-color: #AAA;
  border-radius: 3px;
  box-sizing: border-box;
  color: #FFF;
  cursor: pointer;
  display: block;
  font-size: 16px;
  height: 58px;
  margin: 0 auto;
  margin-top: 25px;
  padding: 18px;
  text-align: center;
  vertical-align: middle;
  width: 200px;
}
.zoomforth-recorder .zfr-main-button.zfr-record-button {
  background-color: #36cc29;
}
.zoomforth-recorder .zfr-main-button.zfr-record-button .fa {
  color: green;
  font-size: 10px;
  margin-right: 8px;
  padding-top: 6px;
  vertical-align: top;
}
.zoomforth-recorder .zfr-main-button.zfr-record-button:hover {
  background-color: #20B514;
}
.zoomforth-recorder .zfr-main-button.zfr-stop-recording {
  background-color: #FF0000;
}
.zoomforth-recorder .zfr-main-button.zfr-stop-recording:hover {
  background-color: #CA0000;
}
.zoomforth-recorder .zfr-main-button.zfr-skip-playback:hover {
  background-color: #999;
}
.zoomforth-recorder .zfr-is-recording-indicator {
  position: absolute;
  top: 50px;
  left: 40px;
  background-color: #FF0000;
  width: 12px;
  height: 12px;
  border-radius: 6px;
}
.zoomforth-recorder .zfr-countdown {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -80px;
  margin-left: -75px;
  box-sizing: border-box;
  color: #FFF;
  font-family: 'Lato', sans-serif;
  font-size: 100px;
  font-weight: 200;
  height: 150px;
  text-align: center;
  text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.3);
  width: 150px;
}
.zoomforth-recorder .zfr-recording-complete-options {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -150px;
  margin-left: -160px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  box-sizing: border-box;
  height: 220px;
  padding: 25px;
  text-align: center;
  width: 320px;
}
.zoomforth-recorder .zfr-preview-recording,
.zoomforth-recorder .zfr-save-recording {
  border-radius: 3px;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 5px;
  padding: 17px;
  text-align: center;
  width: 100%;
}
.zoomforth-recorder .zfr-preview-recording .fa,
.zoomforth-recorder .zfr-save-recording .fa {
  margin-right: 8px;
  padding-top: 2px;
  vertical-align: top;
}
.zoomforth-recorder .zfr-preview-recording {
  background-color: #888;
  color: #FFF;
}
.zoomforth-recorder .zfr-preview-recording:hover {
  background-color: #777;
}
.zoomforth-recorder .zfr-save-recording {
  background-color: #36cc29;
  color: #FFF;
}
.zoomforth-recorder .zfr-save-recording:hover {
  background-color: #20B514;
}
.zoomforth-recorder .zfr-record-again {
  color: #FF0000;
  cursor: pointer;
  font-size: 13px;
  margin-top: 25px;
}
.zoomforth-recorder .zfr-record-again .fa {
  font-size: 14px;
  margin-right: 6px;
}
.zoomforth-recorder .zfr-record-again:hover {
  color: #CA0000;
}
.zoomforth-recorder .zfr-action-exit {
  position: absolute;
  top: 36px;
  right: 36px;
  background: #0D172F;
  cursor: pointer;
  font-size: 24px;
  padding: 8px 10px;
  width: 36px;
}
.zoomforth-recorder .zfr-action-exit:hover {
  opacity: 0.5;
}
.zoomforth-recorder .zfr-error-state {
  position: absolute;
  top: 40%;
  left: 30%;
  right: 30%;
  text-align: center;
  background-color: #FFFFFF;
  border-radius: 15px;
  padding: 20px;
  color: #BB0000;
}
.zoomforth-recorder .zfr-reload-after-error-button {
  display: inline-block;
  padding: 10px;
  background-color: #300;
  color: #FFFFFF;
}
.zoomforth-recorder .zfr-recording-tips {
  position: absolute;
  left: 50%;
  top: 25%;
  z-index: 500;
  background-color: #0C1325;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
  margin-left: -300px;
  opacity: 0.98;
  padding: 50px 32px;
  width: 630px;
}
.zoomforth-recorder .zfr-tips-title {
  color: #FFF;
  font-size: 17px;
  margin-top: 5px;
  margin-bottom: 25px;
  text-align: center;
}
.zoomforth-recorder .zfr-setup-recorder {
  box-sizing: border-box;
  background: #36cc29;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  color: #FFF;
  display: block;
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  margin: 0 auto;
  margin-top: 35px;
  padding: 17px 10px;
  text-align: center;
  width: 300px;
  cursor: pointer;
}
.zoomforth-recorder .zfr-setup-recorder:hover {
  background-color: #20B514;
}
.zoomforth-recorder .zfr-tip {
  color: #DDD;
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
}
.zoomforth-recorder .zfr-tip-number {
  font-weight: bold;
  margin-right: 6px;
  color: #36cc29;
}

.no-flash-error {
  width: 100%;
  height: 100%;
  background: #CCC;
  position: relative;
}
.no-flash-error .error-message {
  width: 50%;
  left: 25%;
  top: 43%;
  position: absolute;
  color: #AA0000;
  font-size: 1.5em;
  text-align: center;
}

@charset "UTF-8";
.vjs-modal-dialog .vjs-modal-dialog-content, .video-js .vjs-modal-dialog, .vjs-button > .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vjs-button > .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  text-align: center;
}

@font-face {
  font-family: VideoJS;
  src: url(data:application/font-woff;charset=utf-8;base64,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) format("woff");
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-play, .video-js .vjs-play-control .vjs-icon-placeholder, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-play:before, .video-js .vjs-play-control .vjs-icon-placeholder:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  content: "\f101";
}

.vjs-icon-play-circle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-play-circle:before {
  content: "\f102";
}

.vjs-icon-pause, .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-pause:before, .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before {
  content: "\f103";
}

.vjs-icon-volume-mute, .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-volume-mute:before, .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before {
  content: "\f104";
}

.vjs-icon-volume-low, .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-volume-low:before, .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before {
  content: "\f105";
}

.vjs-icon-volume-mid, .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-volume-mid:before, .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before {
  content: "\f106";
}

.vjs-icon-volume-high, .video-js .vjs-mute-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-volume-high:before, .video-js .vjs-mute-control .vjs-icon-placeholder:before {
  content: "\f107";
}

.vjs-icon-fullscreen-enter, .video-js .vjs-fullscreen-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-fullscreen-enter:before, .video-js .vjs-fullscreen-control .vjs-icon-placeholder:before {
  content: "\f108";
}

.vjs-icon-fullscreen-exit, .video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-fullscreen-exit:before, .video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before {
  content: "\f109";
}

.vjs-icon-square {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-square:before {
  content: "\f10a";
}

.vjs-icon-spinner {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-spinner:before {
  content: "\f10b";
}

.vjs-icon-subtitles, .video-js .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js .vjs-subtitles-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-subtitles:before, .video-js .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js .vjs-subtitles-button .vjs-icon-placeholder:before {
  content: "\f10c";
}

.vjs-icon-captions, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js .vjs-captions-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-captions:before, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js .vjs-captions-button .vjs-icon-placeholder:before {
  content: "\f10d";
}

.vjs-icon-chapters, .video-js .vjs-chapters-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-chapters:before, .video-js .vjs-chapters-button .vjs-icon-placeholder:before {
  content: "\f10e";
}

.vjs-icon-share {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-share:before {
  content: "\f10f";
}

.vjs-icon-cog {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-cog:before {
  content: "\f110";
}

.vjs-icon-circle, .vjs-seek-to-live-control .vjs-icon-placeholder, .video-js .vjs-volume-level, .video-js .vjs-play-progress {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-circle:before, .vjs-seek-to-live-control .vjs-icon-placeholder:before, .video-js .vjs-volume-level:before, .video-js .vjs-play-progress:before {
  content: "\f111";
}

.vjs-icon-circle-outline {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-circle-outline:before {
  content: "\f112";
}

.vjs-icon-circle-inner-circle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-circle-inner-circle:before {
  content: "\f113";
}

.vjs-icon-hd {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-hd:before {
  content: "\f114";
}

.vjs-icon-cancel, .video-js .vjs-control.vjs-close-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-cancel:before, .video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before {
  content: "\f115";
}

.vjs-icon-replay, .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-replay:before, .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before {
  content: "\f116";
}

.vjs-icon-facebook {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-facebook:before {
  content: "\f117";
}

.vjs-icon-gplus {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-gplus:before {
  content: "\f118";
}

.vjs-icon-linkedin {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-linkedin:before {
  content: "\f119";
}

.vjs-icon-twitter {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-twitter:before {
  content: "\f11a";
}

.vjs-icon-tumblr {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-tumblr:before {
  content: "\f11b";
}

.vjs-icon-pinterest {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-pinterest:before {
  content: "\f11c";
}

.vjs-icon-audio-description, .video-js .vjs-descriptions-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-audio-description:before, .video-js .vjs-descriptions-button .vjs-icon-placeholder:before {
  content: "\f11d";
}

.vjs-icon-audio, .video-js .vjs-audio-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-audio:before, .video-js .vjs-audio-button .vjs-icon-placeholder:before {
  content: "\f11e";
}

.vjs-icon-next-item {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-next-item:before {
  content: "\f11f";
}

.vjs-icon-previous-item {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-previous-item:before {
  content: "\f120";
}

.vjs-icon-picture-in-picture-enter, .video-js .vjs-picture-in-picture-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-picture-in-picture-enter:before, .video-js .vjs-picture-in-picture-control .vjs-icon-placeholder:before {
  content: "\f121";
}

.vjs-icon-picture-in-picture-exit, .video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
}
.vjs-icon-picture-in-picture-exit:before, .video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder:before {
  content: "\f122";
}

.video-js {
  display: block;
  vertical-align: top;
  box-sizing: border-box;
  color: #fff;
  background-color: #000;
  position: relative;
  padding: 0;
  font-size: 10px;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-family: Arial, Helvetica, sans-serif;
  word-break: initial;
}
.video-js:-moz-full-screen {
  position: absolute;
}
.video-js:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important;
}

.video-js[tabindex="-1"] {
  outline: none;
}

.video-js *,
.video-js *:before,
.video-js *:after {
  box-sizing: inherit;
}

.video-js ul {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  list-style-position: outside;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.video-js.vjs-fluid,
.video-js.vjs-16-9,
.video-js.vjs-4-3,
.video-js.vjs-9-16,
.video-js.vjs-1-1 {
  width: 100%;
  max-width: 100%;
}

.video-js.vjs-fluid:not(.vjs-audio-only-mode),
.video-js.vjs-16-9:not(.vjs-audio-only-mode),
.video-js.vjs-4-3:not(.vjs-audio-only-mode),
.video-js.vjs-9-16:not(.vjs-audio-only-mode),
.video-js.vjs-1-1:not(.vjs-audio-only-mode) {
  height: 0;
}

.video-js.vjs-16-9:not(.vjs-audio-only-mode) {
  padding-top: 56.25%;
}

.video-js.vjs-4-3:not(.vjs-audio-only-mode) {
  padding-top: 75%;
}

.video-js.vjs-9-16:not(.vjs-audio-only-mode) {
  padding-top: 177.7777777778%;
}

.video-js.vjs-1-1:not(.vjs-audio-only-mode) {
  padding-top: 100%;
}

.video-js.vjs-fill:not(.vjs-audio-only-mode) {
  width: 100%;
  height: 100%;
}

.video-js .vjs-tech {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-js.vjs-audio-only-mode .vjs-tech {
  display: none;
}

body.vjs-full-window {
  padding: 0;
  margin: 0;
  height: 100%;
}

.vjs-full-window .video-js.vjs-fullscreen {
  position: fixed;
  overflow: hidden;
  z-index: 1000;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.video-js.vjs-fullscreen:not(.vjs-ios-native-fs) {
  width: 100% !important;
  height: 100% !important;
  padding-top: 0 !important;
}

.video-js.vjs-fullscreen.vjs-user-inactive {
  cursor: none;
}

.vjs-hidden {
  display: none !important;
}

.vjs-disabled {
  opacity: 0.5;
  cursor: default;
}

.video-js .vjs-offscreen {
  height: 1px;
  left: -9999px;
  position: absolute;
  top: 0;
  width: 1px;
}

.vjs-lock-showing {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.vjs-no-js {
  padding: 20px;
  color: #fff;
  background-color: #000;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  width: 300px;
  height: 150px;
  margin: 0px auto;
}

.vjs-no-js a,
.vjs-no-js a:visited {
  color: #66A8CC;
}

.video-js .vjs-big-play-button {
  font-size: 3em;
  line-height: 1.5em;
  height: 1.63332em;
  width: 3em;
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0;
  cursor: pointer;
  opacity: 1;
  border: 0.06666em solid #fff;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
  border-radius: 0.3em;
  transition: all 0.4s;
}
.vjs-big-play-centered .vjs-big-play-button {
  top: 50%;
  left: 50%;
  margin-top: -0.81666em;
  margin-left: -1.5em;
}

.video-js:hover .vjs-big-play-button,
.video-js .vjs-big-play-button:focus {
  border-color: #fff;
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
  transition: all 0s;
}

.vjs-controls-disabled .vjs-big-play-button,
.vjs-has-started .vjs-big-play-button,
.vjs-using-native-controls .vjs-big-play-button,
.vjs-error .vjs-big-play-button {
  display: none;
}

.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause .vjs-big-play-button {
  display: block;
}

.video-js button {
  background: none;
  border: none;
  color: inherit;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-transform: none;
  text-decoration: none;
  transition: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.vjs-control .vjs-button {
  width: 100%;
  height: 100%;
}

.video-js .vjs-control.vjs-close-button {
  cursor: pointer;
  height: 3em;
  position: absolute;
  right: 0;
  top: 0.5em;
  z-index: 2;
}
.video-js .vjs-modal-dialog {
  background: rgba(0, 0, 0, 0.8);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0));
  overflow: auto;
}

.video-js .vjs-modal-dialog > * {
  box-sizing: border-box;
}

.vjs-modal-dialog .vjs-modal-dialog-content {
  font-size: 1.2em;
  line-height: 1.5;
  padding: 20px 24px;
  z-index: 1;
}

.vjs-menu-button {
  cursor: pointer;
}

.vjs-menu-button.vjs-disabled {
  cursor: default;
}

.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu {
  display: none;
}

.vjs-menu .vjs-menu-content {
  display: block;
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  overflow: auto;
}

.vjs-menu .vjs-menu-content > * {
  box-sizing: border-box;
}

.vjs-scrubbing .vjs-control.vjs-menu-button:hover .vjs-menu {
  display: none;
}

.vjs-menu li {
  list-style: none;
  margin: 0;
  padding: 0.2em 0;
  line-height: 1.4em;
  font-size: 1.2em;
  text-align: center;
  text-transform: lowercase;
}

.vjs-menu li.vjs-menu-item:focus,
.vjs-menu li.vjs-menu-item:hover,
.js-focus-visible .vjs-menu li.vjs-menu-item:hover {
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
}

.vjs-menu li.vjs-selected,
.vjs-menu li.vjs-selected:focus,
.vjs-menu li.vjs-selected:hover,
.js-focus-visible .vjs-menu li.vjs-selected:hover {
  background-color: #fff;
  color: #2B333F;
}

.video-js .vjs-menu *:not(.vjs-selected):focus:not(:focus-visible),
.js-focus-visible .vjs-menu *:not(.vjs-selected):focus:not(.focus-visible) {
  background: none;
}

.vjs-menu li.vjs-menu-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 1em;
  line-height: 2em;
  padding: 0;
  margin: 0 0 0.3em 0;
  font-weight: bold;
  cursor: default;
}

.vjs-menu-button-popup .vjs-menu {
  display: none;
  position: absolute;
  bottom: 0;
  width: 10em;
  left: -3em;
  height: 0em;
  margin-bottom: 1.5em;
  border-top-color: rgba(43, 51, 63, 0.7);
}

.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
  position: absolute;
  width: 100%;
  bottom: 1.5em;
  max-height: 15em;
}

.vjs-layout-tiny .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 5em;
}

.vjs-layout-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 10em;
}

.vjs-layout-medium .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 14em;
}

.vjs-layout-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-huge .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 25em;
}

.vjs-workinghover .vjs-menu-button-popup.vjs-hover .vjs-menu,
.vjs-menu-button-popup .vjs-menu.vjs-lock-showing {
  display: block;
}

.video-js .vjs-menu-button-inline {
  transition: all 0.4s;
  overflow: hidden;
}

.video-js .vjs-menu-button-inline:before {
  width: 2.222222222em;
}

.video-js .vjs-menu-button-inline:hover,
.video-js .vjs-menu-button-inline:focus,
.video-js .vjs-menu-button-inline.vjs-slider-active,
.video-js.vjs-no-flex .vjs-menu-button-inline {
  width: 12em;
}

.vjs-menu-button-inline .vjs-menu {
  opacity: 0;
  height: 100%;
  width: auto;
  position: absolute;
  left: 4em;
  top: 0;
  padding: 0;
  margin: 0;
  transition: all 0.4s;
}

.vjs-menu-button-inline:hover .vjs-menu,
.vjs-menu-button-inline:focus .vjs-menu,
.vjs-menu-button-inline.vjs-slider-active .vjs-menu {
  display: block;
  opacity: 1;
}

.vjs-no-flex .vjs-menu-button-inline .vjs-menu {
  display: block;
  opacity: 1;
  position: relative;
  width: auto;
}

.vjs-no-flex .vjs-menu-button-inline:hover .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline:focus .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline.vjs-slider-active .vjs-menu {
  width: auto;
}

.vjs-menu-button-inline .vjs-menu-content {
  width: auto;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.video-js .vjs-control-bar {
  display: none;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3em;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
}

.vjs-has-started .vjs-control-bar,
.vjs-audio-only-mode .vjs-control-bar {
  display: flex;
  visibility: visible;
  opacity: 1;
  transition: visibility 0.1s, opacity 0.1s;
}

.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  visibility: visible;
  opacity: 0;
  pointer-events: none;
  transition: visibility 1s, opacity 1s;
}

.vjs-controls-disabled .vjs-control-bar,
.vjs-using-native-controls .vjs-control-bar,
.vjs-error .vjs-control-bar {
  display: none !important;
}

.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar,
.vjs-audio-only-mode.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.vjs-has-started.vjs-no-flex .vjs-control-bar {
  display: table;
}

.video-js .vjs-control {
  position: relative;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 4em;
  flex: none;
}

.video-js .vjs-control.vjs-visible-text {
  width: auto;
  padding-left: 1em;
  padding-right: 1em;
}

.vjs-button > .vjs-icon-placeholder:before {
  font-size: 1.8em;
  line-height: 1.67;
}

.vjs-button > .vjs-icon-placeholder {
  display: block;
}

.video-js .vjs-control:focus:before,
.video-js .vjs-control:hover:before,
.video-js .vjs-control:focus {
  text-shadow: 0em 0em 1em white;
}

.video-js *:not(.vjs-visible-text) > .vjs-control-text {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.vjs-no-flex .vjs-control {
  display: table-cell;
  vertical-align: middle;
}

.video-js .vjs-custom-control-spacer {
  display: none;
}

.video-js .vjs-progress-control {
  cursor: pointer;
  flex: auto;
  display: flex;
  align-items: center;
  min-width: 4em;
  touch-action: none;
}

.video-js .vjs-progress-control.disabled {
  cursor: default;
}

.vjs-live .vjs-progress-control {
  display: none;
}

.vjs-liveui .vjs-progress-control {
  display: flex;
  align-items: center;
}

.vjs-no-flex .vjs-progress-control {
  width: auto;
}

.video-js .vjs-progress-holder {
  flex: auto;
  transition: all 0.2s;
  height: 0.3em;
}

.video-js .vjs-progress-control .vjs-progress-holder {
  margin: 0 10px;
}

.video-js .vjs-progress-control:hover .vjs-progress-holder {
  font-size: 1.6666666667em;
}

.video-js .vjs-progress-control:hover .vjs-progress-holder.disabled {
  font-size: 1em;
}

.video-js .vjs-progress-holder .vjs-play-progress,
.video-js .vjs-progress-holder .vjs-load-progress,
.video-js .vjs-progress-holder .vjs-load-progress div {
  position: absolute;
  display: block;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 0;
}

.video-js .vjs-play-progress {
  background-color: #fff;
}
.video-js .vjs-play-progress:before {
  font-size: 0.9em;
  position: absolute;
  right: -0.5em;
  top: -0.3333333333em;
  z-index: 1;
}

.video-js .vjs-load-progress {
  background: rgba(115, 133, 159, 0.5);
}

.video-js .vjs-load-progress div {
  background: rgba(115, 133, 159, 0.75);
}

.video-js .vjs-time-tooltip {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.3em;
  color: #000;
  float: right;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  padding: 6px 8px 8px 8px;
  pointer-events: none;
  position: absolute;
  top: -3.4em;
  visibility: hidden;
  z-index: 1;
}

.video-js .vjs-progress-holder:focus .vjs-time-tooltip {
  display: none;
}

.video-js .vjs-progress-control:hover .vjs-time-tooltip,
.video-js .vjs-progress-control:hover .vjs-progress-holder:focus .vjs-time-tooltip {
  display: block;
  font-size: 0.6em;
  visibility: visible;
}

.video-js .vjs-progress-control.disabled:hover .vjs-time-tooltip {
  font-size: 1em;
}

.video-js .vjs-progress-control .vjs-mouse-display {
  display: none;
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #000;
  z-index: 1;
}

.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
  z-index: 0;
}

.video-js .vjs-progress-control:hover .vjs-mouse-display {
  display: block;
}

.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display {
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
}

.video-js.vjs-user-inactive.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
  display: none;
}

.vjs-mouse-display .vjs-time-tooltip {
  color: #fff;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
}

.video-js .vjs-slider {
  position: relative;
  cursor: pointer;
  padding: 0;
  margin: 0 0.45em 0 0.45em;
  /* iOS Safari */
  -webkit-touch-callout: none;
  /* Safari */
  -webkit-user-select: none;
  /* Konqueror HTML */
  /* Firefox */
  -moz-user-select: none;
  /* Internet Explorer/Edge */
  -ms-user-select: none;
  /* Non-prefixed version, currently supported by Chrome and Opera */
  user-select: none;
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
}

.video-js .vjs-slider.disabled {
  cursor: default;
}

.video-js .vjs-slider:focus {
  text-shadow: 0em 0em 1em white;
  box-shadow: 0 0 1em #fff;
}

.video-js .vjs-mute-control {
  cursor: pointer;
  flex: none;
}
.video-js .vjs-volume-control {
  cursor: pointer;
  margin-right: 1em;
  display: flex;
}

.video-js .vjs-volume-control.vjs-volume-horizontal {
  width: 5em;
}

.video-js .vjs-volume-panel .vjs-volume-control {
  visibility: visible;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin-left: -1px;
}

.video-js .vjs-volume-panel {
  transition: width 1s;
}
.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control, .video-js .vjs-volume-panel:active .vjs-volume-control, .video-js .vjs-volume-panel:focus .vjs-volume-control, .video-js .vjs-volume-panel .vjs-volume-control:active, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active {
  visibility: visible;
  opacity: 1;
  position: relative;
  transition: visibility 0.1s, opacity 0.1s, height 0.1s, width 0.1s, left 0s, top 0s;
}
.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal {
  width: 5em;
  height: 3em;
  margin-right: 0;
}
.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-vertical, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-vertical {
  left: -3.5em;
  transition: left 0s;
}
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active {
  width: 10em;
  transition: width 0.1s;
}
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-mute-toggle-only {
  width: 4em;
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
  height: 8em;
  width: 3em;
  left: -3000em;
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s 1s, left 1s 1s, top 1s 1s;
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s, left 1s 1s, top 1s 1s;
}

.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
  width: 5em;
  height: 3em;
  visibility: visible;
  opacity: 1;
  position: relative;
  transition: none;
}

.video-js.vjs-no-flex .vjs-volume-control.vjs-volume-vertical,
.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
  position: absolute;
  bottom: 3em;
  left: 0.5em;
}

.video-js .vjs-volume-panel {
  display: flex;
}

.video-js .vjs-volume-bar {
  margin: 1.35em 0.45em;
}

.vjs-volume-bar.vjs-slider-horizontal {
  width: 5em;
  height: 0.3em;
}

.vjs-volume-bar.vjs-slider-vertical {
  width: 0.3em;
  height: 5em;
  margin: 1.35em auto;
}

.video-js .vjs-volume-level {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
}
.video-js .vjs-volume-level:before {
  position: absolute;
  font-size: 0.9em;
  z-index: 1;
}

.vjs-slider-vertical .vjs-volume-level {
  width: 0.3em;
}
.vjs-slider-vertical .vjs-volume-level:before {
  top: -0.5em;
  left: -0.3em;
  z-index: 1;
}

.vjs-slider-horizontal .vjs-volume-level {
  height: 0.3em;
}
.vjs-slider-horizontal .vjs-volume-level:before {
  top: -0.3em;
  right: -0.5em;
}

.video-js .vjs-volume-panel.vjs-volume-panel-vertical {
  width: 4em;
}

.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level {
  height: 100%;
}

.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level {
  width: 100%;
}

.video-js .vjs-volume-vertical {
  width: 3em;
  height: 8em;
  bottom: 8em;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
}

.video-js .vjs-volume-horizontal .vjs-menu {
  left: -2em;
}

.video-js .vjs-volume-tooltip {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.3em;
  color: #000;
  float: right;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  padding: 6px 8px 8px 8px;
  pointer-events: none;
  position: absolute;
  top: -3.4em;
  visibility: hidden;
  z-index: 1;
}

.video-js .vjs-volume-control:hover .vjs-volume-tooltip,
.video-js .vjs-volume-control:hover .vjs-progress-holder:focus .vjs-volume-tooltip {
  display: block;
  font-size: 1em;
  visibility: visible;
}

.video-js .vjs-volume-vertical:hover .vjs-volume-tooltip,
.video-js .vjs-volume-vertical:hover .vjs-progress-holder:focus .vjs-volume-tooltip {
  left: 1em;
  top: -12px;
}

.video-js .vjs-volume-control.disabled:hover .vjs-volume-tooltip {
  font-size: 1em;
}

.video-js .vjs-volume-control .vjs-mouse-display {
  display: none;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
  z-index: 1;
}

.video-js .vjs-volume-horizontal .vjs-mouse-display {
  width: 1px;
  height: 100%;
}

.vjs-no-flex .vjs-volume-control .vjs-mouse-display {
  z-index: 0;
}

.video-js .vjs-volume-control:hover .vjs-mouse-display {
  display: block;
}

.video-js.vjs-user-inactive .vjs-volume-control .vjs-mouse-display {
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
}

.video-js.vjs-user-inactive.vjs-no-flex .vjs-volume-control .vjs-mouse-display {
  display: none;
}

.vjs-mouse-display .vjs-volume-tooltip {
  color: #fff;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
}

.vjs-poster {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  background-color: #000000;
  cursor: pointer;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
}

.vjs-has-started .vjs-poster,
.vjs-using-native-controls .vjs-poster {
  display: none;
}

.vjs-audio.vjs-has-started .vjs-poster,
.vjs-has-started.vjs-audio-poster-mode .vjs-poster {
  display: block;
}

.video-js .vjs-live-control {
  display: flex;
  align-items: flex-start;
  flex: auto;
  font-size: 1em;
  line-height: 3em;
}

.vjs-no-flex .vjs-live-control {
  display: table-cell;
  width: auto;
  text-align: left;
}

.video-js:not(.vjs-live) .vjs-live-control,
.video-js.vjs-liveui .vjs-live-control {
  display: none;
}

.video-js .vjs-seek-to-live-control {
  align-items: center;
  cursor: pointer;
  flex: none;
  display: inline-flex;
  height: 100%;
  padding-left: 0.5em;
  padding-right: 0.5em;
  font-size: 1em;
  line-height: 3em;
  width: auto;
  min-width: 4em;
}

.vjs-no-flex .vjs-seek-to-live-control {
  display: table-cell;
  width: auto;
  text-align: left;
}

.video-js.vjs-live:not(.vjs-liveui) .vjs-seek-to-live-control,
.video-js:not(.vjs-live) .vjs-seek-to-live-control {
  display: none;
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge {
  cursor: auto;
}

.vjs-seek-to-live-control .vjs-icon-placeholder {
  margin-right: 0.5em;
  color: #888;
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-icon-placeholder {
  color: red;
}

.video-js .vjs-time-control {
  flex: none;
  font-size: 1em;
  line-height: 3em;
  min-width: 2em;
  width: auto;
  padding-left: 1em;
  padding-right: 1em;
}

.vjs-live .vjs-time-control {
  display: none;
}

.video-js .vjs-current-time,
.vjs-no-flex .vjs-current-time {
  display: none;
}

.video-js .vjs-duration,
.vjs-no-flex .vjs-duration {
  display: none;
}

.vjs-time-divider {
  display: none;
  line-height: 3em;
}

.vjs-live .vjs-time-divider {
  display: none;
}

.video-js .vjs-play-control {
  cursor: pointer;
}

.video-js .vjs-play-control .vjs-icon-placeholder {
  flex: none;
}

.vjs-text-track-display {
  position: absolute;
  bottom: 3em;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
}

.video-js.vjs-controls-disabled .vjs-text-track-display,
.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
  bottom: 1em;
}

.video-js .vjs-text-track {
  font-size: 1.4em;
  text-align: center;
  margin-bottom: 0.1em;
}

.vjs-subtitles {
  color: #fff;
}

.vjs-captions {
  color: #fc6;
}

.vjs-tt-cue {
  display: block;
}

video::-webkit-media-text-track-display {
  transform: translateY(-3em);
}

.video-js.vjs-controls-disabled video::-webkit-media-text-track-display,
.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display {
  transform: translateY(-1.5em);
}

.video-js .vjs-picture-in-picture-control {
  cursor: pointer;
  flex: none;
}
.video-js.vjs-audio-only-mode .vjs-picture-in-picture-control {
  display: none;
}

.video-js .vjs-fullscreen-control {
  cursor: pointer;
  flex: none;
}
.video-js.vjs-audio-only-mode .vjs-fullscreen-control {
  display: none;
}

.vjs-playback-rate > .vjs-menu-button,
.vjs-playback-rate .vjs-playback-rate-value {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vjs-playback-rate .vjs-playback-rate-value {
  pointer-events: none;
  font-size: 1.5em;
  line-height: 2;
  text-align: center;
}

.vjs-playback-rate .vjs-menu {
  width: 4em;
  left: 0em;
}

.vjs-error .vjs-error-display .vjs-modal-dialog-content {
  font-size: 1.4em;
  text-align: center;
}

.vjs-error .vjs-error-display:before {
  color: #fff;
  content: "X";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 4em;
  left: 0;
  line-height: 1;
  margin-top: -0.5em;
  position: absolute;
  text-shadow: 0.05em 0.05em 0.1em #000;
  text-align: center;
  top: 50%;
  vertical-align: middle;
  width: 100%;
}

.vjs-loading-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.85;
  text-align: left;
  border: 6px solid rgba(43, 51, 63, 0.7);
  box-sizing: border-box;
  background-clip: padding-box;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  visibility: hidden;
}

.vjs-seeking .vjs-loading-spinner,
.vjs-waiting .vjs-loading-spinner {
  display: block;
  -webkit-animation: vjs-spinner-show 0s linear 0.3s forwards;
          animation: vjs-spinner-show 0s linear 0.3s forwards;
}

.vjs-loading-spinner:before,
.vjs-loading-spinner:after {
  content: "";
  position: absolute;
  margin: -6px;
  box-sizing: inherit;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  opacity: 1;
  border: inherit;
  border-color: transparent;
  border-top-color: white;
}

.vjs-seeking .vjs-loading-spinner:before,
.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:after {
  -webkit-animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
  animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
}

.vjs-seeking .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:before {
  border-top-color: white;
}

.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:after {
  border-top-color: white;
  -webkit-animation-delay: 0.44s;
  animation-delay: 0.44s;
}

@keyframes vjs-spinner-show {
  to {
    visibility: visible;
  }
}
@-webkit-keyframes vjs-spinner-show {
  to {
    visibility: visible;
  }
}
@keyframes vjs-spinner-spin {
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes vjs-spinner-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes vjs-spinner-fade {
  0% {
    border-top-color: #73859f;
  }
  20% {
    border-top-color: #73859f;
  }
  35% {
    border-top-color: white;
  }
  60% {
    border-top-color: #73859f;
  }
  100% {
    border-top-color: #73859f;
  }
}
@-webkit-keyframes vjs-spinner-fade {
  0% {
    border-top-color: #73859f;
  }
  20% {
    border-top-color: #73859f;
  }
  35% {
    border-top-color: white;
  }
  60% {
    border-top-color: #73859f;
  }
  100% {
    border-top-color: #73859f;
  }
}
.video-js.vjs-audio-only-mode .vjs-captions-button {
  display: none;
}

.vjs-chapters-button .vjs-menu ul {
  width: 24em;
}

.video-js.vjs-audio-only-mode .vjs-descriptions-button {
  display: none;
}

.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em;
}

.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: "";
  font-size: 1.5em;
  line-height: inherit;
}

.video-js.vjs-audio-only-mode .vjs-subs-caps-button {
  display: none;
}

.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em;
}

.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: " ";
  font-size: 1.5em;
  line-height: inherit;
}

.video-js.vjs-layout-small .vjs-current-time,
.video-js.vjs-layout-small .vjs-time-divider,
.video-js.vjs-layout-small .vjs-duration,
.video-js.vjs-layout-small .vjs-remaining-time,
.video-js.vjs-layout-small .vjs-playback-rate,
.video-js.vjs-layout-small .vjs-volume-control, .video-js.vjs-layout-x-small .vjs-current-time,
.video-js.vjs-layout-x-small .vjs-time-divider,
.video-js.vjs-layout-x-small .vjs-duration,
.video-js.vjs-layout-x-small .vjs-remaining-time,
.video-js.vjs-layout-x-small .vjs-playback-rate,
.video-js.vjs-layout-x-small .vjs-volume-control, .video-js.vjs-layout-tiny .vjs-current-time,
.video-js.vjs-layout-tiny .vjs-time-divider,
.video-js.vjs-layout-tiny .vjs-duration,
.video-js.vjs-layout-tiny .vjs-remaining-time,
.video-js.vjs-layout-tiny .vjs-playback-rate,
.video-js.vjs-layout-tiny .vjs-volume-control {
  display: none;
}
.video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover {
  width: auto;
  width: initial;
}
.video-js.vjs-layout-x-small .vjs-progress-control, .video-js.vjs-layout-tiny .vjs-progress-control {
  display: none;
}
.video-js.vjs-layout-x-small .vjs-custom-control-spacer {
  flex: auto;
  display: block;
}
.video-js.vjs-layout-x-small.vjs-no-flex .vjs-custom-control-spacer {
  width: auto;
}

.vjs-modal-dialog.vjs-text-track-settings {
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.75);
  color: #fff;
  height: 70%;
}

.vjs-text-track-settings .vjs-modal-dialog-content {
  display: table;
}

.vjs-text-track-settings .vjs-track-settings-colors,
.vjs-text-track-settings .vjs-track-settings-font,
.vjs-text-track-settings .vjs-track-settings-controls {
  display: table-cell;
}

.vjs-text-track-settings .vjs-track-settings-controls {
  text-align: right;
  vertical-align: bottom;
}

@supports (display: grid) {
  .vjs-text-track-settings .vjs-modal-dialog-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    padding: 20px 24px 0px 24px;
  }

  .vjs-track-settings-controls .vjs-default-button {
    margin-bottom: 20px;
  }

  .vjs-text-track-settings .vjs-track-settings-controls {
    grid-column: 1/-1;
  }

  .vjs-layout-small .vjs-text-track-settings .vjs-modal-dialog-content,
.vjs-layout-x-small .vjs-text-track-settings .vjs-modal-dialog-content,
.vjs-layout-tiny .vjs-text-track-settings .vjs-modal-dialog-content {
    grid-template-columns: 1fr;
  }
}
.vjs-track-setting > select {
  margin-right: 1em;
  margin-bottom: 0.5em;
}

.vjs-text-track-settings fieldset {
  margin: 5px;
  padding: 3px;
  border: none;
}

.vjs-text-track-settings fieldset span {
  display: inline-block;
}

.vjs-text-track-settings fieldset span > select {
  max-width: 7.3em;
}

.vjs-text-track-settings legend {
  color: #fff;
  margin: 0 0 5px 0;
}

.vjs-text-track-settings .vjs-label {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  display: block;
  margin: 0 0 5px 0;
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.vjs-track-settings-controls button:focus,
.vjs-track-settings-controls button:active {
  outline-style: solid;
  outline-width: medium;
  background-image: linear-gradient(0deg, #fff 88%, #73859f 100%);
}

.vjs-track-settings-controls button:hover {
  color: rgba(43, 51, 63, 0.75);
}

.vjs-track-settings-controls button {
  background-color: #fff;
  background-image: linear-gradient(-180deg, #fff 88%, #73859f 100%);
  color: #2B333F;
  cursor: pointer;
  border-radius: 2px;
}

.vjs-track-settings-controls .vjs-default-button {
  margin-right: 1em;
}

@media print {
  .video-js > *:not(.vjs-tech):not(.vjs-poster) {
    visibility: hidden;
  }
}
.vjs-resize-manager {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: -1000;
}

.js-focus-visible .video-js *:focus:not(.focus-visible) {
  outline: none;
}

.video-js *:focus:not(:focus-visible) {
  outline: none;
}

.video-js {
  width: 100%;
  height: 100%;
}

.vjs-resolution-button {
  color: #ccc;
  font-family: VideoJS;
}

.vjs-resolution-button .vjs-resolution-button-staticlabel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vjs-resolution-button .vjs-resolution-button-staticlabel:before {
  content: '\f110';
  font-size: 1.8em;
  line-height: 1.67;
}

.vjs-resolution-button .vjs-resolution-button-label {
    font-size: 1em;
    line-height: 3em;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    box-sizing: inherit;
		font-family: Arial, Helvetica, sans-serif;
}

.vjs-resolution-button ul.vjs-menu-content {
  width: 4em !important;
}

.vjs-resolution-button .vjs-menu {
  left: 0;
}

.vjs-resolution-button .vjs-menu li {
  text-transform: none;
	font-size: 1em;
	font-family: Arial, Helvetica, sans-serif;
}


/*# sourceMappingURL=legacy_respond-a4578e69.css.map*/