body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  font-size: 14px;
  height: 100vh;
  margin: 0;
  overflow: auto;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

.react-grid-layout {
  position: relative;
  transition: height 200ms ease;
}
.react-grid-item {
  transition: all 200ms ease;
  transition-property: left, top;
}
.react-grid-item img {
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;  
}
.react-grid-item.cssTransforms {
  transition-property: transform;
}
.react-grid-item.resizing {
  z-index: 1;
  will-change: width, height;
}

.react-grid-item.react-draggable-dragging {
  transition: none;
  z-index: 3;
  will-change: transform;
}

.react-grid-item.dropping {
  visibility: hidden;
}

.react-grid-item.react-grid-placeholder {
  background: red;
  opacity: 0.2;
  transition-duration: 100ms;
  z-index: 2;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.react-grid-item > .react-resizable-handle {
  position: absolute;
  width: 20px;
  height: 20px;
}

.react-grid-item > .react-resizable-handle::after {
  content: "";
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 5px;
  height: 5px;
  border-right: 2px solid rgba(0, 0, 0, 0.4);
  border-bottom: 2px solid rgba(0, 0, 0, 0.4);
}

.react-resizable-hide > .react-resizable-handle {
  display: none;
}

.react-grid-item > .react-resizable-handle.react-resizable-handle-sw {
  bottom: 0;
  left: 0;
  cursor: sw-resize;
  transform: rotate(90deg);
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-se {
  bottom: 0;
  right: 0;
  cursor: se-resize;
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-nw {
  top: 0;
  left: 0;
  cursor: nw-resize;
  transform: rotate(180deg);
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-ne {
  top: 0;
  right: 0;
  cursor: ne-resize;
  transform: rotate(270deg);
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-w,
.react-grid-item > .react-resizable-handle.react-resizable-handle-e {
  top: 50%;
  margin-top: -10px;
  cursor: ew-resize;
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-w {
  left: 0;
  transform: rotate(135deg);
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-e {
  right: 0;
  transform: rotate(315deg);
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-n,
.react-grid-item > .react-resizable-handle.react-resizable-handle-s {
  left: 50%;
  margin-left: -10px;
  cursor: ns-resize;
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-n {
  top: 0;
  transform: rotate(225deg);
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-s {
  bottom: 0;
  transform: rotate(45deg);
}

.react-grid-item.react-grid-placeholder {
  background: gray;
}

.react-grid-item > .react-resizable-handle::after {
  border: none;
}

/*!
 * https://github.com/arqex/react-datetime
 */

.rdt {
  position: relative;
}
.rdtPicker {
  display: none;
  position: absolute;
  min-width: 250px;
  padding: 4px;
  margin-top: 1px;
  z-index: 99999 !important;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
  border: 1px solid #f9f9f9;
}
.rdtOpen .rdtPicker {
  display: block;
}
.rdtStatic .rdtPicker {
  box-shadow: none;
  position: static;
}

.rdtPicker .rdtTimeToggle {
  text-align: center;
}

.rdtPicker table {
  width: 100%;
  margin: 0;
}
.rdtPicker td,
.rdtPicker th {
  text-align: center;
  height: 28px;
}
.rdtPicker td {
  cursor: pointer;
}
.rdtPicker td.rdtDay:hover,
.rdtPicker td.rdtHour:hover,
.rdtPicker td.rdtMinute:hover,
.rdtPicker td.rdtSecond:hover,
.rdtPicker .rdtTimeToggle:hover {
  background: #eeeeee;
  cursor: pointer;
}
.rdtPicker td.rdtOld,
.rdtPicker td.rdtNew {
  color: #999999;
}
.rdtPicker td.rdtToday {
  position: relative;
}
.rdtPicker td.rdtToday:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #428bca;
  border-top-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 4px;
  right: 4px;
}
.rdtPicker td.rdtActive,
.rdtPicker td.rdtActive:hover {
  background-color: #428bca;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.rdtPicker td.rdtActive.rdtToday:before {
  border-bottom-color: #fff;
}
.rdtPicker td.rdtDisabled,
.rdtPicker td.rdtDisabled:hover {
  background: none;
  color: #999999;
  cursor: not-allowed;
}

.rdtPicker td span.rdtOld {
  color: #999999;
}
.rdtPicker td span.rdtDisabled,
.rdtPicker td span.rdtDisabled:hover {
  background: none;
  color: #999999;
  cursor: not-allowed;
}
.rdtPicker th {
  border-bottom: 1px solid #f9f9f9;
}
.rdtPicker .dow {
  width: 14.2857%;
  border-bottom: none;
  cursor: default;
}
.rdtPicker th.rdtSwitch {
  width: 100px;
}
.rdtPicker th.rdtNext,
.rdtPicker th.rdtPrev {
  font-size: 21px;
  vertical-align: top;
}

.rdtPrev span,
.rdtNext span {
  display: block;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */    /* Konqueror */      /* Firefox */       /* Internet Explorer/Edge */
  user-select: none;
}

.rdtPicker th.rdtDisabled,
.rdtPicker th.rdtDisabled:hover {
  background: none;
  color: #999999;
  cursor: not-allowed;
}
.rdtPicker thead tr:first-of-type th {
  cursor: pointer;
}
.rdtPicker thead tr:first-of-type th:hover {
  background: #eeeeee;
}

.rdtPicker tfoot {
  border-top: 1px solid #f9f9f9;
}

.rdtPicker button {
  border: none;
  background: none;
  cursor: pointer;
}
.rdtPicker button:hover {
  background-color: #eee;
}

.rdtPicker thead button {
  width: 100%;
  height: 100%;
}

td.rdtMonth,
td.rdtYear {
  height: 50px;
  width: 25%;
  cursor: pointer;
}
td.rdtMonth:hover,
td.rdtYear:hover {
  background: #eee;
}

.rdtCounters {
  display: inline-block;
}

.rdtCounters > div {
  float: left;
}

.rdtCounter {
  height: 100px;
}

.rdtCounter {
  width: 40px;
}

.rdtCounterSeparator {
  line-height: 100px;
}

.rdtCounter .rdtBtn {
  height: 40%;
  line-height: 40px;
  cursor: pointer;
  display: block;

  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */    /* Konqueror */      /* Firefox */       /* Internet Explorer/Edge */
  user-select: none;
}
.rdtCounter .rdtBtn:hover {
  background: #eee;
}
.rdtCounter .rdtCount {
  height: 20%;
  font-size: 1.2em;
}

.rdtMilli {
  vertical-align: middle;
  padding-left: 8px;
  width: 48px;
}

.rdtMilli input {
  width: 100%;
  font-size: 1.2em;
  margin-top: 37px;
}

.rdtTime td {
  cursor: default;
}

.editor .editor-textarea:focus {
    /* outline-style: solid; */
    /* outline-color: #54338B;  */
    outline: 1px solid #54338B;
    border: 1px solid #54338B;
    border-radius: 2px;
}

.editor .editor-textarea {
    border: 1px solid #646464;
}

.editor-textarea {
    min-height: 90px;
    max-height: 100px;
}

.editor-textarea * {
    color: #000 !important;
}

.editor-error .editor-textarea:focus {
    /* outline-style: solid; */
    /* outline-color: #54338B;  */
    outline: 1px solid #a4262c;
    border: 1px solid #a4262c;
    border-radius: 2px;
}

.editor-error .editor-textarea {
    border: 1px solid #a4262c;
}

.editor-disabled .editor-textarea {
    border: 1px solid #F2F2F2;
    background-color: #F2F2F2 !important;
}
.obf-ChoiceGroup {
  margin-bottom: 8px;
}
.obf-ChoiceGroup fieldset {
  margin: 0;
  border: none;
  padding: 0;
}
.obf-ChoiceGroup legend {
  max-width: 100%;
}
.obf-ChoiceGroup input {
  position: absolute;
  opacity: 0;
}
.obf-ChoiceGroup input + label {
  display: block;
  display: grid;
  grid-template-columns: 20px auto;
  cursor: pointer;
  margin: 8px 6px 8px 6px;
}
.obf-ChoiceGroup input:focus + label {
  outline: 1px dashed black;
}
.obf-ChoiceGroup input + label > .obf-ChoiceGroupLabel {
  display: inline-block;
  vertical-align: middle;
  margin: 0px 0px 0px 10px;
}
.obf-ChoiceGroup input[type=radio] + label > .obf-ChoiceGroupIcon {
  display: inline-block;
  content: "";
  border: 1px solid #a6a6a6;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  vertical-align: middle;
  box-sizing: border-box;
  transition-property: border-color;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.23, 1);
}
.obf-ChoiceGroup input[type=radio]:checked + label > .obf-ChoiceGroupIcon {
  border: 2px solid;
}
.obf-ChoiceGroup input[type=radio]:checked + label > .obf-ChoiceGroupIcon > span {
  display: block;
  width: 70%;
  height: 70%;
  margin: 15%;
  border-radius: 50%;
  box-sizing: border-box;
  border: 5px solid transparent;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.23, 1);
}

.obf-OverallAnchor {
  color: #ffffff;
  width: 300px;
  height: 45px;
  padding: 0px;
  border: 0px;
  margin-bottom: 4px;
  background-color: #757575;
  outline: 2px solid transparent;
}
.obf-OverallAnchor:hover {
  outline: 2px dashed black;
}
.obf-OverallAnchor:focus {
  outline: 2px dashed black;
}
.obf-OverallAnchor.obf-OverallAnchorActive {
  outline: 2px solid transparent;
}
.obf-OverallAnchor.obf-OverallAnchorActive:hover {
  outline: 2px dashed black;
}
.obf-OverallAnchor.obf-OverallAnchorActive:focus {
  outline: 2px dashed black;
}
@media screen and (-ms-high-contrast: active) {
  .obf-OverallAnchor {
    -ms-high-contrast-adjust: none;
    background-color: ButtonFace !important;
    color: ButtonText !important;
    fill: ButtonText !important;
    outline: 1px solid ButtonText !important;
  }
  .obf-OverallAnchor:hover {
    -ms-high-contrast-adjust: none;
    background-color: Highlight !important;
    color: HighlightText !important;
    fill: HighlightText !important;
    outline: 2px dashed ButtonText !important;
  }
  .obf-OverallAnchor:focus {
    -ms-high-contrast-adjust: none;
    background-color: Highlight !important;
    color: HighlightText !important;
    fill: HighlightText !important;
    outline: 2px dashed ButtonText !important;
  }
  .obf-OverallAnchor.obf-OverallAnchorActive {
    -ms-high-contrast-adjust: none;
    background-color: Highlight !important;
    color: HighlightText !important;
    fill: HighlightText !important;
    outline: 2px solid ButtonText !important;
  }
  .obf-OverallAnchor.obf-OverallAnchorActive:hover {
    -ms-high-contrast-adjust: none;
    background-color: Highlight !important;
    color: HighlightText !important;
    fill: HighlightText !important;
    outline: 2px dashed ButtonText !important;
  }
  .obf-OverallAnchor.obf-OverallAnchorActive:focus {
    -ms-high-contrast-adjust: none;
    background-color: Highlight !important;
    color: HighlightText !important;
    fill: HighlightText !important;
    outline: 2px dashed ButtonText !important;
  }
  .obf-OverallAnchor .obf-OverallImage {
    fill: inherit !important;
  }
  .obf-OverallAnchor .obf-OverallText {
    color: inherit !important;
    outline-color: inherit !important;
  }
}

.obf-OverallImage {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  display: inline-block;
  margin: 8px;
  fill: white;
}

.obf-OverallText {
  color: #ffffff;
  vertical-align: middle;
  text-align: left;
  display: inline-block;
}
.obf-Rtl .obf-OverallText {
  text-align: right;
}

.obf-CloseButton {
  float: right;
  background: none;
  border: 0px;
  padding: 8px;
  margin-top: 5px;
}
.obf-CloseButton:hover {
  background-color: lightgray;
}
.obf-Rtl .obf-CloseButton {
  float: left;
}

#obf-QuestionLeftText {
  padding-top: 21px;
  padding-bottom: 15px;
  width: 300px;
}

.obf-FormQuestionMiddleText {
  padding-top: 21px;
  padding-bottom: 15px;
  display: block;
}

.obf-FormMiddleText {
  line-height: 120%;
  padding-bottom: 16px;
}

.obf-FormComment {
  width: 300px;
  height: 120px;
  margin-bottom: 8px;
}

.obf-FormRatingContainer {
  margin-bottom: 8px;
}

.obf-FormRatingLabel {
  display: inline-block;
  vertical-align: middle;
  padding-right: 10px;
  display: block;
}
.obf-Rtl .obf-FormRatingLabel {
  padding-right: 0px;
  padding-left: 10px;
}

.obf-FormCategoriesDropdown {
  width: 300px;
  height: 32px;
  margin-bottom: 8px;
}

.obf-FormCategoriesDropdown ~ .obf-FormComment {
  height: 80px;
}

.obf-FormRating {
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
}

.obf-FormEmailContainer {
  width: 300px;
  height: 100%;
  margin-bottom: 8px;
  margin-top: 8px;
}

.obf-FormEmailInput {
  height: 30px;
  width: 100%;
  margin-bottom: 8px;
}

#obf-FormEmailTextBox {
  width: 100%;
}

.obf-FormEmailCheckbox {
  display: inline-block;
  vertical-align: middle;
}

.obf-FormEmailLabel {
  display: inline-block;
  vertical-align: top;
  width: 90%;
  margin-left: 3px;
  margin-right: 3px;
  padding-bottom: 8px;
}

.obf-FormScreenshotContainer {
  display: inline-block;
  vertical-align: middle;
  width: 180px;
}

.obf-FormScreenshotCheckbox {
  display: inline-block;
  vertical-align: top;
}

.obf-FormScreenshotLabel {
  display: inline-block;
  vertical-align: top;
  width: 80%;
  margin-left: 3px;
  margin-right: 3px;
  margin-bottom: 8px;
}

.obf-FormScreenshotPreview {
  width: 180px;
  height: 90px;
  margin-bottom: 12px;
  border: 1px solid grey;
}

.obf-FormSubmitButtonContainer {
  display: inline-block;
  vertical-align: middle;
  width: 300px;
  margin-bottom: 21px;
}

/*#endregion*/
.obf-CancelButton {
  height: 32px;
  background-color: #757575;
  color: white;
  width: 120px;
  padding: 0px;
  margin-right: 10px;
  border: 0px;
  outline: 1px solid transparent;
  font-family: "wf_SegoeUIRegular", "wf_SegoeUI", "Segoe UI Regular", "Segoe UI", "Segoe", "Segoe WP", "Tahoma", "Verdana", "Arial", "sans-serif";
  font-size: 14px;
}
.obf-Rtl .obf-CancelButton {
  margin-left: 10px;
  margin-right: 0px;
}
.obf-CancelButton:hover {
  outline: 2px dashed transparent;
}
.obf-CancelButton:focus {
  outline: 2px dashed black;
}
.obf-CancelButton:active {
  outline: 4px solid transparent;
}
.obf-CancelButton[disabled], .obf-CancelButton[disabled]:hover, .obf-CancelButton[disabled]:focus, .obf-CancelButton[disabled]:active {
  background-color: lightgray;
}
@media screen and (-ms-high-contrast: active) {
  .obf-CancelButton:hover {
    -ms-high-contrast-adjust: none;
    outline: 2px dashed buttonText;
    background-color: Highlight !important;
    color: HighlightText !important;
  }
  .obf-CancelButton:focus {
    -ms-high-contrast-adjust: none;
    outline: 2px dashed buttonText;
    background-color: Highlight;
    color: HighlightText;
  }
  .obf-CancelButton[disabled], .obf-CancelButton[disabled]:hover, .obf-CancelButton[disabled]:focus, .obf-CancelButton[disabled]:active {
    -ms-high-contrast-adjust: auto;
    background-color: transparent !important;
    background-color: initial !important;
    color: inherit !important;
    outline: 2px solid;
  }
}

@media screen and (-ms-high-contrast: active) {
  /* All high contrast styling rules */
  .obf-CloseButton > svg {
    fill: buttonText;
  }
}
#obf-OverlayBackground {
  background-color: rgba(0, 0, 0, 0.5);
  color: #444444;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  min-height: 200px;
  position: absolute;
  z-index: 10000000000;
  -webkit-user-select: none;
  user-select: none;
  min-width: 780px;
}
#obf-OverlayBackground.obf-NarrowLayout {
  min-width: 320px;
  /*Yields minimum 10px margins around the forms */
}
#obf-OverlayBackground.obf-SingleLayout {
  min-width: 320px;
  /*Yields minimum 10px margins around the forms */
}
@keyframes obf-MainContainerGrowFromCenter {
  from {
    margin-top: 0;
    height: 0;
  }
  to {
    margin-top: -125px;
    height: auto;
  }
}
#obf-MainContainer {
  border-top: 1px solid gray;
  border-bottom: 1px solid gray;
  background-color: white;
  top: 45%;
  min-width: 100%;
  position: absolute;
  margin-top: -160px;
  height: auto;
  animation-duration: 1s;
  animation-name: obf-MainContainerGrowFromCenter;
  animation-fill-mode: forwards;
}

#obf-MainContentHolder {
  height: 100%;
  width: 720px;
  margin: 0 auto;
}
.obf-NarrowLayout #obf-MainContentHolder {
  width: 300px;
}
.obf-SingleLayout #obf-MainContentHolder {
  width: 300px;
}

