@charset "UTF-8";
/**
 * Copyright © 2021 M-iTrust (cto@m-itrust.com). Unauthorized copying of this file, via any medium is strictly prohibited. Proprietary and confidential
 */
/**
 * Copyright © 2021 M-iTrust (cto@m-itrust.com). Unauthorized copying of this file, via any medium is strictly prohibited. Proprietary and confidential
 */
.shadow-sharp {
  box-shadow: 0 0 1px rgba(50, 50, 50, 0.1), 0 0 2px rgba(50, 50, 50, 0.08), 0 0 4px rgba(50, 50, 50, 0.06), 0 0 8px rgba(50, 50, 50, 0.04), 0 0 16px rgba(50, 50, 50, 0.02);
}

.shadow-shorter {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05), 0 2px 2px rgba(0, 0, 0, 0.05), 0 4px 4px rgba(0, 0, 0, 0.05), 0 6px 8px rgba(0, 0, 0, 0.05), 0 8px 16px rgba(0, 0, 0, 0.05);
}

.shadow-longer {
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.03), 0 4px 2px rgba(0, 0, 0, 0.03), 0 8px 4px rgba(0, 0, 0, 0.03), 0 16px 8px rgba(0, 0, 0, 0.03), 0 32px 16px rgba(0, 0, 0, 0.03);
}

.unavailable * {
  filter: grayscale(1);
  opacity: 0.7;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/**
 * Copyright © 2021 M-iTrust (cto@m-itrust.com). Unauthorized copying of this file, via any medium is strictly prohibited. Proprietary and confidential
 */
/*
  Transitions for switching between components
  see https://vuejs.org/v2/guide/transitions.html
*/
.fade-enter, .fade-leave-to {
  opacity: 0;
  transition-delay: 0.3s;
  -webkit-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
}

.fade-leave-to {
  transition-delay: 0s;
}

.fade-enter-active, .fade-leave-active {
  transition: 0.3s opacity ease-out;
  -webkit-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
}

.fade-leave-active {
  transition: 0.1s opacity ease-out;
}

.slide-left-enter-active,
.slide-left-leave-active,
.slide-right-enter-active,
.slide-right-leave-active {
  transition-duration: 0.5s;
  transition-property: height, opacity, transform;
  transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);
  /*overflow: hidden;*/
}

.slide-left-enter,
.slide-right-leave-active {
  opacity: 0;
  transform: translate(2em, 0);
}

.slide-left-leave-active,
.slide-right-enter {
  opacity: 0;
  transform: translate(-2em, 0);
}

.fadeHeight-enter-active,
.fadeHeight-leave-active {
  transition: all 0.2s;
  transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);
  max-height: 200px;
}

.fadeHeight-enter,
.fadeHeight-leave-to {
  opacity: 0;
  max-height: 0;
}

/**
 * Copyright © 2021 M-iTrust (cto@m-itrust.com). Unauthorized copying of this file, via any medium is strictly prohibited. Proprietary and confidential
 */
.form-back-button {
  margin-top: 15px;
  width: auto;
  height: auto;
  background-color: #f6f6fe;
  color: #455980;
  font-size: 14px;
  font-weight: bold;
  border: none;
  border-radius: 100px;
  padding: 5px 10px;
}

/**
 * Copyright © 2021 M-iTrust (cto@m-itrust.com). Unauthorized copying of this file, via any medium is strictly prohibited. Proprietary and confidential
 */
