@-webkit-keyframes ngdialog-fadeout {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes ngdialog-fadeout {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes ngdialog-fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes ngdialog-fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.ngdialog {
  box-sizing: border-box;
}

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

.ngdialog {
  position: fixed;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.ngdialog.ngdialog-disabled-animation,
.ngdialog.ngdialog-disabled-animation .ngdialog-overlay,
.ngdialog.ngdialog-disabled-animation .ngdialog-content {
  -webkit-animation: none!important;
  animation: none!important;
}

.ngdialog-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
  -webkit-animation: ngdialog-fadein 0.5s;
  animation: ngdialog-fadein 0.5s;
}

.ngdialog-no-overlay {
  pointer-events: none;
}

.ngdialog.ngdialog-closing .ngdialog-overlay {
  -webkit-backface-visibility: hidden;
  -webkit-animation: ngdialog-fadeout 0.5s;
  animation: ngdialog-fadeout 0.5s;
}

.ngdialog-content {
  background: white;
  -webkit-backface-visibility: hidden;
  -webkit-animation: ngdialog-fadein 0.5s;
  animation: ngdialog-fadein 0.5s;
  pointer-events: all;
}

.ngdialog.ngdialog-closing .ngdialog-content {
  -webkit-backface-visibility: hidden;
  -webkit-animation: ngdialog-fadeout 0.5s;
  animation: ngdialog-fadeout 0.5s;
}

.ngdialog-close:before {
  font-family: 'Helvetica', Arial, sans-serif;
  content: '\D7';
  cursor: pointer;
}

html.ngdialog-open,
body.ngdialog-open {
  overflow: hidden;
}@-webkit-keyframes ngdialog-flyin {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes ngdialog-flyin {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes ngdialog-flyout {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}

@keyframes ngdialog-flyout {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}

.ngdialog.ngdialog-theme-default {
  padding-bottom: 160px;
  padding-top: 160px;
}

.ngdialog.ngdialog-theme-default.ngdialog-closing .ngdialog-content {
  -webkit-animation: ngdialog-flyout .5s;
  animation: ngdialog-flyout .5s;
}

.ngdialog.ngdialog-theme-default .ngdialog-content {
  -webkit-animation: ngdialog-flyin .5s;
  animation: ngdialog-flyin .5s;
  background: #f0f0f0;
  border-radius: 5px;
  color: #444;
  font-family: 'Helvetica',sans-serif;
  font-size: 1.1em;
  line-height: 1.5em;
  margin: 0 auto;
  max-width: 100%;
  padding: 1em;
  position: relative;
  width: 450px;
}

.ngdialog.ngdialog-theme-default .ngdialog-close {
  border-radius: 5px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
}

.ngdialog.ngdialog-theme-default .ngdialog-close:before {
  background: transparent;
  border-radius: 3px;
  color: #bbb;
  content: '\D7';
  font-size: 26px;
  font-weight: 400;
  height: 30px;
  line-height: 26px;
  position: absolute;
  right: 3px;
  text-align: center;
  top: 3px;
  width: 30px;
}

.ngdialog.ngdialog-theme-default .ngdialog-close:hover:before,
.ngdialog.ngdialog-theme-default .ngdialog-close:active:before {
  color: #777;
}

.ngdialog.ngdialog-theme-default .ngdialog-message {
  margin-bottom: .5em;
}

.ngdialog.ngdialog-theme-default .ngdialog-input {
  margin-bottom: 1em;
}

.ngdialog.ngdialog-theme-default .ngdialog-input textarea,
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="text"],
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="password"],
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="email"],
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="url"] {
  background: #fff;
  border: 0;
  border-radius: 3px;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  margin: 0 0 .25em;
  min-height: 2.5em;
  padding: .25em .67em;
  width: 100%;
}

.ngdialog.ngdialog-theme-default .ngdialog-input textarea:focus,
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="text"]:focus,
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="password"]:focus,
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="email"]:focus,
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="url"]:focus {
  box-shadow: inset 0 0 0 2px #8dbdf1;
  outline: none;
}

.ngdialog.ngdialog-theme-default .ngdialog-buttons {
  *zoom: 1;
}

.ngdialog.ngdialog-theme-default .ngdialog-buttons:after {
  content: '';
  display: table;
  clear: both;
}

.ngdialog.ngdialog-theme-default .ngdialog-button {
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  float: right;
  font-family: inherit;
  font-size: .8em;
  letter-spacing: .1em;
  line-height: 1em;
  margin: 0 0 0 .5em;
  padding: .75em 2em;
  text-transform: uppercase;
}

.ngdialog.ngdialog-theme-default .ngdialog-button:focus {
  -webkit-animation: ngdialog-pulse 1.1s infinite;
  animation: ngdialog-pulse 1.1s infinite;
  outline: none;
}

@media (max-width: 568px) {
  .ngdialog.ngdialog-theme-default .ngdialog-button:focus {
    -webkit-animation: none;
    animation: none;
  }
}

.ngdialog.ngdialog-theme-default .ngdialog-button.ngdialog-button-primary {
  background: #3288e6;
  color: #fff;
}