#obf-LeftFormContainer {
  float: left;
  margin-left: 180px;
  min-height: 320px;
}
.obf-Rtl #obf-LeftFormContainer {
  float: right;
  margin-right: 180px;
  margin-left: 0px;
}
.obf-NarrowLayout #obf-LeftFormContainer {
  float: left;
  margin-left: 0;
}
.obf-Rtl.obf-NarrowLayout #obf-LeftFormContainer {
  float: right;
  margin-right: 0;
}
#obf-LeftFormContainer.obf-slideLeft {
  animation-duration: 2s;
  animation-name: obf-LeftFormContainerSlideLeft;
  animation-fill-mode: forwards;
}
.obf-Rtl #obf-LeftFormContainer.obf-slideLeft {
  animation-name: obf-LeftFormContainerSlideRight;
}
@keyframes obf-LeftFormContainerSlideLeft {
  from {
    margin-left: 180px;
  }
  to {
    margin-left: 0;
  }
}
@keyframes obf-LeftFormContainerSlideRight {
  from {
    margin-right: 180px;
  }
  to {
    margin-right: 0;
  }
}

#obf-MiddleFormContainer {
  margin-left: 540px;
  min-height: 320px;
}
.obf-Rtl #obf-MiddleFormContainer {
  margin-right: 540px;
  margin-left: 0px;
}
.obf-NarrowLayout #obf-MiddleFormContainer {
  margin-left: 0;
}
.obf-SingleLayout #obf-MiddleFormContainer {
  margin-left: 0;
}
.obf-Rtl.obf-NarrowLayout #obf-MiddleFormContainer {
  margin-right: 0;
}
.obf-Rtl.obf-SingleLayout #obf-MiddleFormContainer {
  margin-right: 0;
}
#obf-MiddleFormContainer.obf-slideLeft {
  animation-duration: 2s;
  animation-name: obf-MiddleFormContainerSlideLeft;
  animation-fill-mode: forwards;
}
.obf-Rtl #obf-MiddleFormContainer.obf-slideLeft {
  animation-name: obf-MiddleFormContainerSlideRight;
}
@keyframes obf-MiddleFormContainerSlideLeft {
  from {
    margin-left: 540px;
  }
  to {
    margin-left: 360px;
  }
}
@keyframes obf-MiddleFormContainerSlideRight {
  from {
    margin-right: 540px;
  }
  to {
    margin-right: 360px;
  }
}

