.App {
  width: 100%;
  min-height: 100vh;
  padding: 20px;
  padding-bottom: 110px;
}

.App-bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: 50% 50% scroll no-repeat;
  background-size: cover;
}

.App-content {
  width: 100%;
  min-height: calc(100vh - 230px);
  max-width: 960px;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  overflow: hidden;
}

.App-ActivityIndicator svg circle {
  stroke: #ffffff;
}

.ActivityIndicator {
  position: relative;
  opacity: 0;
  pointer-events: none;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-transition: all 100ms 0ms ease-in-out;
  -moz-transition: all 100ms 0ms ease-in-out;
  -ms-transition: all 100ms 0ms ease-in-out;
  transition: all 100ms 0ms ease-in-out;
}
.ActivityIndicator svg circle {
  stroke-dasharray: 114;
  stroke-dashoffset: 0;
  transform-origin: center;
  stroke: #aeb9c3;
}
.ActivityIndicator.active {
  opacity: 1;
}
.ActivityIndicator.active svg {
  -webkit-animation: ActivityIndicator-rotator 1400ms infinite linear;
  -moz-animation: ActivityIndicator-rotator 1400ms infinite linear;
  animation: ActivityIndicator-rotator 1400ms infinite linear;
}
.ActivityIndicator.active svg circle {
  -webkit-animation: ActivityIndicator-dash 1400ms ease-in-out infinite;
  -moz-animation: ActivityIndicator-dash 1400ms ease-in-out infinite;
  animation: ActivityIndicator-dash 1400ms ease-in-out infinite;
}

@-webkit-keyframes ActivityIndicator-rotator {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}
@-moz-keyframes ActivityIndicator-rotator {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}
@keyframes ActivityIndicator-rotator {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}
@-webkit-keyframes ActivityIndicator-dash {
  0% {
    stroke-dashoffset: 114;
  }
  50% {
    stroke-dashoffset: 28.5;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 114;
    -webkit-transform: rotate(450deg);
    -moz-transform: rotate(450deg);
    -ms-transform: rotate(450deg);
    transform: rotate(450deg);
  }
}
@-moz-keyframes ActivityIndicator-dash {
  0% {
    stroke-dashoffset: 114;
  }
  50% {
    stroke-dashoffset: 28.5;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 114;
    -webkit-transform: rotate(450deg);
    -moz-transform: rotate(450deg);
    -ms-transform: rotate(450deg);
    transform: rotate(450deg);
  }
}
@keyframes ActivityIndicator-dash {
  0% {
    stroke-dashoffset: 114;
  }
  50% {
    stroke-dashoffset: 28.5;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 114;
    -webkit-transform: rotate(450deg);
    -moz-transform: rotate(450deg);
    -ms-transform: rotate(450deg);
    transform: rotate(450deg);
  }
}
.Button {
  position: relative;
  min-width: 200px;
  height: 48px;
  padding: 0;
  line-height: 1;
  background: 0;
  color: #3f4950;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  outline: 0;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-transition: all 150ms 0ms ease-in-out;
  -moz-transition: all 150ms 0ms ease-in-out;
  -ms-transition: all 150ms 0ms ease-in-out;
  transition: all 150ms 0ms ease-in-out;
}
.Button .ActivityIndicator {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #3f4950;
  -webkit-transform: translate3d(-50%, -50%, 0) scale(0.75);
  -moz-transform: translate3d(-50%, -50%, 0) scale(0.75);
  -ms-transform: translate3d(-50%, -50%, 0) scale(0.75);
  transform: translate3d(-50%, -50%, 0) scale(0.75);
}
.Button:not(.busy):hover.filled, .Button:not(.busy):focus.filled {
  -webkit-filter: brightness(105%);
  -moz-filter: brightness(105%);
  -ms-filter: brightness(105%);
  filter: brightness(105%);
}
.Button:not(.busy):hover:not(.filled), .Button:not(.busy):focus:not(.filled) {
  -webkit-filter: brightness(110%);
  -moz-filter: brightness(110%);
  -ms-filter: brightness(110%);
  filter: brightness(110%);
}
.Button.full-width {
  width: 100%;
}
.Button.small {
  min-width: 120px;
  height: 28px;
  margin: 5px 0;
}
.Button.small .ActivityIndicator {
  -webkit-transform: translate3d(-50%, -50%, 0) scale(0.5);
  -moz-transform: translate3d(-50%, -50%, 0) scale(0.5);
  -ms-transform: translate3d(-50%, -50%, 0) scale(0.5);
  transform: translate3d(-50%, -50%, 0) scale(0.5);
}
.Button:active {
  -webkit-transform: scale(0.98) !important;
  -moz-transform: scale(0.98) !important;
  -ms-transform: scale(0.98) !important;
  transform: scale(0.98) !important;
}
.Button.busy {
  pointer-events: none;
}
.Button.primary {
  color: #003d50;
}
.Button.primary.filled {
  background: #003d50;
}
.Button.primary:not(.filled) {
  border-color: #003d50;
}
.Button.primary:not(.filled) .ActivityIndicator svg circle {
  color: #003d50;
}
.Button.secondary {
  color: #4cb7d5;
}
.Button.secondary.filled {
  background: #4cb7d5;
}
.Button.secondary:not(.filled) {
  border-color: #4cb7d5;
}
.Button.secondary:not(.filled) .ActivityIndicator svg circle {
  stroke: #4cb7d5;
}
.Button.medium {
  color: #91a0ad;
}
.Button.medium.filled {
  background: #91a0ad;
}
.Button.medium:not(.filled) {
  border-color: #91a0ad;
}
.Button.medium:not(.filled) .ActivityIndicator svg circle {
  stroke: #91a0ad;
}
.Button.dark {
  color: #3f4950;
}
.Button.dark.filled {
  background: #3f4950;
}
.Button.dark:not(.filled) {
  border-color: #3f4950;
}
.Button.dark:not(.filled) .ActivityIndicator svg circle {
  stroke: #3f4950;
}
.Button.success {
  color: #2ed1a0;
}
.Button.success.filled {
  background: #2ed1a0;
}
.Button.success:not(.filled) {
  border-color: #2ed1a0;
}
.Button.success:not(.filled) .ActivityIndicator svg circle {
  stroke: #2ed1a0;
}
.Button.warning {
  color: #eec24b;
}
.Button.warning.filled {
  background: #eec24b;
}
.Button.warning:not(.filled) {
  border-color: #eec24b;
}
.Button.warning:not(.filled) .ActivityIndicator svg circle {
  stroke: #2ed1a0;
}
.Button.danger {
  color: #df4c43;
}
.Button.danger.filled {
  background: #df4c43;
}
.Button.danger:not(.filled) {
  border-color: #df4c43;
}
.Button.danger:not(.filled) .ActivityIndicator svg circle {
  stroke: #df4c43;
}
.Button.white {
  color: #ffffff;
}
.Button.white.filled {
  background: #ffffff;
}
.Button.white:not(.filled) {
  border-color: #ffffff;
}
.Button.white:not(.filled) .ActivityIndicator svg circle {
  stroke: #ffffff;
}
.Button.filled {
  color: #ffffff;
}
.Button.filled .ActivityIndicator svg circle {
  stroke: #ffffff;
}
.Button:not(.filled) {
  border-color: #cbd2d9;
}
.Button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.Button:disabled:hover {
  -webkit-filter: none !important;
  -moz-filter: none !important;
  -ms-filter: none !important;
  filter: none !important;
}
.StackLayout.horizontal > .Button {
  margin: 0 10px;
}
.StackLayout.horizontal > .Button:first-child {
  margin-left: 0;
}
.StackLayout.horizontal > .Button:last-child {
  margin-right: 0;
}

.Button-container {
  width: 100%;
  padding: 0 20px;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.Button-container.small {
  padding: 0 10px;
}
.Button:disabled .Button-container {
  pointer-events: none;
}

.Button-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  pointer-events: none;
  -webkit-transition: all 150ms 0ms ease-in-out;
  -moz-transition: all 150ms 0ms ease-in-out;
  -ms-transition: all 150ms 0ms ease-in-out;
  transition: all 150ms 0ms ease-in-out;
}
.Button.busy .Button-label {
  opacity: 0.25;
}
.Button.small .Button-label {
  font-size: 12px;
}