.operation-wrapper {
  transition: all 0.1s ease-out;
}
.operation-wrapper .loader-component {
  text-align: center;
}
.operation-wrapper--modal {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.operation-wrapper--modal .operation {
  width: 90%;
  bottom: auto;
  background: #fff;
  position: fixed;
  z-index: 999;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform-origin: top left;
  transform: translate(-50%, -50%);
}
.operation-wrapper--modal .operation__close-button {
  margin: auto;
  display: block;
  cursor: pointer;
  background: #EFEFEF;
  border-radius: 100px;
  width: 40px;
  height: 40px;
  border: none;
  font-size: 2em;
  line-height: 1em;
}

.operation {
  margin: auto;
  background: transparent;
  padding: 40px 20px;
  height: auto;
  max-width: 480px;
  animation-duration: 600ms;
}
.operation__close-button {
  display: none;
}

@keyframes fade-in-down {
  from {
    opacity: 0;
    transform-origin: top left;
    transform: translate(-50%, -60%);
  }
  50% {
    opacity: 1;
    transform-origin: top left;
    transform: translate(-50%, -50%);
  }
}
.fade-in-down {
  animation-name: fadeInDown;
}

/**
 * Copyright © 2021 M-iTrust (cto@m-itrust.com). Unauthorized copying of this file, via any medium is strictly prohibited. Proprietary and confidential
 */
.vue-notification-group {
  width: 80%;
  max-width: 400px;
  right: 10% !important;
  top: 10px !important;
}

.vue-notification {
  padding: 10px;
  margin: 0 5px 5px;
  font-size: 16px;
  color: #111 !important;
  background: #FFFFFF !important;
  border-start: 0;
  border-radius: 4px;
}
.vue-notification.warn {
  box-shadow: 0 0 5px #ffb648;
  border: 2px solid #f48a06;
}
.vue-notification.error {
  box-shadow: 0 0 5px #f33535;
  border: 2px solid rgba(243, 53, 53, 0.7);
}
.vue-notification.success {
  box-shadow: 0 0 5px var(--theme-color);
  border: 2px solid var(--theme-color);
}

/**
 * Copyright © 2021 M-iTrust (cto@m-itrust.com). Unauthorized copying of this file, via any medium is strictly prohibited. Proprietary and confidential
 */
span.invalid {
  color: red;
  margin-top: 10px;
  display: block;
  font-size: 0.8rem;
}

/**
 * Copyright © 2021 M-iTrust (cto@m-itrust.com). Unauthorized copying of this file, via any medium is strictly prohibited. Proprietary and confidential
 */
/*
  Handle the css for the views
  located in /components/Signup/
*/
.Signup {
  position: relative;
}
.Signup__Logo {
  width: 45px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.Signup__Title {
  color: #34c6f3;
  text-align: center;
}
.Signup__ExplanationTitle {
  color: #34c6f3;
  text-align: left;
  margin-top: 50px;
}
.Signup__ExplanationText {
  color: #888;
  text-align: left;
}
.Signup__Label {
  color: #34c6f3;
  text-align: left;
  font-size: 12px;
  display: block;
  margin-bottom: 5px;
}
.Signup__Input.form-control {
  border: 0;
  background: #eee;
  border-radius: 0;
  height: 50px;
  line-height: 50px;
}
.Signup__Input.form-control:focus {
  background: #eee;
}
.Signup__Input.form-control::-moz-placeholder {
  color: #ccc;
}
.Signup__Input.form-control::placeholder {
  color: #ccc;
}
.Signup__Input__Password .input-group-append {
  background: #eee;
  padding: 0 15px;
}
.Signup__Input__Password .input-group-append img {
  position: relative;
  top: 5px;
  width: 20px;
}
.Signup__BottomZone {
  padding: 10px;
  padding-bottom: 20px;
  width: 100%;
}
.Signup__BottomZone__Link {
  display: block;
  margin-top: 20px;
  text-decoration: none;
  color: #34c6f3;
  font-size: 16px;
}
.Signup__BottomZone .btn-big {
  font-size: 1.2rem;
  width: 100%;
}
.Signup__SendAgainLink {
  color: #34c6f3 !important;
  cursor: pointer;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 20px;
}
.Signup span.invalid {
  color: #f33434;
  margin-top: 0.3rem;
  display: inline-block;
}

/**
 * Copyright © 2021 M-iTrust (cto@m-itrust.com). Unauthorized copying of this file, via any medium is strictly prohibited. Proprietary and confidential
 */
.terms__main-title {
  color: #34c6f3;
  text-align: center;
  width: 100%;
}
.terms__title {
  color: #34c6f3;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
.terms__content {
  text-align: justify;
  color: #aaa;
  line-height: 28px;
}
.terms__content h2 {
  text-align: left !important;
  font-size: 1.5rem;
  font-weight: bold;
  color: #555;
  margin: 40px auto;
}
.terms__highlighted {
  background: #ddf7ff;
  padding: 15px 20px;
  width: 100%;
}
.terms__highlighted--light {
  background: #F9F9F9;
  background: linear-gradient(#fcfcfc, #FFFFFF);
  padding: 0 20px;
  width: 100%;
  border-top-left-radius: 1000px 50px;
  border-top-right-radius: 1000px 50px;
  margin-top: 50px;
}

.mi-bullet-list {
  margin: 10px auto 50px;
  font-size: 18px;
  line-height: 25px;
  max-width: 400px;
}
.mi-bullet-list__item {
  margin-bottom: 20px;
  text-align: left;
}
.mi-bullet-list__item--blue {
  margin-bottom: 20px;
  text-align: left;
  color: #34c6f3;
}
.mi-bullet-list__icon {
  max-width: 30px;
  margin-right: 20px;
  display: flex;
  flex-grow: 0 !important;
}.material-design-icon {
  display: inline-flex;
  align-self: center;
  position: relative;
  height: 1em;
  width: 1em;
}
.material-design-icon > .material-design-icon__svg {
  height: 1em;
  width: 1em;
  fill: currentColor;
  position: absolute;
  bottom: -0.125em;
}
.MiButton {
  width: 100%;
  display: inline-block;
  font-weight: 400;
  color: #FFFFFF;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1.1rem;
  height: 50px;
  line-height: 1.5;
  border-radius: 5rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.MiButton--default {
  background-color: var(--theme-color);
}
.MiButton--default:hover {
  cursor: pointer;
  background-color: #31b4de;
}
.MiButton--default:not(:disabled):active {
  background-color: #31b4de;
  border-color: transparent;
}
.MiButton--default:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
  outline: 0;
}
.MiButton--default:disabled {
  background-color: #a3e2fa;
  text-shadow: 0 0 1px #bbb;
  cursor: initial;
}
.MiButton--danger {
  background-color: hsl(353, 67%, 57%);
}
.MiButton--danger:hover {
  cursor: pointer;
  background-color: hsl(353, 67%, 60%);
}
.MiButton--danger:not(:disabled):active {
  background-color: hsl(353, 67%, 60%);
  border-color: transparent;
}
.MiButton--danger:focus {
  box-shadow: 0 0 0 0.2rem 0 0 0 0.2rem rgb(217, 64, 64);
  outline: 0;
}
.MiButton--danger:disabled {
  background-color: hsl(353, 67%, 67%);
  text-shadow: 0 0 1px #bbb;
}
.MiButton .spinner {
  display: block;
  float: left;
  -webkit-animation-name: rotate;
  -webkit-animation-duration: 0.7s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-name: rotate;
  animation-duration: 0.7s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes rotate {
from {
    transform: rotate(0deg);
}
to {
    transform: rotate(360deg);
}
}
@keyframes slightSlideDown {
from {
    opacity: 0;
    transform: translate(0, -20px);
}
to {
    opacity: 1;
    transform: translate(0, 0);
}
}.MiDpCircleWrapper {
  z-index: 99;
}
.MiDpCircle {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 100% !important;
  text-align: center;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.1);
  background: #FFF;
  word-break: break-word;
  white-space: normal;
  font-size: 13px;
  overflow: hidden;
  color: #666;
  z-index: 99;
}
.MiDpCircle:hover {
  cursor: pointer;
}
.MiDpCircle img {
  display: block;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  vertical-align: middle;
  border-style: none;
}
.MiDpCircle span {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}.MiHeader[data-v-5d7d72bb] {
  height: 70px;
  line-height: 70px;
  background: #ffffff;
  box-shadow: 0px 1px 3px #ccc;
  margin-bottom: 30px;
  position: relative;
}
.MiHeader__Title[data-v-5d7d72bb] {
  margin: 0px;
  line-height: 70px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #34c5f3;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.MiHeader__GoBack[data-v-5d7d72bb] {
  position: absolute;
  top: 0px;
  left: 20px;
  color: #aaa;
}
.MiHeader__GoBack .fa[data-v-5d7d72bb] {
  color: #666;
  font-size: 22px;
}.MiInfoBox[data-v-a7a56dec] {
  padding: 15px 20px;
  background: #ddf7ff;
  border-radius: 5px;
  color: #34c5f3;
  text-align: left;
  font-size: 15px;
  line-height: 25px;
}.MiInput.form-group {
  margin-bottom: 0;
  margin-top: 1rem;
}
.MiInput__Label {
  color: #34c6f3;
  text-align: left;
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}
.MiInput__Label:first-letter {
  text-transform: uppercase;
}
.MiInput__Input.form-control {
  border: 0;
  background: #F0F0F0;
  border-radius: 3px;
  height: 50px;
  line-height: 50px;
  font-size: 14px;
}
.MiInput__Input.form-control:focus {
  background: #eff5fc;
}
.MiInput__Input.form-control::-moz-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #aaa;
  opacity: 1; /* Firefox */
}
.MiInput__Input.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #aaa;
  opacity: 1; /* Firefox */
}
.MiInput__Input.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #aaa;
}
.MiInput__Input.form-control::-ms-input-placeholder { /* Microsoft Edge */
  color: #aaa;
}.MiInputPassword.form-group[data-v-fe6e5801] {
  margin-bottom: 0;
  margin-top: 1rem;
  position: relative;
}
.MiInputPassword__Label[data-v-fe6e5801] {
  color: #34c6f3;
  text-align: left;
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}
.MiInputPassword__Label[data-v-fe6e5801]:first-letter {
  text-transform: uppercase;
}
.MiInputPassword__Input.form-control[data-v-fe6e5801] {
  border: 0;
  background: #F0F0F0;
  border-radius: 3px;
  height: 50px;
  line-height: 50px;
  font-size: 14px;
  padding-right: 50px;
}
.MiInputPassword__Input.form-control[data-v-fe6e5801]:focus {
  background: #eff5fc;
}
.MiInputPassword__Input.form-control[data-v-fe6e5801]::-moz-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #aaa;
  opacity: 1; /* Firefox */
}
.MiInputPassword__Input.form-control[data-v-fe6e5801]::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #aaa;
  opacity: 1; /* Firefox */
}
.MiInputPassword__Input.form-control[data-v-fe6e5801]:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #aaa;
}
.MiInputPassword__Input.form-control[data-v-fe6e5801]::-ms-input-placeholder { /* Microsoft Edge */
  color: #aaa;
}
.MiInputPassword .form-password-show-button[data-v-fe6e5801] {
  position: absolute;
  right: 0;
  top: 0;
  border: 0;
  height: 50px;
  width: 50px;
  padding: 12.5px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.MiInputPassword .eye-button-container[data-v-fe6e5801] {
  cursor: pointer;
}
.MiInputPassword .eye-button-container.disabled[data-v-fe6e5801] {
  pointer-events: none;
}
.MiInputPassword .eye-button-container img[data-v-fe6e5801] {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  pointer-events: none;
}.MiLinkBox[data-v-57f78430] {
  cursor: pointer;
  display: block;
  border-radius: 3px;
  text-decoration: none;
  height: 80px;
  background: #FFFFFF;
  margin-bottom: 10px;
  padding: 20px;
  font-weight: 600;
  font-size: 16px;
  color: var(--theme-color);
  line-height: 40px;
}
.MiLinkBox img[data-v-57f78430] {
  margin-right: 20px;
}
.MiLinkBox .fa-chevron-right[data-v-57f78430] {
  float: right;
  position: relative;
  top: 12px;
  color: #c6c6c6;
}
.MiLinkBox[data-v-57f78430]:hover {
  background: #eee;
}.MiOTP {
  max-width: 340px;
  margin: 20px auto;
}
.MiOTP .otp-input {
  transition: all 0.2s ease;
  color: #545454;
  font-size: 35px;
  background-color: #f3f3fe;
  width: 45px;
  height: 65px;
  text-align: center;
  border-radius: 8px;
  outline: none;
  border-width: 0px;
  border-style: initial;
  border-color: initial;
  -o-border-image: initial;
  border-image: initial;
  padding: 5px;
}
.MiOTP .otp-input:last-child {
  margin-right: 0px;
}
.MiOTP .otp-input:focus {
  background-color: rgb(235, 240, 255);
}
.MiOTP .otp-input.error {
  border: 1px solid red !important;
}
.MiOTP input[type=number],
.MiOTP input[type=number]::-webkit-outer-spin-button,
.MiOTP input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
}
.MiOTP > div {
  display: flex;
  justify-content: space-between;
}.thumbnail-preview-container[data-v-70b74cc2] {
  z-index: 0;
}
.pdf-thumbnail-container[data-v-70b74cc2],
.img-thumbnail-container[data-v-70b74cc2] {
  position: relative;
  line-height: 0;
}
.pdf-thumbnail-container .preview-trash-icon[data-v-70b74cc2],
.pdf-thumbnail-container .preview-fullscreen-icon[data-v-70b74cc2],
.img-thumbnail-container .preview-trash-icon[data-v-70b74cc2],
.img-thumbnail-container .preview-fullscreen-icon[data-v-70b74cc2] {
  position: absolute;
  cursor: pointer;
  right: 0;
  width: 25px;
}
.pdf-thumbnail-container .preview-trash-icon[data-v-70b74cc2],
.img-thumbnail-container .preview-trash-icon[data-v-70b74cc2] {
  top: 0;
}
.pdf-thumbnail-container .preview-fullscreen-icon[data-v-70b74cc2],
.img-thumbnail-container .preview-fullscreen-icon[data-v-70b74cc2] {
  bottom: 0;
}
.img-thumbnail-container[data-v-70b74cc2] {
  display: inline-block;
  max-height: 95px;
  max-width: 200px;
  overflow: hidden;
}
.img-thumbnail-container img[data-v-70b74cc2] {
  border-radius: 3px;
  max-width: 150%;
}
.pdf-thumbnail[data-v-70b74cc2] {
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.preview-container[data-v-70b74cc2] {
  position: relative;
}
.preview-container .preview-close-icon[data-v-70b74cc2] {
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(45deg);
  cursor: pointer;
  border-radius: 1em;
  width: 1em;
}
.preview-container .text-content[data-v-70b74cc2] {
  padding-top: 1em;
  word-break: break-word;
}
.json-thumbnail-container .preview-trash-icon[data-v-70b74cc2],
.json-thumbnail-container .preview-fullscreen-icon[data-v-70b74cc2] {
  position: absolute;
  cursor: pointer;
  right: 0;
  width: 25px;
}
.json-thumbnail-container .preview-trash-icon[data-v-70b74cc2] {
  top: 0;
}
.json-thumbnail-container .preview-fullscreen-icon[data-v-70b74cc2] {
  bottom: 0;
}
.tool-bar[data-v-70b74cc2] {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(247, 247, 247, 0.7);
  width: 40px;
}
.picture-preview[data-v-70b74cc2] {
  cursor: pointer;
}.data-header[data-v-2ac02c6b] {
  display: flex;
  margin-bottom: 0.5rem;
}
.data-header img[data-v-2ac02c6b] {
  width: 30px;
}
.file-buttons[data-v-2ac02c6b] {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.button-icon[data-v-2ac02c6b] {
  border: 0;
  padding: 0;
  display: flex;
  align-items: center;
  background: transparent;
  gap: 3px;
  color: var(--theme-color);
  font-weight: 600;
}
.button-icon img[data-v-2ac02c6b] {
  width: 25px;
}
.button-icon[data-v-2ac02c6b]:hover {
  text-decoration: underline;
}.container-object[data-v-10749a9a] {
  width: 100%;
  display: flex;
  flex-direction: column;
}.modal-header-container[data-v-9c4b0682] {
  display: flex;
  align-items: center;
  min-height: 3em;
  justify-content: center;
  color: var(--theme-color);
  font-weight: 600;
}
.close-button[data-v-9c4b0682] {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  text-decoration: none;
  font-weight: 300;
  cursor: pointer;
  opacity: 0.3;
}
.close-button[data-v-9c4b0682]:hover {
  opacity: 0.6;
}
.button-icon[data-v-9c4b0682] {
  border: 0;
  padding: 0;
  display: flex;
  align-items: center;
  background: transparent;
  gap: 3px;
  color: var(--theme-color);
  font-weight: 600;
  margin-top: 0.5rem;
}
.button-icon img[data-v-9c4b0682] {
  width: 25px;
}
.button-icon[data-v-9c4b0682]:hover {
  text-decoration: underline;
}
[data-v-9c4b0682] * {
  --bs-modal-header-border-color: black;
}
[data-v-9c4b0682] * .modal-dialog {
  padding: 0;
  background: none;
}
[data-v-9c4b0682] * .modal-title {
  color: var(--theme-color);
  font-weight: 600;
  text-align: center;
  width: 100%;
}
[data-v-9c4b0682] * .modal-body {
  padding: 0;
}
[data-v-9c4b0682] * .table td {
  border-top-width: 0;
  padding: 0.9rem;
  display: flex !important;
  align-items: center;
  overflow-wrap: break-word;
}
[data-v-9c4b0682] * .table td:nth-child(odd) {
  background-color: color-mix(in srgb, var(--theme-color), transparent 90%);
}
[data-v-9c4b0682] * .table.b-table.b-table-stacked > tbody > tr {
  border-color: black;
}
[data-v-9c4b0682] * .table.b-table.b-table-stacked > tbody > tr td {
  text-align: left;
  border-bottom: 0;
}
[data-v-9c4b0682] * .table.b-table.b-table-stacked > tbody > tr > :first-child {
  border-top-width: 1px;
  padding-top: 0.7rem;
}
[data-v-9c4b0682] * .table.b-table.b-table-stacked > tbody > tr:first-child td {
  border-top-width: 0;
}
[data-v-9c4b0682] * .table.b-table.b-table-stacked > tbody > tr:last-child {
  padding-bottom: 0.7rem;
}
[data-v-9c4b0682] * .table.b-table.b-table-stacked > tbody > tr > [data-label]::before {
  text-align: left;
  font-weight: 600;
  width: 50%;
}
[data-v-9c4b0682] * .table.b-table.b-table-stacked > tbody > tr > [data-label] > div {
  width: 50%;
}.claims-list[data-v-6950d330] {
  position: relative;
  padding: 0.8rem;
  border-radius: 6px;
  overflow: hidden;
  text-align: left;
}
.claims-list .claims-list-title[data-v-6950d330] {
  font-weight: 600;
  font-size: 1rem;
}
.claims-list.expand[data-v-6950d330] {
  padding-bottom: 2.5rem;
}
.claims-list.expand .expand-toggle[data-v-6950d330] {
  background: none;
}
.claims-list h4[data-v-6950d330] {
  font-weight: bold;
  font-size: 1rem;
}
.claims-list ul[data-v-6950d330] {
  padding-left: 0.2em !important;
  margin-left: 1em;
}
.claims-list li[data-v-6950d330] {
  list-style-type: disc !important;
}
.claims-list .expand-toggle[data-v-6950d330] {
  background: linear-gradient(0deg, #FFF 7%, rgba(255, 255, 255, 0.75) 50%, rgba(255, 255, 255, 0) 80%);
  text-decoration: underline;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  text-align: right;
  padding: 1rem 0.8rem 0.8rem;
  cursor: pointer;
}
.claims-list .expand-toggle span[data-v-6950d330] {
  background: #FFFFFF;
  padding-left: 14px;
}
.claims-list .claim-item img[data-v-6950d330] {
  margin-left: 5px;
  margin-bottom: 2.5px;
}
.claims-list .unshared-message em[data-v-6950d330] {
  font-size: 0.9em;
}
.claims-list .unshared-message img[data-v-6950d330] {
  margin-right: 0.3em;
}.profile-icon {
  margin: 0 0 10px 0;
}.public_health_insurance {
  display: flex;
  flex-flow: column wrap;
}
.profile {
  position: relative;
  display: flex;
  flex-flow: column wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: baseline;
  width: 100%;
  background: rgb(249, 249, 249);
  border-radius: 10px;
  box-sizing: border-box;
  color: #4a4a4a;
  height: 240px;
  min-height: 210px;
  padding-top: 13px;
  box-shadow: 0 0 0 1px #f9f9f9;
  transition: all 0.18s linear;
}
.profile.expand {
  height: inherit;
  min-height: inherit;
}
.profile.profile-nested {
  padding-bottom: 13px;
  min-height: inherit;
  height: auto;
}
.profile > div {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.profile .striped {
  background-color: color-mix(in srgb, var(--theme-color), transparent 90%);
}
.profile .profile-header {
  height: auto;
}
.profile .profile-content {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  text-align: left;
}
.profile .container-string, .profile .container-file, .profile .container-table {
  display: block;
  padding: 0.9rem;
  width: 100%;
  overflow-wrap: break-word;
}
.profile .container-string .data-label, .profile .container-file .data-label, .profile .container-table .data-label {
  font-weight: bold;
}
.profile .container-string .data-value, .profile .container-file .data-value, .profile .container-table .data-value {
  display: inline-block;
  word-break: break-word;
}
.profile .block:empty {
  margin-bottom: 0;
}
.profile [id$=-profile-invalid-feedback] {
  text-decoration: none;
  margin-bottom: 10px;
}
.profile [id$=-profile-invalid-feedback] h4 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 0;
}
.profile::before {
  content: "";
  position: absolute;
  right: -1px;
  top: -2px;
  width: 40px;
  height: 40px;
  background: var(--theme-color) url("https://cdn.m-itrust.com/v2/icon/profiles/check-simple.svg") no-repeat center center/23px;
  border-radius: 0 10px 0 10px;
  transform: scale(0);
  transform-origin: 100% 0;
  transition: transform 0.18s ease-in-out;
}
.profile.profile-selected {
  box-shadow: 0 0 0 3px var(--theme-color);
}
.profile.profile-selected::before {
  transform: scale(1);
  z-index: 100;
}
.profile .copy-link {
  display: none;
  font-size: 0.7em;
  position: absolute;
  bottom: 0;
  left: 0;
}
.profile:hover .copy-link {
  display: inline;
}
.profile:not(.profile-invalid-link):not(.profile-invalid):not(.profile-selected):not(.profile-nested):hover {
  cursor: pointer;
  box-shadow: 0 0 0 2px #EEE;
}
.profile-name {
  font-size: 16px;
  line-height: 1.6em;
  font-weight: 800;
  text-align: center;
}
.profile-invalid {
  transition: 0s;
}
.profile-invalid .profile-invalid-message {
  color: #EB5757;
  font-weight: 600;
}
.profile-items {
  position: absolute;
  margin-top: 15%;
  transform: translateY(-50%);
  width: calc(100% - 30px);
}
.profile-items li {
  display: block;
  margin-top: 10px;
}
.profile-debug-info {
  color: #999;
  display: block;
  position: relative;
}
.profile-debug-info .order-score {
  position: absolute;
  display: inline-block;
  top: 0;
  right: 0;
  background-color: #000;
  color: #FFF;
  padding: 0 0.5rem;
  opacity: 0.2;
}
.is-debug {
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin: 1rem 0.2rem;
}
.profile .expand-toggle {
  background: linear-gradient(rgba(247, 247, 247, 0), rgb(247, 247, 247), rgb(247, 247, 247));
  text-decoration: underline;
  pointer-events: none;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  border-radius: 0 0 10px 10px;
  text-align: right;
  padding: 1rem 0.8rem 0.8rem;
}
.profile .expand-toggle a {
  pointer-events: auto;
  cursor: pointer;
  background: rgb(247, 247, 247);
  box-shadow: -0.6rem -0.6rem 0.6rem rgb(247, 247, 247);
}.copy-wrapper[data-v-6e2d72a8] {
  display: inline-block;
  position: relative;
  margin: 0 0.4em;
}
.copy-wrapper .copy-button[data-v-6e2d72a8] {
  font-size: 0.7em;
  position: static;
  opacity: 0.4;
}
.copy-wrapper .copy-button[data-v-6e2d72a8]:hover {
  opacity: 1;
}