.obf-MarginLeft60px {
  margin-left: 60px;
}
.obf-Rtl .obf-MarginLeft60px {
  margin-right: 60px;
  margin-left: 0px;
}
.obf-NarrowLayout .obf-MarginLeft60px {
  margin-left: 0;
}
.obf-Rtl.obf-NarrowLayout .obf-MarginLeft60px {
  margin-right: 0;
}

.obf-MarginLeft180px {
  margin-left: 23% !important;
}
.obf-Rtl .obf-MarginLeft180px {
  margin-right: 23% !important;
  margin-left: 0px;
}

.obf-FormContainer {
  height: 100%;
  width: 360px;
  position: relative;
  font-size: 0;
}
.obf-NarrowLayout .obf-FormContainer {
  width: 300px;
}
.obf-SingleLayout .obf-FormContainer {
  width: 300px;
}

.obf-FormWideContainer {
  height: 100%;
  max-width: 720px;
  position: relative;
  font-size: 0;
}
.obf-NarrowLayout .obf-FormWideContainer {
  width: 300px;
}
.obf-SingleLayout .obf-FormWideContainer {
  width: 300px;
}

#obf-ColumnSeparatorDiv {
  width: 100%;
  margin-bottom: 10px;
}

.obf-FormBottomContainer {
  width: 300px;
  height: 34px;
  position: absolute;
  bottom: 24px;
}