.Checkbox {
  max-width: 480px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.Checkbox label {
  cursor: pointer;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.Checkbox.disabled {
  opacity: 0.3333;
}
.Checkbox.disabled label {
  cursor: not-allowed;
}
.Checkbox.align-top label {
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.Checkbox-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.Checkbox-checkbox {
  width: 24px;
  height: 24px;
  background: #ffffff;
  border: 1px solid #bdc6ce;
  border-radius: 2.5px;
  -webkit-flex: 0 0 auto;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-transition: all 100ms 0ms ease-in-out;
  -moz-transition: all 100ms 0ms ease-in-out;
  -ms-transition: all 100ms 0ms ease-in-out;
  transition: all 100ms 0ms ease-in-out;
}
.Checkbox-checkbox .icon {
  font-size: 16px;
  opacity: 0;
  -webkit-transition: all 100ms 0ms ease-in-out;
  -moz-transition: all 100ms 0ms ease-in-out;
  -ms-transition: all 100ms 0ms ease-in-out;
  transition: all 100ms 0ms ease-in-out;
}
.Checkbox.checked .Checkbox-checkbox {
  border-color: #2ed1a0;
}
.Checkbox.checked .Checkbox-checkbox .icon {
  color: #2ed1a0;
  opacity: 1;
}
.Checkbox.focus:not(.checked) .Checkbox-checkbox {
  border-color: #4cb7d5;
}
.Checkbox.radio .Checkbox-checkbox, .Checkbox.round .Checkbox-checkbox {
  border-radius: 100%;
}

.Checkbox-label {
  margin-left: 10px;
  line-height: 1.2;
  font-size: 14px;
  -webkit-transition: all 100ms 0ms ease-in-out;
  -moz-transition: all 100ms 0ms ease-in-out;
  -ms-transition: all 100ms 0ms ease-in-out;
  transition: all 100ms 0ms ease-in-out;
}
.Checkbox.checked .Checkbox-label {
  color: #2ed1a0;
}
.Checkbox.label-left .Checkbox-label {
  margin-left: 0;
  margin-right: 10px;
}

.Checkbox-tooltip {
  margin-left: 10px;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-flex: 0 0 auto;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.Checkbox-tooltip-icon {
  width: 24px;
  height: 24px;
  background: #e5e8ec;
  border-radius: 2.5px;
  pointer-events: auto;
  cursor: pointer;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-transition: all 100ms 0ms ease-in-out;
  -moz-transition: all 100ms 0ms ease-in-out;
  -ms-transition: all 100ms 0ms ease-in-out;
  transition: all 100ms 0ms ease-in-out;
}
.Checkbox-tooltip:hover .Checkbox-tooltip-icon {
  background: #4cb7d5;
  color: #ffffff;
}

.Checkbox-tooltip-text {
  display: inline-block;
  position: absolute;
  bottom: calc(100% + 5px);
  right: 0;
  width: 100px;
  padding: 8px 10px;
  line-height: 1.2;
  background: rgba(104, 111, 119, 0.9);
  color: #ffffff;
  font-size: 13px;
  border-radius: 2.5px;
  word-wrap: break-word;
  opacity: 0;
  -webkit-transition: all 100ms 0ms ease-in-out;
  -moz-transition: all 100ms 0ms ease-in-out;
  -ms-transition: all 100ms 0ms ease-in-out;
  transition: all 100ms 0ms ease-in-out;
}
.Checkbox-tooltip:hover .Checkbox-tooltip-text {
  opacity: 1;
}

.ContentBox {
  width: 100%;
  margin-top: 20px;
  padding: 5px 30px 50px 30px;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.ContentBox .customer-information {
  width: 100%;
  display: flex;
  align-items: flex-end;
  margin-top: 30px;
}
.ContentBox .customer-information .container {
  display: flex;
  align-items: flex-start;
  padding: 0 5px;
  background-color: whitesmoke;
  font-size: 10px;
  color: #003d50;
}
.ContentBox .customer-information .container .item {
  padding: 2.5px 5px;
  margin: 0;
}
.ContentBox h2:first-child {
  margin-top: 0;
}
.ContentBox.horizontal {
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.FieldsCollection {
  width: 100%;
  -webkit-flex: 0 0 auto;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.FieldsCollection-container {
  width: calc(100% + 10px);
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.FieldsCollection-FieldContainer {
  width: 100%;
  padding: 5px;
  -webkit-flex: 0 0 auto;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.FieldsCollection.center .FieldsCollection-FieldContainer {
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.FieldsCollection.right .FieldsCollection-FieldContainer {
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
}
@media screen and (max-width: 640px) {
  .FieldsCollection-FieldContainer {
    width: 100% !important;
  }
}

.FileDrop {
  position: relative;
  width: 100%;
  max-width: 720px;
  min-height: 200px;
  background: #ffffff;
  border: 2px dashed #bdc6ce;
  border-radius: 5px;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.FileDrop.disabled {
  opacity: 0.3333;
  cursor: not-allowed;
}
.FileDrop.drag-over {
  border-color: #4cb7d5;
}

.FileDrop-input {
  display: none;
}

.FileDrop-dropbox {
  width: 100%;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-flex: 1 1 auto;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.FileDrop.busy .FileDrop-dropbox, .FileDrop.disabled .FileDrop-dropbox {
  pointer-events: none;
}
.FileDrop:not(.busy) .FileDrop-dropbox {
  cursor: pointer;
}

.FileDrop-dropbox-icon {
  width: 64px;
  height: 64px;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.FileDrop-dropbox-icon .ActivityIndicator svg circle {
  stroke: #d6dae2 !important;
}
.FileDrop-dropbox-icon .icon {
  color: #d6dae2;
  font-size: 64px;
  -webkit-transition: color 100ms 0ms ease-in-out;
  -moz-transition: color 100ms 0ms ease-in-out;
  -ms-transition: color 100ms 0ms ease-in-out;
  transition: color 100ms 0ms ease-in-out;
}
.FileDrop:not(.drop-over):hover .FileDrop-dropbox-icon .icon {
  color: #b9bfcc;
}

.FileDrop-dropbox-text {
  margin-top: 10px;
  color: #91a0ad;
  font-size: 14px;
}

.Form {
  width: 100%;
}

.Form-container {
  width: 100%;
}

.Modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 200ms 0ms ease-in-out;
  -moz-transition: all 200ms 0ms ease-in-out;
  -ms-transition: all 200ms 0ms ease-in-out;
  transition: all 200ms 0ms ease-in-out;
}
.Modal.visible {
  opacity: 1;
  pointer-events: auto;
}

.Modal-overlay {
  position: absolute;
  top: -200px;
  right: -200px;
  bottom: -200px;
  left: -200px;
  background: rgba(0, 0, 0, 0.2);
}

.Modal-content-container {
  width: 100%;
  max-width: 480px;
  -webkit-transition: all 200ms 0ms ease-in-out;
  -moz-transition: all 200ms 0ms ease-in-out;
  -ms-transition: all 200ms 0ms ease-in-out;
  transition: all 200ms 0ms ease-in-out;
}
.Modal.visible .Modal-content-container {
  -webkit-transform: translate3d(0, 20px, 0);
  -moz-transform: translate3d(0, 20px, 0);
  -ms-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}

.modal-summary {
  width: 900px;
}

.Modal-content {
  width: 100%;
  max-height: calc(100vh - 40px);
  padding: 20px;
  background: #ffffff;
  font-size: 14px;
  border-radius: 2px;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Modal.horizontal .Modal-content {
  overflow-x: auto;
  overflow-y: hidden;
}
.Modal.vertical .Modal-content {
  overflow-x: hidden;
  overflow-y: auto;
}

.Modal-title {
  width: calc(100% + 40px);
  margin-top: -20px;
  margin-left: -20px;
  padding: 20px;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.Modal-title h2 {
  margin: 0 !important;
  font-size: 24px;
}
.Modal.success .Modal-title {
  background: #2ed1a0;
}
.Modal.success .Modal-title h2 {
  color: #ffffff;
}
.Modal.warning .Modal-title {
  background: #eec24b;
}
.Modal.warning .Modal-title h2 {
  color: #ffffff;
}
.Modal.danger .Modal-title {
  background: #df4c43;
}
.Modal.danger .Modal-title h2 {
  color: #ffffff;
}

.Modal-status-icon {
  margin-right: 10px;
}
.Modal.success .Modal-status-icon, .Modal.warning .Modal-status-icon, .Modal.danger .Modal-status-icon {
  color: #ffffff;
}

.Modal-buttons-container {
  margin-top: 20px;
}

.Notice {
  width: 100%;
  max-width: 480px;
  padding: 10px;
  line-height: 1.3;
  font-size: 14px;
  border: 1px solid transparent;
  border-radius: 5px;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Notice > p {
  margin: 5px 0;
}
.Notice > p:first-child {
  margin-top: 0;
}
.Notice > p:last-child {
  margin-bottom: 0;
}
.Notice .hyperlink {
  font-weight: 800;
  color: #4cb7d5;
  text-decoration: underline;
  cursor: pointer;
}
.Notice[data-title]:before {
  content: attr(data-title);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}
.Notice.medium {
  background: #e9ecee;
  color: #5c6d7c;
  border-color: #cbd2d9;
}
.Notice.secondary {
  background: #c8e9f2;
  color: #247e97;
  border-color: #9fd8e8;
}
.Notice.success {
  background: #d5f6ec;
  color: #1c7d60;
  border-color: #82e3c6;
}
.Notice.danger {
  background: #f5c8c6;
  color: #a1231b;
  border-color: #ee9f9a;
}
.Notice.warning {
  background: #fbf1d7;
  color: #c19212;
  border-color: #f7e2a8;
}

.Notification {
  display: flex;
  flex-direction: row;
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  border-radius: 4px;
  min-width: 20rem;
  padding: 15px;
  z-index: 200;
  user-select: none;
  opacity: 0;
  transition: opacity 400ms ease 0s;
}
.Notification .btn-close {
  cursor: pointer;
  font-size: 1.5rem;
}
.Notification .btn-close:hover {
  font-size: 1.55rem;
  color: #00b2e9;
}
.Notification .Notification-body {
  width: 90%;
}
.Notification.onEnter {
  opacity: 1;
}
.Notification span {
  align-self: flex-start;
  margin-left: 1rem;
}
.Notification span:nth-child(2) {
  margin-top: 5px;
}
.Notification span.hyperlink {
  cursor: pointer;
  text-decoration: underline;
  font-weight: 600;
}
.Notification.primary {
  color: #003d50;
}
.Notification.primary.filled {
  background: #003d50;
}
.Notification.secondary {
  color: #4cb7d5;
}
.Notification.secondary.filled {
  background: #4cb7d5;
}
.Notification.medium {
  color: #91a0ad;
}
.Notification.medium.filled {
  background: #91a0ad;
}
.Notification.dark {
  color: #3f4950;
}
.Notification.dark.filled {
  background: #3f4950;
}
.Notification.success {
  background: #abedd9;
  border: solid 1px #003d50;
  color: #003d50;
}
.Notification.warning {
  color: #eec24b;
}
.Notification.warning.filled {
  background: #eec24b;
}
.Notification.danger {
  background: #f5c8c6;
  border: solid 1px #df4c43;
  color: #df4c43;
}
.Notification.white {
  color: #fff;
}
.Notification.white.filled {
  background: #fff;
}

.Header {
  width: 100%;
  height: 100px;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}

.Header-wrapper {
  width: 100%;
  max-width: 960px;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}

.Header-column {
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.Header-column.center {
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.Header-column.right {
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
}

.Header-logo {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.Header-logo-img {
  width: 100%;
}

.Header-nav-button {
  margin-left: 5px;
}
.Header-nav-button .link {
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  background: 0;
  outline: 0;
  border: 0;
  color: #3f4950;
  border-radius: 19px;
  cursor: pointer;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-transition: all 100ms 0ms ease-in-out;
  -moz-transition: all 100ms 0ms ease-in-out;
  -ms-transition: all 100ms 0ms ease-in-out;
  transition: all 100ms 0ms ease-in-out;
}
.Header-nav-button span {
  margin-left: 10px;
  font-size: 14px;
}
.Header-nav-button:first-child {
  margin-left: 0;
}
.Header-nav-button.active a, .Header-nav-button.active button {
  color: #003d50;
}
.Header-nav-button:not(.active) a:hover, .Header-nav-button:not(.active) button:hover {
  background: #f4f5f7;
  color: #343c42;
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  filter: none;
}
.Header-nav-button:not(.active) a:active, .Header-nav-button:not(.active) button:active {
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
.Header-nav-button.busy {
  pointer-events: none;
}
.Header-nav-button:not(.round) .link {
  padding: 0 15px;
}
.Header-nav-button.border .link {
  box-shadow: 0 0 0 1px #e5e8ec inset;
}
.Header-nav-button.border .link:hover {
  box-shadow: none;
}
.Header-nav-button.separator-left {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #e5e8ec;
}
.Header-nav-button.separator-right {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #e5e8ec;
}

.Icon {
  width: 19px;
  height: 24px;
  font-size: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.Icon.small {
  width: 18px;
  height: 18px;
  font-size: 18px;
}
.Icon.large {
  width: 48px;
  height: 48px;
  font-size: 48px;
}
.Icon.xlarge {
  width: 80px;
  height: 80px;
  font-size: 80px;
}
.Icon.primary {
  color: #003d50;
}
.Icon.primary.filled {
  background: #003d50;
}
.Icon.secondary {
  color: #4cb7d5;
}
.Icon.secondary.filled {
  background: #4cb7d5;
}
.Icon.medium {
  color: #91a0ad;
}
.Icon.medium.filled {
  background: #91a0ad;
}
.Icon.dark {
  color: #3f4950;
}
.Icon.dark.filled {
  background: #3f4950;
}
.Icon.success {
  color: #2ed1a0;
}
.Icon.success.filled {
  background: #2ed1a0;
}
.Icon.warning {
  color: #eec24b;
}
.Icon.warning.filled {
  background: #eec24b;
}
.Icon.danger {
  color: #df4c43;
}
.Icon.danger.filled {
  background: #df4c43;
}
.Icon.white {
  color: #fff;
}
.Icon.white.filled {
  background: #fff;
}

.Select {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 56px;
  background: #ffffff;
  border: 1px solid #bdc6ce;
  border-radius: 5px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-transition: all 100ms 0ms ease-in-out;
  -moz-transition: all 100ms 0ms ease-in-out;
  -ms-transition: all 100ms 0ms ease-in-out;
  transition: all 100ms 0ms ease-in-out;
}
.Select.focus {
  border-color: #4cb7d5;
  cursor: default;
}
.Select.focus:before {
  content: "";
  position: absolute;
  top: 53px;
  left: 2px;
  right: 2px;
  z-index: 1;
  height: 1px;
  background: #f4f5f7;
}
.Select.selected {
  border-color: #2ed1a0;
}
.Select.read-only {
  border-color: #97e8d0;
  pointer-events: none;
}
.Select.disabled {
  opacity: 0.3333;
  cursor: not-allowed;
}

.Select-info {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Select.focus .Select-info {
  z-index: 9999;
  pointer-events: none;
  box-shadow: 0 -4px rgba(0, 0, 0, 0.05) inset;
}

.Select-label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 12px;
  color: #91a0ad;
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-transition: all 100ms 0ms ease-in-out;
  -moz-transition: all 100ms 0ms ease-in-out;
  -ms-transition: all 100ms 0ms ease-in-out;
  transition: all 100ms 0ms ease-in-out;
}
.Select:not(.placeholder):not(.focus):not(.selected) .Select-label {
  font-weight: 400;
  -webkit-transform: translate3d(-2px, 8px, 0) scale(1.1666);
  -moz-transform: translate3d(-2px, 8px, 0) scale(1.1666);
  -ms-transform: translate3d(-2px, 8px, 0) scale(1.1666);
  transform: translate3d(-2px, 8px, 0) scale(1.1666);
}

.Select-placeholder, .Select-selected {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 10px 12px;
  padding-top: 28px;
  line-height: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.Select-placeholder {
  color: #3f4950;
  font-size: 14px;
  opacity: 0.5;
}
.Select.selected .Select-placeholder, .Select.focus .Select-placeholder {
  display: none;
}

.Select-selected {
  width: 100%;
  font-size: 14px;
}

.Select-dropdown-container {
  position: absolute;
  top: 42px;
  width: calc(100% + 2px);
}

.Select-dropdown {
  position: fixed;
  z-index: 9999;
  width: 100%;
  max-height: 22vh;
  background: #ffffff;
  border: 1px solid #4cb7d5;
  border-top: 0;
  overflow: auto;
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  will-change: all;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 100ms 0ms ease-in-out, top 0, left 0;
  -moz-transition: all 100ms 0ms ease-in-out, top 0, left 0;
  -ms-transition: all 100ms 0ms ease-in-out, top 0, left 0;
  transition: all 100ms 0ms ease-in-out, top 0, left 0;
}
.Select.focus .Select-dropdown {
  opacity: 1;
  pointer-events: auto;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  -webkit-transform: translate3d(0, 9px, 0);
  -moz-transform: translate3d(0, 9px, 0);
  -ms-transform: translate3d(0, 9px, 0);
  transform: translate3d(0, 9px, 0);
}
.Select.selected .Select-dropdown {
  border-color: #2ed1a0;
}

.Select-dropdown-option {
  display: block;
  width: 100%;
  min-height: 26px;
  padding: 8px 12px;
  color: #3f4950;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Select-dropdown-option:hover:not(.disabled) {
  background: #f4f5f7;
}
.Select-dropdown-option.disabled {
  opacity: 0.3333;
  cursor: not-allowed;
}
.Select-dropdown-option.highlight, .Select-dropdown-option.selected {
  color: #4cb7d5;
  font-weight: 700;
}
.Select.highlighting .Select-dropdown-option.selected:not(.highlight) {
  color: #3f4950;
}

.Select-arrow {
  position: absolute;
  top: 16px;
  right: 14px;
  width: 24px;
  height: 24px;
  color: #91a0ad;
  font-size: 24px;
  pointer-events: none;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-transition: all 100ms 0ms ease-in-out;
  -moz-transition: all 100ms 0ms ease-in-out;
  -ms-transition: all 100ms 0ms ease-in-out;
  transition: all 100ms 0ms ease-in-out;
}
.Select.focus .Select-arrow {
  color: #4cb7d5;
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

.Select-status {
  position: absolute;
  top: 16px;
  right: 14px;
  width: 24px;
  height: 24px;
  color: #91a0ad;
  font-size: 18px;
  pointer-events: none;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-transition: all 100ms 0ms ease-in-out;
  -moz-transition: all 100ms 0ms ease-in-out;
  -ms-transition: all 100ms 0ms ease-in-out;
  transition: all 100ms 0ms ease-in-out;
}
.Select.selected .Select-status {
  color: #2ed1a0;
}

.Select-input {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 12px;
  padding-top: 26px;
  padding-bottom: 12px;
  line-height: 1;
  background: 0;
  color: #3f4950;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  outline: 0;
  border: 0;
  border-radius: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-appearance: none;
  -webkit-transition: all 100ms 0ms ease-in-out;
  -moz-transition: all 100ms 0ms ease-in-out;
  -ms-transition: all 100ms 0ms ease-in-out;
  transition: all 100ms 0ms ease-in-out;
}
.Select-input::-webkit-input-placeholder {
  color: #3f4950;
  opacity: 0.3333;
}
.Select-input:-ms-input-placeholder {
  color: #3f4950;
  opacity: 0.3333;
}
.Select-input::-moz-placeholder {
  color: #3f4950;
  opacity: 0.3333;
}
.Select-input:-moz-placeholder {
  color: #3f4950;
  opacity: 0.3333;
}
.Select-input:-webkit-autofill {
  -webkit-border-radius: 5px;
  -webkit-box-shadow: 0 0 0 30px #ffffff inset;
  -webkit-text-fill-color: #3f4950 !important;
}
.Select-input:disabled {
  cursor: not-allowed;
}
.Select.focus .Select-input {
  opacity: 1;
  pointer-events: auto;
}

.Slider {
  width: 100%;
  max-width: 480px;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.Slider-top {
  width: 100%;
  height: 14px;
  line-height: 1.5;
  -webkit-flex: 0 0 auto;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.Slider-label {
  color: #003d50;
  font-size: 12px;
  font-weight: 600;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.Slider.disabled .Slider-label {
  opacity: 0.3333;
}

.Slider-value {
  margin-left: 10px;
  color: #4cb7d5;
  font-size: 12px;
  font-weight: 600;
}
.Slider.disabled .Slider-value {
  opacity: 0.3333;
}

.Slider-container {
  width: 100%;
  height: 38px;
  margin-top: 14px;
  -webkit-flex: 0 0 auto;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.Slider.disabled .Slider-container {
  opacity: 0.3333;
}

.Slider-slider {
  position: absolute !important;
  top: 10px;
  z-index: 1;
  width: 100%;
  height: 4px;
  cursor: pointer;
  -webkit-transition: all 100ms 0ms ease-in-out;
  -moz-transition: all 100ms 0ms ease-in-out;
  -ms-transition: all 100ms 0ms ease-in-out;
  transition: all 100ms 0ms ease-in-out;
}
.Slider.disabled .Slider-slider {
  cursor: not-allowed;
}

.Slider-slider-bar {
  height: 4px;
}
.Slider-slider-bar.Slider-slider-bar-0 {
  background: #4cb7d5;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.Slider-slider-bar.Slider-slider-bar-1 {
  background: #e5e8ec;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.Slider-slider-handle {
  top: -8px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 100%;
  box-shadow: 0 0 0 1px #4cb7d5 inset;
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-transition: box-shadow 200ms 0ms ease-in-out;
  -moz-transition: box-shadow 200ms 0ms ease-in-out;
  -ms-transition: box-shadow 200ms 0ms ease-in-out;
  transition: box-shadow 200ms 0ms ease-in-out;
}
.Slider-slider-handle.active {
  box-shadow: 0 0 0 2px #4cb7d5 inset, 0 0 0 10px rgba(76, 183, 213, 0.25);
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.Slider-slider-handle:focus {
  outline: 0;
}
.Slider.disabled .Slider-slider-handle {
  cursor: not-allowed !important;
}

.Slider-visible-values {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}

.Slider-visible-value {
  width: 20px;
  height: 10px;
  text-align: center;
  color: #91a0ad;
  font-size: 10px;
}

.Slider-value-icon {
  font-size: 20px;
  margin-left: 5px;
  cursor: pointer;
}

.Slider-value-container {
  display: flex;
  flex-direction: row;
}

.display-valueOnSlider {
  margin-top: 20px;
  font-size: 12px;
  color: #4cb7d5;
}

.Step-slider-bar {
  height: 4px;
}
.Step-slider-bar.Step-slider-bar-0 {
  background: #f4f5f7;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.Step-slider-bar.Step-slider-bar-1 {
  background: #37afd0 !important;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
.Step-slider-bar.Step-slider-bar-2 {
  background: #f4f5f7;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.Slider-slider .Step-mark-class {
  margin: 2px 6px;
  bottom: calc(50% - 6px);
}

.Step-mark-class {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid #91a0ad;
  background-color: #f4f5f7;
  cursor: pointer;
  border-radius: 50%;
  vertical-align: middle;
}

.Slider.has-checkbox .Slider-label {
  margin-left: -39px;
  opacity: 1;
}

.step-label-inactive {
  color: #91a0ad;
}

.Slider-visible-value-active {
  width: 20px;
  height: 10px;
  text-align: center;
  color: #4cb7d5;
  font-weight: 800;
  font-size: 12px;
}

.Slider-visible-value-disabled {
  width: 20px;
  height: 10px;
  text-align: center;
  opacity: 0.3333;
  font-weight: 800;
  font-size: 12px;
}

.horizon-container {
  width: 100%;
  margin-top: 20px;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.horizon-container .Cob-SimpleTextField-label {
  margin-right: auto;
  margin-bottom: 10px;
  padding: 0;
  color: #003d50;
  font-size: 14px;
  font-weight: 600;
}

.Single-slider-bar {
  height: 4px;
}
.Single-slider-bar.Single-slider-bar-0 {
  background: #f4f5f7;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.Single-slider-bar.Single-slider-bar-1 {
  background: #e5e8ec !important;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
.Single-slider-bar.Single-slider-bar-2 {
  background: #f4f5f7;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.Table {
  width: 100%;
  overflow: hidden;
}

.Table-container {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}
.Table.scrollable .Table-container:before, .Table.scrollable .Table-container:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  width: 20px;
  height: 100%;
  pointer-events: none;
  -webkit-transition: all 100ms 0ms ease-in-out;
  -moz-transition: all 100ms 0ms ease-in-out;
  -ms-transition: all 100ms 0ms ease-in-out;
  transition: all 100ms 0ms ease-in-out;
}
.Table.scrollable .Table-container:before {
  left: 0;
  box-shadow: 40px 0 25px -40px #91a0ad inset;
}
.Table.scrollable .Table-container:after {
  right: 0;
  box-shadow: -40px 0 25px -40px #91a0ad inset;
}
.Table.scroll-start .Table-container:before {
  opacity: 0;
}
.Table.scroll-end .Table-container:after {
  opacity: 0;
}

.Table-wrapper {
  width: 100%;
  background: #fafafb;
  border-radius: 6px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.Table-table {
  min-width: 100%;
}

.Table-columns {
  position: relative;
}

.Table-column-label {
  position: relative;
  padding: 10px;
  line-height: 1.3;
  color: #3f4950;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.Table-column-label > div {
  width: 100%;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.Table-column-label:first-child {
  padding-left: 10px;
}
.Table-column-label:last-child {
  padding-right: 10px;
}
.Table-column-label.h-left > div {
  text-align: left;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Table-column-label.h-right > div {
  text-align: right;
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
}
.Table-column-label.v-top {
  vertical-align: top;
}
.Table-column-label.v-bottom {
  vertical-align: bottom;
}

.Table-row {
  position: relative;
}
.Table.selectable-rows .Table-row {
  cursor: pointer;
  -webkit-transition: background 100ms 0ms ease-in-out;
  -moz-transition: background 100ms 0ms ease-in-out;
  -ms-transition: background 100ms 0ms ease-in-out;
  transition: background 100ms 0ms ease-in-out;
}
.Table.selectable-rows .Table-row:hover {
  background: rgba(76, 183, 213, 0.1);
}

.Table-row-value {
  position: relative;
  padding: 10px;
  line-height: 1.3;
  color: #3f4950;
  font-size: 14px;
}
.Table-row-value > div {
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.Table-row-value.h-left > div {
  text-align: left;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Table-row-value.h-right > div {
  text-align: right;
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
}
.Table-row-value.v-top {
  vertical-align: top;
}
.Table-row-value.v-bottom {
  vertical-align: bottom;
}
.Table-row.selected .Table-row-value:first-child:before {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  bottom: 0;
  left: 0;
  width: 3px;
  background: #4cb7d5;
}

.Table-footer {
  width: 100%;
  margin-top: 5px;
  padding: 10px 15px;
  background: #fafafb;
  border-radius: 6px;
}

.TextField {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 56px;
  background: #ffffff;
  border: 1px solid #bdc6ce;
  border-radius: 5px;
  cursor: text;
  -webkit-transition: all 150ms 0ms ease-in-out;
  -moz-transition: all 150ms 0ms ease-in-out;
  -ms-transition: all 150ms 0ms ease-in-out;
  transition: all 150ms 0ms ease-in-out;
}
.TextField.focus {
  border-color: #4cb7d5;
}
.TextField.invalid {
  border-color: #df4c43;
}
.TextField.success {
  border-color: #2ed1a0;
}
.TextField.read-only {
  border-color: #dadfe3;
}
.TextField.disabled {
  cursor: not-allowed;
  opacity: 0.3333;
}

.TextField-label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 12px;
  color: #91a0ad;
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transition: all 150ms 0ms ease-in-out;
  -moz-transition: all 150ms 0ms ease-in-out;
  -ms-transition: all 150ms 0ms ease-in-out;
  transition: all 150ms 0ms ease-in-out;
}
.TextField:not(.placeholder):not(.focus):not(.filled) .TextField-label {
  font-weight: 400;
  -webkit-transform: translate3d(-2px, 8px, 0) scale(1.1666);
  -moz-transform: translate3d(-2px, 8px, 0) scale(1.1666);
  -ms-transform: translate3d(-2px, 8px, 0) scale(1.1666);
  transform: translate3d(-2px, 8px, 0) scale(1.1666);
}
.TextField.invalid .TextField-label {
  color: #df4c43;
}
.TextField.read-only .TextField-label {
  opacity: 0.6666;
}

.TextField-input {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 12px;
  padding-top: 26px;
  padding-bottom: 12px;
  line-height: 1;
  background: 0;
  color: #3f4950;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  outline: 0;
  border: 0;
  border-radius: 0;
  -webkit-appearance: none;
}
.TextField-input::-webkit-input-placeholder {
  color: #3f4950;
  opacity: 0.3333;
}
.TextField-input:-ms-input-placeholder {
  color: #3f4950;
  opacity: 0.3333;
}
.TextField-input::-moz-placeholder {
  color: #3f4950;
  opacity: 0.3333;
}
.TextField-input:-moz-placeholder {
  color: #3f4950;
  opacity: 0.3333;
}
.TextField-input[type=number]::-webkit-outer-spin-button, .TextField-input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.TextField-input[type=number] {
  -moz-appearance: textfield;
}
.TextField-input:-webkit-autofill {
  -webkit-border-radius: 5px;
  -webkit-box-shadow: 0 0 0 30px #ffffff inset;
  -webkit-text-fill-color: #3f4950 !important;
}
.TextField.tooltip .TextField-input, .TextField.invalid .TextField-input, .TextField.success .TextField-input {
  padding-right: 42px;
}
.TextField-input:disabled {
  cursor: not-allowed;
}
.TextField-input:read-only {
  cursor: default;
  color: #91a0ad;
}

.TextField-tooltip {
  position: absolute;
  top: 16px;
  right: 14px;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.TextField-tooltip-icon {
  width: 24px;
  height: 24px;
  background: #e5e8ec;
  border-radius: 2.5px;
  pointer-events: auto;
  cursor: pointer;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-transition: all 100ms 0ms ease-in-out;
  -moz-transition: all 100ms 0ms ease-in-out;
  -ms-transition: all 100ms 0ms ease-in-out;
  transition: all 100ms 0ms ease-in-out;
}
.TextField-tooltip:hover .TextField-tooltip-icon {
  background: #4cb7d5;
  color: #ffffff;
}

.TextField-tooltip-text {
  display: inline-block;
  position: absolute;
  bottom: calc(100% + 5px);
  right: 0;
  width: 100px;
  padding: 8px 10px;
  line-height: 1.2;
  background: rgba(104, 111, 119, 0.9);
  color: #ffffff;
  font-size: 13px;
  border-radius: 2.5px;
  word-wrap: break-word;
  opacity: 0;
  -webkit-transition: all 100ms 0ms ease-in-out;
  -moz-transition: all 100ms 0ms ease-in-out;
  -ms-transition: all 100ms 0ms ease-in-out;
  transition: all 100ms 0ms ease-in-out;
}
.TextField-tooltip:hover .TextField-tooltip-text {
  opacity: 1;
}

.TextField-status {
  position: absolute;
  top: 16px;
  right: 14px;
  width: 24px;
  height: 24px;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-transition: all 100ms 0ms ease-in-out;
  -moz-transition: all 100ms 0ms ease-in-out;
  -ms-transition: all 100ms 0ms ease-in-out;
  transition: all 100ms 0ms ease-in-out;
}
.TextField-status .icon {
  font-size: 18px;
  -webkit-transition: color 100ms 0ms ease-in-out;
  -moz-transition: color 100ms 0ms ease-in-out;
  -ms-transition: color 100ms 0ms ease-in-out;
  transition: color 100ms 0ms ease-in-out;
}
.TextField-status .required-symbol {
  margin-top: -2px;
  color: #91a0ad;
  font-size: 24px;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-transition: color 100ms 0ms ease-in-out;
  -moz-transition: color 100ms 0ms ease-in-out;
  -ms-transition: color 100ms 0ms ease-in-out;
  transition: color 100ms 0ms ease-in-out;
}
.TextField.invalid .TextField-status .icon, .TextField.invalid .TextField-status .required-symbol {
  color: #df4c43;
}
.TextField.success .TextField-status .icon, .TextField.success .TextField-status .required-symbol {
  color: #2ed1a0;
}
.TextField.focus:not(.invalid) .TextField-status .required-symbol {
  color: #4cb7d5;
}

.TextView {
  position: relative;
  width: 100%;
  background: #ffffff;
  border: 1px solid #bdc6ce;
  border-radius: 5px;
  cursor: text;
  -webkit-transition: all 150ms 0ms ease-in-out;
  -moz-transition: all 150ms 0ms ease-in-out;
  -ms-transition: all 150ms 0ms ease-in-out;
  transition: all 150ms 0ms ease-in-out;
}
.TextView:not(.full-width) {
  max-width: 480px;
}
.TextView.focus {
  border-color: #4cb7d5;
}
.TextView.invalid {
  border-color: #df4c43;
}
.TextView.success {
  border-color: #2ed1a0;
}
.TextView.disabled {
  cursor: not-allowed;
  opacity: 0.3333;
}

.TextView-label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 12px;
  color: #91a0ad;
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transition: all 150ms 0ms ease-in-out;
  -moz-transition: all 150ms 0ms ease-in-out;
  -ms-transition: all 150ms 0ms ease-in-out;
  transition: all 150ms 0ms ease-in-out;
}
.TextView:not(.placeholder):not(.focus):not(.filled) .TextView-label {
  font-weight: 400;
  -webkit-transform: translate3d(-2px, 8px, 0) scale(1.1666);
  -moz-transform: translate3d(-2px, 8px, 0) scale(1.1666);
  -ms-transform: translate3d(-2px, 8px, 0) scale(1.1666);
  transform: translate3d(-2px, 8px, 0) scale(1.1666);
}
.TextView.invalid .TextView-label {
  color: #df4c43;
}

.TextView-input {
  display: block;
  width: 100%;
  min-height: 200px;
  padding: 0 12px;
  padding-top: 26px;
  padding-bottom: 12px;
  line-height: 1.3;
  background: 0;
  color: #3f4950;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  outline: 0;
  border: 0;
  border-radius: 0;
  -webkit-appearance: none;
}
.TextView-input::-webkit-input-placeholder {
  color: #3f4950;
  opacity: 0.3333;
}
.TextView-input:-ms-input-placeholder {
  color: #3f4950;
  opacity: 0.3333;
}
.TextView-input::-moz-placeholder {
  color: #3f4950;
  opacity: 0.3333;
}
.TextView-input:-moz-placeholder {
  color: #3f4950;
  opacity: 0.3333;
}
.TextView-input:-webkit-autofill {
  -webkit-border-radius: 5px;
  -webkit-box-shadow: 0 0 0 30px #ffffff inset;
  -webkit-text-fill-color: #3f4950 !important;
}
.TextView-input:disabled {
  cursor: not-allowed;
}
.TextView.tooltip .TextView-input, .TextView.invalid .TextView-input, .TextView.success .TextView-input {
  padding-right: 42px;
}
.TextView.long-height .TextView-input {
  min-height: 100vh;
}
.TextView.resize-none .TextView-input {
  resize: none;
}
.TextView.resize-both .TextView-input {
  resize: both;
}
.TextView.resize-horizontal .TextView-input {
  resize: horizontal;
}
.TextView.resize-vertical .TextView-input {
  resize: vertical;
}

.TextView-tooltip {
  position: absolute;
  top: 16px;
  right: 14px;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.TextView-tooltip-icon {
  width: 24px;
  height: 24px;
  background: #e5e8ec;
  border-radius: 2.5px;
  pointer-events: auto;
  cursor: pointer;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-transition: all 100ms 0ms ease-in-out;
  -moz-transition: all 100ms 0ms ease-in-out;
  -ms-transition: all 100ms 0ms ease-in-out;
  transition: all 100ms 0ms ease-in-out;
}
.TextView-tooltip:hover .TextView-tooltip-icon {
  background: #4cb7d5;
  color: #ffffff;
}

.TextView-tooltip-text {
  display: inline-block;
  position: absolute;
  bottom: calc(100% + 5px);
  right: 0;
  width: 100px;
  padding: 8px 10px;
  line-height: 1.2;
  background: rgba(104, 111, 119, 0.9);
  color: #ffffff;
  font-size: 13px;
  border-radius: 2.5px;
  word-wrap: break-word;
  opacity: 0;
  -webkit-transition: all 100ms 0ms ease-in-out;
  -moz-transition: all 100ms 0ms ease-in-out;
  -ms-transition: all 100ms 0ms ease-in-out;
  transition: all 100ms 0ms ease-in-out;
}
.TextView-tooltip:hover .TextView-tooltip-text {
  opacity: 1;
}

.TextView-status {
  position: absolute;
  top: 16px;
  right: 14px;
  width: 24px;
  height: 24px;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-transition: all 100ms 0ms ease-in-out;
  -moz-transition: all 100ms 0ms ease-in-out;
  -ms-transition: all 100ms 0ms ease-in-out;
  transition: all 100ms 0ms ease-in-out;
}
.TextView-status .icon {
  font-size: 18px;
  -webkit-transition: color 100ms 0ms ease-in-out;
  -moz-transition: color 100ms 0ms ease-in-out;
  -ms-transition: color 100ms 0ms ease-in-out;
  transition: color 100ms 0ms ease-in-out;
}
.TextView-status .required-symbol {
  margin-top: -2px;
  color: #91a0ad;
  font-size: 24px;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-transition: color 100ms 0ms ease-in-out;
  -moz-transition: color 100ms 0ms ease-in-out;
  -ms-transition: color 100ms 0ms ease-in-out;
  transition: color 100ms 0ms ease-in-out;
}
.TextView.invalid .TextView-status .icon, .TextView.invalid .TextView-status .required-symbol {
  color: #df4c43;
}
.TextView.success .TextView-status .icon, .TextView.success .TextView-status .required-symbol {
  color: #2ed1a0;
}
.TextView.focus:not(.invalid) .TextView-status .required-symbol {
  color: #4cb7d5;
}

.Info {
  margin: 5px;
  color: #003d50;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  cursor: pointer;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
}
.Info:not(.busy):hover.filled, .Info:not(.busy):focus.filled {
  -webkit-filter: brightness(105%);
  -moz-filter: brightness(105%);
  -ms-filter: brightness(105%);
  filter: brightness(105%);
}
.Info:not(.busy):hover:not(.filled), .Info:not(.busy):focus:not(.filled) {
  background: #f4f5f7;
}
.Info:hover ~ .Icon-descriptions .mini-descriptions {
  visibility: visible;
  opacity: 1;
  transition: visibility 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.Info:active {
  -webkit-transform: scale(0.98) !important;
  -moz-transform: scale(0.98) !important;
  -ms-transform: scale(0.98) !important;
  transform: scale(0.98) !important;
}
.Info.small {
  margin: 0;
}
.Info.primary {
  color: #003d50;
}
.Info.primary.filled {
  background: #003d50;
}
.Info.secondary {
  color: #4cb7d5;
}
.Info.secondary.filled {
  background: #4cb7d5;
}
.Info.medium {
  color: #91a0ad;
}
.Info.medium.filled {
  background: #91a0ad;
}
.Info.dark {
  color: #3f4950;
}
.Info.dark.filled {
  background: #3f4950;
}
.Info.success {
  color: #2ed1a0;
}
.Info.success.filled {
  background: #2ed1a0;
}
.Info.warning {
  color: #eec24b;
}
.Info.warning.filled {
  background: #eec24b;
}
.Info.danger {
  color: #df4c43;
}
.Info.danger.filled {
  background: #df4c43;
}
.Info.white {
  color: #ffffff;
}
.Info.white.filled {
  background: #ffffff;
}

.Icon-label {
  padding: 5px;
  font-size: 12px;
}

.Info-container-view {
  margin: 0px;
}

.datalist-container {
  width: 100%;
  display: flex;
  align-items: flex-start;
  margin: 0;
  border-radius: 5px;
  position: relative;
}
.datalist-container input::-webkit-outer-spin-button,
.datalist-container input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.datalist-container input {
  width: 100%;
  padding: 24px 12px 14px 12px;
  font-size: 14px;
  color: #3f4950;
  outline: none;
  border: 1px solid rgb(189, 198, 206);
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.datalist-container input:focus {
  border: none;
  border-bottom: 1px solid rgb(236, 235, 235);
  padding: 24px 12px 12px 12px;
}
.datalist-container .input-label {
  position: absolute;
  color: #91a0ad;
  top: 20px;
  left: 10px;
  font-size: 14;
  font-weight: 400;
}
.datalist-container ul {
  padding: 0;
  width: 100%;
  margin: 0;
}
.datalist-container .unit-option {
  position: absolute;
  top: 20px;
  left: 86%;
  font-size: 15px;
  font-weight: 400;
}

.optionStyle {
  display: block;
  width: 100%;
  min-height: 26px;
  padding: 8px 12px;
  font-size: 14px;
  color: #3f4950;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.focus-optionList {
  border: 1px solid #2ed1a0;
}
.focus-optionList .input-label {
  position: absolute;
  top: 8px;
  left: 12px;
  font-size: 12px;
}

.value-option {
  position: absolute;
  top: 8px;
  left: 12px;
  font-size: 12px;
}

.done-icon {
  position: absolute;
  color: #2ed1a0;
  top: 16px;
  right: 14px;
  width: 24px;
  height: 24px;
  font-size: 18px;
  pointer-events: none;
}

.StackLayout.horizontal {
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.StackLayout.jc-s {
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
}
.StackLayout.jc-c {
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.StackLayout.jc-e {
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
}
.StackLayout.jc-sb {
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.StackLayout.jc-sa {
  -webkit-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
}
.StackLayout.ai-s {
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.StackLayout.ai-c {
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.StackLayout.ai-e {
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
}
.StackLayout.ai-st {
  -webkit-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
}
.StackLayout.row-wrap {
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.StackLayout.full-width {
  width: 100%;
}

.Cob-Footer {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: 90px;
  pointer-events: none;
  -webkit-transition: all 100ms 0ms ease-in-out;
  -moz-transition: all 100ms 0ms ease-in-out;
  -ms-transition: all 100ms 0ms ease-in-out;
  transition: all 100ms 0ms ease-in-out;
}
.Cob-Footer.hide {
  opacity: 0;
}

.Cob-Footer-container {
  width: 100%;
  height: 100%;
  padding: 15px;
  box-shadow: 0 -90px 45px -45px rgba(0, 0, 0, 0.15) inset;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.Cob-Footer-container > * {
  pointer-events: auto;
}

.Cob-Footer-button {
  min-width: 100px;
  height: 38px;
}
.Cob-Footer-button.button {
  margin-right: auto;
}

.Cob-Footer-navigation {
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.Cob-Footer-navigation .Button {
  margin-right: 10px;
}
.Cob-Footer-navigation .Button .ActivityIndicator {
  -webkit-transform: translate3d(-50%, -50%, 0) scale(0.6666);
  -moz-transform: translate3d(-50%, -50%, 0) scale(0.6666);
  -ms-transform: translate3d(-50%, -50%, 0) scale(0.6666);
  transform: translate3d(-50%, -50%, 0) scale(0.6666);
}
.Cob-Footer-navigation .Button:last-child {
  margin-right: 0;
}

.Cob-Footer-sessionModal-fields {
  width: calc(100% + 20px);
  margin: 5px -10px;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.Cob-Footer-sessionModal-field {
  min-width: 25%;
  margin: 10px;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-Footer-sessionModal-field .label {
  margin-bottom: 5px;
  color: #3f4950;
  font-size: 12px;
  font-weight: 700;
}
.Cob-Footer-sessionModal-field .value {
  font-size: 13px;
}

.Cob-NumberField {
  width: 100%;
  max-width: 480px;
}

.Cob-NumberField-TextField.success + .Cob-NumberField-unit, .Cob-NumberField-TextField.invalid + .Cob-NumberField-unit {
  right: 42px;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  transition: none;
}
.Cob-NumberField-TextField:not(.placeholder):not(.focus):not(.filled) + .Cob-NumberField-unit {
  -webkit-transform: translate3d(0, -8px, 0);
  -moz-transform: translate3d(0, -8px, 0);
  -ms-transform: translate3d(0, -8px, 0);
  transform: translate3d(0, -8px, 0);
}

.Cob-NumberField-unit {
  position: absolute;
  top: 29px;
  right: 12px;
  color: #3f4950;
  font-size: 14px;
  opacity: 0.3333;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-transition: all 150ms 0ms ease-in-out;
  -moz-transition: all 150ms 0ms ease-in-out;
  -ms-transition: all 150ms 0ms ease-in-out;
  transition: all 150ms 0ms ease-in-out;
}

.Cob-OptionsList {
  -webkit-flex: 0 0 auto;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-OptionsList + .h-line {
  margin-top: 20px;
}
.Cob-OptionsList + .h-line.spacing {
  margin-top: 20px;
}
.Cob-OptionsList.disabled {
  cursor: not-allowed;
}
.Cob-OptionsList.align-center {
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (min-width: 641px) {
  .Cob-OptionsList {
    width: 100%;
    max-width: 480px;
  }
  .Cob-OptionsList:last-child {
    margin-bottom: 0;
  }
}

.Cob-OptionsList-description {
  margin-top: 0;
  margin-bottom: 5px;
  color: #003d50;
  font-size: 14px;
  font-weight: 600;
  -webkit-transition: all 100ms 0ms ease-in-out;
  -moz-transition: all 100ms 0ms ease-in-out;
  -ms-transition: all 100ms 0ms ease-in-out;
  transition: all 100ms 0ms ease-in-out;
}
.Cob-OptionsList.disabled .Cob-OptionsList-description {
  opacity: 0.3333;
}

.Cob-OptionsList-miniNote {
  margin-top: 0;
  margin-bottom: 5px;
  color: #91a0ad;
  font-size: 12px;
}

.Cob-OptionsList-checkboxes {
  width: 100%;
  margin-bottom: 10px;
  flex-wrap: wrap;
  -webkit-flex: 0 0 auto;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-OptionsList-checkboxes .disabled {
  pointer-events: all !important;
}
.Cob-OptionsList-checkboxes .Checkbox {
  width: auto;
  margin-bottom: 10px;
}
.Cob-OptionsList-checkboxes .Checkbox:last-child {
  margin-bottom: 0;
}
.Cob-OptionsList-checkboxes:first-child {
  margin-top: 0;
}
.Cob-OptionsList-checkboxes:last-child {
  margin-bottom: 0;
}
.Cob-OptionsList.align-center .Cob-OptionsList-checkboxes {
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
@media screen and (min-width: 641px) {
  .Cob-OptionsList-checkboxes {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .Cob-OptionsList-checkboxes .Checkbox {
    margin-right: 30px;
    margin-bottom: 0;
  }
  .Cob-OptionsList-checkboxes .Checkbox:last-child {
    margin-right: 0;
  }
  .Cob-OptionsList.vertical .Cob-OptionsList-checkboxes {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 10px;
  }
  .Cob-OptionsList.vertical .Cob-OptionsList-checkboxes .Checkbox {
    margin-bottom: 10px;
  }
  .Cob-OptionsList.vertical .Cob-OptionsList-checkboxes .Checkbox:last-child {
    margin-bottom: 0;
  }
}

.Cob-TableSelect {
  height: 32px;
  border-radius: 2.5px;
}
.Cob-TableSelect .Select-placeholder, .Cob-TableSelect .Select-selected {
  padding-top: 10px;
  padding-left: 8px;
  padding-right: 24px;
  font-size: 12px;
}
.Cob-TableSelect .Select-placeholder {
  color: #3f4950;
  opacity: 0.3333;
}
.Cob-TableSelect .Select-input {
  padding-top: 12px;
  padding-left: 8px;
  padding-right: 24px;
  font-size: 12px;
}
.Cob-TableSelect .Select-dropdown-container {
  top: 18px;
}
.Cob-TableSelect .Select-arrow {
  top: 4px;
  right: 3px;
}
.Cob-TableSelect .Select-status {
  top: 3px;
  right: 3px;
}
.Cob-TableSelect .Select-dropdown-option {
  padding-top: 5px;
  padding-right: 8px;
  padding-bottom: 5px;
  padding-left: 8px;
  font-size: 12px;
}
.Cob-TableSelect.focus .Select-dropdown {
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
}

.Cob-TableSummaryField {
  width: 100%;
  max-width: 295px;
  padding: 10px;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-TableSummary.per-row-4 .Cob-TableSummaryField {
  max-width: 221.5px;
}

.Cob-TableSummaryField-label {
  margin-bottom: 5px;
  line-height: 1.3;
  color: #3f4950;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.Cob-TableSummaryField-description {
  margin-top: -5px;
  margin-bottom: 5px;
  line-height: 1.3;
  color: #91a0ad;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.Cob-TableSummaryField-value {
  width: 100%;
  height: 16px;
  margin-top: auto;
  background: 0;
  color: #4cb7d5;
  font-size: 14px;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.Cob-SimpleTextField.disabled {
  opacity: 0.3333;
}
.Cob-SimpleTextField.align-left {
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-SimpleTextField.align-right {
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
}

.Cob-simpleTextField-ghostedValue .Cob-SimpleTextField-label {
  margin-bottom: 5px;
  padding: 0 5px;
}
.Cob-simpleTextField-ghostedValue .Cob-SimpleTextField-input {
  width: 100%;
  height: 32px;
  padding: 10px;
  background: #ffffff;
  color: #3f4950;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 12px;
  outline: 0;
  border: 1px solid #bdc6ce;
  border-radius: 2.5px;
  -webkit-appearance: none;
  -webkit-transition: all 100ms 0ms ease-in-out;
  -moz-transition: all 100ms 0ms ease-in-out;
  -ms-transition: all 100ms 0ms ease-in-out;
  transition: all 100ms 0ms ease-in-out;
}
.Cob-simpleTextField-ghostedValue .Cob-SimpleTextField-input::-webkit-input-placeholder {
  color: #3f4950;
  opacity: 0.3333;
}
.Cob-simpleTextField-ghostedValue .Cob-SimpleTextField-input:-ms-input-placeholder {
  color: #3f4950;
  opacity: 0.3333;
}
.Cob-simpleTextField-ghostedValue .Cob-SimpleTextField-input::-moz-placeholder {
  color: #3f4950;
  opacity: 0.3333;
}
.Cob-simpleTextField-ghostedValue .Cob-SimpleTextField-input:-moz-placeholder {
  color: #3f4950;
  opacity: 0.3333;
}
.Cob-simpleTextField-ghostedValue .Cob-SimpleTextField-input[type=number]::-webkit-outer-spin-button, .Cob-simpleTextField-ghostedValue .Cob-SimpleTextField-input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.Cob-simpleTextField-ghostedValue .Cob-SimpleTextField-input[type=number] {
  -moz-appearance: textfield;
}
.Cob-simpleTextField-ghostedValue .Cob-SimpleTextField-input:-webkit-autofill {
  -webkit-border-radius: 5px;
  -webkit-box-shadow: 0 0 0 30px #ffffff inset;
  -webkit-text-fill-color: #3f4950 !important;
}
.Cob-SimpleTextField.focus .Cob-simpleTextField-ghostedValue .Cob-SimpleTextField-input {
  border-color: #4cb7d5;
}
.Cob-SimpleTextField.filled .Cob-simpleTextField-ghostedValue .Cob-SimpleTextField-input {
  border-color: #2ed1a0;
}
.Cob-SimpleTextField.disabled .Cob-simpleTextField-ghostedValue .Cob-SimpleTextField-input {
  cursor: not-allowed;
}
.Cob-SimpleTextField.read-only .Cob-simpleTextField-ghostedValue .Cob-SimpleTextField-input {
  cursor: default;
}
.Cob-simpleTextField-ghostedValue .Cob-SimpleTextField-input.success + .Cob-NumberField-unit, .Cob-simpleTextField-ghostedValue .Cob-SimpleTextField-input.invalid + .Cob-NumberField-unit {
  right: 42px;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  transition: none;
}
.Cob-simpleTextField-ghostedValue .Cob-SimpleTextField-input:not(.placeholder):not(.focus):not(.filled) + .Cob-NumberField-unit {
  -webkit-transform: translate3d(0, -8px, 0);
  -moz-transform: translate3d(0, -8px, 0);
  -ms-transform: translate3d(0, -8px, 0);
  transform: translate3d(0, -8px, 0);
}
.Cob-simpleTextField-ghostedValue .Cob-NumberField-unit {
  position: absolute;
  top: 16px;
  right: 12px;
  color: #3f4950;
  font-size: 12px;
  opacity: 0.3333;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-transition: all 150ms 0ms ease-in-out;
  -moz-transition: all 150ms 0ms ease-in-out;
  -ms-transition: all 150ms 0ms ease-in-out;
  transition: all 150ms 0ms ease-in-out;
}

.Cob-simplefield-default .Cob-SimpleTextField-input {
  width: 100%;
  height: 32px;
  padding: 10px;
  background: #ffffff;
  color: #3f4950;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 12px;
  text-align: center;
  outline: 0;
  border: 1px solid #bdc6ce;
  border-radius: 2.5px;
  -webkit-appearance: none;
  -webkit-transition: all 100ms 0ms ease-in-out;
  -moz-transition: all 100ms 0ms ease-in-out;
  -ms-transition: all 100ms 0ms ease-in-out;
  transition: all 100ms 0ms ease-in-out;
}
.Cob-simplefield-default .Cob-SimpleTextField-input::-webkit-input-placeholder {
  color: #3f4950;
  opacity: 0.3333;
}
.Cob-simplefield-default .Cob-SimpleTextField-input:-ms-input-placeholder {
  color: #3f4950;
  opacity: 0.3333;
}
.Cob-simplefield-default .Cob-SimpleTextField-input::-moz-placeholder {
  color: #3f4950;
  opacity: 0.3333;
}
.Cob-simplefield-default .Cob-SimpleTextField-input:-moz-placeholder {
  color: #3f4950;
  opacity: 0.3333;
}
.Cob-simplefield-default .Cob-SimpleTextField-input[type=number]::-webkit-outer-spin-button, .Cob-simplefield-default .Cob-SimpleTextField-input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.Cob-simplefield-default .Cob-SimpleTextField-input[type=number] {
  -moz-appearance: textfield;
}
.Cob-simplefield-default .Cob-SimpleTextField-input:-webkit-autofill {
  -webkit-border-radius: 5px;
  -webkit-box-shadow: 0 0 0 30px #ffffff inset;
  -webkit-text-fill-color: #3f4950 !important;
}
.Cob-SimpleTextField.focus .Cob-simplefield-default .Cob-SimpleTextField-input {
  border-color: #4cb7d5;
}
.Cob-SimpleTextField.filled .Cob-simplefield-default .Cob-SimpleTextField-input {
  border-color: #2ed1a0;
}
.Table-row-value.h-left .Cob-simplefield-default .Cob-SimpleTextField-input, .Cob-SimpleTextField.align-left .Cob-simplefield-default .Cob-SimpleTextField-input {
  text-align: left;
}
.Table-row-value.h-right .Cob-simplefield-default .Cob-SimpleTextField-input, .Cob-SimpleTextField.align-right .Cob-simplefield-default .Cob-SimpleTextField-input {
  text-align: right;
}
.Cob-SimpleTextField.disabled .Cob-simplefield-default .Cob-SimpleTextField-input {
  cursor: not-allowed;
}
.Cob-SimpleTextField.read-only .Cob-simplefield-default .Cob-SimpleTextField-input {
  cursor: default;
}

div.Cob-Progress {
  display: block;
  width: 100%;
}
div.Cob-Progress ul.Cob-steps {
  display: block;
  margin: 0;
  padding: 0;
  text-align: center;
}
div.Cob-Progress ul.Cob-steps li {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #143749;
  color: white;
  border-radius: 50%;
  padding-top: 9px;
  text-align: center;
  margin: 0 1px 5px 1px;
}
div.Cob-Progress ul.Cob-steps li.fulfilled {
  background: #40D4A7;
  color: white;
}
div.Cob-Progress ul.Cob-steps li.active {
  background: orange;
}
div.Cob-Progress ul.Cob-steps li.sign {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
}

.risk-table {
  width: 100%;
}
.risk-table table {
  width: 100%;
  empty-cells: hide;
  border-spacing: 10px 2px;
}
.risk-table table td {
  background-color: #dddddd;
  border: 1px solid #aaaaaa;
  border-bottom-color: #aaaaaa;
  padding: 15px;
}
.risk-table table th {
  background-color: #eeeeee;
  border-bottom: 6px solid #ffffff;
}
.risk-table table tr td:first-child div,
.risk-table table tr th:first-child div {
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.File-error-container {
  align-items: flex-start;
}

.File-error-list {
  padding: 0;
  display: block;
}

.File-error-list-item {
  padding: 0 0 5px 0;
  margin: 0;
  display: block;
  color: #990000;
}

.qr-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.qr-modal-content {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  width: 420px;
  height: 510px;
  z-index: 10;
  color: black;
  text-align: center;
  margin-bottom: 3rem;
}

.qrModal-container {
  width: 400px;
}

.qr-modal-content .logo-container {
  width: 20%;
  margin-top: 10px;
}

.qr-modal-content .loader {
  margin-top: 5rem;
}

.qr-modal-content .qr-button {
  margin-top: 40px;
}

.qr-modal-overlay .iframe {
  z-index: 100;
}

.qr-modal-content .buttons-container {
  display: flex;
  flex-direction: row;
  margin-top: 2rem;
}

.qr-button-loader {
  margin-top: 82px;
}

.qr-or-message {
  margin-top: 20px;
  color: grey;
}

.qr-button-container {
  margin-top: 5px;
}

.succesQrContainer {
  height: 300px;
}

.qrLogo-container {
  width: 50%;
  margin-top: 30px;
}

.successQr-container {
  width: 15%;
  margin-top: 20px;
}

.moving-animation {
  color: blue;
  font-size: 3rem;
  animation: moveRight 1s linear infinite;
  transition: transform 1s linear;
}

@keyframes moveRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(10px);
  }
}
.Cob-Finish {
  width: 100%;
  margin: 50px 0;
}
.Cob-Finish .icon-circle {
  width: 100px;
  height: 100px;
  color: #2ed1a0;
  border: 2px solid #2ed1a0;
  border-radius: 100%;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.Cob-Finish h2 {
  color: #003d50;
}
.Cob-Finish .ContentBox > *:last-child {
  margin-bottom: 0;
}

.Cob-SignAgreement-Signatory {
  width: 100%;
  margin: 5px 0;
  -webkit-flex: 0 0 auto;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.Cob-SignAgreement-Signatory .name-collection {
  margin: -5px 0;
}
.Cob-SignAgreement-Signatory:first-child {
  margin-top: 0;
}
.Cob-SignAgreement-Signatory:last-child {
  margin-bottom: 0;
}
.Cob-SignAgreement-Signatory.selectable {
  padding: 10px;
  border: 1px solid #f4f5f7;
  border-radius: 5px;
}

.Cob-SignAgreement-Signatory-bar {
  width: 100%;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.Cob-SignAgreement-Signatory-name {
  display: block;
  width: 100%;
  margin-left: 10px;
  margin-right: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.Cob-SignAgreement-Signatory-editToggle {
  margin-left: auto;
  width: 24px;
  height: 24px;
  font-family: "Material Icons";
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-flex: 0 0 auto;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-transition: all 100ms 0ms ease-in-out;
  -moz-transition: all 100ms 0ms ease-in-out;
  -ms-transition: all 100ms 0ms ease-in-out;
  transition: all 100ms 0ms ease-in-out;
}
.Cob-SignAgreement-Signatory-editToggle:active {
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
.Cob-SignAgreement-Signatory-editToggle:hover {
  background: #f4f5f7;
}
.Cob-SignAgreement-Signatory.edit .Cob-SignAgreement-Signatory-editToggle {
  background: #f4f5f7;
  color: #4cb7d5;
}

.Cob-SignAgreement-Signatory-fields {
  margin-bottom: -5px;
}
.Cob-SignAgreement-Signatory.selectable .Cob-SignAgreement-Signatory-fields {
  margin-top: 10px;
  padding-top: 5px;
  border-top: 1px solid #f4f5f7;
}
.Cob-SignAgreement-Signatory.selectable:not(.edit) .Cob-SignAgreement-Signatory-fields {
  display: none;
}
.Cob-SignAgreement-SignModal .error-message {
  width: 100%;
  padding: 10px;
  background: #f5c8c6;
  color: #cc2d23;
  font-size: 12px;
  border: 1px solid #ee9f9a;
  border-radius: 2px;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-SignAgreement-SignModal .error-message:before {
  content: attr(data-label);
  margin-bottom: 10px;
  font-weight: 700;
}
.Cob-SignAgreement-SignModal .sign-on-screen-notice {
  margin-top: 10px;
  font-size: 12px;
}
.Cob-SignAgreement-SignModal .sign-on-screen-notice ul {
  margin: 0;
  padding-left: 20px;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-SignAgreement-SignModal .sign-on-screen-notice ul li {
  display: list-item;
  line-height: 1.3;
  margin-bottom: 10px;
}
.Cob-SignAgreement-SignModal .sign-on-screen-notice ul li:last-child {
  margin-bottom: 0;
}
.Cob-SignAgreement-SignModal .sign-on-screen-notice > *:first-child {
  margin-top: 0;
}
.Cob-SignAgreement-SignModal .sign-on-screen-notice > *:last-child {
  margin-bottom: 0;
}

.Cob-SignAgreement-SignModal-content {
  width: 100%;
  -webkit-flex: 0 0 auto;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.Cob-SignAgreement-SignModal-signatories {
  width: 100%;
  margin-bottom: 10px;
  -webkit-flex: 0 0 auto;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.Cob-SignAgreement-SignModal-signUrls {
  width: 100%;
  padding: 10px;
  border: 1px solid #f4f5f7;
  border-radius: 5px;
}
.Cob-SignAgreement-SignModal-signUrls ul {
  width: 100%;
  margin: 0;
  padding-left: 20px;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-SignAgreement-SignModal-signUrls ul li {
  display: list-item;
  line-height: 1.3;
  margin-bottom: 10px;
}
.Cob-SignAgreement-SignModal-signUrls ul li:last-child {
  margin-bottom: 0;
}

.Cob-SignAgreement-fields {
  width: 100%;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-SignAgreement-fields > *:not(:last-child) {
  margin-bottom: 40px;
}

.Cob-SignAgreement-persons-box {
  width: 100%;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #f4f5f7;
  border-radius: 5px;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-SignAgreement-persons-box .title {
  margin-top: 0;
  margin-bottom: 10px;
}

.SignModal .error-message {
  width: 100%;
  padding: 10px;
  background: #f5c8c6;
  color: #cc2d23;
  font-size: 12px;
  border: 1px solid #ee9f9a;
  border-radius: 2px;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.SignModal .error-message:before {
  content: attr(data-label);
  margin-bottom: 10px;
  font-weight: 700;
}
.SignModal .sign-by-hand-notice {
  font-size: 12px;
}
.SignModal .sign-by-hand-notice ul {
  margin: 0;
  padding-left: 20px;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.SignModal .sign-by-hand-notice ul li {
  display: list-item;
  line-height: 1.3;
  margin-bottom: 10px;
}
.SignModal .sign-by-hand-notice ul li:last-child {
  margin-bottom: 0;
}
.SignModal .sign-by-hand-notice > *:first-child {
  margin-top: 0;
}
.SignModal .sign-by-hand-notice > *:last-child {
  margin-bottom: 0;
}

.SignModal-Field {
  margin-bottom: 10px;
}
.SignModal-Field:first-child {
  margin-top: 10px;
}

.SignModal-Checkbox {
  width: 100%;
  margin-bottom: 10px;
}
.SignModal-Checkbox:first-child {
  margin-top: 10px;
}

.Cob-view1 {
  font-size: 14px;
}
.Cob-view1 h2 {
  padding-top: 40px;
}
.Cob-view1 .welcome-message {
  margin-top: 0;
  margin-bottom: 20px !important;
}
.Cob-view1 .current-session {
  padding: 20px;
  background: #fafafb;
  border-radius: 10px;
}
.Cob-view1 .current-session .Icon {
  color: #eec24b;
}
.Cob-view1 .current-session .case-id {
  margin-top: 10px;
  margin-bottom: 40px;
  font-size: 12px;
}
.Cob-view1 ul.links {
  padding: 0;
  margin: 0;
  display: block;
}
.Cob-view1 ul.links li {
  align-items: flex-start;
  padding: 0 0 15px 0;
}
.Cob-view1 ul.links li a {
  display: block;
}
.Cob-view1 ul.links li a span {
  display: block;
  font-size: 12px;
  color: #91a0ad;
  padding: 3px 0 0 0;
  font-weight: normal;
}

.Cob-view1-fields {
  width: 100%;
  max-width: 420px;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-view1-fields > *:not(:last-child) {
  margin-bottom: 10px;
}
.Cob-view1-fields .crmButton {
  min-width: 30px;
  max-height: 40px;
}

.Cob-view1-cases {
  width: 100%;
  padding-left: 34px;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-view1-cases .empty {
  margin: 0;
  font-size: 13px;
}
.Cob-view1-cases .loading {
  width: 100%;
  height: 56px;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.Cob-view1-cases .loading span {
  margin-left: 10px;
  color: #91a0ad;
}
.Cob-view1-cases .cases-select {
  margin-top: 0 !important;
}
.Cob-view1-cases .no-draft-notice {
  margin-top: 10px;
}

.Cob-view1-caseOption {
  width: 100%;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.Cob-view1-caseOption .label {
  display: block;
  width: 100%;
  padding-right: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.Cob-view1-caseOption .draft {
  padding: 3px 4px;
  background: #91a0ad;
  color: #ffffff;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  border-radius: 3px;
  -webkit-flex: 0 0 auto;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.Cob-view2-CompanyReps {
  width: 100%;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-view2-CompanyReps h3 {
  color: #3f4950;
  margin-bottom: 30px !important;
}

.Cob-view2-CompanyReps-list {
  width: 100%;
  margin-top: 20px;
}

.Cob-view2-CompanyReps-Rep {
  width: 100%;
  margin-bottom: 20px !important;
  padding: 15px;
  border: 1px solid #e5e8ec;
  border-radius: 5px;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-view2-CompanyReps-Rep h4 {
  margin-top: 0;
}

.Cob-view2-CompanyReps-Rep-type {
  width: 100%;
  margin-bottom: 10px;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.Cob-view2-CompanyReps-Checkbox {
  margin-right: 20px;
}

.heading-customerInformation {
  color: #003d50;
  font-size: 24px;
  font-weight: 400;
  padding-top: 40px;
}

.Cob-view2-fields {
  width: 100%;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-view2-fields > *:not(:last-child) {
  margin-bottom: 10px;
}
.Cob-view2-fields div.blockingQuestions {
  display: block;
  width: 100%;
}
.Cob-view2-fields div.blockingQuestions p.Cob-OptionsList-description {
  margin: 10px 0 15px 0;
  font-weight: normal;
  color: #686f77;
}
.Cob-view2-fields p.description {
  font-size: 13px;
  font-weight: 300;
  padding: 10px;
  background: #FAFAFA;
  margin: 0 0 10px 0;
}

.Cob-view2-isForeigner {
  margin-top: 10px;
}

div.provision {
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
div.provision div.provisionOptions,
div.provision div.remunerationOptions {
  margin: 0 10px 20px 10px;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
div.provision div.provisionOptions p,
div.provision div.remunerationOptions p {
  margin: 10px 0 0 0;
}
div.provision div.provisionOptions div.Cob-NumberField {
  max-width: 120px;
}
div.provision div.remunerationOptions {
  width: 100%;
}
div.provision div.remunerationOptions div.Cob-NumberField {
  max-width: 240px;
}

.Cob-BaseAgreement-fields {
  width: 100%;
}
.Cob-BaseAgreement-fields .Checkbox-label {
  padding-right: 3px;
}
.Cob-BaseAgreement-fields div.row {
  width: 100%;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 10px;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  border-bottom: 1px solid #f5f5f5;
}
.Cob-BaseAgreement-fields div.row .Checkbox {
  width: 30%;
  font-weight: bold;
}
.Cob-BaseAgreement-fields div.row .Checkbox .Checkbox-label {
  padding-right: 3px;
}
.Cob-BaseAgreement-fields div.row div.label {
  width: 70%;
  font-weight: 300;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  line-height: 16px;
}
.Cob-BaseAgreement-fields div.row div.label ul {
  list-style: disc;
  display: block;
  padding: 0 0 0 20px;
  line-height: 20px;
}
.Cob-BaseAgreement-fields div.row div.label ul li {
  display: list-item;
  padding-bottom: 5px;
}

.description-title {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  width: 100%;
  align-items: center;
  font-weight: 300;
  padding: 10px;
  background: #fafafa;
  margin: 0 0 10px 0;
  align-items: flex-start;
}

.Cob-POA-fields div.poa {
  border-bottom: 1px solid #f5f5f5;
  width: 100%;
}
.Cob-POA-fields div.row {
  width: 100%;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 10px;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.Cob-POA-fields div.row div.label {
  width: fit-content;
  font-weight: 300;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  line-height: 16px;
}
.Cob-POA-fields div.row div.label ul {
  list-style: disc;
  display: block;
  padding: 0 0 0 20px;
  line-height: 20px;
  margin-bottom: 0px;
}
.Cob-POA-fields div.row div.label ul li {
  display: list-item;
  padding-bottom: 2px;
}
.Cob-POA-fields div.textField-row {
  width: 100%;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  justify-content: flex-start;
}
.Cob-POA-fields div.textField-row div.add-icon {
  color: #003d50;
  font-size: 22px;
  margin-right: 5px;
}
.Cob-POA-fields div.textField-row div.remove-icon {
  color: #df4c43;
  font-size: 22px;
}
.Cob-POA-fields div.insurance_institute {
  display: flex;
  padding: 10px;
}
.Cob-POA-fields div.insurance_institute {
  display: flex;
  padding: 10px;
}

.uppdrag-subheading {
  padding: 25px 0 15px 0;
}

.Tied-agent-dropdown-container {
  width: 100%;
  align-items: baseline;
}
.Tied-agent-dropdown-container .Tied-agent-dropdown-subcontainer {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.Cob-view3-user-info {
  width: 100%;
  padding: 15px;
  background: #f4f5f7;
  border-radius: 7.5px;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.Cob-view3-user-info-value {
  line-height: 1.3;
}

.Cob-view3-additionalInformation {
  width: 100%;
  max-width: 480px;
}

.Cob-view3-fields {
  width: 100%;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-view3-fields > * {
  margin-top: 20px;
}
.Cob-view3-fields > *:not(:last-child) {
  margin-bottom: 20px;
}
.Cob-view3-fields div.customerInvPoa {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.Cob-view3-fields div.customerInvPoa strong {
  display: block;
  width: 100%;
}
.Cob-view3-fields div.customerInvPoa div.TextField {
  width: 200px;
  margin: 10px 10px 0 0;
}
.Cob-view3-fields div.employment {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0;
}
.Cob-view3-fields div.employment div.item {
  width: 50% !important;
  padding: 10px 10px 5px 10px;
}
.Cob-view3-fields div.employment div.item:nth-child(odd) {
  padding-left: 0;
}
.Cob-view3-fields div.employment div.item:nth-child(even) {
  padding-right: 0;
}

.Cob-view4-fields {
  width: 100%;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-view4-fields > *:not(:last-child) {
  margin-bottom: 10px;
}
.Cob-view4-fields .Savings-info {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.Cob-view4-fields .Savings-info .Icon {
  margin-right: 5px;
}
.Cob-view4-fields .Notice {
  align-self: center;
  max-width: max-content;
}
.Cob-view4-fields div.children {
  align-items: flex-start;
  background: #FAFAFA;
  width: 100%;
  padding: 15px;
  border-radius: 6px;
}
.Cob-view4-fields div.children h4 {
  margin: 0 0 15px 2px;
}
.Cob-view4-fields div.children div.child {
  width: 100%;
  flex-direction: row;
  padding-bottom: 10px;
}
.Cob-view4-fields .toggle-checkbox .Checkbox-checkbox {
  width: 32px;
  height: 32px;
}

.Cob-view5 table.definitions {
  width: 100%;
  margin: 0 0 30px 0;
  border: 1px solid #000;
}
.Cob-view5 table.definitions td {
  padding: 5px;
}
.Cob-view5 table.definitions td.header {
  background: #F9DFDF;
  color: #000;
  font-weight: bold;
}
.Cob-view5 table.definitions td.label {
  color: #000;
  font-weight: bold;
}
.Cob-view5 .Cob-Table.second {
  margin-top: 30px;
}

.Cob-view5-fields {
  width: 100%;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-view5-fields > *:not(:last-child) {
  margin-bottom: 10px;
}

.Cob-view6-fields {
  width: 100%;
}
.Cob-view6-fields > *:not(:last-child) {
  margin-bottom: 10px;
}
.Cob-view6-fields p {
  text-align: justify;
  margin: auto;
}
.Cob-view6-fields .Cob-description {
  max-width: 650px;
}
.Cob-view6-fields .new-column {
  max-width: 85% !important;
}
.Cob-view6-fields .Cob-riskNote {
  width: 90%;
  font-size: 12px;
  color: #003d50;
  text-align: justify;
}

.Cob-view6-question > * {
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-view6-question .risk-options {
  margin: 30px 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media screen and (max-width: 640px) {
  .Cob-view6-question .risk-options {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.Cob-view6-question .question {
  margin: 2px;
  padding: 0;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-view6-question .question > .Cob-SimpleTextField {
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-view6-question .question > .Cob-SimpleTextField .Cob-SimpleTextField-input {
  text-align: left;
}
.Cob-view6-question .question .question-number {
  width: 100%;
  font-size: 12px;
  padding-left: 30px;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.Cob-view6-question .question div.Checkbox div.Checkbox-label {
  color: #f4f5f7;
  border-radius: 3px;
  padding: 3px;
  font-size: 11px;
  min-width: 90px;
  margin-left: 5px;
}
.Cob-view6-question .question:nth-child(1) div.Checkbox div.Checkbox-label, .Cob-view6-question .question:nth-child(2) div.Checkbox div.Checkbox-label {
  background: #2ed1a0;
}
.Cob-view6-question .question:nth-child(3) div.Checkbox div.Checkbox-label, .Cob-view6-question .question:nth-child(4) div.Checkbox div.Checkbox-label, .Cob-view6-question .question:nth-child(5) div.Checkbox div.Checkbox-label {
  background: #eec24b;
}
.Cob-view6-question .question:nth-child(6) div.Checkbox div.Checkbox-label, .Cob-view6-question .question:nth-child(7) div.Checkbox div.Checkbox-label {
  background: #df4c43;
}

.chart-container {
  width: 100%;
  max-width: 480px;
  height: 100%;
}

.Cob-view6-info {
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
}
.Cob-view6-info .Cob-view6-info-title {
  padding: 10px 0;
  color: #91a0ad;
  font-size: 14px;
  font-weight: 450;
}
.Cob-view6-info .minimize-icon {
  width: 100%;
  padding: 10px 0;
  text-decoration: underline #4cb7d5;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-view6-info .chart-container {
  max-width: 580px;
}
.Cob-view6-info .Icon-label {
  width: max-content;
}
.Cob-view6-info .Cob-view6-info-view, .Cob-view6-info .Cob-view6-info-title {
  visibility: collapse;
  opacity: 0;
  transition: visibility 0s;
  height: 0px;
}
.Cob-view6-info .Cob-view6-info-view.visible, .Cob-view6-info .Cob-view6-info-title.visible {
  visibility: visible;
  opacity: 1;
  transition: visibility 0.5s ease-in-out, opacity 0.5s ease-in-out;
  height: auto;
}
.Cob-view6-info .Cob-view6-info-view {
  background-color: #f9f9f9;
}
.Cob-view6-info .Cob-view6-info-view.visible {
  border: 1px solid #CCC;
  border-radius: 3px;
  padding: 5px;
  width: 100%;
}

.Cob-view6-info-view .Cob-Table .Table-container {
  border-radius: 0 !important;
}
.Cob-view6-info-view .Cob-Table .Table-container:after {
  width: 0;
}
.Cob-view6-info-view .Cob-Table .Table-container .Table-wrapper {
  border-radius: 0 !important;
}

div.numbers-with-colors {
  align-items: flex-start;
  border: 1px solid #CCC;
  padding: 10px;
  max-width: 825px;
}
div.numbers-with-colors div.Checkbox {
  padding: 3px;
  border-radius: 6px;
}
div.numbers-with-colors div.Checkbox.checked {
  background: #CBF5E8;
}
div.numbers-with-colors div.Checkbox-label {
  padding: 3px 20px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  color: #000 !important;
  font-weight: bold;
  cursor: pointer;
}
div.numbers-with-colors div.Checkbox:nth-child(1) div.Checkbox-label {
  background: #24cc66;
}
div.numbers-with-colors div.Checkbox:nth-child(2) div.Checkbox-label {
  background: #2fecc6;
}
div.numbers-with-colors div.Checkbox:nth-child(3) div.Checkbox-label {
  background: #5477f5;
}
div.numbers-with-colors div.Checkbox:nth-child(4) div.Checkbox-label {
  background: #956bf6;
}
div.numbers-with-colors div.Checkbox:nth-child(5) div.Checkbox-label {
  background: #fa63a7;
}
div.numbers-with-colors div.Checkbox:nth-child(6) div.Checkbox-label {
  background: #fb5457;
}
div.numbers-with-colors div.Checkbox:nth-child(7) div.Checkbox-label {
  background: #a48a79;
}

.chart-container {
  background: #fafafb;
}

.mandate-container {
  display: flex;
  flex-direction: row;
  width: 62%;
  justify-content: center;
  margin-bottom: 20px;
}

.heading {
  width: 40%;
  font-size: 16px;
}

.span {
  color: #2ed1a0;
}

.button-container {
  margin-left: 70%;
}

.TextBox {
  width: 100%;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.TextBox .text-box-display {
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  background: #f4f5f7;
  color: #003d50;
  max-width: fit-content;
  padding: 5px;
  border-radius: 5px;
}
.TextBox .text-box-fields {
  font-size: 16px;
  font-weight: 600;
  padding: 0 5px;
}
.TextBox .text-box-fields.success {
  color: #2ed1a0;
}
.TextBox .text-box-fields.warning {
  color: #eec24b;
}
.TextBox.text-warning .text-box-display {
  background-color: #eec24b;
}
.TextBox.text-warning .text-box-display .text-box-fields {
  color: #003d50;
}
.TextBox .low-risk {
  color: #2ed1a0;
}
.TextBox .medium-risk {
  color: #eec24b;
}
.TextBox .high-risk {
  color: #df4c43;
}

.text-box-content {
  padding-bottom: 5px;
}

.waring-text {
  background-color: #eec24b !important;
  color: #003d50 !important;
}

.Cob-view7-fields {
  width: 100%;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-view7-fields > *:not(:last-child) {
  margin-bottom: 10px;
}

.Cob-CheckableFields {
  width: 100%;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-CheckableFields > .Checkbox {
  margin-bottom: 10px;
}
.Cob-CheckableFields > .Checkbox .Checkbox-label {
  font-weight: 600;
}

.Cob-OptionsList .Checkbox.radio {
  margin-bottom: 15px;
}

.Cob-view7 .Cob-OptionsList-description .Info {
  display: inline-block;
}
.Cob-view7 .Cob-view7-info {
  align-items: flex-start;
}
.Cob-view7 .flex {
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
}

.ulStyles {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 30px 0;
  cursor: pointer;
}
.ulStyles .listStyles {
  padding: 0 30px 20px 30px;
  border-bottom: 1px solid grey;
}
.ulStyles .listStyles:hover {
  color: #2ed1a0;
}
.ulStyles .listStyles:active {
  border-bottom: 2px solid #2ed1a0;
  color: #2ed1a0;
}
.ulStyles .focusFirst {
  border-bottom: 2px solid #2ed1a0;
  color: #2ed1a0;
}
.ulStyles li {
  color: #003d50;
  font-size: 20px;
  font-weight: 400;
}

.Icons {
  width: 5px;
  font-size: 15px;
  margin-top: 10px;
  margin-left: 5px;
  margin-bottom: 8px;
}

.Icon-disable {
  width: 5px;
  font-size: 15px;
  margin-top: 10px;
  color: rgb(255, 255, 255);
  margin-left: 5px;
}

.focusFirsts {
  border-bottom: 2px solid blue;
  color: blue;
}

.isvisible {
  display: block;
  width: 100%;
}

.isNotVisible {
  display: none;
}

.invest-table {
  display: flex;
  flex-direction: row;
}

.green-icon {
  width: 5px;
  font-size: 15px;
  margin-top: 10px;
  margin-left: 5px;
  margin-bottom: 8px;
  color: #2ed1a0;
}

.modal-container {
  width: 100%;
  min-height: 40vh;
  padding-top: 20px;
}
.modal-container .select_container {
  width: 100%;
  margin-bottom: 25px;
}
.modal-container .select_container p {
  color: #003d50;
  font-size: 14px;
  font-weight: 600;
  padding-right: 45%;
}
.modal-container .select_container .textField {
  margin-top: 20px;
}
.modal-container .OptionsList {
  margin-bottom: 10px;
}
.modal-container .button-container {
  margin-top: 80px;
  margin-left: 25%;
}

.error-modal {
  margin-left: 70%;
}

.totalAssests-heading {
  margin-top: 0;
  margin-bottom: 16px;
}

.mandate-heading {
  margin: 0 0 16px 0;
  margin-left: 75%;
}

.total-financed-heading {
  margin: 0;
}

.total-investment-heading {
  margin: 16px 0 0 0;
  margin-left: 67%;
}

.heading {
  margin-top: 10px;
}

.Cob-view8 h2 {
  margin-bottom: 10px !important;
}
.Cob-view8 h3 {
  color: #91a0ad;
  margin-bottom: 40px;
}
.Cob-view8 h4 {
  margin-bottom: 15px !important;
}
.Cob-view8 p {
  font-weight: 300;
  margin: 0;
}

.Cob-view8-fields {
  width: 100%;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-view8-fields > *:not(:last-child) {
  margin-bottom: 10px;
}

.esg-comment-section {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.esg-checkbox-container {
  margin: 25px 0;
}

.Cob-view9-NewAccount {
  width: 100%;
  margin-top: 10px;
  padding: 20px;
  border: 1px solid #f4f5f7;
  border-radius: 5px;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-view9-NewAccount h3 {
  margin-top: 0;
  margin-bottom: 20px;
}
.Cob-view9-NewAccount .Cob-description {
  margin-top: 20px;
  margin-bottom: 0;
}
.Cob-view9-NewAccount .fields {
  width: calc(100% + 40px);
  margin-left: -20px;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
}
.Cob-view9-NewAccount .column {
  width: 100%;
  max-width: 430px;
  margin-top: 20px;
  padding: 0 20px;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-view9-NewAccount .column .Slider.has-checkbox .Slider-label {
  margin-left: -34px;
  opacity: 1;
}
.Cob-view9-NewAccount .column .Cob-SimpleTextField-label {
  margin-right: auto;
  margin-bottom: 10px;
  padding: 0;
  color: #003d50;
  font-size: 14px;
  font-weight: 600;
}

.Cob-view9-NewAccount-productClass {
  width: 100%;
  height: 100%;
  padding: 20px;
  background: #f4f5f7;
  border-radius: 5px;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-view9-NewAccount-productClass .title {
  color: #003d50;
  font-size: 14px;
  font-weight: 700;
}
.Cob-view9-NewAccount-productClass .subtitle {
  margin-top: 5px;
  color: #91a0ad;
  font-size: 12px;
}
.Cob-view9-NewAccount-productClass .description {
  margin-top: 10px;
  line-height: 1.5;
  color: #3f4950;
  font-size: 12px;
}

.Cob-view9-fields {
  width: 100%;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-view9-fields > *:not(:last-child) {
  margin-bottom: 10px;
}
.Cob-view9-fields .Cob-description {
  line-height: 0 !important;
}
.Cob-view9-fields .select-account-info {
  font-style: italic;
  margin-bottom: 20px;
}

.Cob-view9-account {
  width: 100%;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-view9-account .popOut {
  width: calc(100% - 32px);
  margin-bottom: 10px;
  margin-left: 34px;
  padding-top: 10px;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-view9-account div.acc {
  margin: 15px 0;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}
.Cob-view9-account div.acc p.Cob-OptionsList-description,
.Cob-view9-account div.acc div.Checkbox-label {
  font-size: 12px;
}
.Cob-view9-account .StackLayout.full-width button {
  margin-top: 15px;
  margin-bottom: 15px;
}

.Cob-view-9-sub-heading {
  margin: 15px;
}

.Cob-disclaimer-overlay {
  visibility: collapse;
  opacity: 0;
  transition: visibility 0s;
  position: absolute;
  bottom: 7px;
  z-index: 1;
  background: #f4f5f7;
  transition: 0.5s;
  border-radius: 5px;
}
.Cob-disclaimer-overlay.visible {
  visibility: visible;
  opacity: 1;
  transition: visibility 0.5s ease-in-out, opacity 0.5s ease-in-out;
  height: auto;
}

.Cob-disclaimer-close {
  color: #91a0ad;
  position: absolute;
  right: 15px;
  top: 0px;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  z-index: 1;
}
.Cob-disclaimer-close:hover {
  color: #003d50;
  transform: scale(1.2);
}

.Cob-ExistingAccounts-fields {
  width: 90%;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-ExistingAccounts-fields > *:not(:last-child) {
  margin-bottom: 10px;
}
.Cob-ExistingAccounts-fields .account-description, .Cob-ExistingAccounts-fields .Cob-description {
  margin-top: 0;
  margin-bottom: 5px;
  color: #91a0ad;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  position: relative;
  width: 100%;
}
.Cob-ExistingAccounts-fields .Cob-description {
  line-height: 1.5;
}
.Cob-ExistingAccounts-fields .column {
  width: 100%;
  max-width: 400px;
  margin-top: 20px;
  padding: 0 20px 0 0;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-ExistingAccounts-fields .fields {
  width: calc(100% + 90px);
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
}
.Cob-ExistingAccounts-fields .hyperlink {
  color: #3f4950;
  text-decoration: underline;
  cursor: pointer;
}
.Cob-ExistingAccounts-fields .new-account-title {
  color: #4cb7d5;
}
.Cob-ExistingAccounts-fields .title {
  color: #637089;
  font-size: 16px;
  font-weight: 700;
}

.Cob-ExistingAccounts-accountList {
  background: #f4f5f7;
  border: solid 1px #d6dae2;
  border-radius: 5px;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-ExistingAccounts-accountList .account {
  padding: 0 1rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.Cob-ExistingAccounts-accountList .account:not(:last-child) {
  border-bottom: solid 1px #d6dae2;
}
.Cob-ExistingAccounts-accountList .label {
  color: #003d50;
  font-size: 14px;
  font-weight: 700;
}
.Cob-ExistingAccounts-accountList .status {
  margin: 0px;
  padding: 0 1rem;
  color: #003d50;
  font-size: 13px;
  font-weight: 700;
}
.Cob-ExistingAccounts-accountList .status.active {
  color: #2ed1a0;
}
.Cob-ExistingAccounts-accountList .status.created, .Cob-ExistingAccounts-accountList .status.pending {
  color: #eec24b;
}
.Cob-ExistingAccounts-accountList .status.status_unknown {
  color: #df4c43;
}

.EditBaseValuesModal-EditableField {
  width: 100%;
  max-width: 480px;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.EditBaseValuesModal-EditableField .Cob-SimpleTextField {
  width: 100%;
  max-width: 480px;
}
.EditBaseValuesModal-EditableField .Cob-SimpleTextField.filled .Cob-SimpleTextField-input {
  border-color: #bdc6ce;
}
.EditBaseValuesModal-EditableField .Cob-SimpleTextField-label {
  padding: 0;
  color: #003d50;
  font-size: 12px;
  font-weight: 600;
}

.EditBaseValuesModal-EditableField-unit {
  position: absolute;
  bottom: 9px;
  right: 10px;
  font-size: 12px;
  opacity: 0.5;
  pointer-events: none;
}

.Cob-view10-ProductModal-fields .FieldsCollection-container {
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.Cob-view10-ProductModal-Field {
  width: 100%;
  margin: 10px 0;
  line-height: 1.3;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-view10-ProductModal-Field .label, .Cob-view10-ProductModal-Field .value {
  display: block;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.Cob-view10-ProductModal-Field .label {
  margin-bottom: 5px;
  color: #003d50;
  font-size: 12px;
  font-weight: 700;
}
.Cob-view10-ProductModal-Field .value {
  color: #4cb7d5;
}
.Cob-view10-ProductModal-Field .value div {
  color: #91a0ad;
  font-size: 9px;
  width: 100%;
  align-items: flex-start;
}

.Cob-view10-ProductsList {
  width: 100%;
}
.Cob-view10-ProductsList.danger, .Cob-view10-ProductsList.add-placements {
  margin-top: 0;
}
.Cob-view10-ProductsList.danger {
  opacity: 0.25;
}

.Cob-view10-ProductsList-table .Table-columns {
  box-shadow: 0 1px rgba(0, 0, 0, 0.05);
}
.Cob-view10-ProductsList-table .Table-row {
  cursor: -moz-zoom-in;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
.Cob-view10-ProductsList-table .Table-row:hover {
  background: rgba(76, 183, 213, 0.1);
}
.Cob-view10-ProductsList-table .highlight {
  background: rgba(76, 183, 213, 0.1);
}
.Cob-view10-ProductsList-table .Table-row-value {
  min-height: 24px;
  font-size: 12px;
  box-shadow: 0 1px rgba(0, 0, 0, 0.05);
  transition: background 0.4s ease-in;
}
.Cob-view10-ProductsList-table .Table-row-value > div {
  width: 100%;
}
.Cob-view10-ProductsList-table .Table-row-value .main-text {
  display: block;
  width: 100%;
  margin-bottom: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.Cob-view10-ProductsList-table .Table-row-value .muted {
  color: #91a0ad;
  font-size: 11px;
}
.Cob-view10-ProductsList-table .Table-row-value .muted .productlist-icon {
  display: flex;
  flex-direction: row;
}
.Cob-view10-ProductsList-table .Table-row-value.name {
  max-width: 250px;
}
.Cob-view10-ProductsList-table .Table-row-value .undo-monthly-savings {
  color: #df4c43;
  text-decoration: underline;
  cursor: pointer;
  padding: 8px;
}

.Cob-view10-ProductsList-empty {
  margin-top: 20px;
  color: #91a0ad;
}

.Cob-view10-ProductsList-buttons {
  margin-top: 20px;
}

.monthly-savings-status, .monthly-savings-status-existing,
.monthly-savings-status-new,
.monthly-savings-status-removed {
  font-weight: 600;
  width: 85px;
}

.monthly-savings-status-existing,
.monthly-savings-status-new,
.monthly-savings-status-removed {
  border-radius: 4px;
  padding: 5px;
}

.monthly-savings-status-existing {
  background-color: #d6dae2;
  color: #3f4950;
}

.monthly-savings-status-new {
  background-color: #97e8d0;
  color: #176950;
}

.monthly-savings-status-removed {
  background-color: #FCCACA;
  color: #df4c43;
}

.invAmount-removed {
  text-decoration: line-through;
  color: #df4c43;
}

.remuneration-removed {
  text-decoration: line-through;
  color: #df4c43;
}
.remuneration-removed .muted {
  color: #df4c43 !important;
}

.fees-removed {
  text-decoration: line-through;
  color: #df4c43;
}
.fees-removed .muted {
  color: #df4c43 !important;
}

.account-removed,
.fees-removed,
.fees-unchanged,
.horizon-removed,
.invAmount-removed,
.invAmount-unchanged,
.monthly-savings-name,
.remuneration-removed,
.remuneration-unchanged,
.risk-removed {
  opacity: 0.5;
}

.undo-monthly-saving-modal .Modal-content {
  overflow-y: hidden !important;
}
.undo-monthly-saving-modal h3 {
  color: #df4c43;
}

.portfolio-risk-box {
  bottom: 0;
  left: 0;
  font-size: 12px;
  font-weight: 900;
  padding: 0px 5px;
  width: 100%;
  margin-bottom: 20px;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.portfolio-risk-box .text-box-display {
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  font-size: 13px;
  font-weight: 400;
  background: #f4f5f7;
  color: #003d50;
  max-width: fit-content;
  padding: 5px;
  border-radius: 5px;
}
.portfolio-risk-box .text-box-fields {
  font-size: 16px;
  font-weight: 600;
  padding: 0 5px;
}
.portfolio-risk-box .text-box-fields.danger {
  color: #df4c43;
}
.portfolio-risk-box .low-risk {
  color: #2ed1a0;
}
.portfolio-risk-box .medium-risk {
  color: #2ed1a0;
}
.portfolio-risk-box .high-risk {
  color: #df4c43;
}

.portfolio-container {
  width: 100%;
  display: flex;
  align-items: flex-start;
}
.portfolio-container .portfolio-item {
  margin: 10px 0;
  width: 45%;
  display: flex;
  align-items: flex-start;
}
.portfolio-container .portfolio-item h4 {
  margin: 5px 0;
}
.portfolio-container .portfolio-item .fees-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}
.portfolio-container .portfolio-item .fees-list {
  display: flex;
  flex-direction: row;
  cursor: pointer;
  margin: 5px;
}
.portfolio-container .portfolio-item .fees-list .listStyles {
  padding: 0;
  border-bottom: 0;
}
.portfolio-container .portfolio-item .fees-list .listStyles:hover {
  color: #2ed1a0;
}
.portfolio-container .portfolio-item .fees-list .listStyles:active {
  border-bottom: 2px solid #2ed1a0;
  color: #2ed1a0;
}
.portfolio-container .portfolio-item .fees-list .focusFirst {
  color: #2ed1a0;
}
.portfolio-container .portfolio-item .fees-list li {
  color: #003d50;
  font-weight: 400;
}

.Cob-view10 .table-empty {
  width: 100%;
  margin: 10px 0;
  color: #91a0ad;
  font-size: 14px;
}
.Cob-view10 .Notice .course-info,
.Cob-view10 .Notice .currency-info {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.Cob-view10 .Notice .course-info .Icon,
.Cob-view10 .Notice .currency-info .Icon {
  margin-right: 5px;
}
.Cob-view10 .horizons .Cob-OptionsList-checkboxes,
.Cob-view10 .risks .Cob-OptionsList-checkboxes {
  display: flex;
  flex-wrap: wrap;
}
.Cob-view10 .horizons .Cob-OptionsList-checkboxes .Checkbox,
.Cob-view10 .risks .Cob-OptionsList-checkboxes .Checkbox {
  margin: 5px 0px 10px;
  width: 50%;
}
.Cob-view10 .column-order > div span {
  width: 32px;
  padding-top: 1px;
  background: #ffffff;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.Cob-view10 .column-order > div span.buy {
  color: #003d50;
  border-color: #003d50;
}
.Cob-view10 .column-order > div span.sell {
  color: #4cb7d5;
  border-color: #4cb7d5;
}
.Cob-view10 .column-order > div span.currency {
  margin-top: -1px;
  background: 0;
  color: #91a0ad;
  font-weight: 400;
}
.Cob-view10 .column-nameIsin span {
  display: block;
  width: 100%;
  max-width: 200px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.Cob-view10 .column-nameIsin span:nth-child(2) {
  color: #91a0ad;
}
.Cob-view10 .column-fees span:nth-child(2),
.Cob-view10 .column-remuneration span:nth-child(2),
.Cob-view10 .column-account span:nth-child(2) {
  color: #91a0ad;
}
.Cob-view10 .columns-right {
  width: 100%;
  max-width: 320px;
  margin-left: 78px;
  margin-bottom: 36px;
}
.Cob-view10 .columns-right > * {
  margin-bottom: 20px !important;
}
.Cob-view10 .columns-right > *:last-child {
  margin-bottom: 0 !important;
}
.Cob-view10 .mini-descriptions {
  padding: 0;
  font-size: 14px;
  margin-top: 0;
}
.Cob-view10 .mini-descriptions > li {
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-view10 .mini-descriptions > li p {
  margin: 0;
}
.Cob-view10 .mini-descriptions > li > ul {
  margin: 0;
  margin-top: 10px;
  padding: 0;
  font-size: 12px;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-view10 .mini-descriptions > li > ul li {
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-view10 .mini-descriptions > li > ul li .point {
  margin-right: 5px;
  line-height: 1.5;
  font-weight: 700;
}
.Cob-view10 .mini-descriptions > li > ul li:not(:last-child) {
  margin-bottom: 5px;
}
.Cob-view10 .NameIsinSelect .Select-selected,
.Cob-view10 .NameIsinSelect .Select-dropdown-option {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.Cob-view10 .NameIsinSelect .Select-selected .name,
.Cob-view10 .NameIsinSelect .Select-dropdown-option .name {
  display: block;
  width: 100%;
  padding-right: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.Cob-view10 .NameIsinSelect .Select-selected .isin,
.Cob-view10 .NameIsinSelect .Select-dropdown-option .isin {
  font-size: 12px;
  color: #91a0ad;
  -webkit-flex: 0 0 auto;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.Cob-view10 .NameIsinSelect .Select-selected {
  padding-right: 52px;
}
.Cob-view10 .NameIsinSelect .Select-dropdown-option {
  padding-top: 0;
  padding-bottom: 0;
}
.Cob-view10 .NameIsinSelect .Select-dropdown-option.highlight .isin {
  font-weight: 400;
  color: #75c8df;
}
.Cob-view10 .risk-table {
  margin-top: 10px;
}
.Cob-view10 .risk-table table {
  border-spacing: 0px;
}
.Cob-view10 .risk-table table th {
  border: none;
  font-size: 10px;
}
.Cob-view10 .risk-table table td {
  border: none;
  padding: 5px;
  font-size: 12px;
  background-color: transparent;
}
.Cob-view10 .risk-table table tr td,
.Cob-view10 .risk-table table tr th {
  width: 20%;
}
.Cob-view10 .risk-table table tr td:first-child,
.Cob-view10 .risk-table table tr tr:first-child {
  width: 60%;
}

.Cob-view10-fields {
  width: 100%;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-view10-fields > *:not(:last-child) {
  margin-bottom: 10px;
}

div.ranteKomp {
  width: 100%;
  text-align: left;
  display: block;
  padding: 10px 0 0 5px;
}

.Cob-view10-ProductManage {
  width: 100%;
}
.Cob-view10-ProductManage .container {
  width: 100%;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.Cob-view10-ProductManage .container .Cob-OptionsList-description {
  color: #4cb7d5;
  line-height: 3;
}
.Cob-view10-ProductManage .container .productManage-field {
  font-size: 14px;
  color: #4cb7d5;
}
.Cob-view10-ProductManage .container .header {
  display: inline;
  color: #003d50;
  font-size: 16px;
  font-weight: 600;
  margin: 8% 0 2% 0;
}
.Cob-view10-ProductManage .container .sub-header {
  color: #91a0ad;
}
.Cob-view10-ProductManage .container .full-width {
  width: 100%;
  align-items: start;
}
.Cob-view10-ProductManage .container .available-cash-details {
  font-size: 12px;
  margin-left: 10px;
  align-items: flex-start;
  align-self: flex-end;
}
.Cob-view10-ProductManage .container .available-cash-details p:first-child() {
  font-weight: 600;
  color: #003d50;
  margin: 0.2rem 0;
}
.Cob-view10-ProductManage .container .available-cash-details p:not(:first-child()) {
  margin: 0;
}
.Cob-view10-ProductManage .currency-field {
  font-size: 14px;
  font-weight: 700;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.Cob-view10-ProductManage .currency-field .label {
  color: #3f4950;
}
.Cob-view10-ProductManage .currency-field .value {
  margin-left: 10px;
  color: #4cb7d5;
}
.Cob-view10-ProductManage .case {
  width: 100%;
  align-items: start;
}
.Cob-view10-ProductManage .case .case-title {
  width: 100%;
  font-size: 14px;
  color: #4cb7d5;
}
.Cob-view10-ProductManage .field {
  width: 100%;
  max-width: 480px;
  min-height: 34px;
  margin: 5px 0;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.Cob-view10-ProductManage .field .Cob-OptionsList {
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1 1;
}
.Cob-view10-ProductManage .field:first-child {
  margin-top: 0;
}
.Cob-view10-ProductManage .field:last-child {
  margin-bottom: 0;
}
.Cob-view10-ProductManage .field.extra-spacing {
  margin: 15px 0;
}
.Cob-view10-ProductManage .field.split > :first-child {
  width: calc(50% - 5px);
  margin-right: 5px;
}
.Cob-view10-ProductManage .field.split > :last-child {
  width: calc(50% - 5px);
  margin-left: 5px;
}
.Cob-view10-ProductManage .field.split .Cob-OptionsList .Checkbox {
  margin-bottom: 6px;
}
.Cob-view10-ProductManage .field.split .Cob-OptionsList .Checkbox:last-child {
  margin-bottom: 0;
}
.Cob-view10-ProductManage .field.split-items {
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.Cob-view10-ProductManage .field.split-items > :first-child {
  width: calc(50% - 15px);
}
.Cob-view10-ProductManage .field.split-items > :nth-child(2n) {
  width: calc(50% - 15px);
}
.Cob-view10-ProductManage .summaries {
  width: 100%;
  padding: 5px 0;
  background: #f4f5f7;
  border-radius: 5px;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-view10-ProductManage .summaries:first-child {
  margin-top: 0;
}
.Cob-view10-ProductManage .summaries:last-child {
  margin-bottom: 0;
}
.Cob-view10-ProductManage .summaries.extra-spacing {
  margin: 15px 0;
}
.Cob-view10-ProductManage .summary {
  width: calc(50% - 5px);
  min-height: 56px;
  padding: 8px 15px;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-view10-ProductManage .summary .label {
  display: inline-block;
  width: 100%;
  margin-top: 2px;
  margin-bottom: 5px;
  line-height: 1.3;
  color: #3f4950;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.Cob-view10-ProductManage .summary .value {
  display: block;
  width: 100%;
  margin-top: auto;
  margin-bottom: 5px;
  color: #4cb7d5;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.Cob-view10-ProductManage .summary .muted {
  display: block;
  margin: 0 0 5px 0;
  color: #91a0ad;
  font-size: 11px;
}
.Cob-view10-ProductManage .summary:nth-child(2n-1):not(:last-child):before {
  content: "";
  position: absolute;
  top: 5px;
  right: -5px;
  bottom: 5px;
  width: 1px;
  background: rgba(0, 0, 0, 0.05);
}
.Cob-view10-ProductManage .disabled {
  opacity: 0.3333;
  pointer-events: none;
}

.summary-modal-container {
  width: 100%;
  display: flex;
  align-items: center;
}
.summary-modal-container h4 {
  margin-bottom: 0;
  color: #003d50;
}

.close-button {
  margin: 25px 0 0 85%;
}

.Performance-field {
  width: 100%;
  margin-top: 10px;
}

.risk-container {
  align-items: start;
}
.risk-container li {
  padding-top: 30px;
}

.externalReference-shares {
  padding-left: 10px;
  font-size: 12px;
  min-height: 0;
  color: #666;
}

.positionData-img {
  margin: 40px 0 60px 0;
}

.positionData-container {
  width: 100%;
  flex-flow: row wrap;
  margin: 10px 0 0 0;
}

.positionData-container-1 {
  width: 100%;
  flex-flow: row wrap;
  margin: 20px 0 0 0;
}

.positionData-amount {
  font-size: 12px;
  margin: 0 0 0 5px;
}

.sell-fund-numberField {
  margin-top: 10px;
  width: 100%;
}

.warning-message {
  width: 100%;
  background: rgb(251, 241, 215);
  display: block;
  padding: 10px;
  color: rgb(193, 146, 18);
  border-radius: 5px;
  margin-top: 5px;
  border: 1px solid rgb(247, 226, 168);
}

.account-width {
  width: 300px;
}

.Cob-SummaryAndNotes h4 {
  align-self: flex-start;
  margin-bottom: 15px !important;
}
.Cob-SummaryAndNotes h4.desc {
  margin-bottom: 5px !important;
}
.Cob-SummaryAndNotes p.desc {
  align-self: flex-start;
  font-weight: 300;
  margin: 0 0 10px 0;
}

.Cob-SummaryAndNotes-fields {
  width: 100%;
  margin-bottom: 50px;
}
.Cob-SummaryAndNotes-fields .mb-20 {
  margin-bottom: 20px !important;
}
.Cob-SummaryAndNotes-fields .mb-0 {
  margin-bottom: -10px !important;
}
.Cob-SummaryAndNotes-fields .w-100 {
  width: 100%;
}
.Cob-SummaryAndNotes-fields .max-300 {
  max-width: 300px;
}
.Cob-SummaryAndNotes-fields .editButton {
  align-self: flex-end;
}
.Cob-SummaryAndNotes-fields > *:not(:last-child) {
  margin-bottom: 10px;
}

.Cob-view12-fields {
  width: 100%;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-view12-fields h4 {
  margin-bottom: 20px !important;
}
.Cob-view12-fields > *:not(:last-child) {
  margin-bottom: 10px;
}

.Cob-view12-column.fieldType {
  font-weight: 700;
}

.Cob-view12-ColumnField {
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
}
.Cob-view12-ColumnField .value {
  color: #4cb7d5;
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-end;
}
.Cob-view12-ColumnField .amount {
  padding-left: 4px;
}

.Cob-view13-fields {
  width: 100%;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-view13-fields > *:not(:last-child) {
  margin-bottom: 10px;
}

.Cob-view13-ColumnField {
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
}
.Cob-view13-ColumnField .value {
  color: #4cb7d5;
  font-weight: 600;
}

.Cob-view13-modal-list {
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-view13-modal-list li {
  display: list-item;
  line-height: 1.5;
}

.Cob-view14-fields {
  width: 100%;
}
.Cob-view14-fields > *:not(:last-child) {
  margin-bottom: 10px;
}

.Cob-view14-description {
  margin-bottom: 20px;
}
.Cob-view14-description p {
  margin: 0;
  margin-bottom: 10px;
}
.Cob-view14-description p:first-child {
  margin-top: 0;
}
.Cob-view14-description p:last-child {
  margin-bottom: 0;
}

.Cob-view14-DocsList {
  width: 100%;
  max-width: 720px;
  margin-bottom: 10px;
}
.Cob-view14-DocsList.reverse {
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.Cob-view14-DocsList-info {
  width: 100%;
  padding: 10px;
  color: #3f4950;
  font-size: 12px;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.Cob-view14-DocsList-info > div {
  display: block;
}
.Cob-view14-DocsList-info strong {
  margin-right: 5px;
}
.Cob-view14.size-exceeded .Cob-view14-DocsList-info .max-size span {
  color: #df4c43;
}
.Cob-view14-DocsList-info.start {
  padding: 7px 2px;
  font-size: 11px;
}
@media screen and (max-width: 640px) {
  .Cob-view14-DocsList-info {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
  }
  .Cob-view14-DocsList-info > div {
    margin: 5px 0;
  }
  .Cob-view14-DocsList-info > div:first-child {
    margin-top: 0;
  }
  .Cob-view14-DocsList-info > div:last-child {
    margin-bottom: 0;
  }
}

.Cob-view14-DocsList-empty {
  width: 100%;
  height: 41px;
  padding: 5px 10px;
  color: #91a0ad;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}

.Cob-view14-DocsList-items {
  width: 100%;
  border: 1px solid #d6dae2;
  border-radius: 5px;
  overflow: hidden;
}

.Cob-view14-DocsList-Item {
  width: 100%;
  padding: 5px 10px;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-transition: background 100ms 0ms ease-in-out;
  -moz-transition: background 100ms 0ms ease-in-out;
  -ms-transition: background 100ms 0ms ease-in-out;
  transition: background 100ms 0ms ease-in-out;
}
.Cob-view14-DocsList-Item .left {
  width: 100%;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-view14-DocsList-Item .name {
  display: block;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.Cob-view14-DocsList-Item .size {
  margin-top: 5px;
  color: #91a0ad;
  font-size: 12px;
  border-radius: 2px;
  white-space: nowrap;
}
.Cob-view14-DocsList-Item .remove-button {
  margin-left: auto;
  color: #cbd2d9;
  cursor: pointer;
  -webkit-transition: color 100ms 0ms ease-in-out;
  -moz-transition: color 100ms 0ms ease-in-out;
  -ms-transition: color 100ms 0ms ease-in-out;
  transition: color 100ms 0ms ease-in-out;
}
.Cob-view14-DocsList-Item .remove-button:hover {
  color: #df4c43;
}
.Cob-view14-DocsList-Item:nth-child(2n-1) {
  background: #f4f5f7;
}

.Cob {
  width: 100%;
  max-width: 960px;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-transition: all 400ms 0ms ease-in-out;
  -moz-transition: all 400ms 0ms ease-in-out;
  -ms-transition: all 400ms 0ms ease-in-out;
  transition: all 400ms 0ms ease-in-out;
}
.Cob h2 {
  margin-bottom: 40px;
}
.Cob .Checkbox {
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
}
.Cob .ActivityIndicator svg circle {
  stroke: #ffffff;
}
.Cob.hide {
  opacity: 0;
  pointer-events: none;
}
.Cob.animate-out {
  opacity: 0;
  pointer-events: none;
}

.Cob-view {
  width: 100%;
  margin: 20px 0;
}

.Cob-fields-collection {
  margin-bottom: 20px !important;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.Cob-fields-collection ~ .h-line {
  margin-top: 20px;
}
.Cob-fields-collection ~ .h-line.spacing {
  margin-top: 10px;
}
.Cob-fields-collection + .Cob-fields-collection {
  margin-top: -20px;
}
.Cob-fields-collection > * {
  width: 50% !important;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-fields-collection > * > .Checkbox {
  margin: 5px 0;
}
.Cob-OptionsList + .Cob-fields-collection {
  margin-top: -10px;
}
@media screen and (min-width: 641px) {
  .Cob-fields-collection {
    width: calc(100% + 20px) !important;
    margin: 0 -10px;
  }
  .Cob-fields-collection > * {
    max-width: none;
    padding: 10px;
  }
  .Cob-fields-collection.per-row-3 > * {
    width: 33.3333% !important;
  }
}

.Cob-subtitle {
  margin-top: -20px;
  margin-bottom: 40px;
  color: #91a0ad;
  font-size: 18px;
}

.Cob-description {
  width: 100%;
  max-width: 480px;
  margin-bottom: 10px;
  color: #003d50;
  font-size: 14px;
  font-weight: 600;
}
.Cob-description ~ .Select, .Cob-description ~ .TextField {
  margin-top: 10px;
}
.Cob-description:first-child {
  margin-top: 0;
}
.Cob-description:last-child {
  margin-bottom: 0;
}
.Cob-description.center {
  text-align: center;
}
.Cob-description.right {
  text-align: right;
}

.Cob-miniNote {
  margin-top: 0;
  line-height: 1.5;
  color: #91a0ad;
  font-size: 12px;
}

.Cob-text {
  font-size: 14px;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-text p:first-child {
  margin-top: 0;
}
.Cob-text p:last-child {
  margin-bottom: 0;
}

.Cob-disclaimer {
  width: 100%;
  padding: 20px;
  padding-left: 45px;
  background: #f4f5f7;
  color: #748797;
  font-size: 14px;
  border-radius: 5px;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Cob-disclaimer:before {
  content: "error_outline";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 18px;
  line-height: 18px;
  color: #4cb7d5;
  font-family: "Material Icons";
  font-size: 18px;
}
.Cob-disclaimer .Checkbox-label {
  color: #686f77;
  font-weight: 700;
}
.Cob-disclaimer p:first-child {
  margin-top: 0;
}
.Cob-disclaimer p:last-child {
  margin-bottom: 0;
}

.Cob-navigation-buttons {
  width: 100%;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.Cob-navigation-buttons .Button {
  margin: 30px 0;
}
.Cob-navigation-buttons .Button:first-child:last-child {
  margin: 30px auto;
}

.Cob-table-textfield-spacing > * {
  padding: 0 5px;
}
.Cob-table-textfield-spacing:not(.vertical) > *:first-child {
  padding-left: 0;
}
.Cob-table-textfield-spacing:not(.vertical) > *:last-child {
  padding-right: 0;
}
.Cob-table-textfield-spacing.vertical > *:first-child {
  padding-top: 0;
}
.Cob-table-textfield-spacing.vertical > *:last-child {
  padding-bottom: 0;
}

.Cob-table-total-value {
  width: 100%;
  height: auto;
  background: 0;
  color: #4cb7d5;
  font-size: 12px;
  text-align: center;
}
.Table-row-value.h-left .Cob-table-total-value {
  text-align: left;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.Table-row-value.h-right .Cob-table-total-value {
  text-align: right;
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
  padding-right: 10%;
}

.Cob-TableSummary {
  width: 100%;
  margin-top: 10px;
}

.Cob-TableSummary-container {
  width: 100%;
  padding: 5px;
  background: #fafafb;
  border-radius: 10px;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
}

.Cob-Table .Table-row .Table-row-value {
  box-shadow: 0 1px rgba(0, 0, 0, 0.05) inset;
}
.Cob-Table .Table-column-label {
  font-size: 11px;
}
.Cob-Table .Table-row-value {
  height: 32px;
  font-size: 12px;
}
.Cob-Table .Table-row-value.label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  vertical-align: middle;
}
.Cob-Table .Table-row-value.risk-class {
  font-weight: 700;
  vertical-align: middle;
}
.Cob-Table .Table-row-value.financial-instruments, .Cob-Table .Table-row-value.investment, .Cob-Table .Table-row-value.education, .Cob-Table .Table-row-value.broker-risk, .Cob-Table .Table-row-value.risk-info {
  vertical-align: middle;
}
.Cob-Table .Table-row-value.bg-success {
  background: #2ed1a0;
  color: #ffffff;
}
.Cob-Table .Table-row-value.bg-warning {
  background: #eec24b;
  color: #ffffff;
}
.Cob-Table .Table-row-value.bg-danger {
  background: #df4c43;
  color: #ffffff;
}

.cob-display-none {
  display: none;
}

.Home {
  width: 100%;
  max-width: 480px;
  color: #ffffff;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-transition: all 400ms 0ms ease-in-out;
  -moz-transition: all 400ms 0ms ease-in-out;
  -ms-transition: all 400ms 0ms ease-in-out;
  transition: all 400ms 0ms ease-in-out;
}
.Home h1 {
  color: #ffffff;
}
.Home.hide {
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translate3d(0, 1%, 0) scale(0.99);
  -moz-transform: translate3d(0, 1%, 0) scale(0.99);
  -ms-transform: translate3d(0, 1%, 0) scale(0.99);
  transform: translate3d(0, 1%, 0) scale(0.99);
}
.Home.animate-out {
  opacity: 0;
  pointer-events: none;
}

.Home-ssn {
  margin-bottom: 20px;
}

.PartnerError {
  width: 100%;
  margin: 50px 0;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.PartnerError .icon-circle {
  width: 100px;
  height: 100px;
  color: #df4c43;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.PartnerError h2 {
  color: #003d50;
}
.PartnerError .Button {
  margin-top: 10px;
}
.PartnerError .ContentBox > *:last-child {
  margin-bottom: 0;
}

.PartnerNotFound {
  width: 100%;
  margin: 50px 0;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.PartnerNotFound .icon-circle {
  width: 100px;
  height: 100px;
  color: #df4c43;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.PartnerNotFound h2 {
  color: #003d50;
}
.PartnerNotFound .Button {
  margin-top: 10px;
}
.PartnerNotFound .ContentBox > *:last-child {
  margin-bottom: 0;
}

html, body {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  line-height: 1;
  background: #ffffff;
  color: #686f77;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  cursor: default;
  overflow-x: hidden;
  overflow-y: visible;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

div, nav, section, header, footer, form, button, ul, li {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

p {
  line-height: 1.5;
}
p ~ p {
  margin-top: 0;
}

a {
  color: #4cb7d5;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 100ms 0ms ease-in-out;
  -moz-transition: all 100ms 0ms ease-in-out;
  -ms-transition: all 100ms 0ms ease-in-out;
  transition: all 100ms 0ms ease-in-out;
}
a:hover {
  -webkit-filter: brightness(110%);
  -moz-filter: brightness(110%);
  -ms-filter: brightness(110%);
  filter: brightness(110%);
}

img {
  max-width: 100%;
  max-height: 100%;
}

h1 {
  margin: 10px 0;
  color: #003d50;
  font-size: 42px;
  font-weight: 300;
}

h2 {
  margin: 10px 0;
  color: #003d50;
  font-size: 24px;
  font-weight: 400;
}

h3 {
  margin: 10px 0;
  color: #3f4950;
  font-size: 18px;
  font-weight: 600;
}

h4 {
  font-size: 16px;
}

h1.center, h2.center, h3.center, h4.center, h5.center, h6.center {
  margin-left: auto;
  margin-right: auto;
}
h1.success, h2.success, h3.success, h4.success, h5.success, h6.success {
  color: #2ed1a0;
}
h1.warning, h2.warning, h3.warning, h4.warning, h5.warning, h6.warning {
  color: #eec24b;
}
h1.danger, h2.danger, h3.danger, h4.danger, h5.danger, h6.danger {
  color: #df4c43;
}

.scrollable-x, .scrollable-y {
  -webkit-overflow-scrolling: touch;
}

.scrollable-x {
  overflow-x: scroll;
  overflow-y: hidden;
}

.scrollable-y {
  overflow-x: hidden;
  overflow-y: scroll;
}

.h-line {
  width: 100%;
  height: 2px;
  margin: 10px 0;
  background: #f4f5f7;
}
.h-line ~ .Checkbox {
  margin-top: 10px;
}
.h-line + .Cob-description {
  margin-top: 0;
}
.h-line ~ h1, .h-line ~ h2, .h-line ~ h3, .h-line ~ h4, .h-line ~ h5, .h-line ~ h6 {
  margin-top: 0;
}
.h-line.spacing {
  margin: 30px 0;
}