.ngdialog.ngdialog-theme-default .ngdialog-button.ngdialog-button-secondary {
  background: #e0e0e0;
  color: #777;
}.video-edit-box-shadow {
  box-shadow: 0px 1.6px 3.6px 0px rgba(0, 0, 0, 0.132), 0px 0.3px 0.9px 0px rgba(0, 0, 0, 0.108);
  border-radius: 2px;
}
@media screen and (-ms-high-contrast: active) {
  .video-edit-box-shadow {
    border: 1px solid;
  }
}
.box-shadow {
  transition: box-shadow 300ms ease;
  box-shadow: 0px 1.6px 3.6px 0px rgba(0, 0, 0, 0.13), 0px 0.3px 0.9px 0px rgba(0, 0, 0, 0.11);
  border-radius: 2px;
}
@media screen and (-ms-high-contrast: active) {
  .box-shadow {
    border: 1px solid;
  }
}
.box-shadow-and-hover {
  transition: box-shadow 300ms ease;
  box-shadow: 0px 1.6px 3.6px 0px rgba(0, 0, 0, 0.13), 0px 0.3px 0.9px 0px rgba(0, 0, 0, 0.11);
  border-radius: 2px;
}
.box-shadow-and-hover:hover {
  transition: box-shadow 300ms ease;
  box-shadow: 0px 6.4px 14.4px 0px rgba(0, 0, 0, 0.13), 0px 1.2px 3.6px 0px rgba(0, 0, 0, 0.11);
}
@media screen and (-ms-high-contrast: active) {
  .box-shadow-and-hover {
    border: 1px solid;
  }
}
.absolute-center,
.fixed-center {
  top: 50%;
  left: 50%;
  /*ignore-Loc*/
  transform: translateY(-50%) translateX(-50%);
}
.absolute-center,
.absolute-y-center,
.absolute-x-center {
  position: absolute;
}
.fixed-center {
  position: fixed;
}
.absolute-y-center {
  top: 50%;
  transform: translateY(-50%);
}
.absolute-x-center {
  left: 50%;
  /*ignore-Loc*/
  transform: translateX(-50%);
}
.img-cover {
  top: 50%;
  left: 50%;
  /*ignore-Loc*/
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  width: auto;
  height: 100%;
}
.img-cover.tall {
  width: 100%;
  height: auto;
}
.footer-button {
  display: inline-block;
  width: 200px;
}
.hide {
  display: none;
}
.show {
  display: block;
}
.relativeposition {
  position: relative;
}
.absoluteposition {
  position: absolute;
}
.fixedposition {
  position: fixed;
}
.single-line-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.yield-to-topbar {
  margin-top: 45px;
}
.horizontal-space-16px {
  display: inline-block;
  width: 16px;
}
.small-icon {
  width: 12px;
  height: 12px;
}
.medium-icon {
  width: 16px;
  height: 16px;
  margin: 4px;
}
.big-icon {
  width: 24px;
  height: 24px;
  display: block;
  margin: 7px;
}
.clear-both {
  clear: both;
}
.video-duration {
  font-size: 14px;
  padding: 1px 4px 1px 4px;
  position: absolute;
  background: rgba(0, 0, 0, 0.56);
  color: #FFF;
  bottom: 4px;
  right: 4px;
  border-radius: 2px;
}
.italic {
  font-style: italic;
}
.italic-white {
  font-style: italic;
  color: #FFFFFF;
}
.rotate-y-180-positive {
  transform: rotateY(180deg);
}
.rotate-y-180 {
  transform: rotateY(-180deg);
}
.rotate-y-0 {
  transform: rotateY(0deg);
}
.rotate-x-180 {
  transform: rotateX(180deg);
}
.rotate-x-0 {
  transform: rotateX(0deg);
}
.tiles-transform {
  transform-origin: 100% 213.5px;
}
.transition-effect {
  transition: 2s;
}
.transform-style {
  transform-style: preserve-3d;
}
.backface-visibility {
  backface-visibility: hidden;
}
.perspective {
  -ms-perspective: 1000;
  perspective: 1000;
}
.loading-page-progress {
  height: 120px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  clear: both;
  width: 100%;
}
.loading-page-progress .loading-spin-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.loading-page-progress .loading-spin-container .loading-message {
  margin-left: 16px;
}
.loading-page-progress .processing-icon {
  height: 22px;
  width: 22px;
  display: inline-block;
}
.loading-page-progress svg {
  margin: auto;
}
.loading-page-progress .spinner .svg-icon {
  animation: spin 1.5s linear infinite;
  float: left;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
/*MWF overrides*/
button.c-action-trigger,
a.c-action-trigger,
.c-action-trigger,
button.c-hyperlink,
a.c-hyperlink {
  color: #C30052;
  fill: #C30052;
  cursor: pointer;
  text-align: left;
  outline: none;
}
button.c-action-trigger:visited,
a.c-action-trigger:visited,
.c-action-trigger:visited,
button.c-hyperlink:visited,
a.c-hyperlink:visited {
  color: #C30052;
  fill: #C30052;
  cursor: pointer;
  text-align: left;
}
button.c-action-trigger.c-hyperlink.black-link,
a.c-action-trigger.c-hyperlink.black-link,
.c-action-trigger.c-hyperlink.black-link,
button.c-hyperlink.c-hyperlink.black-link,
a.c-hyperlink.c-hyperlink.black-link {
  color: #4A4A4A;
  fill: #4A4A4A;
}
button.c-action-trigger.c-hyperlink:hover,
a.c-action-trigger.c-hyperlink:hover,
.c-action-trigger.c-hyperlink:hover,
button.c-hyperlink.c-hyperlink:hover,
a.c-hyperlink.c-hyperlink:hover,
button.c-action-trigger.c-action-trigger:hover,
a.c-action-trigger.c-action-trigger:hover,
.c-action-trigger.c-action-trigger:hover,
button.c-hyperlink.c-action-trigger:hover,
a.c-hyperlink.c-action-trigger:hover,
button.c-action-trigger.c-hyperlink:focus,
a.c-action-trigger.c-hyperlink:focus,
.c-action-trigger.c-hyperlink:focus,
button.c-hyperlink.c-hyperlink:focus,
a.c-hyperlink.c-hyperlink:focus,
button.c-action-trigger.c-action-trigger:focus,
a.c-action-trigger.c-action-trigger:focus,
.c-action-trigger.c-action-trigger:focus,
button.c-hyperlink.c-action-trigger:focus,
a.c-hyperlink.c-action-trigger:focus {
  text-decoration: underline;
}
button.c-action-trigger.c-hyperlink:hover.no-hover,
a.c-action-trigger.c-hyperlink:hover.no-hover,
.c-action-trigger.c-hyperlink:hover.no-hover,
button.c-hyperlink.c-hyperlink:hover.no-hover,
a.c-hyperlink.c-hyperlink:hover.no-hover,
button.c-action-trigger.c-action-trigger:hover.no-hover,
a.c-action-trigger.c-action-trigger:hover.no-hover,
.c-action-trigger.c-action-trigger:hover.no-hover,
button.c-hyperlink.c-action-trigger:hover.no-hover,
a.c-hyperlink.c-action-trigger:hover.no-hover,
button.c-action-trigger.c-hyperlink:focus.no-hover,
a.c-action-trigger.c-hyperlink:focus.no-hover,
.c-action-trigger.c-hyperlink:focus.no-hover,
button.c-hyperlink.c-hyperlink:focus.no-hover,
a.c-hyperlink.c-hyperlink:focus.no-hover,
button.c-action-trigger.c-action-trigger:focus.no-hover,
a.c-action-trigger.c-action-trigger:focus.no-hover,
.c-action-trigger.c-action-trigger:focus.no-hover,
button.c-hyperlink.c-action-trigger:focus.no-hover,
a.c-hyperlink.c-action-trigger:focus.no-hover {
  color: #C30052;
  fill: #C30052;
}
button.c-action-trigger:hover,
button.c-hyperlink:hover,
button.c-action-trigger:focus,
button.c-hyperlink:focus {
  text-decoration: none;
}
a.c-hyperlink:hover,
a.c-action-trigger:hover,
a.c-hyperlink:focus,
a.c-action-trigger:focus {
  text-decoration: underline;
  color: #C30052;
  fill: #C30052;
}
button.c-hyperlink,
a.c-hyperlink {
  background: none;
  padding: 0px;
  border: none;
}
a.c-hyperlink[disabled],
button.c-hyperlink[disabled] {
  color: rgba(0, 0, 0, 0.2);
  cursor: not-allowed;
}
button.c-button[type=submit],
button.c-button[type=button],
button.c-button {
  background: #C30052;
}
button.c-button[type=submit]:not([disabled]),
button.c-button[type=button]:not([disabled]),
button.c-button:not([disabled]) {
  color: #FFFFFF;
  fill: #FFFFFF;
}
button.c-button[type=submit]:hover:not([disabled]),
button.c-button[type=button]:hover:not([disabled]),
button.c-button:hover:not([disabled]),
button.c-button[type=submit]:focus:not([disabled]),
button.c-button[type=button]:focus:not([disabled]),
button.c-button:focus:not([disabled]) {
  background: #C30052;
  color: #FFFFFF;
  fill: #FFFFFF;
}
button.c-button[type=submit]:disabled,
button.c-button[type=button]:disabled,
button.c-button:disabled,
button.c-button[type=submit]:hover:disabled,
button.c-button[type=button]:hover:disabled,
button.c-button:hover:disabled,
button.c-button[type=submit]:focus:disabled,
button.c-button[type=button]:focus:disabled,
button.c-button:focus:disabled {
  background-color: #F4F4F4;
  color: #CCCCCC;
  fill: #CCCCCC;
}
button.c-button[type=submit].lighter-gray-button:not([disabled]),
button.c-button[type=button].lighter-gray-button:not([disabled]),
button.c-button.lighter-gray-button:not([disabled]),
button.c-button[type=submit].light-gray-button:not([disabled]),
button.c-button[type=button].light-gray-button:not([disabled]),
button.c-button.light-gray-button:not([disabled]) {
  color: #4A4A4A;
  fill: #4A4A4A;
}
button.c-button[type=submit].lighter-gray-button:hover:not([disabled]),
button.c-button[type=button].lighter-gray-button:hover:not([disabled]),
button.c-button.lighter-gray-button:hover:not([disabled]),
button.c-button[type=submit].light-gray-button:hover:not([disabled]),
button.c-button[type=button].light-gray-button:hover:not([disabled]),
button.c-button.light-gray-button:hover:not([disabled]),
button.c-button[type=submit].lighter-gray-button:focus:not([disabled]),
button.c-button[type=button].lighter-gray-button:focus:not([disabled]),
button.c-button.lighter-gray-button:focus:not([disabled]),
button.c-button[type=submit].light-gray-button:focus:not([disabled]),
button.c-button[type=button].light-gray-button:focus:not([disabled]),
button.c-button.light-gray-button:focus:not([disabled]) {
  background: #C30052;
  color: #FFFFFF;
  fill: #FFFFFF;
}
button.c-button[type=submit].lighter-gray-button.no-hover:hover:not([disabled]),
button.c-button[type=button].lighter-gray-button.no-hover:hover:not([disabled]),
button.c-button.lighter-gray-button.no-hover:hover:not([disabled]),
button.c-button[type=submit].light-gray-button.no-hover:hover:not([disabled]),
button.c-button[type=button].light-gray-button.no-hover:hover:not([disabled]),
button.c-button.light-gray-button.no-hover:hover:not([disabled]),
button.c-button[type=submit].lighter-gray-button.no-hover:focus:not([disabled]),
button.c-button[type=button].lighter-gray-button.no-hover:focus:not([disabled]),
button.c-button.lighter-gray-button.no-hover:focus:not([disabled]),
button.c-button[type=submit].light-gray-button.no-hover:focus:not([disabled]),
button.c-button[type=button].light-gray-button.no-hover:focus:not([disabled]),
button.c-button.light-gray-button.no-hover:focus:not([disabled]) {
  background: #E5E5E5;
  color: #4A4A4A;
  fill: #4A4A4A;
}
button.c-button[type=submit].lighter-gray-button:not(:disabled),
button.c-button[type=button].lighter-gray-button:not(:disabled),
button.c-button.lighter-gray-button:not(:disabled) {
  background-color: #E5E5E5;
}
button.c-button[type=submit].light-gray-button:not(:disabled),
button.c-button[type=button].light-gray-button:not(:disabled),
button.c-button.light-gray-button:not(:disabled) {
  background-color: #D1D1D1;
}
button.c-button[type=submit].light-gray-button:hover:not([disabled]),
button.c-button[type=button].light-gray-button:hover:not([disabled]),
button.c-button.light-gray-button:hover:not([disabled]),
button.c-button[type=submit].light-gray-button:focus:not([disabled]),
button.c-button[type=button].light-gray-button:focus:not([disabled]),
button.c-button.light-gray-button:focus:not([disabled]) {
  background: #C30052;
  color: #FFFFFF;
}
button.c-button[type=submit].light-gray-button.no-hover:hover:not([disabled]),
button.c-button[type=button].light-gray-button.no-hover:hover:not([disabled]),
button.c-button.light-gray-button.no-hover:hover:not([disabled]),
button.c-button[type=submit].light-gray-button.no-hover:focus:not([disabled]),
button.c-button[type=button].light-gray-button.no-hover:focus:not([disabled]),
button.c-button.light-gray-button.no-hover:focus:not([disabled]) {
  background: #D1D1D1;
}
.c-select select {
  padding-bottom: 5px;
  padding-top: 5px;
  -moz-appearance: none;
  /* Firefox */
  -webkit-appearance: none;
  /* Safari and Chrome */
}
.c-select:after {
  height: 32px;
  width: 32px;
  top: 2px;
}
input.c-text-field[type=text],
.c-textarea textarea,
.c-search input[type=search],
.c-select select,
.c-combo input[type=text] {
  border-color: #8a8886;
}
input.c-text-field[type=text]:focus,
.c-textarea textarea:focus,
.c-search input[type=search]:focus,
.c-select select:focus,
.c-combo input[type=text]:focus,
input.c-text-field[type=text]:active,
.c-textarea textarea:active,
.c-search input[type=search]:active,
.c-select select:active,
.c-combo input[type=text]:active {
  border-color: #C30052;
}
input.c-text-field[type=text] {
  color: #4A4A4A;
}
.c-textarea textarea {
  border-color: white;
  color: #4A4A4A;
}
.c-checkbox input[type=checkbox]:checked:not([disabled]) + span:before,
.c-checkbox input[type=checkbox]:checked:not([disabled]):focus + span:before,
.c-checkbox input[type=checkbox]:checked:not([disabled]):hover + span:before {
  box-shadow: inset 0 0 0 10px #C30052;
}
input.search-input::-moz-placeholder {
  opacity: 1;
  color: #605E5C;
}
input.search-input:-ms-input-placeholder {
  opacity: 1;
  color: #605E5C;
}
input.search-input::placeholder {
  opacity: 1;
  color: #605E5C;
}
input.search-input:placeholder-shown {
  opacity: 1;
  color: #605E5C;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  color: #666666;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
  color: #666666;
}
input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #666666;
}
input:placeholder-shown,
textarea:placeholder-shown {
  opacity: 1;
  color: #666666;
}
.share-button .svg-container svg {
  color: #666666;
  fill: #666666;
}
.page-title {
  color: #605E5C;
}
html .title-heading {
  padding: 0;
  line-height: normal;
  font-weight: normal;
  display: -ms-flexbox;
  display: flex;
}
/* Helper Mixins */
.spin {
  animation: spin 1.5s linear infinite;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.white-outline:focus {
  outline: dashed #FFFFFF 1px;
}
.black-outline:focus {
  outline: dashed #000000 1px;
}
.black-outline-force:focus {
  outline: dashed #000000 1px !important;
}
.white-outline-all a:focus,
.white-outline-all button:focus,
.white-outline-all [tabindex]:focus,
.white-outline-all [role="button"]:focus,
.white-outline-all select:focus,
.white-outline-all input:focus,
.white-outline-all textarea:focus {
  outline: dashed #FFFFFF 1px;
}
.black-outline-all a:focus,
.black-outline-all button:focus,
.black-outline-all [tabindex]:focus,
.black-outline-all [role="button"]:focus,
.black-outline-all select:focus,
.black-outline-all input:focus,
.black-outline-all textarea:focus {
  outline: dashed #000000 1px;
}
.black-outline-all .media-player-controller .azuremediaplayer .vjs-player:focus {
  outline: dashed #000000 1px !important;
}
.black-outline-all .media-player-controller .azuremediaplayer .vjs-player:focus {
  box-shadow: 0 0 0 1px #FFFFFF;
}
.blue-outline:focus {
  outline: dashed #0078D7 1px;
}
.link-color-hover:hover:not([disabled]),
.link-color-hover:focus {
  color: #C30052;
  fill: #C30052;
}
.black-color-hover:hover:not([disabled]),
.black-color-hover:focus {
  color: #000000;
  fill: #000000;
}
.outline-offset-all a,
.outline-offset-all button,
.outline-offset-all [tabindex],
.outline-offset-all [role="button"],
.outline-offset-all select,
.outline-offset-all input,
.outline-offset-all textarea {
  outline-offset: -1px;
}
.outline-offset-contrast-mode-all a,
.outline-offset-contrast-mode-all button,
.outline-offset-contrast-mode-all [tabindex],
.outline-offset-contrast-mode-all [role="button"],
.outline-offset-contrast-mode-all select,
.outline-offset-contrast-mode-all input,
.outline-offset-contrast-mode-all textarea {
  outline-offset: -5px;
}
/*Gradient brackground*/
.white-gradient-background {
  background: linear-gradient(#EBEBEB, #FFFFFF);
  background: -o-linear-gradient(#EBEBEB, #FFFFFF);
  background-size: 100% 600px;
  background-repeat: no-repeat;
}
.gradiant-separator-lighting {
  background: linear-gradient(rgba(255, 255, 255, 0), #D1D1D1);
  opacity: 0.25;
  height: 15px;
}
.gradiant-separator-darkening {
  background: linear-gradient(rgba(255, 255, 255, 0), #888888);
  opacity: 0.25;
  height: 15px;
}
.padding-bottom-169 {
  padding-bottom: 56.25%;
  overflow: hidden;
}
.stream-container-169-parent {
  position: relative;
  width: 100%;
}
.stream-container-169 {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  height: 0px;
}
.stream-container-169-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}
.home-see-all-link {
  text-align: right;
  padding-right: 0.9375rem;
  padding-top: 55px;
}
@media only screen and (max-width: 767px) {
  .home-see-all-link {
    padding-top: 47px;
  }
}
.update-status {
  margin: 0;
  position: fixed;
  display: none;
  top: 108px;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 0;
}
.update-status h6 {
  padding: 6px 0;
  margin: 0;
  color: #FFFFFF;
}
.update-status section div.row {
  padding: 0;
}
.update-status .success-message {
  background-color: #7FD127;
}
.update-status .failure-message {
  background-color: #D02E00;
}
.element-invisible {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}
.pgc-table {
  font-size: 12px;
}
.pgc-table .pgc-table-header {
  height: 24px;
  font-size: 12px;
}
.pgc-table .pgc-table-header .pgc-checkbox-column:last-child {
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.pgc-table .pgc-table-header .pgc-info-column {
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      -ms-grid-row-align: center;
      align-items: center;
}
.pgc-table .pgc-table-header .pgc-checkbox-colum {
  -ms-flex-pack: center;
      justify-content: center;
  max-width: 60px;
  -ms-flex-align: center;
      -ms-grid-row-align: center;
      align-items: center;
}
.pgc-table .pgc-table-header .pgc-row tooltip {
  margin-left: 2px;
}
.pgc-table .pgc-table-header .pgc-checkbox-column:last-child {
  margin-left: 5px;
}
.pgc-table .pgc-table-body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.pgc-table .pgc-table-body .pgc-row {
  margin-left: -5px;
}
.pgc-table .pgc-table-body .pgc-row .pgc-info-column button {
  -ms-flex: 0 0 24px;
      flex: 0 0 24px;
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
  color: #666666;
  fill: #666666;
}
.pgc-table .pgc-table-body .pgc-row .pgc-info-column button[disabled] {
  color: #c8c8c8;
  fill: #c8c8c8;
}
.pgc-table .pgc-table-body .pgc-row .pgc-info-column button:focus {
  outline-offset: -6px;
}
.pgc-table .pgc-table-body .pgc-row .pgc-info-column button .svg-container {
  padding: 6px;
  width: 24px;
  height: 24px;
}
.pgc-table .pgc-table-body .pgc-row .pgc-info-column .pgc-image-container {
  -ms-flex: 0 0 20px;
      flex: 0 0 20px;
  margin: 2px;
}
.pgc-table .pgc-table-body .pgc-row .pgc-info-column .pgc-image-container svg-src {
  height: 20px;
  width: 20px;
}
.pgc-table .pgc-table-body .pgc-row .pgc-info-column .pgc-image-container img {
  border: 0px;
  border-radius: 50%;
  background-color: #000000;
  width: 100%;
  height: 100%;
  background-size: cover;
}
.pgc-table .pgc-table-body .pgc-row .pgc-info-column .pgc-text-container {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 0 0 12px;
  line-height: 24px;
  max-width: 188px;
  font-size: 12px;
}
.pgc-table .pgc-table-body .pgc-row .pgc-checkbox-column {
  padding: 4px 8px;
}
.pgc-table .pgc-row {
  display: -ms-flexbox;
  display: flex;
  height: 24px;
}
.pgc-table .pgc-row .pgc-info-column {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 80px;
      flex-basis: 80px;
  min-width: 80px;
}
.pgc-table .pgc-row .pgc-checkbox-column {
  width: 60px;
  -ms-flex-positive: 0;
      flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.pgc-table .pgc-row .pgc-checkbox-column .c-label {
  margin: 0;
}
.pgc-table .pgc-indent-1 {
  padding-left: 24px;
  width: 100%;
}
.pgc-table .pgc-indent-2 {
  padding-left: 48px;
  width: 100%;
}
.new-tab-navigation-bar {
  background-color: #FAF9f8;
}
.new-tab-navigation-bar.topbar-configuration {
  background-color: #FAF9f8;
  position: fixed;
  width: 100%;
  z-index: 11;
  top: 48px;
}
.new-tab-navigation-bar.o365-topnav-configuration {
  background-color: #FAF9f8;
  position: fixed;
  width: 100%;
  z-index: 11;
  top: 90px;
  height: 95px;
  padding-bottom: 20px;
}
.new-tab-navigation-bar .navigation-bar {
  display: -ms-flexbox;
  display: flex;
  margin-top: 0px;
}
.new-tab-navigation-bar .navigation-bar .tab-navigation.c-in-page-navigation {
  background-color: transparent;
}
.new-tab-navigation-bar .navigation-bar .right-buttons {
  display: -ms-flexbox;
  display: flex;
}
.new-tab-navigation-bar .navigation-bar .right-buttons button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  font-size: 14px;
  margin: 0;
  padding: 0;
  height: 44px;
}
.new-tab-navigation-bar .navigation-bar .right-buttons button .svg-container {
  height: 32px;
  width: 32px;
  padding: 8px;
}
@media screen and (max-width: 400px) {
  .new-tab-navigation-bar .navigation-bar .right-buttons button > span {
    display: none;
  }
}
.listpage-no-data-info {
  margin-top: 36px;
  background: #FAF9f8;
  text-align: center;
  color: #605E5C;
  padding: 22px 15px 26px;
  font-family: SegoeUI, 'Stream Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.listpage-no-data-info .text-container {
  font-size: 36px;
}
.listpage-no-data-info .sub-text-container {
  font-size: 15px;
  padding-top: 15px;
}
.listpage-no-data-info .error-text {
  font-size: 20px;
}
.carousel-place-holder {
  position: relative;
  width: 100%;
  height: 0px;
  min-height: 160px;
  padding-bottom: 30%;
  background-color: #1E1A1A;
}
.dialog-header-confirm .header-container {
  display: -ms-flexbox;
  display: flex;
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 15px;
}
.dialog-header-confirm .header-container .header {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 20px;
  font-weight: 600;
}
.dialog-header-confirm .header-container .delete-container {
  -ms-flex: 1 1 0px;
      flex: 1 1 0px;
  text-align: right;
  font-size: 12px;
}
.dialog-header-confirm .header-container .delete-container button.c-action-trigger.cancel-button {
  padding-left: 6px;
}
.dialog-header-confirm .header-container .delete-container .delete-group-confirm-text {
  position: relative;
  top: -1px;
  display: inline-block;
}
.dialog-header-confirm .header-container .delete-container button.c-action-trigger {
  font-size: 12px;
  padding: 0;
  margin: 0;
  padding-left: 12px;
  color: #666666;
}
.dialog-header-confirm .header-container .delete-container button.c-action-trigger:hover {
  color: #C30052;
}
.dialog-header-confirm .header-container .delete-container button.c-action-trigger button.c-action-trigger.cancel-button {
  padding-left: 8px;
}
.dialog-header-confirm .header-container .delete-container button.c-action-trigger button.c-action-trigger.cancel-button .svg-container .icon-inline {
  top: 1px;
}
.dialog-header-confirm .header-container .delete-container span.svg-container.icon-inline {
  height: 12px;
  width: 12px;
  position: relative;
  top: 0px;
  margin-right: 5px;
  left: 2px;
}
@media only screen and (max-width: 600px) {
  .dialog-header-confirm .header-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .dialog-header-confirm .header-container .delete-container {
    width: 100% !important;
    display: block;
    padding-top: 13px;
  }
  .dialog-header-confirm .header-container .header {
    width: 100%;
  }
  .dialog-header-confirm .header-container .delete-container .delete-container-inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-positive: 1;
        flex-grow: 1;
  }
  .dialog-header-confirm .header-container .delete-container .delete-group-confirm-text {
    -ms-flex-positive: 1;
        flex-grow: 1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: relative;
    top: 1px;
  }
  .dialog-header-confirm .header-container .delete-container button.c-action-trigger {
    margin-left: auto;
  }
  .dialog-header-confirm .header-container .delete-container button.c-action-trigger.delete-button {
    padding-left: 0px !important;
    margin-left: auto;
    -ms-flex-positive: 0;
        flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .dialog-header-confirm .header-container .delete-container button.c-action-trigger.cancel-button {
    padding-left: 10px;
    -ms-flex-positive: 0;
        flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.pgc-checkbox-column .c-checkbox.ct-checkbox {
  height: 12px;
  display: inline-block;
}
.pgc-checkbox-column .c-checkbox.ct-checkbox .c-label {
  padding-left: 0px;
}
.pgc-checkbox-column .c-checkbox.ct-checkbox .c-label input[type=checkbox] {
  left: -10px;
  top: -2px;
}
.pgc-checkbox-column .c-checkbox.ct-checkbox .c-label input[type=checkbox] + span:after {
  left: -6px;
}
.pgc-checkbox-column .c-checkbox.ct-checkbox .c-label input[type=checkbox] + span:before {
  left: -6px;
}
.pgc-checkbox-column .c-checkbox.ct-checkbox .c-label span {
  padding-left: 0px;
}
.tooltip-correction-one-top .tooltip-container {
  position: relative;
  top: 1px;
  left: -2px;
}
.tooltip-correction-one-bottom .tooltip-container {
  position: relative;
  top: -1px;
  left: -2px;
}
.new-list-page-style {
  background-color: #FAF9f8;
  min-height: 100vh;
}
.new-list-page-style .page-title,
.new-list-page-style .page-title-value {
  background-color: #FAF9f8;
}
.new-list-page-style .search-and-filter {
  background-color: #FAF9f8;
}
.new-list-page-style video-results div.row.column.row-size1.items-list .items-list-info-message.error-message-content {
  margin-top: 10px;
}
.read-only-mode-banner {
  background-color: #C30052;
  color: #FFFFFF;
  padding: 10px;
  font-size: 14px;
  line-height: normal;
  text-align: center;
}
.playback-progress-bar {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 3px;
}
.playback-progress-bar .progress-container .progressbar {
  background-color: #C30052;
}
/* Cohesion Team's controls */
body {
  color: #323130;
}
.c-label.ct-label-compact,
.ct-label-compact {
  font-size: 12px;
  line-height: 1;
  margin: 20px 0 4px 0;
  padding: 0;
}
input.ct-textbox-compact[type=text],
input.ct-textbox-compact[type=email] {
  font-size: 12px;
  padding: 4px;
  color: #323130;
  border: 1px solid #8a8886;
  clear: both;
  height: auto;
}
input.ct-textbox-compact[type=text]:focus,
input.ct-textbox-compact[type=email]:focus {
  border-color: #C30052;
}
input.ct-textbox-compact[type=text]:focus:hover,
input.ct-textbox-compact[type=email]:focus:hover {
  border-color: #C30052;
}
input.ct-textbox-compact[type=text]:hover,
input.ct-textbox-compact[type=email]:hover {
  border-color: #323130;
}
.c-textarea .ct-textarea-compact,
.ct-textarea-compact {
  font-size: 12px;
  padding: 4px 8px 4px 4px;
  resize: none;
  color: #323130;
  border: 1px solid #8a8886;
}
.c-textarea .ct-textarea-compact:focus,
.ct-textarea-compact:focus {
  border-color: #C30052;
}
.c-textarea .ct-textarea-compact:focus:hover,
.ct-textarea-compact:focus:hover {
  border-color: #C30052;
}
.c-textarea .ct-textarea-compact:hover,
.ct-textarea-compact:hover {
  border-color: #323130;
}
.ct-textarea-compact::-moz-placeholder {
  color: #605E5C;
}
.ct-textarea-compact:-ms-input-placeholder {
  color: #605E5C;
}
.ct-textarea-compact::placeholder {
  color: #605E5C;
}
.ct-textarea-compact:focus::-moz-placeholder {
  color: #323130;
}
.ct-textarea-compact:focus:-ms-input-placeholder {
  color: #323130;
}
.ct-textarea-compact:focus::placeholder {
  color: #323130;
}
.ct-textarea-compact:hover::-moz-placeholder {
  color: #323130;
}
.ct-textarea-compact:hover:-ms-input-placeholder {
  color: #323130;
}
.ct-textarea-compact:hover::placeholder {
  color: #323130;
}
.ct-dropdown-compact .drop-down .selector {
  height: 24px;
  border: 1px solid #8a8886;
}
.ct-dropdown-compact .drop-down .selector:focus {
  border-color: #C30052;
}
.ct-dropdown-compact .drop-down .selector:focus:hover {
  border-color: #C30052;
}
.ct-dropdown-compact .drop-down .selector:hover {
  border-color: #323130;
}
.ct-dropdown-compact .drop-down .selector:after {
  font-size: 12px;
  padding: 5px;
  height: 22px;
  width: 22px;
}
.ct-dropdown-compact .drop-down .selector div.option-item,
.ct-dropdown-compact .drop-down .selector div.display-name {
  height: 22px;
  line-height: 22px;
  font-size: 12px;
  padding: 0 0 0 26px;
}
.ct-dropdown-compact .drop-down .selector div.option-item.no-icon,
.ct-dropdown-compact .drop-down .selector div.display-name.no-icon {
  padding-left: 10px;
}
.ct-dropdown-compact .drop-down .selector div.display-name,
.ct-dropdown-compact .drop-down .selector div.option-item > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ct-dropdown-compact .drop-down .icon-container {
  height: 24px;
  width: 24px;
}
.ct-dropdown-compact .drop-down .icon-container.dropdown-arrow .svg-container {
  padding: 6px;
}
.ct-select-compact.c-select {
  max-width: none;
  height: 24px;
  width: 100%;
  margin-top: 0px;
}
.ct-select-compact.c-select select {
  padding-bottom: 0px;
  padding-top: 0px;
  font-size: 12px;
  border-color: #605E5C;
}
.ct-select-compact.c-select select:focus,
.ct-select-compact.c-select select:hover {
  border-color: #323130;
}
.ct-select-compact.c-select::after {
  padding-top: 0px;
  top: 6px;
  right: 2px;
  height: 12px;
  width: 28px;
}
.pgc-checkbox-column .c-checkbox {
  height: 12px;
}
.pgc-checkbox-column .c-checkbox .c-label {
  padding-left: 16px;
}
button.c-button.ct-button-compact {
  padding: 4px 12px 6px;
  font-size: 12px;
}
.c-checkbox.ct-checkbox label span {
  padding-left: 23px;
  font-size: 12px;
}
.c-checkbox.ct-checkbox label span.ct-confirmationDialogModel {
  font-size: 15px;
}
.c-checkbox.ct-checkbox input[type=checkbox]:checked:not([disabled]) + span:before,
.c-checkbox.ct-checkbox input[type=checkbox]:checked:not([disabled]):focus + span:before,
.c-checkbox.ct-checkbox input[type=checkbox]:checked:not([disabled]):hover + span:before {
  box-shadow: inset 0 0 0 1px #C30052, inset 0 0 0 10px #C30052;
}
.c-checkbox.ct-checkbox input[type=checkbox] + span:before,
.c-checkbox.ct-checkbox input[type=checkbox] + span:before,
.c-checkbox.ct-checkbox input[type=checkbox]:focus + span:before,
.c-checkbox.ct-checkbox input[type=checkbox]:hover + span:before {
  content: "";
  box-shadow: inset 0 0 0 1px #666666, inset 0 0 0 10px transparent;
  top: 0;
}
.c-checkbox.ct-checkbox.ct-checkbox-white input[type=checkbox] + span:before,
.c-checkbox.ct-checkbox.ct-checkbox-white input[type=checkbox] + span:before,
.c-checkbox.ct-checkbox.ct-checkbox-white input[type=checkbox]:focus + span:before,
.c-checkbox.ct-checkbox.ct-checkbox-white input[type=checkbox]:hover + span:before {
  content: "";
  box-shadow: inset 0 0 0 1px #FFFFFF, inset 0 0 0 10px transparent;
  top: 0;
}
.c-checkbox.ct-checkbox .c-label,
.c-checkbox.ct-checkbox .ct-label-compact {
  line-height: 11px;
}
.c-checkbox.ct-checkbox .c-label input[type=checkbox] + span:before,
.c-checkbox.ct-checkbox .ct-label-compact input[type=checkbox] + span:before {
  left: 0;
  position: absolute;
  height: 12px;
  width: 12px;
  top: 0;
}
.c-checkbox.ct-checkbox .c-label input[type=checkbox]:disabled + span,
.c-checkbox.ct-checkbox .ct-label-compact input[type=checkbox]:disabled + span,
.c-checkbox.ct-checkbox .c-label input[type=checkbox]:disabled + span,
.c-checkbox.ct-checkbox .ct-label-compact input[type=checkbox]:disabled + span {
  color: #A6A6A6;
}
.c-checkbox.ct-checkbox .c-label input[type=checkbox]:checked + span:after,
.c-checkbox.ct-checkbox .ct-label-compact input[type=checkbox]:checked + span:after,
.c-checkbox.ct-checkbox .c-label .checkbox input[type=checkbox]:checked + span:after,
.c-checkbox.ct-checkbox .ct-label-compact .checkbox input[type=checkbox]:checked + span:after {
  content: "\E73E";
  color: #ffffff;
  font-size: 8px;
  padding-left: 2px;
  padding-top: 1px;
  font-weight: bold;
}
.c-checkbox.ct-checkbox .c-label input[type=checkbox] + span:after,
.c-checkbox.ct-checkbox .ct-label-compact input[type=checkbox] + span:after,
.c-checkbox.ct-checkbox .c-label .checkbox input[type=checkbox] + span:after,
.c-checkbox.ct-checkbox .ct-label-compact .checkbox input[type=checkbox] + span:after,
.c-checkbox.ct-checkbox .c-label .checkbox input[type=checkbox] + span:before,
.c-checkbox.ct-checkbox .ct-label-compact .checkbox input[type=checkbox] + span:before {
  height: 12px;
  left: 0;
  position: absolute;
  width: 12px;
  top: 0;
}
.c-checkbox.ct-checkbox .c-label input[type="checkbox"]:disabled + span:after,
.c-checkbox.ct-checkbox .ct-label-compact input[type="checkbox"]:disabled + span:after {
  box-shadow: inset 0 0 0 1px #B3B3B3, inset 0 0 0 10px #B3B3B3;
}
.c-checkbox.ct-checkbox .c-label input[type=checkbox]:not([disabled]) + span:before,
.c-checkbox.ct-checkbox .ct-label-compact input[type=checkbox]:not([disabled]) + span:before,
.c-checkbox.ct-checkbox .c-label input[type=checkbox]:checked:not([disabled]) + span:before,
.c-checkbox.ct-checkbox .ct-label-compact input[type=checkbox]:checked:not([disabled]) + span:before,
.c-checkbox.ct-checkbox .c-label input[type=checkbox]:checked:not([disabled]):focus + span:before,
.c-checkbox.ct-checkbox .ct-label-compact input[type=checkbox]:checked:not([disabled]):focus + span:before,
.c-checkbox.ct-checkbox .c-label input[type=checkbox]:checked:not([disabled]):hover + span:before,
.c-checkbox.ct-checkbox .ct-label-compact input[type=checkbox]:checked:not([disabled]):hover + span:before {
  webkit-transition: all 250ms cubic-bezier(0.4, 0, 0.23, 1);
  transition: all 251ms cubic-bezier(0.4, 0, 0.23, 1);
  border-width: 8px;
}
.c-checkbox.ct-checkbox span {
  font-size: 12px;
}
.c-toggle.ct-toggle-compact button {
  display: inline-block;
  position: relative;
  width: 31px;
  height: 16px;
  background: 0 0;
  border: 1px solid #000;
  border-radius: 20px;
  margin-top: auto;
}
.c-toggle.ct-toggle-compact.settings-toggle button[aria-pressed=true]:after {
  left: 19px;
}
.c-toggle.ct-toggle-compact button:after {
  position: absolute;
  left: 4px;
  top: 3px;
  transition: all 0.1s ease;
  background: #000;
  content: "";
  border-radius: 10px;
  width: 8px;
  height: 8px;
}
@font-face {
  font-family: 'Stream Segoe UI';
  src: url(../../bundles/app/generated/segoeui.eot);
  src: url(../../bundles/app/generated/segoeui.eot?#iefix) format('embedded-opentype'), url(../../bundles/app/generated/segoeui.woff) format('woff'), url(../../bundles/app/generated/segoeui.ttf) format('truetype'), url(../../bundles/app/generated/segoeui.svg#StreamSegoeUI) format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Stream Segoe UI Light';
  src: url(../../bundles/app/generated/segoeuil.eot);
  src: url(../../bundles/app/generated/segoeuil.eot?#iefix) format('embedded-opentype'), url(../../bundles/app/generated/segoeuil.woff) format('woff'), url(../../bundles/app/generated/segoeuil.ttf) format('truetype'), url(../../bundles/app/generated/segoeuil.svg#StreamSegoeUILight) format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Stream Segoe UI Semilight';
  src: url(../../bundles/app/generated/segoeuisl.eot);
  src: url(../../bundles/app/generated/segoeuisl.eot?#iefix) format('embedded-opentype'), url(../../bundles/app/generated/segoeuisl.woff) format('woff'), url(../../bundles/app/generated/segoeuisl.ttf) format('truetype'), url(../../bundles/app/generated/segoeuisl.svg#StreamSegoeUISemilight) format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Stream Segoe UI Bold';
  src: url(../../bundles/app/generated/segoeuib.eot);
  src: url(../../bundles/app/generated/segoeuib.eot?#iefix) format('embedded-opentype'), url(../../bundles/app/generated/segoeuib.woff) format('woff'), url(../../bundles/app/generated/segoeuib.ttf) format('truetype'), url(../../bundles/app/generated/segoeuib.svg#StreamSegoeUIBold) format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Stream Segoe UI Semibold';
  src: url(../../bundles/app/generated/seguisb.eot);
  src: url(../../bundles/app/generated/seguisb.eot?#iefix) format('embedded-opentype'), url(../../bundles/app/generated/seguisb.woff) format('woff'), url(../../bundles/app/generated/seguisb.ttf) format('truetype'), url(../../bundles/app/generated/seguisb.svg#StreamSegoeUISemibold) format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Fabric External MDL2 Assets';
  src: url(../../bundles/app/generated/FabExMDL2.eot);
  src: url(../../bundles/app/generated/FabExMDL2.eot?#iefix) format('embedded-opentype'), url(../../bundles/app/generated/FabExMDL2.woff) format('woff'), url(../../bundles/app/generated/FabExMDL2.ttf) format('truetype'), url(../../bundles/app/generated/FabExMDL2.svg#Fabric%20External%20MDL2%20Assets) format('svg');
  font-weight: normal;
  font-style: normal;
}
.stream-btn-disabled.disabled,
.stream-btn-disabled[disabled] {
  background-color: #F3F2F1;
  border-color: #EAEAEA;
  color: #888888;
  fill: #888888;
  cursor: not-allowed;
  border: none;
}
.stream-btn-disabled-with-border.disabled,
.stream-btn-disabled-with-border[disabled] {
  background-color: #F3F2F1;
  border-color: #EAEAEA;
  color: #888888;
  fill: #888888;
  cursor: not-allowed;
  border: none;
}
.stream-btn-disabled-with-border.disabled,
.stream-btn-disabled-with-border[disabled] {
  background-color: #C8C8C8;
  border-color: #EAEAEA;
  color: #888888;
  cursor: not-allowed;
}
.stream-btn {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 32px;
  min-width: 84px;
  border-radius: 2px;
  border: none;
  font-family: SegoeUI, 'Stream Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  padding: 0px 20px 0px;
  background-color: #FFFFFF;
  color: #323130;
  font-weight: 600;
  border-width: 1px;
  border-style: solid;
  border-color: #8a8886;
}
.stream-btn.disabled,
.stream-btn[disabled] {
  background-color: #F3F2F1;
  border-color: #EAEAEA;
  color: #888888;
  fill: #888888;
  cursor: not-allowed;
  border: none;
}
.stream-btn:hover {
  background-color: #F3F2F1;
}
.stream-btn:hover:not(.disabled):not([disabled]) {
  cursor: pointer;
}
.stream-btn:active {
  background-color: #edebe9;
}
.stream-btn.btn-primary {
  background-color: #C30052;
  color: #FFFFFF;
  font-family: 'Segoe UI Semibold', 'Stream Segoe UI Semibold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  border: none;
}
.stream-btn.btn-primary:hover {
  background-color: #93003D;
}
.stream-btn.btn-primary:active {
  background-color: #6D002D;
}
.stream-btn.btn-primary.disabled,
.stream-btn.btn-primary[disabled] {
  font-family: SegoeUI, 'Stream Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: #F3F2F1;
  color: #A19F9D;
  cursor: not-allowed;
  border: none;
}
.stream-btn.btn-primary2 {
  background-color: #FFB900;
  color: #212121;
}
.stream-btn.btn-primary2.disabled,
.stream-btn.btn-primary2[disabled] {
  background-color: #F3F2F1;
  border-color: #EAEAEA;
  color: #888888;
  fill: #888888;
  cursor: not-allowed;
  border: none;
}
.stream-btn.btn-primary2.disabled,
.stream-btn.btn-primary2[disabled] {
  background-color: #C8C8C8;
  border-color: #EAEAEA;
  color: #888888;
  cursor: not-allowed;
}
.stream-btn.btn-admin-mode {
  background-color: #FFFFFF;
  color: #C30052;
}
.stream-btn.btn-admin-mode.disabled,
.stream-btn.btn-admin-mode[disabled] {
  border-color: #EAEAEA;
  color: #888888;
  cursor: not-allowed;
}
@media screen and (-ms-high-contrast: active) {
  .stream-btn {
    border: solid 1px;
  }
}
.stream-pill {
  border: none;
  border-radius: 8px;
  height: 16px;
  font-family: 'Segoe UI Bold', 'Stream Segoe UI Bold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  background-color: #EAEAEA;
  color: #4A4A4A;
  text-align: center;
  padding: 1px 12px;
  line-height: 14px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 550px) {
  .stream-pill {
    text-indent: 0px !important;
    padding: 1px 5px !important;
    width: auto !important;
  }
}
.stream-pill.pill-primary {
  background-color: #C30052;
  color: #FFFFFF;
}
.stream-pill.pill-primary2 {
  background-color: #FFB900;
  color: #212121;
}
.stream-pill.pill-secondary-red-color {
  background-color: #EAEAEA;
  color: #C30052;
}
@media screen and (-ms-high-contrast: active) {
  .stream-pill {
    border: solid 1px;
  }
}
.stream-pill-mini {
  width: 16px;
  height: 16px;
  padding: 0;
  border-radius: 8px;
  background-color: #EAEAEA;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.stream-pill-mini .pill-text {
  display: none;
}
.stream-pill-mini.pill-primary {
  background-color: #C30052;
}
.stream-pill-mini.pill-primary2 {
  background-color: #FFB900;
}
.stream-pill-mini.pill-secondary-red-color {
  background-color: white;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.stream-pill-mini.pill-secondary-red-color:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #C30052;
  border-radius: 8px;
}
html,
body {
  -webkit-overflow-scrolling: touch;
}
body {
  font-family: SegoeUI, 'Stream Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #FAF9f8;
}
body.-mouse.-should.-not.-have.-outline a,
body.-mouse.-should.-not.-have.-outline button,
body.-mouse.-should.-not.-have.-outline [tabindex],
body.-mouse.-should.-not.-have.-outline [role="button"],
body.-mouse.-should.-not.-have.-outline input[type=checkbox] + span:before,
body.-mouse.-should.-not.-have.-outline select,
body.-mouse.-should.-not.-have.-outline input,
body.-mouse.-should.-not.-have.-outline textarea {
  outline: none;
}
body.-mouse.-should.-not.-have.-outline .media-player-controller .azuremediaplayer .vjs-player {
  outline: none !important;
  box-shadow: none;
}
body.ngdialog-open {
  overflow: visible !important;
}
body.theme-for-videopage {
  background: #FAF9f8;
  overflow-x: hidden;
}
a:focus,
button:focus,
[tabindex]:focus,
[role="button"]:focus,
select:focus,
input:focus,
textarea:focus {
  outline: dashed #000000 1px;
}
.media-player-controller .azuremediaplayer .vjs-player:focus {
  outline: dashed #000000 1px !important;
}
.media-player-controller .azuremediaplayer .vjs-player:focus {
  box-shadow: 0 0 0 1px #FFFFFF;
}
input,
input[type="search"],
select,
textarea {
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  font-size: 14px;
}
@media only screen and (min-width: 768px) {
  input,
  input[type="search"],
  select,
  textarea {
    font-size: 14px;
  }
}
input::-ms-clear {
  display: none;
}
select {
  line-height: 20px;
}
.ngdialog .ngdialog-content {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  background-color: transparent;
}
.ngdialog div .c-group.action-buttons {
  padding: 2px;
}
div[ng-viewport] {
  height: calc(100vh);
}
.office-scroll-body div[ng-viewport] {
  background-color: #FAF9f8;
  height: auto;
  min-height: calc(100vh - 90px - 60px);
}
#obf-MainContainer label,
#obf-ToastContainer label {
  margin: initial;
}
#obf-MainContainer input[type=checkbox],
#obf-ToastContainer input[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  outline: initial;
  margin: 3px 3px 3px 4px;
}
#obf-MainContainer input[type=radio],
#obf-ToastContainer input[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  box-sizing: border-box;
  margin: 3px 3px 0 5px;
}
#obf-MainContainer #obf-BasicFormSubmitButton,
#obf-ToastContainer #obf-BasicFormSubmitButton {
  font-size: 14px;
  line-height: 20px;
  font-family: 'wf_SegoeUIRegular', 'wf_SegoeUI', 'Segoe UI Regular', 'Segoe UI', 'Segoe', 'Segoe WP', 'Tahoma', 'Verdana', 'Arial', 'sans-serif';
}
#obf-MainContainer #obf-TFormRatingQuestion,
#obf-ToastContainer #obf-TFormRatingQuestion {
  padding: 0 2px;
}
#obf-MainContainer #obf-TFormEmailCheckBox + label,
#obf-ToastContainer #obf-TFormEmailCheckBox + label {
  margin: 0 3px;
}
#obf-MainContainer #obf-TFormRating > fieldset > input,
#obf-ToastContainer #obf-TFormRating > fieldset > input {
  margin: 3px 3px 0 5px;
}
#obf-MainContainer #obf-TFormRating > fieldset > label,
#obf-ToastContainer #obf-TFormRating > fieldset > label {
  margin: 8px 6px;
  padding: 0;
}
#obf-MainContainer .obf-Link,
#obf-ToastContainer .obf-Link {
  color: #93003D;
  outline: 1px solid transparent;
}
.confirmation-dialog div.dialog-content {
  border: none;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 5px 0px;
}
.confirmation-dialog div.dialog-content .dialog-title {
  font-weight: 600;
  font-size: 18px;
}
.confirmation-dialog div.dialog-content .dialog-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  padding-top: 20px;
}
.confirmation-dialog div.dialog-content .dialog-footer .right,
.confirmation-dialog div.dialog-content .dialog-footer .left {
  float: left;
  width: 50%;
  height: 100%;
  position: relative;
}
.confirmation-dialog div.dialog-content .dialog-footer .right button,
.confirmation-dialog div.dialog-content .dialog-footer .left button {
  margin: 0 10px;
}
.confirmation-dialog div.dialog-content .dialog-footer .left button {
  float: right;
}
.confirmation-dialog div.dialog-content .dialog-footer .stream-btn {
  min-width: 80px;
  padding-left: 16px;
  padding-right: 16px;
}
.customScrollBar > div {
  box-sizing: content-box;
}
.ms-Dialog-main a:active,
.ms-Dialog-main a:focus,
.ms-Dialog-main a:hover,
.ms-Dialog-main a:link,
.ms-Dialog-main a:visited {
  text-decoration: none;
  color: #C30052;
}
.radio-button-group .radio-button-wrapper {
  float: left;
  padding-right: 20px;
}
read-less-read-more {
  display: block;
}
read-less-read-more .readlessreadmore {
  position: relative;
  display: inline-block;
}
read-less-read-more .readlessreadmore .contentwrapper {
  position: relative;
  overflow: hidden;
  line-height: 150%;
}
read-less-read-more .readlessreadmore .contentwrapper.show-ellipsis {
  margin-right: 10px;
}
read-less-read-more .readlessreadmore .ellipsis-label {
  position: absolute;
  bottom: 0px;
  right: 2px;
}
principal-list .search-box {
  margin: 16px 0 10px;
}
principal-list .c-group {
  margin-top: 48px;
  overflow: visible;
}
principal-list .c-group .c-checkbox.channel-permission {
  display: inline-block;
}
principal-list .c-group .c-checkbox.channel-permission .c-label {
  font-size: 13px;
  padding: 0;
  margin: 0;
}
principal-list .c-group .c-checkbox.channel-permission .c-label span {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 6px;
}
virtual-list .virtual-list {
  height: 100%;
  display: block;
  overflow: hidden;
  overflow-y: auto;
  position: relative;
}
virtual-list .virtual-list .scrollable-content {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 1px 1px 0 1px;
}
virtual-list .virtual-list .scrollable-content ng-transclude {
  display: block;
}
virtual-list .virtual-list-shadow-mask {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 18px;
  z-index: 1;
  background: linear-gradient(-180deg, rgba(128, 128, 128, 0.1) 0%, rgba(209, 209, 209, 0) 100%);
  pointer-events: none;
}
@media screen and (-ms-high-contrast: active) {
  virtual-list .virtual-list-shadow-mask {
    display: none;
  }
}
.time-picker-dropdown .drop-down .selector {
  height: 28px;
}
.time-picker-dropdown .drop-down .selector div.option-item,
.time-picker-dropdown .drop-down .selector div.display-name {
  height: 26px;
  line-height: 26px;
  font-size: 13px;
}
.time-picker-dropdown .drop-down .selector .drop-down-list-container > div.option-item {
  height: 36px;
  line-height: 36px;
  font-size: 13px;
}
.time-picker-dropdown .drop-down .selector div.highlighted {
  background-color: #F4F4F4;
}
.time-picker-dropdown .drop-down .selector .drop-down-list-container.scroll-list {
  background: #FFFFFF;
}
.time-picker-dropdown .drop-down .selector .drop-down-list-container.scroll-list:hover::-webkit-scrollbar {
  display: block;
}
.time-picker-dropdown .drop-down .selector .drop-down-list-container.scroll-list::-webkit-scrollbar {
  display: none;
  width: 14px;
}
.time-picker-dropdown .drop-down .selector .drop-down-list-container.scroll-list::-webkit-scrollbar-thumb {
  border-radius: 7px;
  background: #D1D1D1;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0);
  border-width: 3px;
  background-clip: padding-box;
}
.time-picker-dropdown .drop-down .selector .drop-down-list-container.scroll-list::-webkit-scrollbar-track {
  border-radius: 7px;
  background: rgba(255, 255, 255, 0);
}
.time-picker-dropdown .drop-down .icon-container {
  display: none;
}
.progress-container {
  height: 100%;
  position: relative;
  background-color: #D2D3D5;
  outline-offset: -1px;
}
.progress-container .progressbar {
  height: 100%;
  display: block;
  background-color: #7FD127;
  transition: ease 2s;
}
principal-group-compact button.c-glyph.c-action-trigger.remove-button {
  width: 12px;
  padding: 0px;
  height: 12px;
  margin: 0px;
  font-size: 13px;
  border: 0px;
}
principal-group-compact button.c-glyph.c-action-trigger.remove-button:before {
  content: "\E711";
  margin: 0;
  vertical-align: top;
}
principal-group-compact .profile-container.row {
  margin-top: 6px;
}
principal-group-compact .profile-compact-image-col.column {
  padding-left: 0px;
  padding-right: 0px;
  width: 24px;
  margin-top: 0px;
  margin: 0px;
}
principal-group-compact img.profile-compact-image {
  border: 0px;
  border-radius: 50%;
  background-color: #000000;
  width: 24px;
  height: 24px;
  background-size: cover;
}
principal-group-compact .name-col-compact {
  width: calc(100% - 45px);
  padding-left: 0px;
  display: inline-block;
}
principal-group-compact .name-line-compact.column {
  color: #323130;
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: calc(100% - 48px);
  padding-top: 2px;
  padding-left: 12px;
  padding-right: 0px;
  margin: 0px;
  text-align: left;
}
principal-group-compact .delete-col-compact.column {
  padding-left: 0px;
  padding-right: 0px;
  width: 24px;
  height: 24px;
}
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/**
 * Remove default margin.
 */
body {
  margin: 0;
}
/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}
/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}
/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}
/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}
/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}
/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}
/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}
/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}
/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}
/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  /* 2 */
  box-sizing: content-box;
}
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}
/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}
/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
.container {
  width: 100%;
}
.section {
  display: block;
  padding: 50px 0;
  width: 100%;
}
.section.section-size0 {
  padding: 0;
}
.section.section-size1 {
  padding: 10px 0;
}
.section.section-size2 {
  padding: 15px 0;
}
.section.section-size3 {
  padding: 30px 0;
}
.section.section-size5 {
  padding: 60px 0;
}
.section.section-size6 {
  padding: 100px 0;
}
.column + .column {
  margin-top: 6%;
}
.column > :last-child {
  margin-bottom: 0;
}
.column > :first-child {
  margin-top: 0;
}
.row + .row {
  margin-top: 6%;
}
.row + .row-divided {
  border-top: 1px solid #dedede;
  padding-top: 6%;
}
@media only screen and (min-width: 320px) {
  .column[class*="xsmall-"] + .column[class*="xsmall-"] {
    margin-top: 0;
  }
}
@media only screen and (min-width: 540px) {
  .column + .column {
    margin-top: 3%;
  }
  .column[class*="small-"] + .column[class*="small-"] {
    margin-top: 0;
  }
  .row + .row {
    margin-top: 50px;
  }
  .row + .row-size0 {
    margin-top: 0;
  }
  .row + .row-size1 {
    margin-top: 10px;
  }
  .row + .row-size2 {
    margin-top: 15px;
  }
  .row + .row-size3 {
    margin-top: 30px;
  }
  .row + .row-size4 {
    margin-top: 50px;
  }
  .row + .row-size5 {
    margin-top: 60px;
  }
  .row + .row-size6 {
    margin-top: 100px;
  }
}
@media only screen and (min-width: 768px) {
  .column[class*="medium-"] + .column[class*="medium-"] {
    margin-top: 0;
  }
  .row + .row-divided {
    margin-top: 25px;
    padding-top: 25px;
  }
  .row.row-middled {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
}
@media only screen and (min-width: 960px) {
  .column[class*="large-"] + .column[class*="large-"] {
    margin-top: 0;
  }
}
.pull-left {
  float: left !important;
}
.pull-right {
  float: right !important;
}
.nowrap {
  white-space: nowrap;
}
/*!
 * Foundation for Sites by ZURB
 * Version 6.2.1
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
.row {
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}
.row::before,
.row::after {
  content: ' ';
  display: table;
}
.row::after {
  clear: both;
}
.row.collapse > .column,
.row.collapse > .columns {
  padding-left: 0;
  padding-right: 0;
}
.row .row {
  max-width: none;
  margin-left: -0.9375rem;
  margin-right: -0.9375rem;
}
.row .row.collapse {
  margin-left: 0;
  margin-right: 0;
}
.row.expanded {
  max-width: none;
}
.row.expanded .row {
  margin-left: auto;
  margin-right: auto;
}
.column,
.columns {
  width: 100%;
  float: left;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}
.column:last-child:not(:first-child),
.columns:last-child:not(:first-child) {
  float: right;
}
.column.end:last-child:last-child,
.end.columns:last-child:last-child {
  float: left;
}
.column.row.row,
.row.row.columns {
  float: none;
}
.row .column.row.row,
.row .row.row.columns {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}
@media screen and (min-width: 20em) {
  .xsmall-1 {
    width: 8.33333%;
  }
  .xsmall-push-1 {
    position: relative;
    left: 8.33333%;
  }
  .xsmall-pull-1 {
    position: relative;
    left: -8.33333%;
  }
  .xsmall-offset-0 {
    margin-left: 0%;
  }
  .xsmall-2 {
    width: 16.66667%;
  }
  .xsmall-push-2 {
    position: relative;
    left: 16.66667%;
  }
  .xsmall-pull-2 {
    position: relative;
    left: -16.66667%;
  }
  .xsmall-offset-1 {
    margin-left: 8.33333%;
  }
  .xsmall-3 {
    width: 25%;
  }
  .xsmall-push-3 {
    position: relative;
    left: 25%;
  }
  .xsmall-pull-3 {
    position: relative;
    left: -25%;
  }
  .xsmall-offset-2 {
    margin-left: 16.66667%;
  }
  .xsmall-4 {
    width: 33.33333%;
  }
  .xsmall-push-4 {
    position: relative;
    left: 33.33333%;
  }
  .xsmall-pull-4 {
    position: relative;
    left: -33.33333%;
  }
  .xsmall-offset-3 {
    margin-left: 25%;
  }
  .xsmall-5 {
    width: 41.66667%;
  }
  .xsmall-push-5 {
    position: relative;
    left: 41.66667%;
  }
  .xsmall-pull-5 {
    position: relative;
    left: -41.66667%;
  }
  .xsmall-offset-4 {
    margin-left: 33.33333%;
  }
  .xsmall-6 {
    width: 50%;
  }
  .xsmall-push-6 {
    position: relative;
    left: 50%;
  }
  .xsmall-pull-6 {
    position: relative;
    left: -50%;
  }
  .xsmall-offset-5 {
    margin-left: 41.66667%;
  }
  .xsmall-7 {
    width: 58.33333%;
  }
  .xsmall-push-7 {
    position: relative;
    left: 58.33333%;
  }
  .xsmall-pull-7 {
    position: relative;
    left: -58.33333%;
  }
  .xsmall-offset-6 {
    margin-left: 50%;
  }
  .xsmall-8 {
    width: 66.66667%;
  }
  .xsmall-push-8 {
    position: relative;
    left: 66.66667%;
  }
  .xsmall-pull-8 {
    position: relative;
    left: -66.66667%;
  }
  .xsmall-offset-7 {
    margin-left: 58.33333%;
  }
  .xsmall-9 {
    width: 75%;
  }
  .xsmall-push-9 {
    position: relative;
    left: 75%;
  }
  .xsmall-pull-9 {
    position: relative;
    left: -75%;
  }
  .xsmall-offset-8 {
    margin-left: 66.66667%;
  }
  .xsmall-10 {
    width: 83.33333%;
  }
  .xsmall-push-10 {
    position: relative;
    left: 83.33333%;
  }
  .xsmall-pull-10 {
    position: relative;
    left: -83.33333%;
  }
  .xsmall-offset-9 {
    margin-left: 75%;
  }
  .xsmall-11 {
    width: 91.66667%;
  }
  .xsmall-push-11 {
    position: relative;
    left: 91.66667%;
  }
  .xsmall-pull-11 {
    position: relative;
    left: -91.66667%;
  }
  .xsmall-offset-10 {
    margin-left: 83.33333%;
  }
  .xsmall-12 {
    width: 100%;
  }
  .xsmall-offset-11 {
    margin-left: 91.66667%;
  }
  .xsmall-up-1 > .column,
  .xsmall-up-1 > .columns {
    width: 100%;
    float: left;
  }
  .xsmall-up-1 > .column:nth-of-type(1n),
  .xsmall-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xsmall-up-1 > .column:nth-of-type(1n+1),
  .xsmall-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .xsmall-up-1 > .column:last-child,
  .xsmall-up-1 > .columns:last-child {
    float: left;
  }
  .xsmall-up-2 > .column,
  .xsmall-up-2 > .columns {
    width: 50%;
    float: left;
  }
  .xsmall-up-2 > .column:nth-of-type(1n),
  .xsmall-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xsmall-up-2 > .column:nth-of-type(2n+1),
  .xsmall-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .xsmall-up-2 > .column:last-child,
  .xsmall-up-2 > .columns:last-child {
    float: left;
  }
  .xsmall-up-3 > .column,
  .xsmall-up-3 > .columns {
    width: 33.33333%;
    float: left;
  }
  .xsmall-up-3 > .column:nth-of-type(1n),
  .xsmall-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xsmall-up-3 > .column:nth-of-type(3n+1),
  .xsmall-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .xsmall-up-3 > .column:last-child,
  .xsmall-up-3 > .columns:last-child {
    float: left;
  }
  .xsmall-up-4 > .column,
  .xsmall-up-4 > .columns {
    width: 25%;
    float: left;
  }
  .xsmall-up-4 > .column:nth-of-type(1n),
  .xsmall-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xsmall-up-4 > .column:nth-of-type(4n+1),
  .xsmall-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .xsmall-up-4 > .column:last-child,
  .xsmall-up-4 > .columns:last-child {
    float: left;
  }
  .xsmall-up-5 > .column,
  .xsmall-up-5 > .columns {
    width: 20%;
    float: left;
  }
  .xsmall-up-5 > .column:nth-of-type(1n),
  .xsmall-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xsmall-up-5 > .column:nth-of-type(5n+1),
  .xsmall-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .xsmall-up-5 > .column:last-child,
  .xsmall-up-5 > .columns:last-child {
    float: left;
  }
  .xsmall-up-6 > .column,
  .xsmall-up-6 > .columns {
    width: 16.66667%;
    float: left;
  }
  .xsmall-up-6 > .column:nth-of-type(1n),
  .xsmall-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xsmall-up-6 > .column:nth-of-type(6n+1),
  .xsmall-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .xsmall-up-6 > .column:last-child,
  .xsmall-up-6 > .columns:last-child {
    float: left;
  }
  .xsmall-up-7 > .column,
  .xsmall-up-7 > .columns {
    width: 14.28571%;
    float: left;
  }
  .xsmall-up-7 > .column:nth-of-type(1n),
  .xsmall-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xsmall-up-7 > .column:nth-of-type(7n+1),
  .xsmall-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .xsmall-up-7 > .column:last-child,
  .xsmall-up-7 > .columns:last-child {
    float: left;
  }
  .xsmall-up-8 > .column,
  .xsmall-up-8 > .columns {
    width: 12.5%;
    float: left;
  }
  .xsmall-up-8 > .column:nth-of-type(1n),
  .xsmall-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xsmall-up-8 > .column:nth-of-type(8n+1),
  .xsmall-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .xsmall-up-8 > .column:last-child,
  .xsmall-up-8 > .columns:last-child {
    float: left;
  }
  .xsmall-collapse > .column,
  .xsmall-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .xsmall-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .xsmall-uncollapse > .column,
  .xsmall-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
  .xsmall-centered {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
  .xsmall-uncentered,
  .xsmall-push-0,
  .xsmall-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left;
  }
}
@media screen and (min-width: 33.75em) {
  .small-1 {
    width: 8.33333%;
  }
  .small-push-1 {
    position: relative;
    left: 8.33333%;
  }
  .small-pull-1 {
    position: relative;
    left: -8.33333%;
  }
  .small-offset-0 {
    margin-left: 0%;
  }
  .small-2 {
    width: 16.66667%;
  }
  .small-push-2 {
    position: relative;
    left: 16.66667%;
  }
  .small-pull-2 {
    position: relative;
    left: -16.66667%;
  }
  .small-offset-1 {
    margin-left: 8.33333%;
  }
  .small-3 {
    width: 25%;
  }
  .small-push-3 {
    position: relative;
    left: 25%;
  }
  .small-pull-3 {
    position: relative;
    left: -25%;
  }
  .small-offset-2 {
    margin-left: 16.66667%;
  }
  .small-4 {
    width: 33.33333%;
  }
  .small-push-4 {
    position: relative;
    left: 33.33333%;
  }
  .small-pull-4 {
    position: relative;
    left: -33.33333%;
  }
  .small-offset-3 {
    margin-left: 25%;
  }
  .small-5 {
    width: 41.66667%;
  }
  .small-push-5 {
    position: relative;
    left: 41.66667%;
  }
  .small-pull-5 {
    position: relative;
    left: -41.66667%;
  }
  .small-offset-4 {
    margin-left: 33.33333%;
  }
  .small-6 {
    width: 50%;
  }
  .small-push-6 {
    position: relative;
    left: 50%;
  }
  .small-pull-6 {
    position: relative;
    left: -50%;
  }
  .small-offset-5 {
    margin-left: 41.66667%;
  }
  .small-7 {
    width: 58.33333%;
  }
  .small-push-7 {
    position: relative;
    left: 58.33333%;
  }
  .small-pull-7 {
    position: relative;
    left: -58.33333%;
  }
  .small-offset-6 {
    margin-left: 50%;
  }
  .small-8 {
    width: 66.66667%;
  }
  .small-push-8 {
    position: relative;
    left: 66.66667%;
  }
  .small-pull-8 {
    position: relative;
    left: -66.66667%;
  }
  .small-offset-7 {
    margin-left: 58.33333%;
  }
  .small-9 {
    width: 75%;
  }
  .small-push-9 {
    position: relative;
    left: 75%;
  }
  .small-pull-9 {
    position: relative;
    left: -75%;
  }
  .small-offset-8 {
    margin-left: 66.66667%;
  }
  .small-10 {
    width: 83.33333%;
  }
  .small-push-10 {
    position: relative;
    left: 83.33333%;
  }
  .small-pull-10 {
    position: relative;
    left: -83.33333%;
  }
  .small-offset-9 {
    margin-left: 75%;
  }
  .small-11 {
    width: 91.66667%;
  }
  .small-push-11 {
    position: relative;
    left: 91.66667%;
  }
  .small-pull-11 {
    position: relative;
    left: -91.66667%;
  }
  .small-offset-10 {
    margin-left: 83.33333%;
  }
  .small-12 {
    width: 100%;
  }
  .small-offset-11 {
    margin-left: 91.66667%;
  }
  .small-up-1 > .column,
  .small-up-1 > .columns {
    width: 100%;
    float: left;
  }
  .small-up-1 > .column:nth-of-type(1n),
  .small-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .small-up-1 > .column:nth-of-type(1n+1),
  .small-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .small-up-1 > .column:last-child,
  .small-up-1 > .columns:last-child {
    float: left;
  }
  .small-up-2 > .column,
  .small-up-2 > .columns {
    width: 50%;
    float: left;
  }
  .small-up-2 > .column:nth-of-type(1n),
  .small-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .small-up-2 > .column:nth-of-type(2n+1),
  .small-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .small-up-2 > .column:last-child,
  .small-up-2 > .columns:last-child {
    float: left;
  }
  .small-up-3 > .column,
  .small-up-3 > .columns {
    width: 33.33333%;
    float: left;
  }
  .small-up-3 > .column:nth-of-type(1n),
  .small-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .small-up-3 > .column:nth-of-type(3n+1),
  .small-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .small-up-3 > .column:last-child,
  .small-up-3 > .columns:last-child {
    float: left;
  }
  .small-up-4 > .column,
  .small-up-4 > .columns {
    width: 25%;
    float: left;
  }
  .small-up-4 > .column:nth-of-type(1n),
  .small-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .small-up-4 > .column:nth-of-type(4n+1),
  .small-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .small-up-4 > .column:last-child,
  .small-up-4 > .columns:last-child {
    float: left;
  }
  .small-up-5 > .column,
  .small-up-5 > .columns {
    width: 20%;
    float: left;
  }
  .small-up-5 > .column:nth-of-type(1n),
  .small-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .small-up-5 > .column:nth-of-type(5n+1),
  .small-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .small-up-5 > .column:last-child,
  .small-up-5 > .columns:last-child {
    float: left;
  }
  .small-up-6 > .column,
  .small-up-6 > .columns {
    width: 16.66667%;
    float: left;
  }
  .small-up-6 > .column:nth-of-type(1n),
  .small-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .small-up-6 > .column:nth-of-type(6n+1),
  .small-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .small-up-6 > .column:last-child,
  .small-up-6 > .columns:last-child {
    float: left;
  }
  .small-up-7 > .column,
  .small-up-7 > .columns {
    width: 14.28571%;
    float: left;
  }
  .small-up-7 > .column:nth-of-type(1n),
  .small-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .small-up-7 > .column:nth-of-type(7n+1),
  .small-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .small-up-7 > .column:last-child,
  .small-up-7 > .columns:last-child {
    float: left;
  }
  .small-up-8 > .column,
  .small-up-8 > .columns {
    width: 12.5%;
    float: left;
  }
  .small-up-8 > .column:nth-of-type(1n),
  .small-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .small-up-8 > .column:nth-of-type(8n+1),
  .small-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .small-up-8 > .column:last-child,
  .small-up-8 > .columns:last-child {
    float: left;
  }
  .small-collapse > .column,
  .small-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .small-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .small-uncollapse > .column,
  .small-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
  .small-centered {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
  .small-uncentered,
  .small-push-0,
  .small-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left;
  }
}
@media screen and (min-width: 48em) {
  .medium-1 {
    width: 8.33333%;
  }
  .medium-push-1 {
    position: relative;
    left: 8.33333%;
  }
  .medium-pull-1 {
    position: relative;
    left: -8.33333%;
  }
  .medium-offset-0 {
    margin-left: 0%;
  }
  .medium-2 {
    width: 16.66667%;
  }
  .medium-push-2 {
    position: relative;
    left: 16.66667%;
  }
  .medium-pull-2 {
    position: relative;
    left: -16.66667%;
  }
  .medium-offset-1 {
    margin-left: 8.33333%;
  }
  .medium-3 {
    width: 25%;
  }
  .medium-push-3 {
    position: relative;
    left: 25%;
  }
  .medium-pull-3 {
    position: relative;
    left: -25%;
  }
  .medium-offset-2 {
    margin-left: 16.66667%;
  }
  .medium-4 {
    width: 33.33333%;
  }
  .medium-push-4 {
    position: relative;
    left: 33.33333%;
  }
  .medium-pull-4 {
    position: relative;
    left: -33.33333%;
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .medium-5 {
    width: 41.66667%;
  }
  .medium-push-5 {
    position: relative;
    left: 41.66667%;
  }
  .medium-pull-5 {
    position: relative;
    left: -41.66667%;
  }
  .medium-offset-4 {
    margin-left: 33.33333%;
  }
  .medium-6 {
    width: 50%;
  }
  .medium-push-6 {
    position: relative;
    left: 50%;
  }
  .medium-pull-6 {
    position: relative;
    left: -50%;
  }
  .medium-offset-5 {
    margin-left: 41.66667%;
  }
  .medium-7 {
    width: 58.33333%;
  }
  .medium-push-7 {
    position: relative;
    left: 58.33333%;
  }
  .medium-pull-7 {
    position: relative;
    left: -58.33333%;
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .medium-8 {
    width: 66.66667%;
  }
  .medium-push-8 {
    position: relative;
    left: 66.66667%;
  }
  .medium-pull-8 {
    position: relative;
    left: -66.66667%;
  }
  .medium-offset-7 {
    margin-left: 58.33333%;
  }
  .medium-9 {
    width: 75%;
  }
  .medium-push-9 {
    position: relative;
    left: 75%;
  }
  .medium-pull-9 {
    position: relative;
    left: -75%;
  }
  .medium-offset-8 {
    margin-left: 66.66667%;
  }
  .medium-10 {
    width: 83.33333%;
  }
  .medium-push-10 {
    position: relative;
    left: 83.33333%;
  }
  .medium-pull-10 {
    position: relative;
    left: -83.33333%;
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .medium-11 {
    width: 91.66667%;
  }
  .medium-push-11 {
    position: relative;
    left: 91.66667%;
  }
  .medium-pull-11 {
    position: relative;
    left: -91.66667%;
  }
  .medium-offset-10 {
    margin-left: 83.33333%;
  }
  .medium-12 {
    width: 100%;
  }
  .medium-offset-11 {
    margin-left: 91.66667%;
  }
  .medium-up-1 > .column,
  .medium-up-1 > .columns {
    width: 100%;
    float: left;
  }
  .medium-up-1 > .column:nth-of-type(1n),
  .medium-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-1 > .column:nth-of-type(1n+1),
  .medium-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .medium-up-1 > .column:last-child,
  .medium-up-1 > .columns:last-child {
    float: left;
  }
  .medium-up-2 > .column,
  .medium-up-2 > .columns {
    width: 50%;
    float: left;
  }
  .medium-up-2 > .column:nth-of-type(1n),
  .medium-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-2 > .column:nth-of-type(2n+1),
  .medium-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .medium-up-2 > .column:last-child,
  .medium-up-2 > .columns:last-child {
    float: left;
  }
  .medium-up-3 > .column,
  .medium-up-3 > .columns {
    width: 33.33333%;
    float: left;
  }
  .medium-up-3 > .column:nth-of-type(1n),
  .medium-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-3 > .column:nth-of-type(3n+1),
  .medium-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .medium-up-3 > .column:last-child,
  .medium-up-3 > .columns:last-child {
    float: left;
  }
  .medium-up-4 > .column,
  .medium-up-4 > .columns {
    width: 25%;
    float: left;
  }
  .medium-up-4 > .column:nth-of-type(1n),
  .medium-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-4 > .column:nth-of-type(4n+1),
  .medium-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .medium-up-4 > .column:last-child,
  .medium-up-4 > .columns:last-child {
    float: left;
  }
  .medium-up-5 > .column,
  .medium-up-5 > .columns {
    width: 20%;
    float: left;
  }
  .medium-up-5 > .column:nth-of-type(1n),
  .medium-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-5 > .column:nth-of-type(5n+1),
  .medium-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .medium-up-5 > .column:last-child,
  .medium-up-5 > .columns:last-child {
    float: left;
  }
  .medium-up-6 > .column,
  .medium-up-6 > .columns {
    width: 16.66667%;
    float: left;
  }
  .medium-up-6 > .column:nth-of-type(1n),
  .medium-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-6 > .column:nth-of-type(6n+1),
  .medium-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .medium-up-6 > .column:last-child,
  .medium-up-6 > .columns:last-child {
    float: left;
  }
  .medium-up-7 > .column,
  .medium-up-7 > .columns {
    width: 14.28571%;
    float: left;
  }
  .medium-up-7 > .column:nth-of-type(1n),
  .medium-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-7 > .column:nth-of-type(7n+1),
  .medium-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .medium-up-7 > .column:last-child,
  .medium-up-7 > .columns:last-child {
    float: left;
  }
  .medium-up-8 > .column,
  .medium-up-8 > .columns {
    width: 12.5%;
    float: left;
  }
  .medium-up-8 > .column:nth-of-type(1n),
  .medium-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-8 > .column:nth-of-type(8n+1),
  .medium-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .medium-up-8 > .column:last-child,
  .medium-up-8 > .columns:last-child {
    float: left;
  }
  .medium-collapse > .column,
  .medium-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .medium-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .medium-uncollapse > .column,
  .medium-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
  .medium-centered {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
  .medium-uncentered,
  .medium-push-0,
  .medium-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left;
  }
}
@media screen and (min-width: 60em) {
  .large-1 {
    width: 8.33333%;
  }
  .large-push-1 {
    position: relative;
    left: 8.33333%;
  }
  .large-pull-1 {
    position: relative;
    left: -8.33333%;
  }
  .large-offset-0 {
    margin-left: 0%;
  }
  .large-2 {
    width: 16.66667%;
  }
  .large-push-2 {
    position: relative;
    left: 16.66667%;
  }
  .large-pull-2 {
    position: relative;
    left: -16.66667%;
  }
  .large-offset-1 {
    margin-left: 8.33333%;
  }
  .large-3 {
    width: 25%;
  }
  .large-push-3 {
    position: relative;
    left: 25%;
  }
  .large-pull-3 {
    position: relative;
    left: -25%;
  }
  .large-offset-2 {
    margin-left: 16.66667%;
  }
  .large-4 {
    width: 33.33333%;
  }
  .large-push-4 {
    position: relative;
    left: 33.33333%;
  }
  .large-pull-4 {
    position: relative;
    left: -33.33333%;
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .large-5 {
    width: 41.66667%;
  }
  .large-push-5 {
    position: relative;
    left: 41.66667%;
  }
  .large-pull-5 {
    position: relative;
    left: -41.66667%;
  }
  .large-offset-4 {
    margin-left: 33.33333%;
  }
  .large-6 {
    width: 50%;
  }
  .large-push-6 {
    position: relative;
    left: 50%;
  }
  .large-pull-6 {
    position: relative;
    left: -50%;
  }
  .large-offset-5 {
    margin-left: 41.66667%;
  }
  .large-7 {
    width: 58.33333%;
  }
  .large-push-7 {
    position: relative;
    left: 58.33333%;
  }
  .large-pull-7 {
    position: relative;
    left: -58.33333%;
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .large-8 {
    width: 66.66667%;
  }
  .large-push-8 {
    position: relative;
    left: 66.66667%;
  }
  .large-pull-8 {
    position: relative;
    left: -66.66667%;
  }
  .large-offset-7 {
    margin-left: 58.33333%;
  }
  .large-9 {
    width: 75%;
  }
  .large-push-9 {
    position: relative;
    left: 75%;
  }
  .large-pull-9 {
    position: relative;
    left: -75%;
  }
  .large-offset-8 {
    margin-left: 66.66667%;
  }
  .large-10 {
    width: 83.33333%;
  }
  .large-push-10 {
    position: relative;
    left: 83.33333%;
  }
  .large-pull-10 {
    position: relative;
    left: -83.33333%;
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .large-11 {
    width: 91.66667%;
  }
  .large-push-11 {
    position: relative;
    left: 91.66667%;
  }
  .large-pull-11 {
    position: relative;
    left: -91.66667%;
  }
  .large-offset-10 {
    margin-left: 83.33333%;
  }
  .large-12 {
    width: 100%;
  }
  .large-offset-11 {
    margin-left: 91.66667%;
  }
  .large-up-1 > .column,
  .large-up-1 > .columns {
    width: 100%;
    float: left;
  }
  .large-up-1 > .column:nth-of-type(1n),
  .large-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-1 > .column:nth-of-type(1n+1),
  .large-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .large-up-1 > .column:last-child,
  .large-up-1 > .columns:last-child {
    float: left;
  }
  .large-up-2 > .column,
  .large-up-2 > .columns {
    width: 50%;
    float: left;
  }
  .large-up-2 > .column:nth-of-type(1n),
  .large-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-2 > .column:nth-of-type(2n+1),
  .large-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .large-up-2 > .column:last-child,
  .large-up-2 > .columns:last-child {
    float: left;
  }
  .large-up-3 > .column,
  .large-up-3 > .columns {
    width: 33.33333%;
    float: left;
  }
  .large-up-3 > .column:nth-of-type(1n),
  .large-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-3 > .column:nth-of-type(3n+1),
  .large-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .large-up-3 > .column:last-child,
  .large-up-3 > .columns:last-child {
    float: left;
  }
  .large-up-4 > .column,
  .large-up-4 > .columns {
    width: 25%;
    float: left;
  }
  .large-up-4 > .column:nth-of-type(1n),
  .large-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-4 > .column:nth-of-type(4n+1),
  .large-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .large-up-4 > .column:last-child,
  .large-up-4 > .columns:last-child {
    float: left;
  }
  .large-up-5 > .column,
  .large-up-5 > .columns {
    width: 20%;
    float: left;
  }
  .large-up-5 > .column:nth-of-type(1n),
  .large-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-5 > .column:nth-of-type(5n+1),
  .large-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .large-up-5 > .column:last-child,
  .large-up-5 > .columns:last-child {
    float: left;
  }
  .large-up-6 > .column,
  .large-up-6 > .columns {
    width: 16.66667%;
    float: left;
  }
  .large-up-6 > .column:nth-of-type(1n),
  .large-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-6 > .column:nth-of-type(6n+1),
  .large-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .large-up-6 > .column:last-child,
  .large-up-6 > .columns:last-child {
    float: left;
  }
  .large-up-7 > .column,
  .large-up-7 > .columns {
    width: 14.28571%;
    float: left;
  }
  .large-up-7 > .column:nth-of-type(1n),
  .large-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-7 > .column:nth-of-type(7n+1),
  .large-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .large-up-7 > .column:last-child,
  .large-up-7 > .columns:last-child {
    float: left;
  }
  .large-up-8 > .column,
  .large-up-8 > .columns {
    width: 12.5%;
    float: left;
  }
  .large-up-8 > .column:nth-of-type(1n),
  .large-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-8 > .column:nth-of-type(8n+1),
  .large-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .large-up-8 > .column:last-child,
  .large-up-8 > .columns:last-child {
    float: left;
  }
  .large-collapse > .column,
  .large-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .large-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .large-uncollapse > .column,
  .large-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
  .large-centered {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
  .large-uncentered,
  .large-push-0,
  .large-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left;
  }
}
/*!
 * Foundation for Sites by ZURB
 * Version 6.2.1
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
.hide {
  display: none !important;
}
.invisible {
  visibility: hidden;
}
@media screen and (min-width: 20em) {
  .hide-for-xsmall {
    display: none !important;
  }
}
@media screen and (max-width: 19.9375em) {
  .show-for-xsmall {
    display: none !important;
  }
}
@media screen and (min-width: 20em) and (max-width: 33.6875em) {
  .hide-for-xsmall-only {
    display: none !important;
  }
}
@media screen and (max-width: 19.9375em), screen and (min-width: 33.75em) {
  .show-for-xsmall-only {
    display: none !important;
  }
}
@media screen and (min-width: 33.75em) {
  .hide-for-small {
    display: none !important;
  }
}
@media screen and (max-width: 33.6875em) {
  .show-for-small {
    display: none !important;
  }
}
@media screen and (min-width: 33.75em) and (max-width: 47.9375em) {
  .hide-for-small-only {
    display: none !important;
  }
}
@media screen and (max-width: 33.6875em), screen and (min-width: 48em) {
  .show-for-small-only {
    display: none !important;
  }
}
@media screen and (min-width: 48em) {
  .hide-for-medium {
    display: none !important;
  }
}
@media screen and (max-width: 47.9375em) {
  .show-for-medium {
    display: none !important;
  }
}
@media screen and (min-width: 48em) and (max-width: 59.9375em) {
  .hide-for-medium-only {
    display: none !important;
  }
}
@media screen and (max-width: 47.9375em), screen and (min-width: 60em) {
  .show-for-medium-only {
    display: none !important;
  }
}
@media screen and (min-width: 60em) {
  .hide-for-large {
    display: none !important;
  }
}
@media screen and (max-width: 59.9375em) {
  .show-for-large {
    display: none !important;
  }
}
@media screen and (min-width: 60em) {
  .hide-for-large-only {
    display: none !important;
  }
}
@media screen and (max-width: 59.9375em) {
  .show-for-large-only {
    display: none !important;
  }
}
.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.show-on-focus:active,
.show-on-focus:focus {
  position: static !important;
  height: auto;
  width: auto;
  overflow: visible;
  clip: auto;
}
.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}
@media screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: block !important;
  }
}
@media screen and (orientation: portrait) {
  .show-for-landscape,
  .hide-for-portrait {
    display: none !important;
  }
}
.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}
@media screen and (orientation: landscape) {
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .hide-for-landscape,
  .show-for-portrait {
    display: block !important;
  }
}
.drawer {
  display: inline-block;
  position: relative;
}
.drawer button.c-action-trigger.c-glyph.drawer-button:not(.group-icon) {
  margin-top: 0px;
  min-width: 0px;
  border: 0px;
  vertical-align: middle;
  text-align: center;
  color: #323130;
  font-weight: 900;
  font-size: 18px;
  padding-top: 8px;
}
.drawer button.c-action-trigger.c-glyph.drawer-button:not(.group-icon):before {
  content: "\E712";
  width: 24px;
  height: 18px;
}
.drawer button.c-action-trigger.drawer-button-with-label {
  vertical-align: baseline;
}
.drawer button.c-action-trigger.drawer-button.c-glyph[aria-label] {
  margin-right: 0px;
}
.drawer .show-top-video {
  bottom: 34px;
}
.drawer .show-top {
  bottom: 44px;
}
.drawer .drawer-content {
  position: absolute;
  padding: 0px;
  right: 0px;
  z-index: 79;
  line-height: 24px;
  white-space: nowrap;
  background-color: #FFFFFF;
  transition: box-shadow 300ms ease;
  box-shadow: 0px 1.6px 3.6px 0px rgba(0, 0, 0, 0.13), 0px 0.3px 0.9px 0px rgba(0, 0, 0, 0.11);
  border-radius: 2px;
}
@media screen and (-ms-high-contrast: active) {
  .drawer .drawer-content {
    border: 1px solid;
  }
}
.drawer .drawer-content.allign-opp {
  left: 0;
  right: auto;
}
@media only screen and (max-width: 959px) and (min-width: 768px) {
  .drawer .drawer-content {
    z-index: 81;
  }
}
.drawer .collapsed {
  display: none;
}
.drawer button.c-action-trigger.drawer-content-item {
  width: 100%;
  height: 44px;
  line-height: 20px;
  min-width: 180px;
  margin: 0px;
  display: block;
  padding: 0px 10px 0px 0px;
  fill: #323130;
  font-size: 14px;
  text-align: left;
  color: #605E5C;
}
.drawer button.c-action-trigger.drawer-content-item:hover,
.drawer button.c-action-trigger.drawer-content-item:focus {
  cursor: pointer;
  text-decoration: none;
  color: #212121;
  fill: #212121;
  background-color: #F4F4F4;
}
.drawer button.c-action-trigger.drawer-content-item:before {
  width: 20px;
  height: 20px;
  font-size: 16px;
  font-weight: 100;
}
.drawer button.c-action-trigger.drawer-content-item:before .svg-container {
  margin: 12px;
}
.drawer button.c-action-trigger.drawer-content-item .icon-text {
  position: relative;
}
.drawer button.c-action-trigger.drawer-content-item .icon-text.svg-text {
  bottom: 5px;
}
.drawer button.c-action-trigger.drawer-content-item .icon-text.glyph-text {
  top: 2px;
}
.drawer button.c-action-trigger.c-glyph.drawer-button.drawer-button-without-label[expanded=true] {
  background-color: #F1F1F1;
  color: #000000;
  outline: none;
}
.drawer button.c-action-trigger.c-glyph.drawer-button.drawer-button-without-label[expanded=true] svg-src.ng-isolate-scope span svg.svg-icon {
  fill: #323130;
}
.drawer button.c-action-trigger.c-glyph.drawer-button.drawer-button-without-label:hover,
.drawer button.c-action-trigger.c-glyph.drawer-button.drawer-button-without-label:focus {
  background-color: #edebe9;
  opacity: 1;
  color: #323130;
  text-decoration: none;
}
.drawer button.c-action-trigger.c-glyph.drawer-button.drawer-button-without-label:hover svg-src.ng-isolate-scope span svg.svg-icon,
.drawer button.c-action-trigger.c-glyph.drawer-button.drawer-button-without-label:focus svg-src.ng-isolate-scope span svg.svg-icon {
  fill: #323130;
}
.drawer button.c-action-trigger.c-glyph.drawer-button:active {
  outline: none;
}
.drawer .small-icon {
  width: 20px;
  height: 20px;
  font-size: 16px;
  font-weight: 100;
}
.drawer .small-icon .svg-container {
  margin: 12px;
}
body.-mouse.-should.-not.-have.-outline button.c-action-trigger.drawer-content-item:focus:not(:hover) {
  background-color: transparent;
}
.picker-outter-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-align: center;
      align-items: center;
  cursor: pointer;
  position: relative;
}
.picker-outter-container input.moment-picker-input {
  border: 1px solid #666666;
  width: auto;
  height: auto;
  font-family: SegoeUI;
  font-size: 14px;
  color: #212121;
  padding: 6px 32px 7px 12px;
  min-width: 65px;
  margin-top: 0;
  width: 100%;
}
.picker-outter-container .svg-wrapper {
  height: 100%;
  top: 0;
  right: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 8px;
  position: absolute;
}
.picker-outter-container .svg-wrapper svg-src {
  display: -ms-flexbox;
  display: flex;
  width: 16px;
  height: 16px;
}
.moment-picker {
  position: absolute;
  z-index: 1060;
}
.moment-picker .moment-picker-container {
  color: #605E5C;
  min-width: 19em;
  background: #FFFFFF;
  border: none;
  position: absolute;
  margin-top: 4px;
  box-shadow: 0px -6.4px 14.4px 0px rgba(0, 0, 0, 0.13), 0px -1.2px 3.6px 0px rgba(0, 0, 0, 0.11);
}
.moment-picker .moment-picker-container:before,
.moment-picker .moment-picker-container:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-top: none;
  position: absolute;
  top: -9px;
  left: 15px;
}
.moment-picker .moment-picker-container:before {
  border-width: 9px;
}
.moment-picker .moment-picker-container:after {
  border-bottom-color: #FFFFFF;
  margin-top: 1px;
  margin-left: 1px;
}
.moment-picker.inline {
  display: block;
  position: relative;
}
.moment-picker.inline .moment-picker-container {
  position: relative;
  margin: 0;
}
.moment-picker.inline .moment-picker-container:before,
.moment-picker.inline .moment-picker-container:after {
  content: none;
}
.moment-picker.top .moment-picker-container {
  bottom: 100%;
  margin-top: auto;
  margin-bottom: 4px;
  box-shadow: 0px 6.4px 14.4px 0px rgba(0, 0, 0, 0.13), 0px 1.2px 3.6px 0px rgba(0, 0, 0, 0.11);
}
.moment-picker.top .moment-picker-container:before,
.moment-picker.top .moment-picker-container:after {
  border: 8px solid transparent;
  border-bottom: none;
  top: auto;
  bottom: -9px;
}
.moment-picker.top .moment-picker-container:before {
  border-width: 9px;
}
.moment-picker.top .moment-picker-container:after {
  border-top-color: #FFFFFF;
  margin-top: auto;
  margin-bottom: 1px;
}
.moment-picker.right .moment-picker-container {
  right: 0;
  margin-left: auto;
  margin-right: -0.5em;
}
.moment-picker.right .moment-picker-container:before,
.moment-picker.right .moment-picker-container:after {
  left: auto;
  right: 15px;
}
.moment-picker.right .moment-picker-container:after {
  margin-left: auto;
  margin-right: 1px;
}
.moment-picker table {
  border-collapse: collapse;
  border-spacing: 0;
  min-width: 100%;
  table-layout: fixed;
}
.moment-picker th {
  font-weight: bold;
}
.moment-picker th:first-child,
.moment-picker th:last-child {
  width: 2em;
}
.moment-picker th,
.moment-picker td {
  padding: 0;
  text-align: center;
  min-width: 2em;
  height: 40px;
  cursor: pointer;
}
.moment-picker th:hover,
.moment-picker td:hover,
.moment-picker th:focus,
.moment-picker td:focus {
  background-color: #D8D8D8;
}
.moment-picker th.highlighted,
.moment-picker td.highlighted {
  background-color: #DDDDDD;
}
.moment-picker th.disabled,
.moment-picker td.disabled,
.moment-picker th.disabled:hover,
.moment-picker td.disabled:hover {
  color: #A6A6A6;
  background: none;
  cursor: default;
}
.moment-picker td.today {
  background: #FFFFFF;
  color: #002050;
}
.moment-picker td.selected {
  color: #FFFFFF;
  border-color: #C30052;
  background-color: #C30052;
}
.moment-picker .decade-view td,
.moment-picker .year-view td {
  height: 3.4em;
}
.moment-picker .month-view td {
  width: 40px;
}
.moment-picker .month-view .moment-picker-specific-views table {
  font-size: 12px;
}
.moment-picker .month-view .moment-picker-specific-views table thead {
  color: #A6A6A6;
  border-bottom: 1px solid #C8C8C8;
}
.moment-picker .month-view .moment-picker-specific-views table thead th {
  background: none;
  cursor: default;
  height: 30px;
}
.moment-picker .month-view table.header-view tr {
  display: -ms-flexbox;
  display: flex;
}
.moment-picker .month-view table.header-view tr th {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.moment-picker .month-view table.header-view tr th:nth-child(2) {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  -ms-flex-order: -1;
      order: -1;
  -ms-flex-pack: start;
      justify-content: flex-start;
  padding-left: 14px;
}
.moment-picker .day-view td,
.moment-picker .hour-view td {
  height: 2.33333333em;
}
.moment-picker .minute-view td {
  height: 1.8em;
}
.drop-down {
  position: relative;
  width: 100%;
  border-color: #8a8886;
}
.drop-down:focus {
  border-color: #C30052;
}
.drop-down:hover {
  border-color: #323130;
}
.drop-down .drop-down-hidden-label {
  display: none;
}
.drop-down .icon-container {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 34px;
  width: 34px;
}
.drop-down .icon-container .svg-container {
  padding: 6px;
}
.drop-down .icon-container.dropdown-arrow {
  left: auto;
  right: 1px;
  top: 1px;
  fill: #4A4A4A;
  transition: all 100ms ease;
}
.drop-down .icon-container.dropdown-arrow .svg-container {
  padding: 10px;
}
.drop-down .selector {
  height: 36px;
  width: 100%;
  border: 1px solid #8a8886;
  cursor: pointer;
}
.drop-down .selector:focus {
  border-color: #C30052;
}
.drop-down .selector.disabled {
  color: #888888;
  background-color: #DCDCDC;
  border-color: #FFFFFF;
  cursor: not-allowed;
  pointer-events: none;
}
.drop-down .selector div.display-name {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding-left: 38px;
  border: none;
  background-color: #FFFFFF;
  cursor: pointer;
  font-size: 14px;
  line-height: 34px;
  padding-right: 36px;
}
.drop-down .selector div.display-name:focus {
  outline: none;
}
.drop-down .selector div.display-name.no-icon {
  padding-left: 10px;
  padding-right: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.drop-down .selector div.display-name.disabled {
  color: #888888;
  background-color: #dcdcdc;
  border-color: #ffffff;
  cursor: not-allowed;
  pointer-events: none;
}
.drop-down .drop-down-list-container.scroll-list {
  max-height: 300px;
  overflow-x: hidden;
  overflow-y: scroll;
  border-left: 1px solid #D1D1D1;
  border-right: 1px solid #D1D1D1;
  border-bottom: 1px solid #D1D1D1;
  margin-left: 1px;
  margin-top: 1px;
  z-index: 1001;
  position: relative;
  box-sizing: content-box;
}
.drop-down div.option-item {
  z-index: 10;
  margin: 1px -1px -2px -1px;
  background: #FFFFFF;
  box-shadow: 0px 5.9px 7.2px 0px rgba(0, 0, 0, 0.1);
  display: block;
  float: none;
  position: relative;
  height: 36px;
  padding: 7px 10px 7px 38px;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  outline-offset: -2px;
  text-align: left;
}
.drop-down div.option-item.no-icon {
  padding-left: 10px;
}
.drop-down div.option-item:last-of-type {
  box-shadow: 0px 6px 7.2px 0px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 3px 3px;
  border-bottom: 2px solid #FFFFFF;
}
.drop-down div.highlighted {
  background-color: #edebe9;
}
.drop-down .hidden-options .hidden-option {
  width: 0px;
  height: 0px;
  overflow: hidden;
}
.media-player-controller {
  width: 100%;
  height: 100%;
  position: relative;
  transition: 0s;
}
.media-player-controller .amp-stream-skin .vjs-error .vjs-error-display {
  display: none;
}
.video-error {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.radio-button .radio-button-input {
  position: absolute;
  cursor: pointer;
}
.radio-button input[type="radio"] {
  -webkit-appearance: radio;
     -moz-appearance: radio;
          appearance: radio;
  opacity: 0;
}
.radio-button .focused {
  outline: dashed #000000 1px;
}
.radio-button .radio-button-label-wrapper {
  margin-top: 0px;
  padding-left: 20px;
}
.radio-button .ct-radio-compact {
  height: 12px;
  width: 12px;
  pointer-events: none;
  position: absolute;
  box-sizing: border-box;
  border-width: 1px;
  border-style: solid;
  border-radius: 50%;
  padding-top: 2px;
  padding-left: 2px;
}
.radio-button .ct-radio-compact-inner {
  -ms-high-contrast-adjust: none;
  width: 6px;
  height: 6px;
  position: absolute;
  pointer-events: none;
  background-color: #333333;
  border-radius: 50%;
}
@media screen and (-ms-high-contrast: black-on-white) {
  .radio-button .ct-radio-compact-inner {
    background-color: #000000;
  }
}
@media screen and (-ms-high-contrast: white-on-black) {
  .radio-button .ct-radio-compact-inner {
    background-color: #FFFFFF;
  }
}
tooltip .tooltip-container {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
tooltip .tooltip-container button {
  padding: 2px;
  border: none;
  background-color: transparent;
  line-height: 14px;
  width: 15px;
  height: 15px;
  display: inline-block;
  color: #323130;
  fill: #323130;
}
tooltip .tooltip-container button svg-src.tool-tip-icon span.svg-container {
  margin-right: 0px;
  margin-bottom: 0px;
}
tooltip .tooltip-container button:hover {
  fill: #C30052;
  color: #C30052;
}
.tooltip-body {
  position: absolute;
  background-color: #000000;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  border: 1px solid #cac8c7;
  color: #FFFFFF;
  font-size: 12px;
  padding: 8px 12px;
  margin-bottom: 12px;
  z-index: 40;
  max-width: 320px;
}
.tooltip-body .bold-text-style {
  font-family: 'Segoe UI Bold', 'Stream Segoe UI Bold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  display: inline;
}
.tooltip-body .text-style {
  display: inline;
}
.tooltip-body .classification-block-style {
  display: block;
  margin-bottom: 12px;
}
.tooltip-body .classification-block-style-no-margin {
  display: block;
}
.tooltip-body::after {
  content: ' ';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -8px;
  left: 50%;
  border: 4px solid transparent;
  border-bottom-color: #000000;
  transform: translateX(-50%);
  pointer-events: none;
}
.tooltip-body.bottom-pointer::after {
  top: auto;
  bottom: -8px;
  border-top-color: #000000;
  border-bottom-color: transparent;
}
.tooltip-body.light-style {
  background-color: #FFFFFF;
  color: #323130;
  line-height: 18px;
  padding: 12px;
  font-size: 14px;
  font-weight: medium;
}
.tooltip-body.light-style::after {
  border-bottom-color: #FFFFFF;
}
.tooltip-body.light-style.bottom-pointer::after {
  border-top-color: #FFFFFF;
  border-bottom-color: transparent;
}
.tooltip-body.show-tip {
  visibility: visible;
  display: block;
  transition-delay: 250ms;
}
.tooltip-body.hide-tip {
  visibility: hidden;
  display: none;
  transition-delay: 250ms;
}
flex-drawer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.flex-drawer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  width: 100%;
  position: relative;
}
.flex-drawer .drawer-content-external li.drawer-item-external {
  display: inline-block;
  width: 32px;
  height: 32px;
  padding: 0px;
}
.flex-drawer .drawer-content-external li.drawer-item-external button.c-action-trigger.drawer-content-item {
  width: 100%;
  height: 100%;
  padding: 8px;
  margin: 0px;
  display: -ms-flexbox;
  display: flex;
  fill: #323130;
  color: #323130;
  font-size: 14px;
  text-align: center;
  min-width: 16px;
}
.flex-drawer .drawer-content-external li.drawer-item-external button.c-action-trigger.drawer-content-item.admin-mode-button {
  color: #9c0041;
  fill: #9c0041;
}
.flex-drawer .drawer-content-external li.drawer-item-external button.c-action-trigger.drawer-content-item:hover,
.flex-drawer .drawer-content-external li.drawer-item-external button.c-action-trigger.drawer-content-item:focus {
  cursor: pointer;
  text-decoration: none;
  color: #212121;
  fill: #212121;
  background-color: #DCDCDC;
}
.flex-drawer .drawer-content-external li.drawer-item-external button.c-action-trigger.drawer-content-item:before {
  width: 16px;
  height: 16px;
  font-size: 16px;
  font-weight: 100;
}
.flex-drawer .drawer-content-external li.drawer-item-external button.c-action-trigger.drawer-content-item .icon-text {
  position: relative;
}
.flex-drawer .drawer-content-external li.drawer-item-external button.c-action-trigger.drawer-content-item .icon-text.svg-text {
  bottom: 5px;
}
.flex-drawer .drawer-content-external li.drawer-item-external button.c-action-trigger.drawer-content-item .icon-text.glyph-text {
  top: 2px;
}
.flex-drawer ul {
  display: inline-block;
}
.flex-drawer .drawer-container {
  display: inline-block;
}
.flex-drawer button.c-action-trigger.drawer-button {
  margin-top: 0px;
  min-width: 0px;
  border: 0px;
  vertical-align: middle;
  text-align: center;
  font-weight: 900;
  font-size: 16px;
  margin: 0px;
  padding: 8px;
  display: inline-block;
  color: #605E5C;
}
.flex-drawer button.c-action-trigger.drawer-button.c-glyph:before {
  content: "\E712";
  padding: 0px;
  margin: 0px;
  margin-left: 0px;
  margin-right: 0px;
  vertical-align: top;
}
.flex-drawer button.c-action-trigger.drawer-button:hover,
.flex-drawer button.c-action-trigger.drawer-button:focus {
  cursor: pointer;
  text-decoration: none;
  color: #212121;
  fill: #212121;
}
.flex-drawer button.c-action-trigger.drawer-button-with-label {
  vertical-align: baseline;
}
.flex-drawer .show-top {
  bottom: 32px;
}
.flex-drawer .drawer-content {
  position: absolute;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.25);
  padding: 1px;
  right: 0px;
  /*ignore-Loc*/
  background-color: #FFFFFF;
  z-index: 79;
  white-space: nowrap;
  display: block;
  transition: box-shadow 300ms ease;
  box-shadow: 0px 1.6px 3.6px 0px rgba(0, 0, 0, 0.13), 0px 0.3px 0.9px 0px rgba(0, 0, 0, 0.11);
  border-radius: 2px;
}
@media screen and (-ms-high-contrast: active) {
  .flex-drawer .drawer-content {
    border: 1px solid;
  }
}
@media only screen and (max-width: 959px) and (min-width: 768px) {
  .flex-drawer .drawer-content {
    z-index: 81;
  }
}
.flex-drawer .collapsed {
  display: none;
}
.flex-drawer button.c-action-trigger.drawer-content-item {
  width: 100%;
  min-width: 180px;
  margin: 0px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  fill: #323130;
  color: #323130;
  font-size: 15px;
  text-align: left;
  height: 48px;
  padding: 0 24px 0 12px;
  outline-offset: -2px;
  border: 0;
}
.flex-drawer button.c-action-trigger.drawer-content-item:hover,
.flex-drawer button.c-action-trigger.drawer-content-item:focus {
  cursor: pointer;
  text-decoration: none;
  color: #212121;
  fill: #212121;
  background-color: #F4F4F4;
}
.flex-drawer button.c-action-trigger.drawer-content-item.admin-mode-button {
  color: #9c0041;
  fill: #9c0041;
}
.flex-drawer button.c-action-trigger.drawer-content-item .icon-text {
  position: relative;
  padding-left: 12px;
}
.flex-drawer .more-actions-button {
  height: 32px;
}
.flex-drawer .drawer-content .drawer-content-item svg-src {
  width: 32px;
  height: 32px;
}
.flex-drawer .drawer-content .drawer-content-item svg-src .svg-container {
  padding: 8px;
}
.flex-drawer button.c-action-trigger.c-glyph.drawer-button.drawer-button-without-label[aria-expanded=false]:hover,
.flex-drawer button.c-action-trigger.c-glyph.drawer-button.drawer-button-without-label[aria-expanded=false]:focus {
  background-color: #DCDCDC;
}
.flex-drawer button.c-action-trigger.c-glyph.drawer-button.drawer-button-without-label[expanded=true] {
  background-color: #DCDCDC;
}
.flex-drawer button.c-action-trigger.c-glyph.drawer-button:active {
  outline: none;
}
.flex-drawer .small-icon {
  width: 16px;
  height: 16px;
  font-size: 16px;
  font-weight: 100;
}
.custom-error-message {
  position: relative;
  width: 100%;
  color: #FFFFFF;
  min-height: 32px;
  background-color: #D02E00;
  line-height: 16px;
  font-size: 14px;
  display: -ms-flexbox;
  display: flex;
}
.custom-error-message.warning-message {
  background-color: #F9E385;
  color: #333333;
}
.custom-error-message.warning-message .error-icon .svg-container {
  fill: #333333;
}
.custom-error-message.subtle {
  color: #D02E00;
  background-color: transparent;
}
.custom-error-message.subtle .error-icon {
  display: none;
}
.custom-error-message .error-icon .svg-container {
  width: 32px;
  height: 32px;
  padding: 8px;
  fill: #FFFFFF;
}
.custom-error-message .message-container {
  padding: 8px 8px 8px 0px;
}
.custom-error-message.compact {
  line-height: 16px;
  font-size: 12px;
  min-height: 24px;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.custom-error-message.compact .error-icon .svg-container {
  width: 24px;
  height: 24px;
  padding: 4px;
}
.custom-error-message.compact .message-container {
  padding: 4px 6px;
}
.svg-container {
  display: inline;
  width: inherit;
  height: inherit;
  /* Targets displays using the Windows’ "High Contrast Black" theme: */
  /* Targets displays using the Windows’ "High Contrast White" theme: */
}
.svg-container.icon-inline {
  display: inline-block;
}
.svg-container .svg-icon {
  width: 100%;
  height: 100%;
}
.svg-container.disabled {
  opacity: 0.2;
  cursor: default;
}
.svg-container.svg-button:not(.disabled) {
  cursor: pointer;
}
.svg-container.svg-button:hover:not(.disabled) {
  background-color: inherit;
}
.svg-container.svg-button:active:not(.disabled) {
  background-color: inherit;
}
@media screen and (-ms-high-contrast: white-on-black) {
  .svg-container .svg-icon {
    fill: #FFFFFF;
    color: #FFFFFF;
  }
}
@media screen and (-ms-high-contrast: black-on-white) {
  .svg-container .svg-icon {
    fill: #000000;
    color: #000000;
  }
}
.custom-title-body {
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  padding: 0px 8px;
  color: #FFFFFF;
  font-family: SegoeUI, 'Stream Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 100;
  font-size: 14px;
  line-height: 28px;
  background-color: #000000;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  visibility: hidden;
  max-width: 400px;
  white-space: pre-wrap;
  word-break: break-word;
  overflow: hidden;
}
.custom-title-body::after {
  content: ' ';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -8px;
  left: 50%;
  border: 4px solid transparent;
  border-bottom-color: #000000;
  transform: translateX(-50%);
  pointer-events: none;
}
.custom-title-body.bottom-pointer::after {
  top: auto;
  bottom: -8px;
  border-top-color: #000000;
  border-bottom-color: transparent;
}
.custom-title-body.light-style {
  background-color: #FFFFFF;
  color: #212121;
  line-height: 18px;
  padding: 12px;
  font-size: 14px;
  font-weight: medium;
}
.custom-title-body.light-style::after {
  border-bottom-color: #FFFFFF;
}
.custom-title-body.light-style.bottom-pointer::after {
  border-top-color: #FFFFFF;
  border-bottom-color: transparent;
}
.custom-title-body.show-tip {
  visibility: visible;
  transition-delay: 500ms;
}
.volume-button button.volume-button-control.c-action-trigger {
  margin: 0px;
  padding: 4px;
  height: 32px;
  width: 32px;
  fill: #FFFFFF;
  color: #FFFFFF;
}
.volume-button button.volume-button-control.c-action-trigger:focus,
.volume-button button.volume-button-control.c-action-trigger:hover {
  fill: #FFFFFF;
  color: #FFFFFF;
}
.volume-button button.volume-button-control.c-action-trigger .volume-icon {
  height: 24px;
  width: 24px;
}
.caption-button button.caption-button-control {
  margin: 0px;
  padding-top: 6px;
  color: #FFFFFF;
  background: transparent;
  text-align: center;
  vertical-align: middle;
  border: 0;
  height: 46px;
  width: 32px;
  cursor: pointer;
  position: relative;
  font-family: azuremediaplayer;
  font-size: 16px;
  line-height: 32px;
}
.caption-button button.caption-button-control:before {
  content: "\E704";
}
.caption-button button.caption-indicator {
  border-bottom: 4px solid #888888;
}
.caption-button button.caption-empty {
  border-bottom: 4px solid transparent;
}
.items-list-container {
  width: 100%;
}
.items-list-container .item-animate.ng-move,
.items-list-container .item-animate.ng-enter,
.items-list-container .item-animate.ng-leave {
  transition: all ease-out 0.5s;
}
.items-list-container .item-animate.ng-leave.ng-leave-active,
.items-list-container .item-animate.ng-move,
.items-list-container .item-animate.ng-enter {
  opacity: 0;
}
.items-list-container .item-animate.ng-leave,
.items-list-container .item-animate.ng-move.ng-move-active,
.items-list-container .item-animate.ng-enter.ng-enter-active {
  opacity: 1;
}
items-list {
  display: inline-block;
  width: 100%;
}
items-list item-sizer {
  display: block;
}
items-list div.items-list-info-message {
  padding: 4px 0.9375rem 4px 0px;
  display: block;
  margin-bottom: 28px;
  color: #323130;
}
items-list div.items-list-info-message.error-message-content {
  padding-left: 0.9375rem;
  background-color: #D02E00;
  color: #FFFFFF;
}
items-list div.items-list-info-message.error-message-content .status-icon .svg-container .svg-icon {
  width: 16px;
  height: 16px;
  background-color: #FFFFFF;
  fill: #D02E00;
}
@media only screen and (max-width: 539px) {
  items-list .column.end.list-item.large-3.medium-4.small-6.xsmall-12 {
    float: none;
  }
}
items-list .list-item-fixed-margin + .list-item-fixed-margin {
  margin-top: 0px;
}
.items-list-hidden {
  visibility: hidden;
}
.share-with {
  margin-top: 0px;
}
.autoComplete {
  position: relative;
}
.autoComplete label.shareWith {
  display: inline-block;
  margin-right: 12px;
}
.autoComplete input[type=text] {
  margin: 0;
  max-width: none;
  min-width: 0;
  width: 100%;
}
.autoComplete button:hover {
  background-color: #E5E5E5;
}
.autoComplete button:focus {
  background-color: #D1D1D1;
}
.autoComplete button {
  width: 100%;
  background-color: white;
  text-align: left;
  border-style: none;
  position: relative;
  padding: 5px 0px 5px 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.autoComplete .profile-image-col {
  padding-left: 0px;
  display: inline-block;
  width: 36px;
  margin-right: 12px;
  float: left;
  padding-top: 2px;
}
.autoComplete .profile-image {
  border: 0px;
  border-radius: 50%;
  background-color: #000000;
  width: 36px;
  height: 36px;
  margin-right: 16px;
  background-size: cover;
}
.autoComplete .name-col {
  width: calc(100% - 55px);
  padding-left: 0px;
  display: inline-block;
}
.autoComplete .email-line {
  font-size: small;
  color: #231F20;
  margin-top: 0px;
}
.autoComplete .name-line {
  color: #323130;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.autoComplete ul {
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  z-index: 10;
  margin: 0;
  background: #FFFFFF;
  border: 1px solid #505050;
  border-top: 0 none;
  position: absolute;
  max-height: 500px;
}
.autoComplete ul li {
  margin: 1px 1px 1px 1px;
}
.autoComplete ul li button {
  background-color: transparent;
  border: none;
  text-align: left;
  width: 100%;
}
.autoComplete .custom-error-message {
  margin-top: 8px;
}
.autoComplete input.error-border {
  border: 1px solid #D02E00;
}
.fall-back {
  background-color: #414141;
  height: 100%;
}
.fall-back .streaming-service-icon-container {
  position: relative;
  height: 180px;
}
.fall-back .streaming-service-icon-container .streaming-service-icon {
  top: 50%;
  left: 50%;
  /*ignore-Loc*/
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  height: 60px;
}
.fall-back .error-message-container {
  text-align: center;
  background-color: #FFFFFF;
}
.fall-back .error-message-container .head {
  font-size: 36px;
  padding-top: 60px;
  font-weight: lighter;
}
.fall-back .error-message-container .message {
  font-size: 20px;
  padding-top: 36px;
}
.fall-back .error-message-container .info {
  font-size: 18px;
  padding-top: 36px;
  padding-bottom: 48px;
}
.fall-back .error-message-container .info .bold-text {
  font-weight: 600;
}
.fall-back .error-message-container .links {
  font-size: 16px;
  padding-bottom: 60px;
}
.fall-back .error-message-container .links .link {
  padding-top: 8px;
}
div.item-description {
  direction: ltr;
  /*ignore-Loc*/
  text-align: left;
}
div.item-description .time-stamp-tag {
  color: #C30052;
}
div.item-description .time-stamp-tag:hover {
  cursor: pointer;
}
.error-box {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  background-color: #212121;
}
.error-box .error-box-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: start;
      align-items: flex-start;
  color: #FFFFFF;
  width: 100%;
}
@media only screen and (max-width: 320px) {
  .error-box .error-box-content {
    padding: 0px 8px;
  }
}
@media only screen and (min-width: 320px) {
  .error-box .error-box-content {
    padding: 0px 20px;
  }
}
@media only screen and (min-width: 540px) {
  .error-box .error-box-content {
    padding: 0px 32px;
  }
}
@media only screen and (min-width: 768px) {
  .error-box .error-box-content {
    padding: 0px 52px;
  }
}
@media only screen and (min-width: 960px) {
  .error-box .error-box-content {
    padding: 0px 72px;
  }
}
.error-box .error-box-content .error-message-container {
  width: 100%;
  display: table;
}
@media only screen and (max-width: 540px) {
  .error-box .error-box-content .error-message-container .button-container {
    display: table-footer-group;
    margin-top: 9px;
  }
}
@media only screen and (max-width: 540px) {
  .error-box .error-box-content .error-message-container .button-container .stream-btn {
    margin-right: 4px;
  }
}
.error-box .error-box-content .error-message-container .session-info {
  font-size: 12px;
}
.error-box .error-box-content .error-message-container .session-info .message-error-code {
  padding-top: 4px;
  line-height: normal;
  font-weight: normal;
}
@media only screen and (max-width: 320px) {
  .error-box .error-box-content .error-message-container .session-info {
    display: none;
  }
}
@media only screen and (max-width: 540px) {
  .error-box .error-box-content .error-message-container .session-info {
    padding-bottom: 9px;
  }
}
@media only screen and (min-width: 540px) {
  .error-box .error-box-content .error-message-container .session-info {
    padding-top: 24px;
  }
}
@media only screen and (min-width: 768px) {
  .error-box .error-box-content .error-message-container .session-info {
    padding-top: 32px;
  }
}
.error-box .error-box-content .error-message-container .errortitle {
  padding-bottom: 0px;
  line-height: normal;
  padding-top: 8px;
}
.error-box .error-box-content .error-message-container .message {
  line-height: normal;
  font-weight: normal;
  padding-top: 8px;
  padding-bottom: 16px;
}
.error-box .error-box-content .error-message-container .message a {
  text-decoration: underline;
}
.error-box .error-box-content .error-message-container .message a:link {
  color: #D2D0CE;
}
.error-box .error-box-content .error-message-container .message a:visited {
  color: #D2D0CE;
}
.error-box .error-box-content .error-message-container .message a:hover {
  color: #BEBBB8;
}
.error-box .error-box-content .error-message-container .message a:focus {
  color: #D2D0CE;
}
.error-box .error-box-content .error-message-container .message a:active {
  color: #A19F9D;
}
.error-box .error-box-content .stream-app-name {
  position: absolute;
}
@media only screen and (max-width: 540px) {
  .error-box .error-box-content .stream-app-name {
    display: none;
  }
}
@media only screen and (min-width: 540px) {
  .error-box .error-box-content .stream-app-name {
    right: 24px;
    bottom: 18px;
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) {
  .error-box .error-box-content .stream-app-name {
    right: 40px;
    bottom: 32px;
  }
}
@media only screen and (min-width: 960px) {
  .error-box .error-box-content .stream-app-name {
    font-size: 20px;
  }
}
.error-box.not-player {
  padding-bottom: 0px;
  min-height: 100%;
}
.error-box.not-player .error-box-content {
  position: relative;
}
@media only screen and (min-width: 320px) {
  .error-box.not-player .error-box-content {
    padding: 0px 20px;
  }
}
@media only screen and (min-width: 540px) {
  .error-box.not-player .error-box-content {
    padding: 0px 32px;
  }
}
@media only screen and (min-width: 768px) {
  .error-box.not-player .error-box-content {
    padding: 0px 52px;
  }
}
@media only screen and (min-width: 960px) {
  .error-box.not-player .error-box-content {
    padding: 0px 72px;
  }
}
.error-box.not-player .error-box-content .error-message-container {
  width: 100%;
}
.error-box.not-player .error-box-content .error-message-container .errortitle {
  padding-top: 0px;
  padding-bottom: 0px;
  line-height: normal;
}
.error-box.not-player .error-box-content .error-message-container .message {
  line-height: normal;
  font-weight: normal;
  padding-top: 36px;
}
.error-box.not-player .error-box-content .error-message-container .message a {
  text-decoration: underline;
}
.error-box.not-player .error-box-content .error-message-container .message a:link {
  color: #D2D0CE;
}
.error-box.not-player .error-box-content .error-message-container .message a:visited {
  color: #D2D0CE;
}
.error-box.not-player .error-box-content .error-message-container .message a:hover {
  color: #BEBBB8;
}
.error-box.not-player .error-box-content .error-message-container .message a:focus {
  color: #D2D0CE;
}
.error-box.not-player .error-box-content .error-message-container .message a:active {
  color: #A19F9D;
}
.error-box.not-player .error-box-content .error-message-container .actions .action {
  line-height: normal;
}
.error-box.not-player .error-box-content .stream-app-name {
  position: absolute;
}
@media only screen and (max-width: 540px) {
  .error-box.not-player .error-box-content .stream-app-name {
    display: none;
  }
}
@media only screen and (min-width: 540px) {
  .error-box.not-player .error-box-content .stream-app-name {
    right: 24px;
    bottom: 18px;
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) {
  .error-box.not-player .error-box-content .stream-app-name {
    right: 40px;
    bottom: 32px;
  }
}
@media only screen and (min-width: 960px) {
  .error-box.not-player .error-box-content .stream-app-name {
    font-size: 20px;
  }
}
.error-box .error-box-content.full-screen.request-container {
  max-width: 1200px;
  -ms-flex-pack: center;
      justify-content: center;
  margin: 0 auto;
}
@media only screen and (min-width: 320px) {
  .error-box .error-box-content.full-screen.request-container {
    padding: 0px 20px;
  }
}
@media only screen and (min-width: 540px) {
  .error-box .error-box-content.full-screen.request-container {
    padding: 0px 32px;
  }
}
@media only screen and (min-width: 768px) {
  .error-box .error-box-content.full-screen.request-container {
    padding: 0px 52px;
  }
}
@media only screen and (min-width: 960px) {
  .error-box .error-box-content.full-screen.request-container {
    padding: 0px 72px;
  }
}
.error-box .error-box-content.full-screen.request-container .request-access-container {
  width: 100%;
  margin-bottom: 122px;
  text-align: center;
}
.error-box .error-box-content.full-screen.request-container .request-access-container .request-button-container {
  margin-top: 60px;
}
@media only screen and (max-width: 540px) {
  .error-box .error-box-content.full-screen.request-container .request-access-container .request-button-container {
    margin-top: 9px;
  }
}
@media only screen and (max-width: 540px) {
  .error-box .error-box-content.full-screen.request-container .request-access-container .request-button-container .stream-btn {
    margin-right: 4px;
  }
}
.error-box .error-box-content.full-screen.request-container .request-access-container .no_access_icon svg-src,
.error-box .error-box-content.full-screen.request-container .request-access-container .video_not_found_icon svg-src,
.error-box .error-box-content.full-screen.request-container .request-access-container .warning_icon svg-src,
.error-box .error-box-content.full-screen.request-container .request-access-container .waiting_icon svg-src {
  margin-bottom: 60px;
  text-align: center;
  height: 200px;
  max-height: 250px;
}
.error-box .error-box-content.full-screen.request-container .request-access-container .request-access-errortitle {
  padding-bottom: 0px;
  line-height: normal;
  padding-top: 8px;
  text-align: center;
  margin-top: 12px;
}
.error-box .error-box-content.full-screen.request-container .request-access-container .request-access-message {
  line-height: normal;
  font-weight: normal;
  padding-top: 8px;
  text-align: center;
  margin-top: 12px;
}
.error-box .error-box-content.full-screen.request-container .stream-app-name {
  position: absolute;
}
@media only screen and (max-width: 540px) {
  .error-box .error-box-content.full-screen.request-container .stream-app-name {
    display: none;
  }
}
@media only screen and (min-width: 540px) {
  .error-box .error-box-content.full-screen.request-container .stream-app-name {
    right: 24px;
    bottom: 18px;
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) {
  .error-box .error-box-content.full-screen.request-container .stream-app-name {
    right: 40px;
    bottom: 32px;
  }
}
@media only screen and (min-width: 960px) {
  .error-box .error-box-content.full-screen.request-container .stream-app-name {
    font-size: 20px;
  }
}
.error-box .error-box-content.full-screen {
  max-width: 1200px;
}
@media only screen and (min-width: 320px) {
  .error-box .error-box-content.full-screen {
    padding: 0px 20px;
  }
}
@media only screen and (min-width: 540px) {
  .error-box .error-box-content.full-screen {
    padding: 0px 32px;
  }
}
@media only screen and (min-width: 768px) {
  .error-box .error-box-content.full-screen {
    padding: 0px 52px;
  }
}
@media only screen and (min-width: 960px) {
  .error-box .error-box-content.full-screen {
    padding: 0px 72px;
  }
}
.error-box .error-box-content.full-screen .error-message-container {
  width: 100%;
}
@media only screen and (max-width: 540px) {
  .error-box .error-box-content.full-screen .error-message-container .button-container {
    display: table-footer-group;
    margin-top: 9px;
  }
}
@media only screen and (max-width: 540px) {
  .error-box .error-box-content.full-screen .error-message-container .button-container .stream-btn {
    margin-right: 4px;
  }
}
.error-box .error-box-content.full-screen .error-message-container .session-info {
  font-size: 12px;
}
.error-box .error-box-content.full-screen .error-message-container .session-info .message-error-code {
  padding-top: 4px;
  line-height: normal;
  font-weight: normal;
}
@media only screen and (max-width: 320px) {
  .error-box .error-box-content.full-screen .error-message-container .session-info {
    display: none;
  }
}
@media only screen and (max-width: 540px) {
  .error-box .error-box-content.full-screen .error-message-container .session-info {
    padding-bottom: 9px;
  }
}
@media only screen and (min-width: 540px) {
  .error-box .error-box-content.full-screen .error-message-container .session-info {
    padding-top: 24px;
  }
}
@media only screen and (min-width: 768px) {
  .error-box .error-box-content.full-screen .error-message-container .session-info {
    padding-top: 32px;
  }
}
.error-box .error-box-content.full-screen .error-message-container .errortitle {
  padding-bottom: 0px;
  line-height: normal;
  padding-top: 8px;
}
.error-box .error-box-content.full-screen .error-message-container .message {
  line-height: normal;
  font-weight: normal;
  padding-top: 8px;
}
.error-box .error-box-content.full-screen .error-message-container .message a {
  text-decoration: underline;
}
.error-box .error-box-content.full-screen .error-message-container .message a:link {
  color: #D2D0CE;
}
.error-box .error-box-content.full-screen .error-message-container .message a:visited {
  color: #D2D0CE;
}
.error-box .error-box-content.full-screen .error-message-container .message a:hover {
  color: #BEBBB8;
}
.error-box .error-box-content.full-screen .error-message-container .message a:focus {
  color: #D2D0CE;
}
.error-box .error-box-content.full-screen .error-message-container .message a:active {
  color: #A19F9D;
}
.error-box .error-box-content.full-screen .error-message-container .message.full-screen-links {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.error-box .error-box-content.full-screen .error-message-container .message.full-screen-links .search-link {
  padding-top: 12px;
}
.error-box .error-box-content.full-screen .error-message-container .message-error-code {
  padding-top: 4px;
  line-height: normal;
  font-weight: normal;
}
.error-box .error-box-content.full-screen .error-message-container .error-message-container {
  text-align: center;
}
.error-box .error-box-content.full-screen .stream-app-name {
  position: absolute;
}
@media only screen and (max-width: 540px) {
  .error-box .error-box-content.full-screen .stream-app-name {
    display: none;
  }
}
@media only screen and (min-width: 540px) {
  .error-box .error-box-content.full-screen .stream-app-name {
    right: 24px;
    bottom: 18px;
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) {
  .error-box .error-box-content.full-screen .stream-app-name {
    right: 40px;
    bottom: 32px;
  }
}
@media only screen and (min-width: 960px) {
  .error-box .error-box-content.full-screen .stream-app-name {
    font-size: 20px;
  }
}
.full-height {
  height: 100vh;
  position: fixed;
}
.slate {
  background-color: rgba(31, 26, 26, 0.85);
}
.principal-selector .limit-info {
  position: relative;
}
.principal-selector .limit-info svg-src.tool-tip-icon {
  position: absolute;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  display: inline-block;
  fill: #E01E2C;
}
.principal-selector .limit-info svg-src.tool-tip-icon span.svg-container {
  margin-right: 0px;
  margin-bottom: 0px;
}
.principal-selector .limit-info .limit-info-message {
  margin-left: 36px;
}
.principal-selector .list-area {
  max-height: 420px;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  margin-top: 15px;
}
.principal-selector .list-area button.c-glyph.c-action-trigger.remove-button {
  width: 16px;
  padding: 0px;
  height: 16px;
  margin: 0px;
  font-size: 13px;
  border: 0px;
  margin-top: 12px;
  margin-left: 0px;
}
.principal-selector .list-area button.c-glyph.c-action-trigger.remove-button:before {
  content: "\E711";
  margin: 0;
  color: #505050;
}
.principal-selector .list-area .column.profile-col {
  margin: 0px;
  padding: 0px;
  width: calc(100% - 26px);
}
.principal-selector .error-message {
  color: #ba141a;
  font-style: italic;
}
.principal-selector input.c-text-field[type=text] {
  height: 32px;
}
.principal-selector input.c-text-field[type=text] .email-field {
  margin-right: 12px;
  display: inline-block;
}
.principal-selector .add-button {
  margin-top: 16px;
  min-width: 60px;
  width: 100%;
}
.principal-selector .search-col {
  padding-left: 0px;
}
.principal-selector .share-with {
  font-size: 13px;
}
@media only screen and (min-width: 768px) {
  .principal-selector {
    min-height: 500px;
  }
}
.principal-selector .profile-image-col {
  padding-left: 0px;
  display: inline-block;
  width: 36px;
  margin-right: 12px;
  float: left;
  padding-top: 2px;
}
.principal-selector .profile-image {
  border: 0px;
  border-radius: 50%;
  background-color: #000000;
  width: 40px;
  height: 40px;
  margin-right: 16px;
  background-size: cover;
}
.principal-selector .name-col {
  width: calc(100% - 50px);
  padding-left: 0px;
  display: inline-block;
}
.principal-selector .column.search-col.delete-col {
  padding: 0px;
  margin: 0px;
  width: 20px;
}
.principal-selector .email-line {
  font-size: 10px;
  color: #231F20;
  margin-top: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.principal-selector .name-line {
  color: #323130;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-top: 6px;
}
.principal-selector .delete-col {
  text-align: center;
}
.principal-selector .delete-col button {
  height: 36px;
}
.stream-loading.embed-loading {
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.stream-loading .loading-spinner {
  background: url(../../bundles/app/generated/stream-loading.png);
  width: 170px;
  height: 75px;
  animation: play 1.3s steps(48) infinite;
  margin: 0;
}
.stream-loading .loading-message {
  font-size: 13px;
  padding-top: 40px;
}
.video-search {
  width: 100%;
}
.video-search .share-label {
  display: inline-block;
}
.video-search .search-row {
  font-size: 12px;
}
.video-search .search-row .search-type-dropdown {
  -ms-flex: 0 0 116px;
      flex: 0 0 116px;
}
.video-search .search-row .search-box {
  width: 100%;
}
.video-search .embed-max-height {
  max-height: 120px;
}
.video-search .normal-max-height {
  max-height: 350px;
}
.video-search .search-results {
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  z-index: 10;
  margin: 0;
  padding: 2px 0 0 0;
  background: #FFFFFF;
  border: 1px solid #c8c8c8;
  border-top: 0 none;
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.5);
  font-size: 12px;
}
.video-search .search-results.scroll-results {
  max-height: 300px;
}
.video-search .search-results .result-line .group-icon,
.video-search .search-results .result-line .profile-image-video {
  width: 32px;
  height: 18px;
  margin: 0;
}
.video-search .search-results .result-line .group-icon,
.video-search .search-results .result-line .profile-image-col {
  margin-right: 8px;
}
.video-search .search-results .result-line .profile-image-default svg {
  width: 32px;
  height: 18px;
  margin: 0;
}
.video-search .search-results .action-list-item {
  cursor: pointer;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-height: 24px;
}
.video-search .search-results .action-list-item:focus {
  outline: dashed #000000 1px;
  outline-offset: -1px;
}
.video-search .search-results .action-list-item:hover,
.video-search .search-results .action-list-item:focus {
  background-color: #F2F2F2;
}
.video-search .search-results .loading-row,
.video-search .search-results .error-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-height: 24px;
  -ms-flex-pack: center;
      justify-content: center;
  color: #605E5C;
  fill: #605E5C;
}
.video-search .search-results .loading-row .loading-icon,
.video-search .search-results .error-row .loading-icon {
  height: 16px;
  width: 16px;
}
.video-search .search-results .loading-row .loading-message,
.video-search .search-results .error-row .loading-message {
  margin-left: 8px;
}
.video-search .search-results .loading-row .error-message,
.video-search .search-results .error-row .error-message {
  width: 100%;
  font-style: italic;
}
.video-search .search-bar-container {
  max-width: 100%;
  margin-top: 0px;
  position: relative;
}
.video-search input.error-border {
  border: 1px solid #D02E00;
}
.video-search .custom-error-message {
  margin: 12px 0px;
}
.video-search .item-list {
  position: relative;
  border: 1px solid #EEF1F5;
  border-top: none;
}
.video-search .item-list .channel-item-row-header {
  border-bottom: 2px solid #BABABA;
  margin-bottom: 10px;
  padding-bottom: 5px;
}
.video-search .item-list .channel-item-row-body:hover {
  cursor: pointer;
  background-color: #F2F2F2;
}
.video-search .item-list list-row {
  margin: 0px 10px;
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}
.video-search .item-list list-row list-cell {
  width: 50%;
}
.video-search .item-list list-row list-cell .profile-image-channel {
  width: 20px;
  height: 20px;
  margin: 0;
  display: inline-block;
}
.video-search .item-list list-row list-cell .channel-label {
  font-weight: 600;
}
.video-search .item-list list-row list-cell .privacy-container {
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.video-search .item-list list-row list-cell .privacy-container .privacy-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
}
.video-search .item-list list-row list-cell .privacy-container .privacy-text {
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: 10px;
}
.video-search .name-column {
  display: block;
}
.video-search .name-column .inline-default-icon {
  display: inline-block;
}
.video-search .name-column .channel-title {
  margin-left: 5px;
}
.video-search .channel-poster {
  width: 20px;
  height: 20px;
  background-position: center;
  background-size: cover;
  position: relative;
  left: 0;
  vertical-align: middle;
}
.video-search .channel-poster.channel-poster-default {
  background: #000000;
}
.video-search .channel-poster.channel-poster-default .channel-poster-default-svg {
  width: 10px;
  height: 15px;
  fill: #999999;
  top: 50%;
  left: 50%;
  /*ignore-Loc*/
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
}
ended-live-player-overlay .ended-background {
  background: #212121;
  height: 100%;
  text-align: center;
  vertical-align: middle;
}
ended-live-player-overlay .poster {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}
ended-live-player-overlay .info-panel-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-flow: column;
      flex-flow: column;
  -ms-flex-align: start;
      align-items: flex-start;
}
ended-live-player-overlay .info-panel-container .info-panel {
  width: 100%;
  max-height: 100%;
  text-align: left;
  background: rgba(31, 26, 26, 0.75);
  padding: 8px 23px;
  color: #FFFFFF;
  font-family: 'Segoe UI Semilight', 'Stream Segoe UI Semilight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
ended-live-player-overlay .info-panel-container .info-panel .info-panel-wrapper {
  height: 100%;
  -ms-flex-align: start;
      -ms-grid-row-align: flex-start;
      align-items: flex-start;
  width: 100%;
}
ended-live-player-overlay .info-panel-container .info-panel .end-event-message {
  font-size: 28px;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 768px) {
  ended-live-player-overlay .info-panel-container .info-panel {
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: start;
        justify-content: flex-start;
    display: -ms-flexbox;
    display: flex;
  }
  ended-live-player-overlay .info-panel-container .info-panel .info-panel-wrapper {
    height: 100%;
    -ms-flex-align: start;
        -ms-grid-row-align: flex-start;
        align-items: flex-start;
  }
  ended-live-player-overlay .info-panel-container .info-panel .end-event-message {
    font-size: 30px;
    height: 40px;
    min-width: 100%;
  }
}
@media only screen and (max-width: 540px) {
  ended-live-player-overlay .info-panel-container .info-panel {
    padding: 8px 21px;
    height: 100%;
  }
  ended-live-player-overlay .info-panel-container .info-panel .info-panel-wrapper {
    height: 64px;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    min-width: 100%;
  }
  ended-live-player-overlay .info-panel-container .info-panel .end-event-message {
    font-size: 18px;
    height: 24px;
  }
}
@media only screen and (max-width: 320px) {
  ended-live-player-overlay .info-panel-container .info-panel {
    padding: 8px 8px;
  }
  ended-live-player-overlay .info-panel-container .info-panel .end-event-message {
    font-size: 14px;
    height: 19px;
  }
}
ended-live-player-overlay .stream-app-name {
  position: absolute;
  bottom: 10px;
}
@media only screen and (max-width: 540px) {
  ended-live-player-overlay .stream-app-name {
    display: none;
  }
}
@media only screen and (min-width: 540px) {
  ended-live-player-overlay .stream-app-name {
    right: 24px;
    bottom: 18px;
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) {
  ended-live-player-overlay .stream-app-name {
    right: 10px;
    bottom: 10px;
  }
}
@media only screen and (min-width: 960px) {
  ended-live-player-overlay .stream-app-name {
    font-size: 20px;
  }
}
.live-player-overlay .info-panel-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-flow: column;
      flex-flow: column;
  -ms-flex-align: start;
      align-items: flex-start;
}
.live-player-overlay .info-panel-container.producer-view {
  padding-bottom: 48px;
}
.live-player-overlay .info-panel-container .info-panel {
  width: 100%;
  max-height: 100%;
  background: rgba(31, 26, 26, 0.75);
  padding: 8px 23px;
  color: #FFFFFF;
  font-family: 'Segoe UI Semilight', 'Stream Segoe UI Semilight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  z-index: 1;
}
.live-player-overlay .info-panel-container .info-panel .info-panel-wrapper {
  height: 100%;
  -ms-flex-align: start;
      -ms-grid-row-align: flex-start;
      align-items: flex-start;
  width: 100%;
}
.live-player-overlay .info-panel-container .info-panel .video-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.live-player-overlay .info-panel-container .info-panel .video-date-time {
  margin-top: 8px;
}
.live-player-overlay .info-panel-container .info-panel .date-text {
  font-size: 18px;
  height: 24px;
}
.live-player-overlay .info-panel-container .info-panel .time-text,
.live-player-overlay .info-panel-container .info-panel .video-title {
  font-size: 36px;
  height: 48px;
}
@media only screen and (max-width: 768px) {
  .live-player-overlay .info-panel-container .info-panel {
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: start;
        justify-content: flex-start;
    display: -ms-flexbox;
    display: flex;
  }
  .live-player-overlay .info-panel-container .info-panel .info-panel-wrapper {
    height: 100%;
    -ms-flex-align: start;
        -ms-grid-row-align: flex-start;
        align-items: flex-start;
  }
  .live-player-overlay .info-panel-container .info-panel .video-title {
    font-size: 30px;
    height: 40px;
    min-width: 100%;
  }
  .live-player-overlay .info-panel-container .info-panel .video-date-time {
    margin-top: 18px;
    min-width: 100%;
  }
  .live-player-overlay .info-panel-container .info-panel .date-text {
    font-size: 16px;
    height: 21px;
  }
  .live-player-overlay .info-panel-container .info-panel .time-text {
    font-size: 24px;
    height: 32px;
  }
}
@media only screen and (max-width: 540px) {
  .live-player-overlay .info-panel-container .info-panel {
    padding: 8px 21px;
    height: 100%;
  }
  .live-player-overlay .info-panel-container .info-panel .info-panel-wrapper {
    height: 64px;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    min-width: 100%;
  }
  .live-player-overlay .info-panel-container .info-panel .video-date-time {
    margin-top: 8px;
  }
  .live-player-overlay .info-panel-container .info-panel .date-text {
    font-size: 12px;
    height: 16px;
  }
  .live-player-overlay .info-panel-container .info-panel .time-text,
  .live-player-overlay .info-panel-container .info-panel .video-title {
    font-size: 18px;
    height: 24px;
  }
}
@media only screen and (max-width: 320px) {
  .live-player-overlay .info-panel-container .info-panel {
    padding: 8px 8px;
  }
  .live-player-overlay .info-panel-container .info-panel .video-title {
    font-size: 14px;
    height: 19px;
  }
  .live-player-overlay .info-panel-container .info-panel .video-date-time {
    margin-top: 0px;
  }
  .live-player-overlay .info-panel-container .info-panel .date-text,
  .live-player-overlay .info-panel-container .info-panel .time-text {
    font-size: 12px;
    height: 16px;
  }
}
.live-player-overlay .live-poster-image {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}
.waiting-room-overlay {
  width: 100%;
  height: 100%;
  background-color: #212121;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999999;
}
.waiting-room-overlay .status-panel {
  display: block;
  padding: 0 9.3vw 5.2vw 9.3vw;
  max-width: 100%;
  max-height: 100%;
  background-color: #212121;
  font-size: 2.5vw;
  color: #FFFFFF;
}
.waiting-room-overlay .status-panel .title {
  font-size: 4.5vw;
}
.waiting-room-overlay .status-panel .body {
  padding: 7.5vw 10vw 7.5vw 0;
}
.waiting-room-overlay .status-panel .footer {
  max-width: 100%;
  height: 9vw;
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
}
.waiting-room-overlay .status-panel .footer .stream-app-name {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  text-align: right;
  font-size: 1.7vw;
}
.waiting-room-overlay .status-panel .logo-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-flow: row;
      flex-flow: row;
  vertical-align: middle;
  margin: 4.2vw 0;
  width: 100%;
}
.waiting-room-overlay .status-panel .logo-container .logo {
  width: 6.6vw;
  height: 6.34vw;
  margin-right: 3.75vw;
}
.confirmation-dialog .ct-checkbox {
  line-height: 20px;
}
.confirmation-dialog .ct-confirmationDialogModel {
  line-height: 20px;
}
.confirmation-dialog .c-checkbox.ct-checkbox .c-label input [type=checkbox] + span:before,
.confirmation-dialog .c-checkbox.ct-checkbox .ct-label-compact input[type=checkbox] + span:before {
  top: 4px;
}
.confirmation-dialog .action-buttons.flex-buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
}
.confirmation-dialog .action-buttons.flex-buttons .stream-btn {
  margin-left: 2px;
  margin-right: 2px;
}
.confirmation-dialog .action-buttons.flex-buttons .stream-btn:last-of-type {
  -webkit-margin-start: 0;
          margin-inline-start: 0;
}
.confirmation-dialog .action-buttons.flex-buttons .stream-btn:first-of-type {
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}
.confirmation-dialog .stream-btn {
  outline-offset: 1px;
  margin-left: 1px;
  margin-right: 1px;
  margin-bottom: 1px;
}
@media screen and (-ms-high-contrast: active) {
  .confirmation-dialog .stream-btn {
    border: 1px solid ButtonText;
  }
}
.confirmation-dialog .dialog-indent {
  padding-left: 30px;
}
.confirmation-dialog .dialog-indent .sub-heading {
  font-weight: 600;
}
.confirmation-dialog .dialog-content[role=dialog] {
  left: 0;
  top: 0;
  transform: none;
  position: relative;
  min-width: 320px;
}
.search-event {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-direction: column;
      flex-direction: column;
  font-size: 13px;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
.search-event .content {
  -ms-flex: auto;
      flex: auto;
  position: relative;
  background-color: #EAEAEA;
  transition: all 0.6s ease;
}
.search-event .search-event-wrapper {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.search-event .search-event-wrapper input:focus {
  outline: 1px dashed #000000;
}
.search-event .edit-event-button.c-glyph.c-action-trigger {
  height: 44px;
  width: 44px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0;
  padding: 12px;
  border-left: 1px solid #D1D1D1;
}
.search-event .edit-event-button.c-glyph.c-action-trigger svg.svg-icon {
  max-height: 16px;
  max-width: 16px;
}
.search-event .edit-event-button.c-glyph.c-action-trigger:focus,
.search-event .edit-event-button.c-glyph.c-action-trigger:hover {
  outline: none;
  color: #605E5C;
  fill: #605E5C;
}
.search-event .edit-event-button.c-glyph.c-action-trigger.edit-disabled {
  height: 44px;
  width: 44px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0;
  padding: 12px;
  border-left: 1px solid #D1D1D1;
  outline: none;
  color: #605E5C;
  fill: #605E5C;
}
.search-event .edit-event-button.c-glyph.c-action-trigger.edit-disabled svg.svg-icon {
  max-height: 16px;
  max-width: 16px;
}
.search-event .search-event-form {
  max-width: none;
  margin: 0;
  height: 2.46em;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex: 1 1 100%;
      flex: 1 1 100%;
  padding-right: 1px;
}
.search-event .search-event-form input.search-field {
  padding-right: 2.3em;
  padding-left: 2.3em;
  font-size: 1em;
  border: 1px solid #c8c8c8;
}
.search-event .search-event-form input.search-field:-webkit-autofill {
  box-shadow: 0px 0px 0px 1000px white inset;
}
.search-event .search-event-form input.search-field:hover {
  border-color: #c8c8c8;
}
.search-event .search-event-form input.search-field:focus {
  border-color: #C30052;
}
.search-event .search-event-form button.search-magnifier,
.search-event .search-event-form button.clear-button {
  position: absolute;
  width: 2.1em;
  height: 2.1em;
  padding: 0 0.42em 0 0.42em;
  margin: 2px 1px 1px 2px;
  border: 0;
}
.search-event .search-event-form button.search-magnifier {
  left: 0;
  top: 1px;
}
.search-event .search-event-form button.search-magnifier:before {
  content: "\E71E";
  font-size: 1em;
}
.search-event .search-event-form button.search-magnifier:focus {
  background-color: #C30052;
  color: #FFFFFF;
}
.search-event .search-event-form button.search-magnifier:hover:disabled {
  color: #323130;
}
.search-event .search-event-form button.clear-button {
  right: 0;
  top: 1px;
}
.search-event .search-event-form button.clear-button:before {
  content: "\E711";
  font-size: 1em;
}
.search-event .search-event-form button.clear-button:focus,
.search-event .search-event-form button.clear-button:hover {
  background-color: #FFFFFF;
  color: #C30052;
}
.search-event .no-search-result,
.search-event .searching,
.search-event .search-result {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 10;
  background-color: #FFFFFF;
}
.search-event .search-error {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.search-event .no-search-result,
.search-event .searching {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.search-event .no-search-result h6 {
  padding: 0;
}
.search-event .searching .searching-inner {
  width: auto;
  outline: none;
  position: relative;
}
.search-event .searching .searching-inner .c-progress {
  position: absolute;
  top: 0;
  left: 0;
}
.search-event .searching .searching-inner h6 {
  display: inline-block;
  line-height: 46px;
  padding: 0 0 0 30px;
}
.search-event .searching .c-progress.f-indeterminate-local.f-progress-small span {
  width: 20px;
  height: 20px;
}
.search-event .searching .c-progress.f-indeterminate-local.f-progress-small span:after {
  width: 2px;
  height: 2px;
  background: #C30052;
}
.search-event .search-result {
  overflow-y: auto;
}
.search-event .search-result::-webkit-scrollbar {
  width: 0.5em;
  height: 0.5em;
}
.search-event .search-result::-webkit-scrollbar-thumb {
  border-radius: 2em;
  background: #D1D1D1;
}
.search-event .search-result::-webkit-scrollbar-track {
  border-radius: 2em;
  background: #FFFFFF;
}
.search-event .search-result li:hover {
  background-color: #E5E5E5;
}
.search-event .search-result .transcript-cell {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 12px 28px 16px 12px;
  cursor: pointer;
}
.search-event .search-result .transcript-cell .transcript-icon {
  padding: 0;
  margin: 0;
  -ms-flex: 0 0 40px;
      flex: 0 0 40px;
}
.search-event .search-result .transcript-cell .transcript-icon .icon-container {
  width: 20px;
  height: 20px;
}
.search-event .search-result .transcript-cell .transcript-text {
  padding: 0;
  margin: 0;
  -ms-flex: 1 1 0px;
      flex: 1 1 0px;
  color: #605E5C;
}
.search-event .search-result .transcript-cell .transcript-text .transcript-text-time {
  font-weight: bold;
}
.search-event .transclude-content {
  position: absolute;
  top: 18px;
  right: 0;
  left: 0;
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.search-event .transclude-content ng-transclude {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  height: 100%;
}
.dialog-box.session-expired-dialog-box .dialog-container .dialog-footer,
.dialog-box.session-expired-dialog-box .dialog-container .dialog-header {
  display: none;
}
.dialog-box.session-expired-dialog-box .dialog-container {
  max-width: 750px;
}
.dialog-box.session-expired-dialog-box .dialog-container .dialog-content {
  padding: 20px;
}
.dialog-box.session-expired-dialog-box .dialog-container .dialog-content .row + .row {
  margin-top: 22px;
}
.dialog-box.session-expired-dialog-box .icon-container {
  position: absolute;
  height: 65px;
  width: 64px;
}
.dialog-box.session-expired-dialog-box .data-container {
  margin-left: 96px;
}
.dialog-box.session-expired-dialog-box h4 {
  padding: 0;
  padding-bottom: 20px;
  line-height: 20px;
}
.dialog-box.session-expired-dialog-box .bold-text {
  font-weight: 600;
}
.dialog-box.session-expired-dialog-box .close-dialog-button {
  position: relative;
  float: left;
  margin-left: 96px;
}
.video-statistics .view-count,
.video-statistics .like-count,
.video-statistics .comment-count {
  padding-right: 16px;
  text-align: left;
  vertical-align: central;
  white-space: nowrap;
  color: #605E5C;
  fill: #605E5C;
}
.video-statistics .metric-inline-flex {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  line-height: 15px;
  padding-right: 8px;
  position: relative;
}
.video-statistics .metric-inline-flex .metric-icon {
  display: inline-block;
  width: 17px;
  height: 16px;
  fill: #FFFFFF;
  margin-left: 2px;
}
.video-meta-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  color: #FFFFFF;
  padding: 16px 0px;
}
.video-meta-overlay a:focus,
.video-meta-overlay button:focus,
.video-meta-overlay [tabindex]:focus,
.video-meta-overlay [role="button"]:focus,
.video-meta-overlay select:focus,
.video-meta-overlay input:focus,
.video-meta-overlay textarea:focus {
  outline: dashed #FFFFFF 1px;
}
.video-meta-overlay .pointer-events-auto {
  pointer-events: auto;
}
.video-meta-overlay .video-title {
  padding: 0px;
  font-family: SegoeUI, 'Stream Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 24px;
  line-height: normal;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.video-meta-overlay .video-title a {
  display: -ms-inline-flexbox;
  display: inline-flex;
  max-width: 100%;
}
.video-meta-overlay .video-title a:hover,
.video-meta-overlay .video-title a:focus {
  text-decoration: underline;
  -webkit-text-decoration-color: #FFFFFF;
          text-decoration-color: #FFFFFF;
  outline-offset: -2px;
}
.video-meta-overlay .video-title .inner-background {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.video-meta-overlay .statistics-container {
  display: block;
}
.video-meta-overlay .actions-container {
  margin-top: 24px;
  padding-left: 24px;
}
.video-meta-overlay .actions-container .action-button {
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 36px;
  height: 36px;
  background-color: rgba(31, 26, 26, 0.75);
  border: none;
  padding: 8px;
  position: relative;
}
.video-meta-overlay .actions-container .action-button span.button-text {
  display: none;
}
.video-meta-overlay .actions-container .action-button svg-src {
  fill: #FFFFFF;
  width: 20px;
  height: 20px;
  display: inline-block;
}
.video-meta-overlay .actions-container .action-button svg-src .svg-container {
  display: inline-block;
}
.video-meta-overlay .actions-container .action-button:hover svg-src,
.video-meta-overlay .actions-container .action-button:focus svg-src {
  fill: #C30052;
}
.video-meta-overlay .actions-container .action-button.share-button .svg-container svg {
  fill: #FFFFFF;
}
.video-meta-overlay .actions-container .action-button.share-button:hover .svg-container svg,
.video-meta-overlay .actions-container .action-button.share-button:focus .svg-container svg {
  fill: #C30052;
}
.video-meta-overlay .actions-container .action-button:last-child:first-child {
  width: auto;
}
.video-meta-overlay .actions-container .action-button:last-child:first-child.animate-button {
  transition: opacity 500ms, visibility 500ms;
  overflow: hidden;
}
.video-meta-overlay .actions-container .action-button:last-child:first-child.animate-button.hidden {
  opacity: 0;
  visibility: hidden;
}
.video-meta-overlay .actions-container .action-button:last-child:first-child span.button-text {
  display: inline-block;
  margin-left: 12px;
  margin-right: 4px;
  font-size: 14px;
}
.video-meta-overlay span.inner-background {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: rgba(31, 26, 26, 0.75);
  padding: 8px 24px;
}
.video-meta-overlay span.video-statistics,
.video-meta-overlay span.live-analytics-container-small {
  display: inline-block;
  background-color: rgba(31, 26, 26, 0.75);
  padding: 0px 24px 12px 24px;
}
.video-meta-overlay span.video-statistics span.metric-inline-flex,
.video-meta-overlay span.live-analytics-container-small span.metric-inline-flex {
  color: #FFFFFF;
}
.video-meta-overlay span.video-statistics span.metric-inline-flex:last-child,
.video-meta-overlay span.live-analytics-container-small span.metric-inline-flex:last-child {
  padding-right: 0px;
}
.follow-unfollow {
  position: relative;
}
.follow-unfollow button.c-glyph.c-action-trigger.follow-unfollow-btn {
  height: 32px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  padding: 2px 16px;
  margin: 0;
  min-width: 96px;
  position: relative;
  transition: opacity 0.6s, visibility 0.6s;
  transition-delay: 0.3s;
  opacity: 1;
  z-index: 5;
  visibility: visible;
  border-radius: 2px;
  background-color: #FFFFFF;
  text-decoration: none;
}
.follow-unfollow button.c-glyph.c-action-trigger.follow-unfollow-btn.following {
  color: #323130;
  border: 1px #868A88 solid;
}
.follow-unfollow button.c-glyph.c-action-trigger.follow-unfollow-btn.follow {
  color: white;
  background-color: #C30052;
}
.follow-unfollow button.c-glyph.c-action-trigger.follow-unfollow-btn.follow:hover {
  color: white;
  background-color: #93003D;
}
.follow-unfollow button.c-glyph.c-action-trigger.follow-unfollow-btn.follow:active {
  background-color: #6D002D;
}
.follow-unfollow button.c-glyph.c-action-trigger.init-hide {
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  z-index: 0;
  visibility: hidden;
  top: 0;
  left: 0;
  position: absolute;
}
.producer-action-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  height: 100%;
}
.producer-action-bar .status-panel {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
.producer-action-bar .status-panel .status-panel-info {
  width: 100%;
  max-height: 100%;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
}
.producer-action-bar .status-panel .status-panel-info .status-content {
  pointer-events: all;
  max-width: 100%;
  max-height: 100%;
  background: #FFFFFF;
  display: inline-block;
  color: #605E5C;
  padding: 18px 21px 35px;
  z-index: 2;
  font-family: SegoeUI, 'Stream Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  box-shadow: 0 0 5px 1px rgba(255, 255, 255, 0.33);
}
.producer-action-bar .status-panel .status-panel-info .status-content strong {
  font-weight: 600;
}
.producer-action-bar .status-panel .status-panel-info .status-content .title {
  font-size: 16px;
}
.producer-action-bar .status-panel .status-panel-info .status-content .content {
  margin-top: 12px;
  font-size: 13px;
}
.producer-action-bar .status-panel .status-panel-info .status-content .status-buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 36px;
}
.producer-action-bar .status-panel .status-panel-info .status-content .status-buttons .producer-button {
  margin: 0 8px;
}
.producer-action-bar .status-panel .status-panel-info .status-content .in-progress-container {
  margin-top: 36px;
  height: 25px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  clear: both;
  width: 100%;
}
.producer-action-bar .status-panel .status-panel-info .status-content .in-progress-container .processing-icon {
  height: 22px;
  width: 22px;
  display: inline-block;
}
.producer-action-bar .status-panel .status-panel-info .status-content .in-progress-container svg {
  margin: auto;
}
@media only screen and (max-width: 540px) {
  .producer-action-bar .status-panel .status-panel-info .status-content {
    padding: 8px;
  }
  .producer-action-bar .status-panel .status-panel-info .status-content .content {
    margin-top: 8px;
    font-size: 12px;
  }
  .producer-action-bar .status-panel .status-panel-info .status-content .status-buttons {
    margin-top: 8px;
  }
  .producer-action-bar .status-panel .status-panel-info .status-content .status-buttons .producer-button {
    margin: 0 8px;
  }
}
.producer-action-bar .producer-volume-button {
  margin-left: 4px;
}
.producer-action-bar .live-player-control-bar {
  pointer-events: all;
  width: 100%;
  height: 48px;
  background: rgba(31, 26, 26, 0.9);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 0 0 4px;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.producer-action-bar .live-player-control-bar a:focus,
.producer-action-bar .live-player-control-bar button:focus,
.producer-action-bar .live-player-control-bar [tabindex]:focus,
.producer-action-bar .live-player-control-bar [role="button"]:focus,
.producer-action-bar .live-player-control-bar select:focus,
.producer-action-bar .live-player-control-bar input:focus,
.producer-action-bar .live-player-control-bar textarea:focus {
  outline: dashed #FFFFFF 1px;
}
.producer-action-bar .live-player-control-bar .right-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-align: center;
      align-items: center;
}
.producer-action-bar .live-player-control-bar .right-container .producer-caption-button {
  margin-right: 4px;
}
.producer-action-bar .live-player-control-bar .right-container .producer-controls .coach-mark {
  position: relative;
  margin-top: -154px;
  margin-bottom: 24px;
  pointer-events: all;
  width: 308px;
  height: 130px;
  z-index: 2;
  margin-left: -214px;
  /*ignore-Loc*/
}
@media only screen and (max-width: 540px) {
  .producer-action-bar .live-player-control-bar .right-container .producer-controls .coach-mark {
    width: 258px;
    margin-left: -192px;
    /*ignore-Loc*/
  }
}
.producer-action-bar .live-player-control-bar .right-container .producer-controls .coach-mark.stopped-state-time-passed .inner-container {
  max-width: 325px;
}
.producer-action-bar .live-player-control-bar .right-container .producer-controls .coach-mark.encoder-connected-state {
  margin-left: -80px;
  /*ignore-Loc*/
}
@media only screen and (max-width: 540px) {
  .producer-action-bar .live-player-control-bar .right-container .producer-controls .coach-mark.encoder-connected-state {
    margin-left: -104px;
    /*ignore-Loc*/
  }
}
.producer-action-bar .live-player-control-bar .right-container .producer-controls .coach-mark.encoder-connected-state-time-passed {
  margin-left: -80px;
  /*ignore-Loc*/
  margin-right: -27px;
  /*ignore-Loc*/
}
.producer-action-bar .live-player-control-bar .right-container .producer-controls .coach-mark.encoder-connected-state-time-passed .inner-container {
  max-width: 325px;
  padding-top: 16px;
}
@media only screen and (max-width: 540px) {
  .producer-action-bar .live-player-control-bar .right-container .producer-controls .coach-mark.encoder-connected-state-time-passed {
    margin-left: -104px;
    /*ignore-Loc*/
  }
  .producer-action-bar .live-player-control-bar .right-container .producer-controls .coach-mark.encoder-connected-state-time-passed .inner-container {
    max-width: 325px;
    padding-top: 15px;
  }
}
.producer-action-bar .live-player-control-bar .right-container .producer-controls .coach-mark.auto-disconnect-state {
  margin-left: -80px;
  /*ignore-Loc*/
  margin-right: -27px;
  /*ignore-Loc*/
}
.producer-action-bar .live-player-control-bar .right-container .producer-controls .coach-mark.auto-disconnect-state .inner-container:after {
  right: 151px;
  /*ignore-Loc*/
}
@media only screen and (max-width: 540px) {
  .producer-action-bar .live-player-control-bar .right-container .producer-controls .coach-mark.auto-disconnect-state {
    margin-left: -104px;
    /*ignore-Loc*/
  }
  .producer-action-bar .live-player-control-bar .right-container .producer-controls .coach-mark.auto-disconnect-state .inner-container {
    max-width: 308px;
  }
}
.producer-action-bar .live-player-control-bar .right-container .producer-controls .coach-mark .inner-container {
  z-index: 1;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 308px;
  max-width: 308px;
  height: 100%;
  overflow-y: auto;
  border-radius: 2px;
  background: #FFFFFF;
  display: inline-block;
  color: #605E5C;
  padding: 18px 28px 0px;
  font-family: SegoeUI, 'Stream Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  box-shadow: 0px 6.4px 14.4px 0px rgba(0, 0, 0, 0.13), 0px 1.2px 3.6px 0px rgba(0, 0, 0, 0.11);
}
@media only screen and (max-width: 540px) {
  .producer-action-bar .live-player-control-bar .right-container .producer-controls .coach-mark .inner-container {
    max-width: 258px;
    min-width: 258px;
  }
}
.producer-action-bar .live-player-control-bar .right-container .producer-controls .coach-mark .inner-container:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-bottom: none;
  position: absolute;
  top: auto;
  bottom: -9px;
  right: 17px;
  /*ignore-Loc*/
  border-top-color: #FFFFFF;
  margin-top: auto;
  margin-bottom: 1px;
}
.producer-action-bar .live-player-control-bar .right-container .producer-controls .coach-mark .inner-container .title {
  font-size: 16px;
  line-height: 28px;
}
.producer-action-bar .live-player-control-bar .right-container .producer-controls .coach-mark .inner-container .content {
  margin-top: 6px;
  font-size: 12px;
  line-height: 22px;
}
.producer-action-bar .live-player-control-bar .right-container .producer-controls .coach-mark .inner-container .delete-button {
  background-color: #FFFFFF;
  color: #605E5C;
  border: 0 none;
  float: right;
  height: 21px;
  position: relative;
  right: -27px;
  top: -15px;
  width: 23px;
}
.producer-action-bar .live-player-control-bar .right-container .producer-controls .coach-mark .inner-container .delete-button .svg-container {
  width: 14px;
  height: 14px;
}
.producer-action-bar .live-player-control-bar .right-container .producer-controls .coach-mark .inner-container .delete-button:hover,
.producer-action-bar .live-player-control-bar .right-container .producer-controls .coach-mark .inner-container .delete-button:focus {
  border: dotted 1px #605E5C;
}
.producer-action-bar .live-player-control-bar .right-container .producer-controls .coach-mark strong {
  font-weight: 600;
}
.producer-action-bar .live-player-control-bar .status-bar-container {
  display: -ms-flexbox;
  display: flex;
}
.producer-action-bar .live-player-control-bar .producer-status-info {
  display: -ms-flexbox;
  display: flex;
}
.producer-action-bar .live-player-control-bar .producer-status-info .status-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-align: center;
      align-items: center;
}
.producer-action-bar .live-player-control-bar .producer-status-info .status-info .live-status {
  margin-left: 12px;
  text-align: center;
}
@media only screen and (max-width: 540px) {
  .producer-action-bar .live-player-control-bar .producer-status-info .status-info .live-status {
    width: 16px;
    height: 16px;
    padding: 0;
    border-radius: 8px;
    background-color: #EAEAEA;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  .producer-action-bar .live-player-control-bar .producer-status-info .status-info .live-status .pill-text {
    display: none;
  }
  .producer-action-bar .live-player-control-bar .producer-status-info .status-info .live-status.pill-primary {
    background-color: #C30052;
  }
  .producer-action-bar .live-player-control-bar .producer-status-info .status-info .live-status.pill-primary2 {
    background-color: #FFB900;
  }
  .producer-action-bar .live-player-control-bar .producer-status-info .status-info .live-status.pill-secondary-red-color {
    background-color: white;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
  }
  .producer-action-bar .live-player-control-bar .producer-status-info .status-info .live-status.pill-secondary-red-color:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background-color: #C30052;
    border-radius: 8px;
  }
}
.producer-action-bar .live-player-control-bar .producer-controls {
  display: table-cell;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.producer-action-bar .live-player-control-bar .producer-controls .producer-action-container {
  display: -ms-flexbox;
  display: flex;
}
.producer-action-bar .live-player-control-bar .producer-controls .producer-action-container .producer-button {
  margin: 0 4px;
}
@media only screen and (max-width: 540px) {
  .producer-action-bar .live-player-control-bar .producer-controls .producer-action-container .producer-button {
    min-width: 80px;
    width: 80px;
    padding: 4px 2px 5px;
  }
}
.producer-action-bar .live-player-control-bar .producer-controls .two-button-width {
  min-width: 181px;
}
.producer-action-bar .live-player-control-bar .label-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.producer-action-bar .live-player-control-bar .label-container .powered-by-container {
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}
.producer-action-bar .live-player-control-bar .label-container .powered-by-container .powered-by-label {
  color: #FFFFFF;
}
@media only screen and (max-width: 960px) {
  .producer-action-bar .live-player-control-bar .label-container .powered-by-container .powered-by-label {
    display: none;
  }
}
.producer-action-bar .live-player-control-bar .label-container .powered-by-container .stream-icon {
  height: 21px;
  width: 24px;
  margin-right: 15px;
}
@media only screen and (max-width: 960px) {
  .producer-action-bar .live-player-control-bar .label-container .powered-by-container .stream-icon {
    margin-right: 0px;
  }
}
.producer-action-bar .live-player-control-bar .producer-more-actions {
  -ms-flex-preferred-size: 56px;
      flex-basis: 56px;
}
.producer-action-bar .live-player-control-bar .producer-more-actions .drawer-button {
  fill: #FFFFFF;
  height: 48px;
  width: 28px;
  margin: 0 14px;
  padding: 15px 0px 13px 0px;
  border-bottom: solid transparent 3px;
}
.producer-action-bar .live-player-control-bar .producer-more-actions .drawer-button.c-action-trigger[expanded=true] {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}
.producer-action-bar .live-player-control-bar .producer-more-actions .drawer-button:hover,
.producer-action-bar .live-player-control-bar .producer-more-actions .drawer-button:focus {
  fill: #FFFFFF;
}
.producer-action-bar .live-player-control-bar .producer-more-actions .drawer-content {
  bottom: 47px;
  background-color: rgba(31, 26, 26, 0.75);
}
.producer-action-bar .live-player-control-bar .producer-more-actions .drawer-content .drawer-content-item {
  color: #FFFFFF;
}
.producer-action-bar .live-player-control-bar .producer-more-actions .drawer-content .drawer-content-item:hover,
.producer-action-bar .live-player-control-bar .producer-more-actions .drawer-content .drawer-content-item:focus {
  background-color: rgba(31, 26, 26, 0.75);
}
.producer-action-bar .live-player-control-bar .start-setup-button {
  border: none;
}
.video-analytics-container {
  background-color: #FAF9f8;
  font-family: SegoeUI, 'Stream Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.video-analytics-container .empty-state {
  margin: auto;
  padding: 20px 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  margin-top: 0px;
}
.video-analytics-container .empty-state .empty-state-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  background: transparent;
  fill: #C30052;
  padding: 0;
}
.video-analytics-container .empty-state .empty-state-message {
  margin-left: 12px;
  font-size: 14px;
  text-align: left;
  font-style: italic;
  color: #605E5C;
}
.video-analytics-container .analytics-data-container {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-flow: row;
      flex-flow: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #323130;
}
.video-analytics-container .analytics-data-container .live-viewers-panel,
.video-analytics-container .analytics-data-container .view-count-panel,
.video-analytics-container .analytics-data-container .like-count-panel,
.video-analytics-container .analytics-data-container .download-panel {
  padding: 14px;
}
.video-analytics-container .analytics-data-container .live-viewers-panel .live-viewer-value,
.video-analytics-container .analytics-data-container .view-count-panel .live-viewer-value,
.video-analytics-container .analytics-data-container .like-count-panel .live-viewer-value,
.video-analytics-container .analytics-data-container .download-panel .live-viewer-value,
.video-analytics-container .analytics-data-container .live-viewers-panel .view-count-value,
.video-analytics-container .analytics-data-container .view-count-panel .view-count-value,
.video-analytics-container .analytics-data-container .like-count-panel .view-count-value,
.video-analytics-container .analytics-data-container .download-panel .view-count-value,
.video-analytics-container .analytics-data-container .live-viewers-panel .like-count-value,
.video-analytics-container .analytics-data-container .view-count-panel .like-count-value,
.video-analytics-container .analytics-data-container .like-count-panel .like-count-value,
.video-analytics-container .analytics-data-container .download-panel .like-count-value {
  font-size: 40px;
  letter-spacing: 0;
  line-height: 48px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.video-analytics-container .analytics-data-container .live-viewers-panel .live-viewer-label,
.video-analytics-container .analytics-data-container .view-count-panel .live-viewer-label,
.video-analytics-container .analytics-data-container .like-count-panel .live-viewer-label,
.video-analytics-container .analytics-data-container .download-panel .live-viewer-label,
.video-analytics-container .analytics-data-container .live-viewers-panel .view-count-label,
.video-analytics-container .analytics-data-container .view-count-panel .view-count-label,
.video-analytics-container .analytics-data-container .like-count-panel .view-count-label,
.video-analytics-container .analytics-data-container .download-panel .view-count-label,
.video-analytics-container .analytics-data-container .live-viewers-panel .like-count-label,
.video-analytics-container .analytics-data-container .view-count-panel .like-count-label,
.video-analytics-container .analytics-data-container .like-count-panel .like-count-label,
.video-analytics-container .analytics-data-container .download-panel .like-count-label {
  width: 148px;
  font-size: 14px;
  padding-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.video-analytics-container .analytics-data-container .live-viewers-panel .like-count-label,
.video-analytics-container .analytics-data-container .view-count-panel .like-count-label,
.video-analytics-container .analytics-data-container .like-count-panel .like-count-label,
.video-analytics-container .analytics-data-container .download-panel .like-count-label {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.video-analytics-container .analytics-data-container .live-viewers-panel .likes-icon,
.video-analytics-container .analytics-data-container .view-count-panel .likes-icon,
.video-analytics-container .analytics-data-container .like-count-panel .likes-icon,
.video-analytics-container .analytics-data-container .download-panel .likes-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  fill: #605E5C;
}
.video-analytics-container .analytics-data-container .live-viewers-panel .download-csv,
.video-analytics-container .analytics-data-container .view-count-panel .download-csv,
.video-analytics-container .analytics-data-container .like-count-panel .download-csv,
.video-analytics-container .analytics-data-container .download-panel .download-csv {
  height: 74px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  padding: 14px;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-pack: center;
      justify-content: center;
}
.video-analytics-container .analytics-data-container .live-viewers-panel .download-csv-btn,
.video-analytics-container .analytics-data-container .view-count-panel .download-csv-btn,
.video-analytics-container .analytics-data-container .like-count-panel .download-csv-btn,
.video-analytics-container .analytics-data-container .download-panel .download-csv-btn {
  height: 32px;
  width: 136px;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  vertical-align: middle;
  padding: 2px 4px;
  margin: 0;
  position: relative;
  border-radius: 2px;
  text-decoration: none;
  color: #323130;
  border: 1px #868A88 solid;
  background: #FFFFFF;
}
.video-analytics-container .analytics-data-container .live-viewers-panel .download-csv-btn[disabled],
.video-analytics-container .analytics-data-container .view-count-panel .download-csv-btn[disabled],
.video-analytics-container .analytics-data-container .like-count-panel .download-csv-btn[disabled],
.video-analytics-container .analytics-data-container .download-panel .download-csv-btn[disabled] {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.65;
  box-shadow: none;
}
.video-analytics-container .analytics-data-container .sdn-analytics-link {
  display: -ms-flexbox;
  display: flex;
  height: 102px;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-positive: 1;
      flex-grow: 1;
  padding: 14px;
  max-width: 280px;
}
.video-analytics-container .analytics-data-container .sdn-analytics-link .sdn-analytics-inner-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 0 12px;
}
.video-analytics-container .analytics-data-container .sdn-analytics-link .sdn-analytics-inner-container a:hover,
.video-analytics-container .analytics-data-container .sdn-analytics-link .sdn-analytics-inner-container a:focus {
  color: #C30052;
}
.video-analytics-container .analytics-data-container .sdn-analytics-link .sdn-analytics-inner-container .link-content {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
}
.video-analytics-container .analytics-data-container .sdn-analytics-link .sdn-analytics-inner-container .link-content svg-src {
  width: 20px;
  height: 20px;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.video-analytics-container .analytics-data-container .sdn-analytics-link .sdn-analytics-inner-container .link-content .link-text {
  margin: 0 4px 0 12px;
  line-height: normal;
  padding-top: 2px;
}
.live-analytics-container-small .live-viewer-count,
.live-analytics-container-small .like-count,
.live-analytics-container-small .download-csv {
  padding-right: 16px;
  text-align: left;
  vertical-align: central;
  white-space: nowrap;
  color: #605E5C;
  fill: #605E5C;
}
.live-analytics-container-small .metric-inline-flex {
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 15px;
  margin-right: 12px;
  padding-right: 0px;
  position: relative;
  -ms-flex-align: center;
      align-items: center;
}
.live-analytics-container-small .metric-inline-flex .metric-icon {
  display: inline-block;
  width: 17px;
  height: 16px;
  fill: #FFFFFF;
  margin-left: 4px;
}
.video-player-view {
  width: 100%;
  height: 100%;
  position: absolute;
}
.video-player-view .player-content-wrapper {
  position: relative;
  overflow: auto;
  width: 100%;
  height: 100%;
}
.video-player-view .player-content-wrapper .player-inner-content {
  height: 100%;
  width: 100%;
  position: relative;
}
.video-player-view .player-content-wrapper .player-content {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #212121;
}
.video-player-view .player-content-wrapper .player-content producer-action-bar {
  z-index: 2;
  position: absolute;
  width: 100%;
  bottom: 0;
  top: 0;
  height: 100%;
  pointer-events: none;
}
.video-player-view .player-content-wrapper .player-content .media-player-container,
.video-player-view .player-content-wrapper .player-content .media-player-preload-container,
.video-player-view .player-content-wrapper .player-content .video-poster-container {
  height: 100%;
}
.video-player-view .player-content-wrapper .player-content media-player.hide-amp-controlbar .azuremediaplayer.amp-stream-skin .vjs-control-bar {
  display: none;
}
.video-player-view .video-feedback {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  position: absolute;
  min-height: 100%;
  width: 100%;
  top: 0;
  z-index: 5;
  background: #212121;
  padding: 24px;
  color: #FFFFFF;
  min-width: 285px;
}
@media only screen and (max-width: 768px) {
  .video-player-view .video-feedback {
    padding: 16px;
  }
}
.video-player-view .video-feedback .video-feedback-brand-header {
  font-size: 20px;
  text-align: right;
  -ms-flex-line-pack: end;
      align-content: flex-end;
  -ms-flex-pack: center;
      justify-content: center;
}
.video-player-view .video-feedback .video-feedback-title {
  font-size: 24px;
  font: 'Segoe UI Semibold', 'Stream Segoe UI Semibold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
@media only screen and (max-width: 768px) {
  .video-player-view .video-feedback .video-feedback-title {
    font-size: 14px;
    font: SegoeUI, 'Stream Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }
}
.video-player-view .video-feedback .video-feedback-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-positive: 1;
      flex-grow: 1;
  width: 100%;
  height: 100%;
}
.video-player-view .video-feedback .video-feedback-container .video-feedback-subtitle-container {
  width: 70%;
  font-size: 14px;
  margin-top: 8px;
}
@media only screen and (max-width: 768px) {
  .video-player-view .video-feedback .video-feedback-container .video-feedback-subtitle-container {
    font-size: 12px;
  }
}
.video-player-view .video-feedback .video-feedback-container .video-feedback-subtitle-container .video-feedback-privacy-url {
  font-size: 14px;
  margin-top: 12px;
  text-decoration: underline;
}
.video-player-view .video-feedback .video-feedback-container .video-feedback-subtitle-container .video-feedback-privacy-url :link {
  color: #D2D0CE;
}
.video-player-view .video-feedback .video-feedback-container .video-feedback-subtitle-container .video-feedback-privacy-url :visited {
  color: #D2D0CE;
}
.video-player-view .video-feedback .video-feedback-container .video-feedback-subtitle-container .video-feedback-privacy-url :hover {
  color: #BEBBB8;
}
.video-player-view .video-feedback .video-feedback-container .video-feedback-subtitle-container .video-feedback-privacy-url :focus {
  color: #D2D0CE;
}
.video-player-view .video-feedback .video-feedback-container .video-feedback-subtitle-container .video-feedback-privacy-url :active {
  color: #A19F9D;
}
.video-player-view .video-feedback .video-feedback-container .video-feedback-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  margin-top: 16px;
}
.video-player-view .video-feedback .video-feedback-container .video-feedback-content .ct-label-compact {
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .video-player-view .video-feedback .video-feedback-container .video-feedback-content .ct-label-compact {
    font-size: 12px;
    margin: 10px 0px 2px 0px;
  }
}
.video-player-view .video-feedback .video-feedback-container .video-feedback-content .video-feedback-message {
  width: 70%;
  max-height: 120px;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
@media only screen and (max-width: 768px) {
  .video-player-view .video-feedback .video-feedback-container .video-feedback-content .video-feedback-message {
    width: 100%;
  }
}
.video-player-view .video-feedback .video-feedback-container .video-feedback-content .video-feedback-consent-checkbox {
  margin-top: 16 px;
}
.video-player-view .video-feedback .video-feedback-container .video-feedback-content .video-feedback-consent-checkbox label span {
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .video-player-view .video-feedback .video-feedback-container .video-feedback-content .video-feedback-consent-checkbox label span {
    font-size: 12px;
  }
}
.video-player-view .video-feedback .video-feedback-container .video-feedback-content .video-feedback-email {
  width: 70%;
  margin-top: 8px;
}
@media only screen and (max-width: 768px) {
  .video-player-view .video-feedback .video-feedback-container .video-feedback-content .video-feedback-email {
    width: 100%;
  }
}
.video-player-view .video-feedback .video-feedback-container .video-feedback-action-container {
  -ms-flex-item-align: start;
      align-self: flex-start;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 12px;
}
.video-player-view .video-feedback .video-feedback-container .video-feedback-action-container a:focus,
.video-player-view .video-feedback .video-feedback-container .video-feedback-action-container button:focus,
.video-player-view .video-feedback .video-feedback-container .video-feedback-action-container [tabindex]:focus,
.video-player-view .video-feedback .video-feedback-container .video-feedback-action-container [role="button"]:focus,
.video-player-view .video-feedback .video-feedback-container .video-feedback-action-container select:focus,
.video-player-view .video-feedback .video-feedback-container .video-feedback-action-container input:focus,
.video-player-view .video-feedback .video-feedback-container .video-feedback-action-container textarea:focus {
  outline: dashed #FFFFFF 1px;
}
@media only screen and (max-width: 540px) {
  .video-player-view .video-feedback .video-feedback-container .video-feedback-action-container .stream-btn {
    min-width: 100px;
  }
}
.dialog-box dialog-box {
  display: block;
  width: 100%;
  max-height: 100%;
}
.dialog-box .dialog-section {
  position: relative;
  overflow: auto;
}
.dialog-box .dialog-container {
  display: block;
  background: #FFFFFF;
  padding: 0;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 5px 0px;
}
.dialog-box .dialog-container .dialog-header,
.dialog-box .dialog-container .dialog-error-header {
  padding-left: 24px;
  height: 48px;
  position: relative;
}
.dialog-box .dialog-container .dialog-header .close-button,
.dialog-box .dialog-container .dialog-error-header .close-button {
  position: absolute;
  right: 12px;
  width: 36px;
  height: 36px;
  top: 6px;
  margin-top: 0px;
  padding-left: 12px;
}
.dialog-box .dialog-container .dialog-header .close-button svg-src,
.dialog-box .dialog-container .dialog-error-header .close-button svg-src {
  width: 12px;
  height: 12px;
}
.dialog-box .dialog-container .dialog-header .dialog-header-content,
.dialog-box .dialog-container .dialog-error-header .dialog-header-content {
  padding: 0;
  margin: 0;
  font-weight: 600;
  width: calc(100% - 72px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dialog-box .dialog-container .dialog-header {
  color: #323130;
}
.dialog-box .dialog-container .dialog-error-header {
  color: #FFFFFF;
  background-color: #D02E00;
}
.dialog-box .dialog-container .dialog-content {
  padding: 0 24px;
}
.dialog-box .dialog-container .dialog-footer {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 80px;
}
.dialog-box .dialog-container .dialog-footer .left,
.dialog-box .dialog-container .dialog-footer .right {
  float: left;
  width: 50%;
  height: 100%;
  position: relative;
}
.dialog-box .dialog-container .dialog-footer .left button,
.dialog-box .dialog-container .dialog-footer .right button {
  margin: 0 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.dialog-box .dialog-container .dialog-footer .left button {
  right: 0;
}
.dialog-box .dialog-container .dialog-footer .right button {
  left: 0;
}
.confirmation-dialog div .c-dialog [role=dialog] {
  border: none;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 5px 0px;
}
.video-share-dialog {
  font-size: 12px;
}
.video-share-dialog .dialog-section {
  overflow: auto;
  position: relative;
}
.video-share-dialog .dialog-container {
  display: block;
  background: #FFFFFF;
  padding: 0;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 5px 0px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.video-share-dialog .dialog-container .dialog-error-header {
  position: relative;
  color: #FFFFFF;
  background-color: #D02E00;
}
.video-share-dialog .dialog-container .dialog-error-header .dialog-header-content {
  padding: 0;
  margin: 0 10px 0 28px;
  font-weight: 400;
}
@media screen and (-ms-high-contrast: active) {
  .video-share-dialog .dialog-container button {
    border: 1px solid ButtonText;
  }
}
.video-share-dialog .dialog-container .dialog-content {
  padding: 10px 24px 0 24px;
  overflow: auto;
  height: 260px;
}
@media only screen and (min-height: 550px) {
  .video-share-dialog .dialog-container .dialog-content {
    height: 425px;
  }
}
@media only screen and (min-height: 700px) {
  .video-share-dialog .dialog-container .dialog-content {
    height: 574px;
  }
}
.video-share-dialog .dialog-container .dialog-content div.note {
  margin: 6px 0 8px 0;
  position: relative;
  font-size: 15px;
}
.video-share-dialog .dialog-container .dialog-content div.note .info-balloon {
  height: 16px;
  width: 16px;
  position: absolute;
  left: 0;
  top: 2px;
}
.video-share-dialog .dialog-container .dialog-content .email-disabled-message {
  font-size: 15px;
  margin-top: 10px;
}
.video-share-dialog .dialog-container .dialog-content .public-link-toggle-container {
  padding-top: 20px;
}
.video-share-dialog .dialog-container .dialog-content .public-link-toggle-container .settings-toggle {
  display: inline;
}
.video-share-dialog .dialog-container .embed-tab .embed-size-selector {
  width: 144px;
  margin: 0px 46px 0px 0px;
}
.video-share-dialog .dialog-container .embed-tab .embed-code label.c-label {
  width: 99.9%;
}
.video-share-dialog .dialog-container .embed-tab .embed-code textarea {
  width: 100%;
  cursor: text;
  color: #6D6E71;
  background-color: #FFFFFF;
  margin-top: 4px;
  min-width: 150px;
}
.video-share-dialog .dialog-container .embed-tab .embed-code .copy-button {
  margin-top: 32px;
  padding-left: 0px;
}
.video-share-dialog .dialog-container .embed-tab .embed-code .copy-button button {
  min-width: 60px;
  width: 100%;
}
.video-share-dialog .dialog-container .embed-tab .video-size {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.video-share-dialog .dialog-container .embed-tab .video-size > div {
  -ms-flex-positive: 0;
      flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.video-share-dialog .dialog-container .embed-tab .video-size .video-size-selector {
  display: inline-block;
}
.video-share-dialog .dialog-container .embed-tab .video-size .video-size-selector .c-label.ct-label-compact {
  margin-top: 15px;
}
.video-share-dialog .dialog-container .embed-tab .video-size .video-size-selector .c-select {
  position: static;
}
.video-share-dialog .dialog-container .embed-tab .video-size .drop-down .selector div.display-name.no-icon {
  padding-right: 10px;
  text-align: left;
}
.video-share-dialog .dialog-container .embed-tab .video-size .drop-down .drop-down-list-container {
  position: absolute;
  width: calc(100% - 2px);
}
.video-share-dialog .dialog-container .embed-tab .video-size div.c-select {
  display: inline-block;
  margin: 0 46px 0 0;
  width: 144px;
}
@media only screen and (max-width: 540px) {
  .video-share-dialog .dialog-container .embed-tab .video-size div.c-select {
    margin-right: 35px;
  }
}
.video-share-dialog .dialog-container .embed-tab .toggle-inline {
  display: inline-block;
}
.video-share-dialog .dialog-container .embed-tab .autoplay {
  display: inline-block;
  margin-right: 46px;
  position: relative;
  bottom: 5px;
}
@media only screen and (max-width: 540px) {
  .video-share-dialog .dialog-container .embed-tab .autoplay {
    margin-right: 28px;
  }
}
.video-share-dialog .dialog-container .embed-tab .autoplay label.c-label {
  margin-bottom: 7px;
}
.video-share-dialog .dialog-container .embed-tab .responsive-selector {
  display: inline-block;
  margin-right: 32px;
  position: relative;
  bottom: 5px;
}
@media only screen and (max-width: 540px) {
  .video-share-dialog .dialog-container .embed-tab .responsive-selector {
    margin-right: 28px;
  }
}
.video-share-dialog .dialog-container .embed-tab .responsive-selector label.c-label {
  margin-bottom: 7px;
}
.video-share-dialog .dialog-container .embed-tab .time-stamp {
  display: inline-block;
  position: relative;
  margin-top: 30px;
}
.video-share-dialog .dialog-container .embed-tab .time-stamp label.c-label {
  margin: 0;
  display: inline-block;
}
.video-share-dialog .dialog-container .embed-tab .time-stamp .time-stamp-text.c-text-field {
  display: inline-block;
  width: 70px;
  margin-left: 5px;
  margin-top: 0px;
  height: 26px;
  border-color: #8a8886;
}
.video-share-dialog .dialog-container .embed-tab .time-stamp .time-stamp-text.c-text-field:focus {
  border-color: #C30052;
}
.video-share-dialog .dialog-container .embed-tab .time-stamp .time-stamp-text.c-text-field:focus:hover {
  border-color: #C30052;
}
.video-share-dialog .dialog-container .embed-tab .time-stamp .time-stamp-text.c-text-field:hover {
  border-color: #323130;
}
.video-share-dialog .dialog-container .embed-tab .preview-player-container {
  margin: 20px auto 0 auto;
}
.video-share-dialog .dialog-container .embed-tab .preview-player-container .iframe-container {
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  height: 0;
  position: relative;
}
.video-share-dialog .dialog-container .embed-tab .preview-player-container .iframe-container .player-container-iframe {
  position: absolute;
  left: 0;
  right: 0;
  border: none;
  width: 100%;
  height: 100%;
}
.video-share-dialog .dialog-container .embed-tab .preview-player {
  margin: auto;
  max-width: 560px;
  height: 315px;
}
.video-share-dialog .dialog-container .share-tab .link-container,
.video-share-dialog .dialog-container .share-tab .public-anonymous-link-container {
  font-size: 12px;
  margin-bottom: 15px;
}
.video-share-dialog .dialog-container .share-tab .link-container .link-container-col2,
.video-share-dialog .dialog-container .share-tab .public-anonymous-link-container .link-container-col2 {
  padding-left: 0px;
  margin-top: 36px;
}
.video-share-dialog .dialog-container .share-tab .link-container .link-container-col2 button,
.video-share-dialog .dialog-container .share-tab .public-anonymous-link-container .link-container-col2 button {
  min-width: 60px;
  width: 100%;
}
.video-share-dialog .dialog-container .share-tab .link-container .internal-link-copy,
.video-share-dialog .dialog-container .share-tab .public-anonymous-link-container .internal-link-copy {
  margin-top: 40px;
}
.video-share-dialog .dialog-container .share-tab .link-container input.c-text-field[type=text],
.video-share-dialog .dialog-container .share-tab .public-anonymous-link-container input.c-text-field[type=text] {
  background-color: #FFFFFF;
  color: #6D6E71;
  cursor: text;
  width: 100%;
  margin-top: 4px;
  height: 32px;
}
.video-share-dialog .dialog-container .share-tab .public-anonymous-container {
  display: block;
}
.video-share-dialog .dialog-container .share-tab .public-anonymous-container .public-anonymous-link-container {
  font-size: 12px;
  margin-bottom: 15px;
  margin-top: 0;
}
.video-share-dialog .dialog-container .share-tab .public-anonymous-container .public-anonymous-link-container .public-link-container-col2 {
  padding-left: 0px;
  margin-top: 40px;
}
.video-share-dialog .dialog-container .share-tab .public-anonymous-container .public-anonymous-link-container input.c-text-field[type=text] {
  background-color: #FFFFFF;
  color: #6D6E71;
  cursor: text;
  margin-top: 4px;
  height: 32px;
}
.video-share-dialog .dialog-container .share-tab .public-anonymous-container .restore-button {
  text-align: center;
}
.video-share-dialog .dialog-container .share-tab .public-anonymous-container .restore-button .svg-icon {
  width: 16px;
  height: 16px;
}
.video-share-dialog .dialog-container .share-tab .public-anonymous-container .restore-button button {
  cursor: pointer;
  padding: 0;
  margin-top: 0;
}
.video-share-dialog .dialog-container .share-tab .public-anonymous-container .public-anon-clipboard .restore-button {
  margin-left: 5px;
  padding-top: 3px;
}
.video-share-dialog .dialog-container .share-tab .public-anonymous-container .public-anon-clipboard {
  min-width: 60px;
  float: right;
  padding: 0;
}
.video-share-dialog .dialog-container .share-tab .public-anonymous-container .public-anonymous-error {
  padding: 0px 24px 0 24px;
  height: 25px;
  display: -ms-flexbox;
  display: flex;
  clear: both;
  width: 100%;
}
.video-share-dialog .dialog-container .share-tab .public-anonymous-container .in-progress-container {
  padding: 0px 24px 0 24px;
  height: 25px;
  display: -ms-flexbox;
  display: flex;
  clear: both;
  width: 100%;
}
.video-share-dialog .dialog-container .share-tab .public-anonymous-container .in-progress-container .processing-icon {
  height: 16px;
  width: 16px;
  display: inline-block;
}
.video-share-dialog .dialog-container .share-tab .public-anonymous-container .in-progress-container svg {
  margin: auto;
}
.video-share-dialog .dialog-container .share-tab .time-stamp {
  margin-top: 25px;
}
.video-share-dialog .dialog-container .share-tab .time-stamp label.c-label {
  margin: 0;
  display: inline-block;
}
.video-share-dialog .dialog-container .share-tab .time-stamp .time-stamp-text.c-text-field {
  display: inline-block;
  width: 70px;
  margin-left: 5px;
  margin-top: 0px;
  height: 26px;
  border-color: #8a8886;
}
.video-share-dialog .dialog-container .share-tab .time-stamp .time-stamp-text.c-text-field:hover {
  border-color: #323130;
}
.video-share-dialog .dialog-container .share-tab .share-with-label {
  font-size: 12px;
  line-height: 12px;
  margin-top: 13px;
}
.video-share-dialog .dialog-container .share-tab .share-buttons div {
  display: inline-block;
  vertical-align: top;
  margin-right: 4px;
}
.video-share-dialog .dialog-container .share-tab .yammer-share-icon {
  border-radius: 2px;
  background: #3369ba;
  width: 32px;
  height: 32px;
  display: inline-block;
  padding: 7px;
  cursor: pointer;
}
.video-share-dialog .dialog-container .share-tab .yammer-share-icon .svg-container .svg-icon {
  width: 18px;
  height: 18px;
}
.video-share-dialog .dialog-container .share-tab .email-share-icon {
  border-radius: 2px;
  background: rgba(31, 26, 26, 0.75);
  width: 32px;
  height: 32px;
  display: inline-block;
  padding: 7px;
  cursor: pointer;
}
.video-share-dialog .dialog-container .share-tab .email-share-icon .svg-container .svg-icon {
  width: 18px;
  height: 18px;
}
.video-share-dialog .dialog-container .dialog-footer {
  width: 100%;
  height: 72px;
  position: relative;
  padding: 18px 0;
  border-top: 2px solid #F2F2F2;
}
.video-share-dialog .dialog-container .dialog-footer > div {
  height: 100%;
}
.video-share-dialog .dialog-container .dialog-footer button {
  margin: 0;
  overflow: visible;
}
.video-share-dialog .dialog-container .dialog-footer button.only-close-button {
  top: 50%;
  left: 50%;
  /*ignore-Loc*/
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
}
.video-share-dialog .dialog-container .dialog-footer .left,
.video-share-dialog .dialog-container .dialog-footer .right {
  float: left;
  width: 50%;
  height: 100%;
  position: relative;
}
.video-share-dialog .dialog-container .dialog-footer .left button,
.video-share-dialog .dialog-container .dialog-footer .right button {
  margin: 0 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.video-share-dialog .dialog-container .dialog-footer .left button {
  right: 0;
}
.video-share-dialog .dialog-container .dialog-footer .right button {
  left: 0;
}
.video-edit-dialog {
  top: 50px;
}
.video-edit-dialog .video-edit-dialog-content {
  height: 100%;
  width: 100%;
  background-color: #FFFFFF;
}
.video-edit-dialog .video-edit-dialog-content .editor-host {
  height: 100%;
}