.obf-ShowRightBorder {
  border-right: 1px solid #e0e0e0;
}
.obf-Rtl .obf-ShowRightBorder {
  border-left: 1px solid #e0e0e0;
  border-right: none;
}

#obf-ThanksPanelDiscussion svg {
  width: 142px;
  height: 120px;
}

#obf-ThanksPanelContainer {
  height: 100%;
}

#obf-ThanksPanelInnerContainer {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  height: 100%;
  min-height: 320px;
}
.obf-NarrowLayout #obf-ThanksPanelInnerContainer {
  flex-direction: column;
  align-items: flex-start;
}
.obf-SingleLayout #obf-ThanksPanelInnerContainer {
  flex-direction: column;
  align-items: flex-start;
}

#obf-ThanksPanelVerticalContainer {
  margin-left: 40px;
}
.obf-NarrowLayout #obf-ThanksPanelVerticalContainer {
  margin-left: 0;
}
.obf-SingleLayout #obf-ThanksPanelVerticalContainer {
  margin-left: 0;
}
.obf-NarrowLayout #obf-ThanksPanelVerticalContainer .obf-Rtl #obf-ThanksPanelVerticalContainer {
  margin-left: 0;
  margin-right: 20px;
}
.obf-SingleLayout #obf-ThanksPanelVerticalContainer .obf-Rtl #obf-ThanksPanelVerticalContainer {
  margin-left: 0;
  margin-right: 20px;
}

#obf-ThanksPanelCloseButton {
  margin-top: 0px;
  font-size: 14px;
}

.obf-FontTitle {
  font-size: 18px;
  line-height: 24px;
  font-family: "wf_SegoeUIRegular", "wf_SegoeUI", "Segoe UI Regular", "Segoe UI", "Segoe", "Segoe WP", "Tahoma", "Verdana", "Arial", "sans-serif";
  font-weight: 600;
}

.obf-Hidden {
  display: none;
}

.obf-Visible {
  display: block;
}

.obf-FontSubtitle {
  font-size: 18px;
  line-height: 24px;
  font-family: "wf_SegoeUIRegular", "wf_SegoeUI", "Segoe UI Regular", "Segoe UI", "Segoe", "Segoe WP", "Tahoma", "Verdana", "Arial", "sans-serif";
}

.obf-FontText {
  font-size: 16px;
  line-height: 20px;
  font-family: "wf_SegoeUIRegular", "wf_SegoeUI", "Segoe UI Regular", "Segoe UI", "Segoe", "Segoe WP", "Tahoma", "Verdana", "Arial", "sans-serif";
}

.obf-FontSubText {
  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-requiredAsterisk {
  color: #ae1515;
  margin-left: 3px;
}

.obf-FontSubSubText {
  font-size: 12px;
  line-height: 16px;
  font-family: "wf_SegoeUIRegular", "wf_SegoeUI", "Segoe UI Regular", "Segoe UI", "Segoe", "Segoe WP", "Tahoma", "Verdana", "Arial", "sans-serif";
}

.obf-TextAlignLeft {
  text-align: left;
}
.obf-Rtl .obf-TextAlignLeft {
  text-align: right;
}

.obf-PrivacyStatementLinkDiv {
  width: 100%;
  margin-bottom: 8px;
  padding: 1px;
}

.obf-PrivacyStatementLinkDivEudbUx {
  width: 100%;
  margin-bottom: 14px;
  padding: 1px;
}

.obf-TextInput {
  padding: 4px 10px 4px 10px;
  border: 1px solid #b0b0b0;
  overflow: auto;
  box-shadow: none;
  box-sizing: border-box;
  resize: none;
}

.obf-Link {
  text-decoration: underline;
}
.obf-Link:hover {
  outline: 1px dashed transparent;
  cursor: pointer;
}
.obf-Link:focus {
  outline: 1px dashed black;
}
.obf-Link:active {
  outline: 2px solid transparent;
}

.obf-SubmitButton {
  height: 32px;
  color: white;
  width: 120px;
  padding: 0px;
  border: 0px;
  outline: 1px solid transparent;
  font-family: "wf_SegoeUIRegular", "wf_SegoeUI", "Segoe UI Regular", "Segoe UI", "Segoe", "Segoe WP", "Tahoma", "Verdana", "Arial", "sans-serif";
  font-size: 14px;
}
.obf-SubmitButton:hover {
  outline: 2px dashed transparent;
}
.obf-SubmitButton:focus {
  outline: 2px dashed black;
}
.obf-SubmitButton:active {
  outline: 4px solid transparent;
}
.obf-SubmitButton[disabled], .obf-SubmitButton[disabled]:hover, .obf-SubmitButton[disabled]:focus, .obf-SubmitButton[disabled]:active {
  background-color: lightgray;
}
@media screen and (-ms-high-contrast: active) {
  .obf-SubmitButton:hover {
    -ms-high-contrast-adjust: none;
    outline: 2px dashed buttonText;
    background-color: Highlight !important;
    color: HighlightText !important;
  }
  .obf-SubmitButton:focus {
    -ms-high-contrast-adjust: none;
    outline: 2px dashed buttonText;
    background-color: Highlight;
    color: HighlightText;
  }
  .obf-SubmitButton[disabled], .obf-SubmitButton[disabled]:hover, .obf-SubmitButton[disabled]:focus, .obf-SubmitButton[disabled]:active {
    -ms-high-contrast-adjust: auto;
    background-color: transparent !important;
    background-color: initial !important;
    color: inherit !important;
    outline: 2px solid;
  }
}

.obf-CheckBox {
  outline: 1px solid transparent;
}
.obf-CheckBox:hover {
  outline: 1px dashed transparent;
}
.obf-CheckBox:focus {
  outline: 1px dashed black;
}
.obf-CheckBox:active {
  outline: 2px solid transparent;
}

.obf-Rating {
  font-size: 0;
  white-space: nowrap;
  display: inline-block;
  width: 105px;
  height: 20px;
  overflow: hidden;
  position: relative;
  background-size: contain;
  fill: #fff;
  stroke: #000;
  vertical-align: middle;
}
.obf-Rating .obf-RatingGraphic {
  position: absolute;
  left: 0;
  top: 0;
  height: 20px;
}
.obf-Rtl .obf-Rating .obf-RatingGraphic {
  left: auto;
  right: 0;
}
.obf-Rating .obf-RatingGraphic-Filled {
  opacity: 0;
  fill: #949494;
  stroke: #949494;
  z-index: 1;
}
.obf-Rating input:checked + .obf-RatingGraphic-Filled {
  opacity: 0.5;
}
.obf-Rating input:hover + .obf-RatingGraphic-Filled {
  opacity: 1;
}
.obf-Rating input {
  opacity: 0;
  display: inline-block;
  width: 20%;
  height: 100%;
  margin: 0;
  padding: 0;
  z-index: 2;
  position: relative;
}

.obf-Spinner {
  position: relative;
  height: 36px;
  width: 36px;
  margin: auto;
}

.obf-SpinnerCircle {
  position: absolute;
  border-radius: 100px;
  opacity: 0;
}

.obf-Toast {
  position: fixed;
  position: var(--obf-position, fixed);
  bottom: 10px;
  bottom: var(--obf-bottom, 10px);
  right: 10px;
  right: var(--obf-right, 10px);
  z-index: 10000000000;
  z-index: var(--obf-zIndex, 10000000000);
  animation-duration: 0.5s;
  animation-name: obf-ToastSlideUp;
  animation-fill-mode: forwards;
}
@keyframes obf-ToastSlideUp {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 10px;
    bottom: var(--obf-bottom, 10px);
    opacity: 1;
  }
}
.obf-Toast.obf-Rtl {
  right: auto;
  left: 10px;
}

.obf-ToastZoom {
  /*Handles small screens and browser zoom.
    Makes height a proportion of available vertical
    viewport and a scrollbar is enabled when
    overflowing starts*/
}
@media (max-height: 536px) {
  .obf-ToastZoom {
    height: calc(79% - 5px);
    height: calc(79% - var(--obf-bottom, 5px));
    overflow-y: auto;
    bottom: 5px;
    bottom: var(--obf-bottom, 5px);
    right: 5px;
    right: var(--obf-right, 5px);
  }
}

#obf-ToastCancel {
  float: right;
  cursor: pointer;
  padding: 0px 0px 15px 15px;
  border: 0px;
  background: none;
  fill: black;
}
.obf-Rtl #obf-ToastCancel {
  padding: 0px 15px 15px 0px;
  float: left;
}
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
  #obf-ToastCancel {
    fill: ButtonText;
    outline-color: inherit;
  }
}
@media (max-width: 320px) {
  #obf-ToastCancel {
    padding: 0px;
  }
}

#obf-ToastContainer {
  border: 1px solid gray;
  padding: 15px;
  background-color: white;
  max-height: 90%;
  overflow-y: auto;
}
@media (max-width: 320px) {
  #obf-ToastContainer {
    padding-top: 5px;
    padding-left: 4px;
    padding-right: 4px;
    padding-bottom: 5px;
  }
}

#obf-TPromptContainer {
  cursor: pointer;
  width: 280px;
  padding: 0px;
  border: 0px;
  background: none;
}

#obf-TFormContainer {
  width: 280px;
}

#obf-TPromptTitle {
  margin-bottom: 8px;
}

#obf-TPromptText {
  margin-bottom: 8px;
}

#obf-TFormTitle {
  margin-bottom: 8px;
  margin-right: 20px;
}

#obf-TFormComment {
  width: 100%;
  height: 100px;
  margin-bottom: 6px;
}

#obf-TFormCommentQuestion {
  width: 100%;
  margin-bottom: 6px;
  display: block;
}

#obf-TFormEmailTextBox {
  width: 100%;
}

.obf-TFormEmailCheckbox {
  display: inline-block;
  vertical-align: middle;
}

#obf-EmailCheckBoxLabel {
  margin-bottom: 8px;
}

.obf-TFormEmailLabel {
  display: inline-block;
  vertical-align: top;
  width: 80%;
  margin-left: 3px;
  margin-right: 3px;
  padding-bottom: 3px;
}

#obf-TFormSubmitButtonContainer {
  text-align: right;
}

#obf-TFormCancelButton {
  margin-left: 10px;
  margin-right: 0px;
}
.obf-Rtl #obf-TFormCancelButton {
  margin-left: 0px;
  margin-right: 10px;
}

.obf-TFormPrivacyConsentText {
  color: #737373;
}
