/*------------------------------------
  Default Styles
------------------------------------*/

p {
    color: rgb(var(--color_rgb_base_grey)) /*!important */;
}

/*------------------------------------
    Text
------------------------------------*/

.text-primary {
    color: rgb(var(--color_rgb_primary)) !important;
}

.text-secondary, .text-muted {
    color: rgb(var(--color_rgb_base_grey)) !important;
}

.text-success {
    color: rgb(var(--color_rgb_base_green)) !important;
}

.text-danger {
    color: rgb(var(--color_rgb_base_red)) !important;
}

.text-warning {
    color: rgb(var(--color_rgb_base_yellow)) !important;
}

/*------------------------------------
    Placeholder
------------------------------------*/

.form-control::-webkit-input-placeholder {
    color: rgb(var(--color_rgb_base_grey)) !important;
}

.form-control::-moz-placeholder {
    color: rgb(var(--color_rgb_base_grey)) !important;
}

.form-control:-ms-input-placeholder {
    color: rgb(var(--color_rgb_base_grey)) !important;
}

.form-control::-ms-input-placeholder {
    color: rgb(var(--color_rgb_base_grey)) !important;
}

.form-control::placeholder {
    color: rgb(var(--color_rgb_base_grey)) !important;
}

/*------------------------------------
    Success State
------------------------------------*/

.border-success {
    border-color: rgb(var(--color_rgb_base_green)) !important;
}

.u-has-success .form-label + .form-control,
.u-has-success .custom-select,
.u-has-success .input-group,
.u-has-success .form-control:first-child:last-child {
  box-shadow: 0 0 10px rgba(var(--color_rgb_base_green), 0.1);
}

.u-has-success .input-group-text {
    color: rgb(var(--color_rgb_base_green)) !important;
}

.u-has-success .input-group-text,
.u-has-success .form-control {
    border-color: rgba(var(--color_rgb_base_green), 0.5);
}

.u-has-success:focus,
.u-has-success *:focus {
    border: 2px solid rgb(var(--color_rgb_base_green)) !important;
}

.valid-feedback {
    color: rgb(var(--color_rgb_base_green)) !important;
}

.was-validated .form-control:valid, .form-control.is-valid {
    border-color: rgb(var(--color_rgb_base_green)) !important;
}


/*------------------------------------
    Error States
------------------------------------*/

.border-danger {
    border-color: rgb(var(--color_rgb_base_red)) !important;
}

.u-has-error .form-label + .form-control,
.u-has-error .custom-select,
.u-has-error .input-group,
.u-has-error .form-control:first-child:last-child {
    box-shadow: 0 0 10px rgba(var(--color_rgb_base_red), 0.1) !important;
}

.u-has-error .input-group-text {
    color: rgb(var(--color_rgb_base_red)) !important;
}


.u-has-error .input-group-text,
.u-has-error .form-control {
    border-color: rgba(var(--color_rgb_base_red), 0.5) !important;
}

.u-has-error:focus, .u-has-error *:focus {
    border: 2px solid rgb(var(--color_rgb_base_red)) !important;
}

.invalid-feedback {
    color: rgb(var(--color_rgb_base_red)) !important;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
    border-color: rgb(var(--color_rgb_base_red)) !important;
}

.alert-danger {
    background-color: #FDEFEA;
    border: 1px solid rgb(var(--color_rgb_base_red));
    color: rgb(var(--color_rgb_base_red));
    text-align: left;
    font-size: 0.875rem;
}

/*------------------------------------
    Link
------------------------------------*/

/*  About u:has(>a) and focus-visible:
    Accessibility guidelines require underlined links upon hover. As we use the <a> tag within our menu,
    it's important to specify which links should display this underlining effect. Therefore, we include
    the <u> tag around the <a> to designate such links, ensuring that not all links in the project are affected.
*/
a, u:has(>a) {
    color: rgb(var(--color_rgb_primary)) /*!important */;
}

a:hover, u:has(>a:hover),
.dropdown-item:hover, .dropdown-item:focus {
    color: rgb(var(--color_rgb_primary_hover)) /*!important */;
}

.btn-link {
    color: rgb(var(--color_rgb_primary)) /*!important */;
}

.btn-link:hover {
    color: rgb(var(--color_rgb_primary_hover)) /*!important */;
}

/*------------------------------------
    Header / Navbar
------------------------------------*/

.u-header__navbar-brand-text, .u-header__navbar-brand-text:focus, .u-header__navbar-brand-text:hover {
    color: rgb(var(--color_rgb_primary)) !important;
}

/*------------------------------------
    Header / Nav Item
------------------------------------*/

.u-header__nav-item:hover .u-header__nav-link, .u-header__nav-item:focus .u-header__nav-link {
    color: rgb(var(--color_rgb_primary)) !important;
}

/*------------------------------------
    Header / Nav Link
------------------------------------*/

.u-header .active > .u-header__nav-link {
    color: rgb(var(--color_rgb_primary)) !important;
}

/*------------------------------------
    Icon / Arrow
------------------------------------*/

.multisigner-identity-info-arrow {
    color: rgb(var(--color_rgb_primary)) !important;
}


/*------------------------------------
    Button / Primary
------------------------------------*/

.btn-primary {
    background-color: rgb(var(--color_rgb_primary)) !important;
    border-color: rgb(var(--color_rgb_primary)) !important;
}

.btn-primary:hover {
    background-color: rgb(var(--color_rgb_primary_hover)) !important;
    border-color: rgb(var(--color_rgb_primary_hover)) !important;
}

.btn-primary:focus, .btn-primary.focus {
    background-color: rgb(var(--color_rgb_primary)) !important;
    border-color: rgb(var(--color_rgb_primary)) !important;
    box-shadow: 0 0 0 0.2rem rgb(var(--color_rgb_primary_outline)) !important;
}

/* focus + hover */
.btn-primary:focus:hover, .btn-primary.focus:hover {
    background-color: rgb(var(--color_rgb_primary_hover)) !important;
    border-color: rgb(var(--color_rgb_primary_hover)) !important;
}

.btn-primary.disabled, .btn-primary:disabled {
    background-color: rgb(var(--color_rgb_primary)) !important;
    border-color: rgb(var(--color_rgb_primary)) !important;
    box-shadow: none !important;
    transition: none !important;
    -webkit-transform: none !important;
    transform: none !important;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    background-color: rgb(var(--color_rgb_primary_hover)) !important;
    border-color: rgb(var(--color_rgb_primary_hover)) !important;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgb(var(--color_rgb_primary_outline)) !important;
}

.btn-primary[href]:hover, .btn-primary[href]:focus, .btn-primary[href]:active, .btn-primary[type]:hover, .btn-primary[type]:focus, .btn-primary[type]:active {
    box-shadow: 0 4px 11px rgba(var(--color_rgb_primary), 0.35);
}

/*------------------------------------
    Button / Primary Light
------------------------------------*/

.btn-soft-primary {
    color: rgb(var(--color_rgb_primary)) !important;
    background: rgb(var(--color_rgb_primary_soft)) !important;
    border-color: rgb(var(--color_rgb_primary)) !important;
}

.btn-soft-primary:hover,
.btn-soft-primary[href]:hover, .btn-soft-primary[type]:hover {
    color: #fff !important;
    background: rgb(var(--color_rgb_primary)) !important;
    box-shadow: none !important;
}

.btn-soft-primary:focus, .btn-soft-primary.focus,
.btn-soft-primary[href]:focus, .btn-soft-primary[href]:active, .btn-soft-primary[href].active, .btn-soft-primary[type]:focus, .btn-soft-primary[type]:active, .btn-soft-primary[type].active {
    color: #fff !important;
    background: rgb(var(--color_rgb_primary)) !important;
    box-shadow: 0 0 0 0.2rem rgb(var(--color_rgb_primary_outline)) !important;
}

.btn-soft-primary.disabled, .btn-soft-primary:disabled,
.btn-soft-primary[href].disabled, .btn-soft-primary[href]:disabled, .btn-soft-primary[type].disabled, .btn-soft-primary[type]:disabled {
    color: rgb(var(--color_rgb_primary)) !important;
    background: rgb(var(--color_rgb_primary_soft)) !important;
    box-shadow: none !important;
    transition: none !important;
    -webkit-transform: none !important;
    transform: none !important;
}

/*------------------------------------
    Button / Outline Primary
------------------------------------*/

.btn-outline-primary {
    color: rgb(var(--color_rgb_primary)) !important;
    border-color: rgb(var(--color_rgb_primary)) !important;
}

.btn-outline-primary:hover {
    color: #fff !important;
    background-color: rgb(var(--color_rgb_primary)) !important;
    border-color: rgb(var(--color_rgb_primary)) !important;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
    box-shadow: 0 0 0 0.2rem rgb(var(--color_rgb_primary_outline)) !important;
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: rgb(var(--color_rgb_primary)) !important;
    background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
    color: #fff !important;
    background-color: rgb(var(--color_rgb_primary)) !important;
    border-color: rgb(var(--color_rgb_primary)) !important;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgb(var(--color_rgb_primary_outline)) !important;
}

/*------------------------------------
    Button / Success (Base Green)
------------------------------------*/

.btn-success {
    background-color: rgb(var(--color_rgb_base_green)) !important;
    border-color: rgb(var(--color_rgb_base_green)) !important;
}

.btn-success:hover,
.btn-success[href]:hover, .btn-success[type]:hover {
    background-color: rgb(var(--color_rgb_base_green_hover)) !important;
    border-color: rgb(var(--color_rgb_base_green_hover)) !important;
}

.btn-success:focus, .btn-success.focus,
.btn-success[href]:focus, .btn-success[href]:active, .btn-success[type]:focus, .btn-success[type]:active,
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
    background-color: rgb(var(--color_rgb_base_green)) !important;
    border-color: rgb(var(--color_rgb_base_green)) !important;
    box-shadow: 0 0 0 0.2rem rgb(var(--color_rgb_primary_outline)) !important;
}

/* focus + hover */
.btn-success:focus:hover, .btn-success.focus:hover,
.btn-success[href]:focus:hover, .btn-success[type]:focus:hover,
.btn-success:not(:disabled):not(.disabled):active:focus:hover, .btn-success:not(:disabled):not(.disabled).active:focus:hover,
.show > .btn-success.dropdown-toggle:focus:hover {
    background-color: rgb(var(--color_rgb_base_green_hover)) !important;
    border-color: rgb(var(--color_rgb_base_green_hover)) !important;
}

.btn-success.disabled, .btn-success:disabled {
    background-color: rgb(var(--color_rgb_base_green)) !important;
    border-color: rgb(var(--color_rgb_base_green)) !important;
    box-shadow: none !important;
    transition: none !important;
    -webkit-transform: none !important;
    transform: none !important;
}

.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
    background-color: rgb(var(--color_rgb_base_green_hover)) !important;
    border-color: rgb(var(--color_rgb_base_green_hover)) !important;
}

.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgb(var(--color_rgb_primary_outline)) !important;
}


/*------------------------------------
    Button / Danger (Base Red)
------------------------------------*/

.btn-danger {
    background-color: rgb(var(--color_rgb_base_red)) !important;
    border-color: rgb(var(--color_rgb_base_red)) !important;
}

.btn-danger:hover,
.btn-danger[href]:hover, .btn-danger[type]:hover {
    background-color: rgb(var(--color_rgb_base_red_hover)) !important;
    border-color: rgb(var(--color_rgb_base_red_hover)) !important;
}

.btn-danger:focus, .btn-danger.focus,
.btn-danger[href]:focus, .btn-danger[href]:active, .btn-danger[type]:focus, .btn-danger[type]:active,
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
    background-color: rgb(var(--color_rgb_base_red)) !important;
    border-color: rgb(var(--color_rgb_base_red)) !important;
    box-shadow: 0 0 0 0.2rem rgb(var(--color_rgb_primary_outline)) !important;
}

/* focus + hover */
.btn-danger:focus:hover, .btn-danger.focus:hover,
.btn-danger[href]:focus:hover, .btn-danger[type]:focus:hover,
.btn-danger:not(:disabled):not(.disabled):active:focus:hover, .btn-danger:not(:disabled):not(.disabled).active:focus:hover,
.show > .btn-danger.dropdown-toggle:focus:hover {
    background-color: rgb(var(--color_rgb_base_red_hover)) !important;
    border-color: rgb(var(--color_rgb_base_red_hover)) !important;
}

.btn-danger.disabled, .btn-danger:disabled {
    background-color: rgb(var(--color_rgb_base_red)) !important;
    border-color: rgb(var(--color_rgb_base_red)) !important;
    box-shadow: none !important;
    transition: none !important;
    -webkit-transform: none !important;
    transform: none !important;
}

.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
    background-color: rgb(var(--color_rgb_base_red_hover)) !important;
    border-color: rgb(var(--color_rgb_base_red_hover)) !important;
}

.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgb(var(--color_rgb_primary_outline)) !important;
}

/*------------------------------------
    Button / Neutral (Black/White)
------------------------------------*/

.btn-neutral {
    background-color: rgb(255, 255, 255) !important;
    border-color: rgb(0, 0, 0) !important;
}

.btn-neutral:hover {
    background-color: rgba(0, 0, 0, 0.15) !important;
}

.btn-neutral:focus:hover {
    background-color: rgba(0, 0, 0, 0.2) !important;
}
/*------------------------------------
    Badges
------------------------------------*/

.badge-primary {
    background-color: rgb(var(--color_rgb_primary)) !important;
}

.badge-secondary {
    background-color: rgb(var(--color_rgb_base_grey)) !important;
}

.badge-success {
    background-color: rgb(var(--color_rgb_base_green)) !important;
}

.badge-danger {
    background-color: rgb(var(--color_rgb_base_red)) !important;
}

.badge-warning {
    background-color: rgb(var(--color_rgb_base_yellow)) !important;
}

/* blue */
.badge-primary-blue {
    color: #fff;
    background-color: rgb(var(--color_rgb_base_blue)) !important;
}

a.badge-primary-blue:hover, a.badge-primary-blue:focus {
    color: #fff;
    background-color: #045cff;
}

a.badge-primary-blue:focus, a.badge-primary-blue.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(55, 125, 255, 0.5);
}

/* soft secondary */
.badge-soft-secondary {
    color: rgb(var(--color_rgb_secondary)) !important;
    background: rgba(var(--color_rgb_secondary), 0.25) !important;
}

.badge-soft-secondary[href]:hover, .badge-soft-secondary[href]:focus, .badge-soft-secondary[href]:active, .badge-soft-secondary[href].active, .badge-soft-secondary[type]:hover, .badge-soft-secondary[type]:focus, .badge-soft-secondary[type]:active, .badge-soft-secondary[type].active {
    color: #fff !important;
    background: rgb(var(--color_rgb_secondary)) !important;
    box-shadow: 0 4px 11px rgba(var(--color_rgb_secondary), 0.35) !important;
}

.badge-soft-secondary[href].disabled, .badge-soft-secondary[href]:disabled, .badge-soft-secondary[type].disabled, .badge-soft-secondary[type]:disabled {
    color: rgb(var(--color_rgb_secondary)) !important;
    background-color: rgba(var(--color_rgb_secondary), 0.1) !important;
}

.badge-soft-secondary[href]:not(:disabled):not(.disabled):active, .badge-soft-secondary[href]:not(:disabled):not(.disabled).active,
.show > .badge-soft-secondary[href].dropdown-toggle, .badge-soft-secondary[type]:not(:disabled):not(.disabled):active, .badge-soft-secondary[type]:not(:disabled):not(.disabled).active,
.show > .badge-soft-secondary[type].dropdown-toggle {
    color: #fff !important;
    background-color: rgb(var(--color_rgb_secondary)) !important;
}

.btn.badge-soft-secondary {
  color: rgb(var(--color_rgb_secondary)) !important;
}

/*------------------------------------
    DatePicker
------------------------------------*/

.u-datepicker .flatpickr-months {
    background-color: rgb(var(--color_rgb_primary)) !important;
}

.u-datepicker .flatpickr-day.today {
    background-color: rgb(var(--color_rgb_primary)) !important;
}

.u-datepicker .flatpickr-day.selected {
    color: unset;
    border-color: rgb(var(--color_rgb_primary)) !important;
}

.u-datepicker .flatpickr-day:focus, .u-datepicker .flatpickr-day:hover {
    background-color: rgb(var(--color_rgb_primary_soft)) !important;
    border-color: rgb(var(--color_rgb_primary)) !important;
    color: unset !important;
}

.u-datepicker .flatpickr-day.selected.today {
    color: #fff;
}

.u-datepicker .flatpickr-day.selected:focus.prevMonthDay, .u-datepicker .flatpickr-day.selected:focus.nextMonthDay, .u-datepicker .flatpickr-day.selected:hover.prevMonthDay, .u-datepicker .flatpickr-day.selected:hover.nextMonthDay {
    color: rgb(var(--color_rgb_primary)) !important;
}

.u-datepicker .flatpickr-day.selected.startRange, .u-datepicker .flatpickr-day.selected.endRange {
    background-color: rgb(var(--color_rgb_primary)) !important;
}

/*------------------------------------
    Dashboard table pagination
------------------------------------*/
.page-item.page-link {
    color: rgb(var(--color_rgb_primary)) !important;
}

.page-item.active .page-link {
    color: #fff;
    background-color: rgb(var(--color_rgb_primary));
    border-color: rgb(var(--color_rgb_primary));
}

.page-link:hover {
    color: #fff !important;
    background-color: rgb(var(--color_rgb_primary_hover)) !important;
}


/*------------------------------------
    Background
------------------------------------*/

.bg-primary {
    background-color: rgb(var(--color_rgb_primary)) !important;
}

.bg-primary-blue {
    background-color: rgb(var(--color_rgb_base_blue)) !important;
}

.bg-secondary {
    background-color: rgb(var(--color_rgb_base_grey)) !important;
}

.bg-success {
    background-color: rgb(var(--color_rgb_base_green)) !important;
}

.bg-danger {
    background-color: rgb(var(--color_rgb_base_red)) !important;
}

.bg-warning {
    background-color: rgb(var(--color_rgb_base_yellow)) !important;
}


/*------------------------------------
    Subheadings
------------------------------------*/

.subheading-h2-title {
    font-size: 24px;
    font-weight: 600;
}

.subheading-h3-title {
    font-size: 20px;
    font-weight: 600;
}


/*------------------------------------
    Checkbox
------------------------------------*/

.custom-control-input:checked ~ .custom-control-label::before {
    background-color: rgb(var(--color_rgb_primary)) !important;
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(var(--color_rgb_primary), 0.5) !important;
}

.custom-control-input:hover:checked ~ .custom-control-label::before {
    background-color: rgb(var(--color_rgb_primary_hover)) !important;
}

.custom-control-input:hover:not(:checked):not(:disabled) ~ .custom-control-label::before {
    border-color: rgb(var(--color_rgb_primary)) !important;
}

.custom-control-input:focus:checked ~ .custom-control-label::before {
    background-color: rgb(var(--color_rgb_primary_hover)) !important;
    box-shadow: 0 0 0 0.2rem rgb(var(--color_rgb_primary_outline)) !important;
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
    border-color: rgb(var(--color_rgb_primary)) !important;
    box-shadow: 0 0 0 0.2rem rgb(var(--color_rgb_primary_outline)) !important;
}

.custom-control-input:focus-visible:not(:checked) ~ .custom-control-label::before {
    outline: 2px #000000 solid;
    outline-offset: 2px;
    box-shadow: none !important;
}

button:focus-visible, a:focus-visible, input[type="radio"]:focus-visible, input[type="checkbox"]:focus-visible,
input[type="submit"]:focus-visible, input[type="button"]:focus-visible, .btn:focus-visible {
    outline: 2px #000000 solid !important;
    outline-offset: 2px;
    box-shadow: none !important;
}

@media (hover: none) and (pointer: coarse) {
    [data-toggle="dropdown"]:focus-visible {
      outline: none !important;
    }
}

/*------------------------------------
    Form input
------------------------------------*/

.custom-select:focus,
.form-control:focus {
    box-shadow: none;
    border: 2px solid rgb(var(--color_rgb_base_blue));
}

.form-control:disabled,
.form-control[readonly] {
    color: rgb(var(--color_rgb_base_grey));
}

label.form-check-label:has(input.disabled, input:disabled) {
    color: rgba(var(--color_rgb_base_grey), 0.5);
}

/*------------------------------------
    Bootstrap Modal "not quite fullscreen"
    https://stackoverflow.com/questions/74126293/making-bootstraps-modal-fullscreen-not-quite-fullscreen
------------------------------------*/

.modal-almost-fullscreen {
    width: calc(100% - 40px);
    max-width: none;
    height: calc(100% - 40px);
    margin: 20px;
}

.modal-almost-fullscreen .modal-content {
    height: 100%;
    border: 0;
}

.modal-almost-fullscreen .modal-header,
.modal-almost-fullscreen .modal-content,
.modal-almost-fullscreen .modal-footer {
    border-radius: 0;
}

.modal-almost-fullscreen .modal-body {
    overflow-y: auto;
}
.video-preview--check, .video-preview--check video {
    height: auto;
    max-height: 13.5rem
}

.video-preview--check video {
    -o-object-fit: contain;
    object-fit: contain
}

.u-header__navbar-brand-text {
    font-size: 1.5rem
}

@media (max-width: 575.98px) {
    .u-header__navbar-brand-text {
        font-size: 1.375rem;
        display: none !important;
    }
}

.supported-payment-cards {
    position: absolute;
    right: 0;
    top: 0;
    padding-right: 15px
}

.supported-payment-cards img {
    max-height: 30px
}

@media screen and (max-width: 360px) {
    .supported-payment-cards img {
        max-width: 40px
    }
}

.multisigner-identity-info-arrow {
    cursor: pointer
}

.multisigner-identity-info-arrow.collapsed::before {
    content: '\f061'
}

@media (max-width: 991.98px) {
    .row-md-reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
}

@media (max-width: 767.98px) {
    .notary-my-documents-mb table, tbody, td, th, thead, tr {
        display: table-row
    }

    .notary-my-documents-mb .table th, .table td {
        display: table-cell;
        vertical-align: middle
    }

    .p-session-intro {
        background-color: #f8f9fa
    }
}

@media (max-width: 991.98px) {
    .p-session-intro__md-full {
        max-width: 100%;
        padding-top: 2rem !important
    }

    .p-session-intro__md-full.p-session-intro__test {
        max-width: 100%;
        padding-top: 4rem !important
    }

    .p-session-intro__md-full.p-session-intro__test .session-wide-header--full {
        top: 2.25rem
    }
}

@media (max-width: 575.98px) {
    .p-session-intro__md-full.p-session-intro__test .session-wide-header--full {
        top: 3.5rem
    }
}

@media (max-width: 991.98px) {
    .p-session-intro__md-full.p-session-intro__test .document-preview-full__iframe {
        height: calc(100vh - 20.5rem);
        height: calc(var(--vh, 1vh) * 100 - 20.5rem)
    }
}

@media (max-width: 767.98px) {
    .p-session-intro__md-full.p-session-intro__test .document-preview-full__iframe {
        height: calc(100vh - 19.125rem);
        height: calc(var(--vh, 1vh) * 100 - 19.125rem)
    }
}

@media (max-width: 575.98px) {
    .p-session-intro__md-full.p-session-intro__test .document-preview-full__iframe {
        height: calc(100vh - 17.375rem);
        height: calc(var(--vh, 1vh) * 100 - 17.375rem)
    }
}

@media (max-width: 991.98px) {
    .p-session-intro__md-full.p-session-intro__requested .document-preview-full__iframe {
        height: calc(100vh - 20.5rem);
        height: calc(var(--vh, 1vh) * 100 - 20.5rem)
    }
}

@media (max-width: 767.98px) {
    .p-session-intro__md-full.p-session-intro__requested .document-preview-full__iframe {
        height: calc(100vh - 19.125rem);
        height: calc(var(--vh, 1vh) * 100 - 19.125rem)
    }
}

@media (max-width: 575.98px) {
    .p-session-intro__md-full.p-session-intro__requested .document-preview-full__iframe {
        height: calc(100vh - 17.375rem);
        height: calc(var(--vh, 1vh) * 100 - 17.375rem)
    }
}

@media (max-width: 767.98px) {
    .session-intro-block {
        border: 0;
        background-color: transparent !important
    }

    .on-navigation-item--current {
        font-size: 1.5rem;
        line-height: 1.4
    }

    .p-session-intro .btn {
        font-weight: 700
    }

    .reg-sm {
        font-size: 1rem
    }
}

@media (max-width: 575.98px) {
    .file-attachment-input {
        padding: 0 !important;
        border: 0
    }

    .file-attachment-input p {
        display: none
    }

    .file-attachment-input .btn {
        width: 100%
    }

    .custombox-overlay {
        background-color: #fff !important;
        opacity: 1 !important
    }

    .modal-backdrop {
        background-color: #fff !important;
        opacity: 1 !important
    }

    .modal-content {
        border: 0;
        border-radius: 0
    }

    .modal-content .card {
        border: 0
    }
}

.title-reg {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: .875rem
}

.badge-big {
    font-weight: 700;
    font-size: .875rem;
    padding: .5rem 1.125rem !important
}

.text-underline {
    text-decoration: underline
}

.text-hand-raised-icon::before {
    font-family: "Font Awesome 5 Free";
    /* webpackIgnore: true */
    content: url('/static/onsite/img/video/presence_bad.svg');
    height: 22px;
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
}
@media (max-width: 575.98px) {
    .input-sm {
        max-width: 120px
    }
}

.on-navigation-item {
    font-size: .875rem
}

.u-menu-burger {
    width: 28px
}

.u-menu-burger span {
    width: 28px;
    left: 0;
    background: var(--color_hex_base_grey);
}

.u-doc-toggle {
    margin-right: 0
}

.u-session-panel.is-demo .u-session-videos.open .u-session-videos__inner {
    padding-top: 20px
}

@media screen and (max-width: 1150px) {
    .u-header__session-title-text {
        font-size: 1rem
    }
}

@media screen and (max-width: 991px) {
    .u-session-videos {
        position: relative;
        top: 0;
        right: 0;
        left: 0;
        pointer-events: auto
    }

    .u-session-videos.open {
        margin: 0
    }

    .u-session-panel__video-block {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        overflow: hidden;
        pointer-events: none;
        z-index: 9999;
    }

    .u-session-panel__video-wrap {
        position: absolute;
        top: 0;
        bottom: -10px;
        left: 0;
        width: calc(100% + 10px);
        margin-right: -10px;
        overflow: auto;
        -ms-overflow-style: none;
        scrollbar-width: none
    }

    .u-session-panel__video-wrap::-webkit-scrollbar {
        display: none
    }

    .u-session-panel__video-inner {
        width: calc(100% - 18px);
        height: calc(100% - 10px);
        padding-top: 40px;
        margin-top: calc(100vh - 240px);
        margin-top: calc(var(--vh, 1vh) * 100 - 240px);
        margin-left: calc(100vw - 215px)
    }

    .u-session-panel__video-inner--vertical {
        margin-left: calc(100vw - 130px);
        margin-top: calc(100vh - 270px);
        margin-top: calc(var(--vh, 1vh) * 100 - 270px)
    }
}

@media screen and (max-width: 767px) {
    .u-session-panel__video-inner {
        margin-top: calc(100vh - 190px);
        margin-top: calc(var(--vh, 1vh) * 100 - 190px);
        margin-left: calc(100vw - 170px)
    }

    .u-session-panel__video-inner--vertical {
        margin-left: calc(100vw - 100px);
        margin-top: calc(100vh - 220px);
        margin-top: calc(var(--vh, 1vh) * 100 - 220px)
    }
}

@media screen and (max-width: 575px) {
    .u-session-panel__video-inner {
        margin-top: calc(100vh - 190px);
        margin-top: calc(var(--vh, 1vh) * 100 - 140px);
        margin-left: calc(100vw - 115px)
    }

    .u-session-panel__video-inner--vertical {
        margin-left: calc(100vw - 73px);
        margin-top: calc(100vh - 170px);
        margin-top: calc(var(--vh, 1vh) * 100 - 170px)
    }
}

@media screen and (max-width: 200px) {
    .conference-videos, .conference-videos-html {
        position: fixed;
        top: 0;
        left: 0
    }
}

@media screen and (max-width: 991px) {
    .u-session-videos {
        width: 199px
    }

    .u-session-videos--vertical {
        width: 114px
    }
}

@media screen and (max-width: 767px) {
    .u-session-videos {
        width: 149px
    }

    .u-session-videos--vertical {
        width: 84px
    }
}

@media screen and (max-width: 575px) {
    .u-session-videos {
        width: 99px
    }

    .u-session-videos--vertical {
        width: 56px;
        height: 100px
    }
}

.u-hamburger {
    position: relative;
    top: -.125rem;
    margin-right: .5rem;
    height: 1.875rem;
    width: 2.625rem
}

.u-hamburger__box {
    width: 1.75rem;
    position: relative;
    top: -.625rem;
    height: 2.625rem
}

.u-hamburger__inner {
    top: .75rem
}

.u-hamburger__inner, .u-hamburger__inner::after, .u-hamburger__inner::before {
    width: 1.75rem;
    height: .25rem;
    border-radius: 2px;
    background-color: #bdc5d1
}

.u-hamburger__inner::before {
    top: .5rem
}

.u-hamburger__inner::after {
    top: 1rem
}

.u-hamburger .is-active .u-hamburger__inner, .u-hamburger[aria-expanded=true] .u-hamburger__inner {
    -webkit-transform: translate3d(0, .375rem, 0) rotate(45deg);
    transform: translate3d(0, .375rem, 0) rotate(45deg)
}

.u-hamburger .is-active .u-hamburger__inner:after, .u-hamburger[aria-expanded=true] .u-hamburger__inner:after {
    -webkit-transform: translate3d(0, -1rem, 0) rotate(-90deg);
    transform: translate3d(0, -1rem, 0) rotate(-90deg)
}

.doc-input {
    position: relative
}

.doc-input input {
    padding-left: 2rem
}

@media (max-width: 767.98px) {
    .doc-input input {
        padding-left: .75rem
    }
}

.doc-input__icon {
    position: absolute;
    top: 3rem;
    left: 1rem;
    color: var(--color_hex_primary);
}

@media (max-width: 767.98px) {
    .doc-input__icon {
        display: none
    }
}

.doc-input--disabled input {
    background-color: transparent !important;
    color: #8e98a3
}

.doc-input--disabled .doc-input__icon {
    color: #8e98a3
}

@media (max-width: 767.98px) {
    .resp-input-actions {
        min-width: auto;
        position: absolute;
        top: -15px;
        right: 0;
        margin-top: 0 !important
    }
}

.resp-input-actions .btn {
    display: block;
    width: 50px;
    height: 50px;
    padding: 0;
    text-align: center;
    line-height: 50px;
    margin-left: 10px;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

@media (max-width: 767.98px) {
    .resp-input-actions .btn {
        width: 40px !important;
        height: 40px !important;
        padding: 0 !important;
        font-size: 16px;
        line-height: 30px;
        text-align: center
    }

    .resp-input-actions .btn:empty {
        display: none
    }
}

.login-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1
}

@media (max-width: 991.98px) {
    .login-bg::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background-color: rgba(0, 0, 0, .5)
    }
}

.login-container {
    padding-top: 4.375rem;
    min-height: calc(100vh - 5.5rem);
    min-height: calc(var(--vh, 1vh) * 100 - 5.5rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-height: 667px) {
    .login-container {
        padding-top: 1.875rem;
        padding-bottom: 1rem;
    }
}

.login-container__inner {
    max-width: 528px;
}

.login-container__inner.wide {
  max-width: 666px;
}

.participant-card__title-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media (max-width: 767.98px) {
    .participant-card__title-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .participant-card__title {
        width: calc(100% - 1.25rem)
    }
}

.participant-card__title i {
    position: relative;
    top: -.125rem;
    font-size: .875rem
}

.participant-card__options {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 1.5rem
}

@media (max-width: 767.98px) {
    .participant-card__options {
        padding-top: .625rem;
        height: auto
    }
}

.participant-card__options .multisigner-identity-info-arrow {
    margin-left: 0.5rem
}

.participant-card__options .badge {
    font-weight: 700;
    font-size: .875rem;
    -ms-flex-item-align: end;
    align-self: flex-end;
    padding: .5rem 1.125rem !important
}

.participant-card__actions {
    font-weight: 700;
    font-size: .875rem;
    padding-top: .5rem
}

.participant-card__actions_small {
    font-weight: 400;
    font-size: .75rem;
    padding-top: .5rem
}

.participant-card__details {
    font-size: .875rem;
    padding-top: .5rem
}

.participant-card__details p {
    margin-bottom: .625rem
}

.participant-card__details label {
    font-size: 1rem;
}

.participant-card__attempt .small, .participant-card__details .small {
    font-size: .875rem
}

.participant-card__attempt-icon {
    width: 16px;
    height: 16px;
    position: relative;
    top: 2px
}

.participant-card__attempt-icon img {
    max-width: 24px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.participant-card__logs, .pricing-card {
    margin-bottom: .5rem
}

.participant-card__logs li {
    padding-left: 1.5rem
}

@media (max-width: 767.98px) {
    .participant-card .multisigner-identity-info-arrow {
        position: absolute;
        top: 1.5rem;
        right: 1rem
    }

    .with_collapse {
        position: absolute;
        top: 1rem;
        right: 2.5rem
    }
    
    .no_collapse {
        position: absolute;
        top: 1rem;
        right: .5rem
    }
}

.participant-card__delete {
    color: rgb(var(--color_rgb_primary));
    cursor: pointer;
    height: 18px;
    width: 16px;
    border: none;
    background: none;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.participant-card__delete span {
    display: block;
}

.participant-card__delete:focus-visible {
    outline-offset: 2px;
}

.pricing-card .card-title {
    margin-bottom: .5rem;
    font-size: .875rem;
    color: #1e2022 !important;
    margin-bottom: 0 !important;
    font-weight: 400 !important
}

.pricing-card .card-text, .pricing-card p {
    line-height: 1.4
}

.pricing-card__price {
    font-size: .8125rem
}

.doc-table thead th {
    border-top: none;
    border-bottom: none
}

@media (max-width: 767.98px) {
    .doc-table thead {
        display: none
    }
}

tr .doc-table tbody:first-child td {
    border-top-color: #8e98a3
}

@media (max-width: 767.98px) {
    .doc-table td {
        display: none !important;
        border: 0
    }
}

.doc-table td.doc-table__col {
    word-break: break-word
}

@media (max-width: 767.98px) {
    .doc-table td.doc-table__col {
        display: block !important;
        padding: 0 !important
    }

    .doc-table td.doc-table__col--actions {
        padding: 0 !important
    }

    .doc-table td.doc-table__col--actions .list-group {
        display: none
    }

    .doc-table td.doc-table__col--signer {
        display: none !important;
    }
}

@media (max-width: 991.98px) {
    .doc-table td.doc-table__col--status .badge {
        max-width: 140px
    }
}

@media (max-width: 767.98px) {
    .doc-table td.doc-table__col--status .badge {
        font-size: .875rem;
        padding: .4375rem 1.25rem !important;
        min-width: 8.75rem;
        max-width: none
    }
}

.doc-table td.doc-table__test,
.doc-table td.doc-table__clio,
.doc-table td.doc-table__benchmark,
.doc-table td.doc-table__benchmark_with_agent {
    position: relative
}

.doc-table td.doc-table__test::before,
.doc-table td.doc-table__clio::before,
.doc-table td.doc-table__benchmark::before,
.doc-table td.doc-table__benchmark_with_agent::before {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-weight: 700;
    padding: .125rem .375rem;
    font-size: .875rem;
    line-height: 1;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-transform: rotate(270deg) translate(-100%, 0);
    -ms-transform: rotate(270deg) translate(-100%, 0);
    transform: rotate(270deg) translate(-100%, 0)
}

.doc-table td.doc-table__test::before {
    content: 'TEST';
    background-color: #ffb900;
}

.doc-table td.doc-table__clio::before {
    content: 'Clio';
    background-color: #1176b9;
    font-weight: 700;
}

.doc-table td.doc-table__benchmark::before,
.doc-table td.doc-table__benchmark_with_agent::before {
    background-color: var(--color_hex_base_green);
    font-weight: 700;
    padding: .125rem .25rem;
    font-size: 9px;
    line-height: 14px;
}

.doc-table td.doc-table__benchmark::before {
    content: 'BENCHMARK';
}

.doc-table td.doc-table__benchmark_with_agent::before {
    content: 'BM W/AGENT';
}

@media (max-width: 767.98px) {
    .doc-table td.doc-table__test::before,
    .doc-table td.doc-table__clio::before,
    .doc-table td.doc-table__benchmark::before,
    .doc-table td.doc-table__benchmark_with_agent::before {
        font-size: .5625rem;
        padding: 1px 4px 0
    }

    .doc-table td.doc-table__benchmark::before,
    .doc-table td.doc-table__benchmark_with_agent::before {
        font-size: 6px;
        line-height: 9px;
    }

    .doc-table td.doc-table__test,
    .doc-table td.doc-table__clio,
    .doc-table td.doc-table__benchmark,
    .doc-table td.doc-table__benchmark_with_agent {
        display: block !important;
        position: absolute;
        top: 0;
        left: 0
    }

    .doc-table tr {
        position: relative;
        display: block;
        margin-bottom: 1rem;
        background-color: #fff;
        border: 1px solid #e7eaf2;
        border-radius: .3125rem;
        padding: 1rem
    }

    .doc-table__num {
        display: none
    }
}

.doc-table__mob-btn {
    position: absolute;
    right: 1rem;
    top: 1rem
}

.doc-table__mob-btn .fa-chevron-right:first-child {
    margin-right: -.3125rem
}

@media (max-width: 767.98px) {
    .doc-table {
        border: 0
    }
}

.session-title-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media (max-width: 991.98px) {
    .session-title-block__title-wrap {
        position: absolute;
        top: 0;
        z-index: 1001;
        left: 2.8125rem;
        width: calc(100% - 5.3125rem)
    }
}

@media (max-width: 575.98px) {
    .session-title-block__title-wrap {
        padding-top: .625rem
    }
}

.session-title-block__title {
    font-size: 2.5625rem;
    font-weight: 700
}

@media (max-width: 991.98px) {
    .session-title-block__title {
        font-size: 1.5rem;
        margin-bottom: 0;
        line-height: 2.7rem;
        white-space: nowrap;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        text-align: center;
        width: 100%
    }
}

@media (max-width: 575.98px) {
    .session-title-block__title {
        line-height: 1;
        font-size: 1.125rem
    }
}

@media (max-width: 767.98px) {
    .session-wide-header {
        position: absolute;
        top: 1rem;
        left: 0;
        width: 100%;
        text-align: left !important
    }
}

@media (max-width: 575.98px) {
    .session-wide-header {
        top: 2.5rem
    }
}

.session-wide-header__title .fas {
    position: relative;
    top: -2px
}

@media (max-width: 767.98px) {
    .session-wide-header__title {
        width: calc(100% - 6.5rem)
    }
}

@media (max-width: 575.98px) {
    .session-wide-header__title {
        font-size: 1.125rem
    }
}

@media (max-width: 991.98px) {
    .session-wide-header--full {
        position: absolute;
        top: 1rem;
        left: 0;
        width: 100%;
        text-align: left !important
    }
}

@media (max-width: 575.98px) {
    .session-wide-header--full {
        top: 2.5rem
    }
}

@media (max-width: 991.98px) {
    .session-wide-header--full {
        text-align: center !important
    }
}

.session-wide-header--full .session-wide-header__title {
    font-size: 2rem;
    font-weight: 400
}

@media (max-width: 991.98px) {
    .session-wide-header--full .session-wide-header__title {
        font-size: 1.125rem;
        font-weight: 700;
        width: 100%
    }
}

.identity-id-countdown {
    position: fixed;
    right: 1rem;
    top: 7rem;
    z-index: 1000
}

@media (max-width: 991.98px) {
    .identity-id-countdown {
        top: 4rem
    }
}

@media (max-width: 767.98px) {
    .identity-id-countdown {
        top: 3.725rem;
        font-size: .825rem;
        width: 6rem;
        text-align: center
    }
}

@media (max-width: 575.98px) {
    .identity-id-countdown {
        right: .625rem;
        top: 3.125rem
    }
}

@media (max-width: 767.98px) {
    .identity-id-countdown .card {
        padding: .25rem .375rem !important
    }
}

.document-tabs {
    position: relative
}

@media (max-width: 767.98px) {
    .document-tabs {
        margin-right: calc(-15px - .5rem);
        margin-left: calc(-15px - .5rem);
        margin-bottom: .5rem;
        background-color: #f8f9fa;
        margin-right: -15px;
        margin-left: -15px
    }
}

@media (max-width: 575.98px) {
    .document-tabs {
        margin-top: 1.875rem
    }
}

@media (max-width: 991.98px) {
    .document-tabs__btn-wrap {
        border-bottom: 1px solid #bdc5d1;
        padding: .5rem
    }
}

.document-tabs__btn {
    background-color: #fff;
    padding: .25rem .625rem;
    font-weight: 400;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-right: 10px;
    position: relative;
    border: 1px solid #d6dae1
}

.document-tabs__btn-left {
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

.document-tabs__btn-right {
    margin-left: .75rem
}

.document-tabs__btn-text {
    font-weight: 400
}

.document-tabs__btn .fa-caret-up {
    display: none
}

.document-tabs__btn .fa-caret-down, .document-tabs__btn .fa-caret-up {
    font-size: 1.15rem
}

.document-tabs__btn .far, .document-tabs__btn .fas {
    color: var(--color_hex_primary)
}

.document-tabs__btn.active .fa-caret-up {
    display: inline-block
}

.document-tabs__btn.active .fa-caret-down, .document-tabs__tabs .nav-link .fa-check {
    display: none
}

.document-tabs__tabs {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: auto;
    overflow-y: hidden
}

@media (max-width: 991.98px) {
    .document-tabs__tabs {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: block;
        background-color: #fff;
        padding-top: .75rem;
        padding-bottom: .75rem;
        opacity: 0;
        pointer-events: none;
        -webkit-transition: opacity .25s;
        -o-transition: opacity .25s;
        transition: opacity .25s;
        max-height: 100vh;
        overflow: auto;
        z-index: 10
    }

    .document-tabs__tabs.visible {
        opacity: 1;
        pointer-events: auto
    }

    .document-tabs__tabs .nav-item {
        width: 100%;
        margin-bottom: 0
    }

    .document-tabs__tabs .nav-item:not(:first-child) {
        margin-left: 0
    }

    .document-tabs__tabs .nav-item:not(:last-child) {
        margin-right: 0
    }

    .document-tabs__tabs .nav-item .nav-link {
        border: 0;
        border-radius: 0;
        font-size: 1.125rem;
        padding-top: .375rem;
        padding-bottom: .375rem;
        color: var(--color_hex_base_grey);
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis
    }

    .document-tabs__tabs .nav-item .nav-link .fa-file {
        display: none
    }

    .document-tabs__tabs .nav-item .nav-link .fa-check {
        display: inline-block;
        margin-right: .625rem;
        opacity: 0
    }

    .document-tabs__tabs .nav-item .nav-link.active .fa-check {
        opacity: 1
    }

    .document-preview-full__inner {
        padding-top: .625rem
    }
}

@media (max-width: 767.98px) {
    .document-preview-full__inner {
        padding-top: 0;
        margin-top: -.8125rem
    }
}

@media (max-width: 575.98px) {
    .document-preview-full__inner {
        margin-top: 0
    }
}

.document-preview-full__iframe {
    height: calc(100vh - 9.0625rem);
    height: calc(var(--vh, 1vh) * 100 - 9.0625rem)
}

@media (max-width: 991.98px) {
    .document-preview-full__iframe {
        height: calc(100vh - 16.5625rem);
        height: calc(var(--vh, 1vh) * 100 - 16.5625rem)
    }
}

@media (max-width: 767.98px) {
    .document-preview-full__iframe {
        height: calc(100vh - 14.375rem);
        height: calc(var(--vh, 1vh) * 100 - 14.375rem)
    }
}

.document-preview-full__iframe iframe {
    height: 100%;
    width: 100%
}

/* loading dots https://stackoverflow.com/a/57289650 */
.loading-dots:after {
    animation: animated-dots 2s linear infinite;
    content: '\00a0\00a0\00a0';
}

@keyframes animated-dots {
    0%, 20% {
        content: '.\00a0\00a0';
    }
    40% {
        content: '..\00a0';
    }
    60% {
        content: '...';
    }
    90%, 100% {
        content: '\00a0\00a0\00a0';
    }
}
/* end of loading dots */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 16px;
    z-index: 10;
}

.chat-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    height: 41px;
    border-radius: 8px;
    border: 1px solid #E7EAF2;
    background-color: white;
    color: var(--color_hex_primary);
    font-family: Poppins;
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    gap: 8px;
}

.chat-toggle .chat-icon {
    padding-bottom: 10px;
}

.chat-box {
    display: none;
    flex-direction: column;
    position: fixed;
    right: 5px;
    height: 386px;
    width: 303px;
    bottom: 5px;
    border-radius: 10px;
    border: 1px solid #E7EAF2;
    background-color: white;
    overflow: hidden;
}

.chat-active {
    display: flex;
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 41px;
    background-color: white;
    color: var(--color_hex_primary);
    font-family: Poppins;
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    gap: 8px;
    border-bottom: 1px solid #E7EAF2;
}

.chat-header .chat-icon {
    padding-bottom: 10px;
}

/*    Input    */
.chat-input {
    display: flex;
    flex-direction: column;
    border: 1px solid #667385;
    border-radius: 10px;
    padding: 5px;
    margin: 5px;
    width: auto;
}

.chat-input textarea {
    border: none;
    outline: none;
    resize: none;
    height: 50px;
    flex-grow: 1;
    width: auto;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.chat-input textarea::-webkit-scrollbar {
  display: none;
}

.chat-input .send-button {
    background: #667385;
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
    color: #fff;
    padding: 7px;
    margin: auto 5px auto auto;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    text-align: left;
    height: 25px;
    transition: background-color 0.2s ease-in-out;
}

.chat-input:focus-within {
  border-color: var(--color_hex_primary);
}

textarea:valid + .send-button.active {
    background-color: var(--color_hex_primary);
    opacity: 1;
    cursor: pointer;
    pointer-events: auto;
}

.send-button:hover{
    background-color: var(--color_hex_primary);
}
.send-button img{
    width: 10px;
    height: 10px;
}

/*  Messages    */
.chat-messages {
    flex: 1;
    padding: 10px 20px 10px 10px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.chat-messages::-webkit-scrollbar {
  display: none;
}

.message-container {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.message-avatar {
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  margin-right: 15px;
}

.message-content {
  flex: 1;
}

.message-header {
  display: flex;
  align-items: center;
}

.message-name {
  font-weight: bold;
  font-size: 14px;
  margin-right: 10px;
}

.message-time {
  font-size: 12px;
}

.message-text {
    font-size: 14px;
    max-width: 100%;
    word-break: break-word;
}

.typing-message {
    max-width: 200px;
    font-size: 12px;
    color: #7A7A7A;
}

/*    Messages empty  */
.chat-messages.empty {
    max-width: 220px;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}
.chat-messages.empty p {
    margin-top: 40px;
    margin-bottom: 0px;
}

.cross-close-button {
    display: none;
}

@media screen and (max-width: 991px){
    .chat-toggle, .chat-header {
        display: none;
    }

    .cross-close-button {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
    }

    .chat-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 0;
        display: none;
    }

    .chat-overlay.active {
      display: block;
    }

    .chat-box {
        position: fixed;
        bottom: 0;
        width: 100%;
        right: 0;
        z-index: 10;
        height: 350px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .chat-widget {
        max-width: 100%;
    }

    .chat-messages {
        padding-right: 50px;
    }

    .chat-input {
        flex-direction: row;
    }

    .chat-input textarea {
        height: 30px;
    }

    .send-button span {
        display: none;
    }
}
.u-header__navbar-session {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    padding: 0.2rem 1.4rem;
    height: 3.5rem;  /* synchronize 'space-top-session' */
}

.space-top-session {
    padding-top: 3.5rem !important;
}


.u-header__session-btn .btn {
    padding: 0.1rem 1rem;
    font-weight: 600;
    white-space: nowrap;
}

.u-header__session-title {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 1.4rem;
    margin-right: 0.5rem;
}

.u-header__session-title a {
    font-size: 1.5rem;
}

.u-session-panel {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.u-session-panel.is-demo {
    margin-top: 20px;
}

.u-session-panel.is-vendor-default {
    height: 100vh;
}

.u-session-panel.is-vendor-default.is-demo {
    height: calc(100vh - 20px);
    height: calc(var(--vh, 1vh) * 100 - 20px);
}

.u-session-panel.is-vendor-docusign {
    height: calc(100vh - 4rem);
    height: calc(var(--vh, 1vh) * 100 - 4rem);
}

.u-session-panel__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.u-session-panel__sidebar {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 310px;
}

.u-session-panel__documents {
    width: calc(100% - 310px);
}

.u-session-panel__doc-tabs {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    white-space: nowrap;
    overflow: auto;
    overflow-y: hidden;
}

.u-session-panel__doc-tabs .nav-link .fa-check {
    display: none;
}

.u-session-info__heading {
    padding-left: 1.125rem;
    padding-right: 1.125rem;
    padding-bottom: 1.0625rem;
    border-bottom: 1px solid #E7EAF2;;
}

.u-session-info__title {
    font-weight: 700;
    margin-bottom: 0;
}

.u-session-info__status {
    font-weight: 400;
}

.u-doc-toggle {
    flex: 1 1 auto;
    overflow: hidden;
    background-color: #fff;
    padding: 0.1rem 0.75rem;
    font-weight: 400;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-right: 10px;
    position: relative;
}

.u-doc-toggle__left {
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
}

.u-doc-toggle__right {
    margin-left: 0.75rem;
}

.u-doc-toggle .fa-caret-up {
    display: none;
}

.u-doc-toggle.active .fa-caret-up {
    display: inline-block;
}

.u-doc-toggle.active .fa-caret-down {
    display: none;
}

.u-doc-toggle .fa-caret-down,
.u-doc-toggle .fa-caret-up {
    font-size: 1.15rem;
}

.u-doc-toggle .fas,
.u-doc-toggle .far {
    color: #477EF7;
}

.u-menu-right-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
}

.u-menu-muted {
    flex: 0 0 auto;
    top: 1px;
    position: relative;
    background-size: cover;
    min-width: 24px;
    min-height: 24px;
    /* webpackIgnore: true */background-image: url('/static/onsite/img/video/micro_muted.svg');
}

.u-menu-chat {
    flex: 0 0 auto;
    position: relative;
    padding: 0 0 3px 0;
    background-size: cover;
    min-width: 24px;
    min-height: 22px;
    border: none;
    background-color: transparent;
}


.u-menu-burger {
    flex: 0 0 auto;
    font-size: 1.7rem;
    padding: 0;
    display: block;
    height: 20px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: relative;

}


@media screen and (max-width: 320px) {
    .u-doc-toggle {
        padding: 0;
    }
}


.u-menu-burger span {
    position: absolute;
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background-color: #fff;
    -webkit-transition: opacity 0.25s, -webkit-transform 0.25s;
    transition: opacity 0.25s, -webkit-transform 0.25s;
    -o-transition: transform 0.25s, opacity 0.25s;
    transition: transform 0.25s, opacity 0.25s;
    transition: transform 0.25s, opacity 0.25s, -webkit-transform 0.25s;
}

.u-menu-burger span:nth-child(1) {
    top: 0;
}

.u-menu-burger span:nth-child(2) {
    top: 8px;
}

.u-menu-burger span:nth-child(3) {
    top: 16px;
}

.u-menu-burger.active span:nth-child(1) {
    -webkit-transform: rotate(-45deg) translate(-5px, 5px);
        -ms-transform: rotate(-45deg) translate(-5px, 5px);
            transform: rotate(-45deg) translate(-5px, 5px)
}

.u-menu-burger.active span:nth-child(2) {
    opacity: 0;
}


.u-menu-burger.active span:nth-child(3) {
    -webkit-transform: rotate(45deg) translate(-6px, -6px);
        -ms-transform: rotate(45deg) translate(-6px, -6px);
            transform: rotate(45deg) translate(-6px, -6px)
}

.u-session-panel .u-doc-iframe {
    height: calc(100vh - 7.25rem);
    height: calc(var(--vh, 1vh) * 100 - 7.25rem);
}

.u-session-panel.is-demo .u-doc-iframe {
    height: calc(100vh - 7.25rem - 20px);
    height: calc(var(--vh, 1vh) * 100 - 7.25rem - 20px)
}

.u-session-videos__iframe-holder {
    position: relative;
    width: 280px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.u-session-videos__iframe-holder iframe {
    width: 100%
}

.video-conference-user {
    margin-bottom: 16px;
    position: relative;
}

.video-conference-user-name {
    padding: 4px;
    padding-left: 8px;
    font-size: 12px;
    line-height: 19px;
}

.video-conference-user-name.with-settings {
    padding-right: 40px;
}

.video-conference-user-name-inner {
    position: relative;
    top: 1px;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
}

.back-to-queue-image,
.notary-is-not-here-image {
    display: inline-block;
    width: 78px;
    height: 67px;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: 48px;
    margin-bottom: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    /* webpackIgnore: true */
    background-image: url('/static/onsite/img/session/back-to-queue.svg');
}
    
.notary-is-not-here-image {
    margin-top: 20px;
    width: 68px;
    height: 63px;
    /* webpackIgnore: true */
    background-image: url('/static/onsite/img/session/notary-is-not-here.svg');
}

@media screen and (max-width: 991px) {

    .u-session-panel__documents {
        width: 100%;
    }

    .u-header__navbar-session .u-header__navbar-nav {
        width: 100%;
    }

    .u-header__navbar-session .nav-item {
        width: 50%;
    }

    .u-header__navbar-session {
        height: 2.5rem;  /* synchronize 'space-top-session' */
        padding:  0 10px;
    }

    .space-top-session {
        padding-top: 2.5rem !important;
    }

    .u-header__session-title a {
        font-size: 1.2rem;
    }

    .u-session-panel {
        padding-top: 3rem !important;
        padding-bottom: 0 !important;
    }

    .u-session-panel .card {
        background-color: #fff !important;
        border: none;
        border-radius: 0;
    }

    .u-session-panel__doc-tabs {
        position: fixed;
        top: 2.5rem;
        left: 0;
        right: 0;
        display: block;
        background-color: #fff;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        -webkit-transition: opacity 0.25s;
        -o-transition: opacity 0.25s;
        transition: opacity 0.25s;
        max-height: calc(100% - 2.5rem);
        overflow: auto;
        z-index: 10;
    }


    .u-session-panel__sidebar {
        width: 0;
    }

    .u-session-panel .u-doc-iframe {
        height: calc(100vh - 4rem);
        height: calc(var(--vh, 1vh) * 100 -  4rem);
    }

    .u-session-panel.is-demo .u-doc-iframe {
        height: calc(100vh - 4rem - 20px);
        height: calc(var(--vh, 1vh) * 100 -  4rem - 20px);
    }

    .u-session-panel__doc-tabs.visible {
        opacity: 1;
        pointer-events: auto;
    }

    .u-session-panel__doc-tabs .nav-item {
        width: 100%;
        margin-bottom: 0;
    }

    .u-session-panel__doc-tabs .nav-item:not(:first-child) {
        margin-left: 0;
    }

    .u-session-panel__doc-tabs .nav-item:not(:last-child) {
        margin-right: 0;
    }

    .u-session-panel__doc-tabs .nav-link {
        border: none;
        border-radius: 0;
        font-size: 1.125rem;
        padding-top: 0.375rem;
        padding-bottom: 0.375rem;
        color: var(--color_hex_base_grey);
        overflow: hidden;
        -o-text-overflow: ellipsis;
           text-overflow: ellipsis;
    }

    .u-session-panel__doc-tabs .nav-link .fa-file {
        display: none;
    }

    .u-session-panel__doc-tabs .nav-link .fa-check {
        display: inline-block;
        margin-right: 0.625rem;
        opacity: 0;
    }

    .u-session-panel__doc-tabs .nav-link.active .fa-check {
        opacity: 1;
    }

    .u-session-info {
        position: fixed;
        top: 2.5rem;
        z-index: 10;
        left: 0;
        right: 0;
        background-color: #fff;
        border-bottom: 1px solid #E7EAF2;
        padding: 1.5rem 0;
        opacity: 0;
        pointer-events: none;
        max-height: calc(100% - 2.5rem);
        overflow: auto;
        -webkit-transition: opacity 0.25s;
        -o-transition: opacity 0.25s;
        transition: opacity 0.25s;
    }

    .u-session-info.visible {
        opacity: 1;
        pointer-events: auto;
    }

    .u-session-info__body {
        padding-top: 1.375rem;
        padding-left: 1.125rem;
        padding-right: 1.125rem;
    }

    .u-session-info__table-title {
        font-weight: 700;
    }

    .u-session-info__body .table {
        margin-bottom: 2.125rem;
    }

    .u-session-info__body .table tr {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

    .u-session-info__body .table td {
        display: block;
        padding: 0.375rem;
    }

    .u-session-info__controls {
        padding-left: 1.125rem;
        padding-right: 1.125rem;
    }

    .u-session-videos {
        position: fixed;
        background-color: #fff;
        overflow: hidden;
        top: calc(100vh - 200px);
        top: calc(var(--vh, 1vh) * 100 - 200px);
        right: 1.125rem;
        width: 200px;
        height: 115px;
        border-radius: 4px;
        -webkit-box-shadow: 0px 4px 8px rgba(119, 131, 143, 0.5);
                box-shadow: 0px 4px 8px rgba(119, 131, 143, 0.5);
        z-index: 10;
    }

    .u-session-videos--vertical {
        top: calc(100vh - 230px);
        top: calc(var(--vh, 1vh) * 100 - 230px);
        width: 115px;
        height: 200px;
    }

    .u-session-videos__iframe-holder {
        width: 100%;
        height: 100%;
    }

    .u-session-videos__inner {
        height: 100%;
        overflow: hidden;
    }

    .u-session-videos__inner .btn {
        display: none !important;
    }

    

    .u-session-videos.open {
        position: fixed;
        background-color: #fff;
        top: 2.5rem;
        left: 0;
        right: 0;
        bottom: 0;
        width: auto;
        height: auto;
        z-index: 10;
        padding: 0.5rem 0.625rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        overflow: hidden;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;     
    }


    .u-session-videos.open .u-session-videos__inner .btn {
        display: block !important;
    }


    .u-session-videos.u-session-videos--2.open {
        padding: 0.5rem 1.375rem;
    } 


    .u-session-videos.open .u-session-videos__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -ms-flex-line-pack: start;
            align-content: flex-start;
        overflow: auto;
    }

    .u-session-videos.open .u-session-videos__iframe-holder {
        height: calc(100% - 70px);
        font-size: 0;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    .u-session-videos.open .u-session-videos__iframe-holder iframe {
        height: 100%;
    }

    .u-session-videos.open .u-session-video__title {
        display: block !important;
    }

    .u-session-videos.open .u-session-video:not(:first-child) {
        display: block;
    }

    .u-session-videos.open .u-session-video:first-child {
        height: auto;
    }


    .u-session-videos.open .u-session-video:nth-child(odd) {
        padding-right: 0.3125rem;
    }

    .u-session-videos.open .u-session-video:nth-child(even) {
        padding-left: 0.3125rem;
    }

    .u-session-videos.open .u-session-video {
        width: 50%;
        height: auto;
    }

    .u-session-videos.open .u-session-video {
        margin-bottom: 0.625rem !important;
    }

    .u-session-videos.open .u-session-video__video {
        position: relative;
        padding-bottom: 57%;
    }



    .u-session-videos.open .u-session-video img,
    .u-session-videos.open .u-session-video video {
        display: block;
        width: 100%;
        -o-object-fit: cover;
           object-fit: cover;
    }

    .video-overlay-widget {
        position: fixed !important;
        left: 50%;
        top: 10rem;
        transform: translate(-50%, -50%);
    }

    .session-videos-above-chat {
        position: fixed !important;
        bottom: 360px !important;
        left: 10px !important;
        top: auto !important;
    }
}

@media screen and (max-width: 767px)  {
    .u-session-videos {
        top: calc(100vh - 150px);
        top: calc(var(--vh, 1vh) * 100 - 150px);
        right: 1.125rem;
        width: 150px;
        height: 85px;
    }


    .u-session-videos--vertical {
        top: calc(100vh - 230px);
        top: calc(var(--vh, 1vh) * 100 - 180px);
        width: 85px;
        height: 150px;
    }
    
}

@media screen and (max-width: 575px) {

    

    .u-session-videos {
        top: calc(100vh - 100px);
        top: calc(var(--vh, 1vh) * 100 - 100px);
        right: 1.125rem;
        width: 100px;
        height: 57px;
    }


    .u-session-videos--vertical {
        top: calc(100vh - 230px);
        top: calc(var(--vh, 1vh) * 100 - 130px);
        width: 57px;
        height: 100px;
    }


    .u-session-videos.open .u-session-video__title {
        padding-top: 0 !important;
        padding-bottom: 0 !important; 
    }


    .u-session-videos.open.u-session-videos--2 .u-session-video {
        width: 100%;
    }


    .u-session-videos.open.u-session-videos--2 .u-session-video__title {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }
}


@media screen and (min-width: 281px) {
    .conference-videos {
        background-color: #fff !important;
    }

    .video-conference-user-name {
        height: 30px;
        padding: 0 4px;

        line-height: 30px;
    }

    .video-conference-user-name.with-settings {
        padding-right: 30px;
    }

    .video-conference-user-name i {
        position: relative;
        top: -2px;
        font-size: 12px;
    }

    .conference-videos-container {
        font-size: 0;
    }

    .conference-videos-container--2-videos {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .conference-videos-container--2-hor-videos {
        display: block;
        -webkit-column-count: 1;
           -moz-column-count: 1;
                column-count: 1;
    }

    .conference-videos-container::after {
        content: '';
        display: table;
        clear: both;
    }


    .video-conference-user {
        display: inline-block;
        vertical-align: top;
        width: 100%;
        margin-bottom: 8px;
    }

    .video-conference-user-name-inner {
        top: 0;
    }

    .open .video-conference-user:first-child .video-conference-user-name {
        font-size: 15px;
    }
}

@media screen and (min-width: 281px) and (max-width: 480px) {

    .conference-videos-container--2 .video-conference-user {
        width: 100%;
    }

    .conference-videos-container--2 .video-conference-user:nth-child(odd) {
        margin-right: 0;
    }

    .conference-videos-container--2 .video-conference-user:nth-child(even) {
        margin-left: 0;
    }
}

@media screen and (max-width: 991px) {
    
    .video-conference-user-name {
        display: none !important;
    }

    .conference-videos {
        overflow: hidden;
    }

    .conference-videos,
    .video-preview {
        top: 0;
        height: 115px;
        max-height: 115px;
    }


}


@media screen and (max-width: 767px) {
    .conference-videos,
    .video-preview {
        height: 86px;
        max-height: 86px;
    }

    .conference-videos--vertical,
    .video-preview--vertical {
        height: 200px;
        max-height: 200px;
    }
}


@media screen and (max-width: 575px) {
    .conference-videos,
    .video-preview {
        height: 58px;
        max-height: 58px;
    }   
    
}

@media screen and (max-width: 480px) {
    .conference-videos--vertical,
    .video-preview--vertical {
        height: 150px;
        max-height: 150px;
    }
}


.open .video-preview {
    max-height: 100% !important;
    height: 100% !important;
}

.open .video-conference-user-name {
    display: block !important;
}

@media screen and (min-width: 767px) {
    .technical-check-popup {
        width: 480px;
    }
}

@media screen and (min-width:575px) {
    .video-overlay-face-ellipse {
        width: 150px;
        height: 170px;
    }
}

@media screen and (max-width:575px) {
    .video-overlay-face-ellipse {
        width: 250px;
        height: 330px;
    }
}

.video-preview--check-advanced video{
    -o-object-fit:contain;
    object-fit:contain;
}

@media screen and (max-width: 575px) {
    .video-preview--check-advanced {
        max-height: 400px; height: auto;
    }

    .video-preview--check-advanced video.video-participant {
        height: 400px;
    }
}

@media screen and (min-width: 576px) {
    .video-preview--check-advanced{
        height:auto;
        max-height:13.5rem
    }

    .video-preview--check-advanced video{
        height:auto;
        max-height:13.5rem
    }
}

.call-volume-icon-btn {
    z-index: 10;
    position: absolute;
    background: transparent;
    border: none;
    left: 66%;
    bottom: 0;
}


.header-person {
    -webkit-transition: opacity .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out
}

.header-person.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: all
}

.header-person.is-open .header-person__hover .header-person__list .header-person__list-item > span {
    pointer-events: all
}

@media only screen and (min-width: 992px) {
    .header-person {
        position: relative;
        width: 0;
        height: 60px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-transition: opacity .3s ease-in-out;
        -o-transition: opacity .3s ease-in-out;
        transition: opacity .3s ease-in-out
    }

    .header-person-mid {
        width: 30px;
    }

    .header-person-large {
        width: 60px;
    }

    .header-person:hover .header-person__hover,
    .header-person.is-open .header-person__hover {
        visibility: visible;
        opacity: 1;
        pointer-events: all
    }

    .header-person:hover .header-person__hover .header-person__list .header-person__list-item > span,
    .header-person.is-open .header-person__hover .header-person__list .header-person__list-item > span {
        pointer-events: all
    }
}

@media only screen and (max-width: 991.98px) {
    .header-person {
        position: fixed;
        top: 40px;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        pointer-events: none;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: visibility 0s, opacity .3s ease-in-out;
        -o-transition: visibility 0s, opacity .3s ease-in-out;
        transition: visibility 0s, opacity .3s ease-in-out
    }
}

.header-person__avatar {
    box-shadow: none;
    border: 0;
    font-size: 17px;
    line-height: 1.5em;
    font-weight: 600;
    color: rgb(var(--color_rgb_primary));
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(var(--color_rgb_primary), 0.1);
    cursor: pointer
}

.header-person__avatar-transparent {
    background: transparent;
}


@media only screen and (max-width: 991.98px) {
    .header-person__avatar {
        display: none
    }
}

.header-person__hover {
    width: 100%;
    background: #fff
}

@media only screen and (min-width: 992px) {
    .header-person__hover {
        position: absolute;
        top: 100%;
        right: 0;
        width: 0;
        -webkit-box-shadow: 0 2px 20px rgba(140, 152, 164, .25);
        box-shadow: 0 2px 20px rgba(140, 152, 164, .25);
        border-radius: 4px;
        border: 1px solid #fff;
        pointer-events: none;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: visibility 0s, opacity .3s ease;
        -o-transition: visibility 0s, opacity .3s ease;
        transition: visibility 0s, opacity .3s ease
    }

    .header-person__hover-mid {
        width: 224px;
    }

    .header-person__hover-large {
        width: 324px;
    }
}

.header-person__info {
    background: #f8f9fa;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom: 1px solid #e7eaf2
}

.header-person__info-large {
    padding: 19px 30px;
}

.header-person__info-email {
    font-size: 18px
}

.header-person__info-email,
.header-person__info-name {
    line-height: 1.5em;
    color: #000;
    font-weight: 500
}

.header-person__info-name {
    font-size: 24px;
    margin-bottom: 3px
}

.header-person__info-email {
    font-size: 14px;
    margin-bottom: 6px
}

.header-person__info-link {
    line-height: 1.5em;
    font-weight: 500;
    font-size: 14px;
    color: rgb(var(--color_rgb_primary));
}


.header-person__list {
    margin: 0;
    padding: 0;
    border: 0;
}

.header-person__list-item {
    display: block;
    font-size: 14px;
    line-height: 1.5em;
    color: #000;
    padding: 16px 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer
}

.header-person__list-item.subscription {
    pointer-events: none;
}

@media only screen and (max-width: 991.98px) {
    .header-person__list-item {
        padding: 16px 30px;
    }
}

.header-person__list-item a {
    margin: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.header-person__list-item:not(:last-child) {
    border-bottom: 1px solid #e7eaf2
}

.header-person__list-item.mobile-visible {
    display: none
}

@media only screen and (max-width: 991.98px) {
    .header-person__list-item.mobile-visible {
        display: block
    }
}

.header-person__list-link {
    color: #000
}
.header-tabs {
    -webkit-filter: drop-shadow(0 2px 4px rgba(142, 152, 163, .25));
    filter: drop-shadow(0 2px 4px rgba(142, 152, 163, .25))
}

@media only screen and (min-width: 992px) {
    .header-tabs-lg {
        -webkit-filter: drop-shadow(0 2px 4px rgba(142, 152, 163, .25));
        filter: drop-shadow(0 2px 4px rgba(142, 152, 163, .25))
    }
}

.header-tabs__wrapper .navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 !important;
    padding-left: 15px;
    padding-right: 15px;
}

.header-tabs__burger {
    display: none;
    margin-left: auto;
    width: 28px;
    height: 20px;
    position: relative;
    cursor: pointer;
    background: transparent;
    border: none;
}

@media only screen and (max-width: 991.98px) {
    .header-tabs__burger {
        display: block
    }
}

.header-tabs__burger span {
    position: absolute;
    display: block;
    left: 0;
    width: 28px;
    height: 4px;
    background: rgb(var(--color_rgb_base_grey));
    border-radius: 2px;
    -webkit-transition: top .3s ease-in-out, opacity .3s ease-in-out, -webkit-transform .3s ease-in-out;
    -o-transition: transform .3s ease-in-out, top .3s ease-in-out, opacity .3s ease-in-out;
    transition: transform .3s ease-in-out, top .3s ease-in-out, opacity .3s ease-in-out;
    transition: transform .3s ease-in-out, top .3s ease-in-out, opacity .3s ease-in-out, -webkit-transform .3s ease-in-out
}

.header-tabs__burger span:first-child {
    top: 0
}

.header-tabs__burger span:nth-child(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.header-tabs__burger span:last-child {
    top: calc(100% - 4px)
}

.header-tabs__burger.is-open span:nth-child(1) {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    -ms-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg)
}

.header-tabs__burger.is-open span:nth-child(2) {
    opacity: 0
}

.header-tabs__burger.is-open span:nth-child(3) {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg)
}

.header-tabs__nav,
.header-tabs__navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
}

.header-tabs__nav {
    margin-bottom: 0;
    margin-right: 10px
}

@media only screen and (max-width: 991.98px) {
    .header-tabs__nav {
        display: none
    }
}

.header-tabs__nav-link {
    padding: 16px 12px
}

.tabs__wrapper {
    min-height: 512px;
    background: #f8f9fa;
    border: 1px solid #e7eaf2;
    border-radius: 6px;
    display: grid;
    grid-template-columns: 1fr .6fr
}

@media only screen and (max-width: 767px) {
    .tabs__wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
        background: 0 0;
        border-width: 0;
        border-radius: 0
    }
}

.multisigner-identity-info-arrow {
    color: #377DFF;
    content: "\f063";
}

.multisigner-identity-info-arrow:before {
  content: "\f063";
}

.collapsed .multisigner-identity-info-arrow:before {
  content: "\f061";
}

.client-info-block {
    cursor: pointer;
}

.on-video-player {
  position: relative;
  background-color: #fff;
}

.prepare-documents-notary-container .document-edit-container {
    border-left: 1px solid #e7eaf3;
    border-right: 1px solid #e7eaf3;
    border-bottom: 1px solid #e7eaf3;
}

.prepare-documents-notary-container .u-doc-iframe {
    height: calc(100vh - 14rem);
    height: calc(var(--vh, 1vh) * 100 - 14rem);
}

.prepare-documents-notary-container.is-demo .u-doc-iframe {
    height: calc(100vh - 14rem - 20px);
    height: calc(var(--vh, 1vh) * 100 - 14rem - 20px);
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .prepare-documents-notary-container .u-doc-iframe {
        height: calc(100vh - 18rem);
        height: calc(var(--vh, 1vh) * 100 - 18rem);
    }

    .prepare-documents-notary-container.is-demo .u-doc-iframe {
        height: calc(100vh - 16rem - 20px);
        height: calc(var(--vh, 1vh) * 100 - 16rem - 20px);
    }
}

@media screen and (min-width: 992px) and (max-width: 1024px) {
    .prepare-documents-notary-container .u-doc-iframe {
        height: calc(100vh - 28rem);
        height: calc(var(--vh, 1vh) * 100 - 28rem);
    }

    .prepare-documents-notary-container.is-demo .u-doc-iframe {
        height: calc(100vh - 28rem - 20px);
        height: calc(var(--vh, 1vh) * 100 - 28rem - 20px);
    }
}

iframe {
    border: 0px;
}

div#actual-news-description a {
    text-decoration: underline;
}

div#actual-news-close {
    cursor: pointer;
}
div.container-actual-news-and-test {
    margin-top: 60px !important;
}

.login-card-error {
    border: 2px solid #DD5B56;
    box-sizing: border-box;
    border-radius: 6px;
}

.login-container__footer {
    background-color: #F8F9FA;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
    text-align: center;
    padding: 1.25rem;
}

.login-container__card__content {
    padding: 3rem;
}

@media only screen and (max-width: 767.98px) {
    .login-container__card__content {
        padding: 1.5rem;
    }
}

.onenotary-pdf-viewer-outer {
    border-top: 1px solid #e7eaf3;
}

.add-additional-document-li {
    position: absolute;
    top: 5px;
    right: -50px;
    cursor: pointer;
}

.add-additional-document-li .add-additional-document-link {
    position: absolute;
    top: 5px;
    right: 17px;
}

@media only screen and (max-width:480px) {
    .add-additional-document-li {
        position: relative;
        top: auto;
        right: auto;
        border-bottom: 1px solid #e7eaf3;
        padding-bottom: 7px;
    }

    .add-additional-document-li .add-additional-document-link {
        position: relative;
        top: auto;
        right: auto;
        margin-right: 10px;
        margin-left: 10px;
        color: var(--color_hex_base_grey);
    }
}

.place-autotags-li {
    position: absolute;
    top: 5px;
    right: -15px;
    cursor: pointer;
}

.place-autotags-li .place-autotags-link {
    position: absolute;
    top: 5px;
    right: 17px;
}

@media only screen and (max-width:480px) {
    .place-autotags-li {
        position: relative;
        top: auto;
        right: auto;
        border-bottom: 1px solid #e7eaf3;
        padding-bottom: 7px;
    }

    .place-autotags-li .place-autotags-link {
        position: relative;
        top: auto;
        right: auto;
        margin-right: 10px;
        margin-left: 10px;
        color: var(--color_hex_base_grey);
    }
}

#add-document-popup div.doc-input {
    text-align: left !important;
}

.video-canvas {
    position: absolute;
}

.technical-check-tutorial-list li {
    margin-top: 5px;
    color: var(--color_hex_base_grey);
}

.img-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.top-img {
    z-index: 1;
    max-width: 7rem;
    max-height: 7rem;
}

.RemoveDatalistBlackArrow::-webkit-calendar-picker-indicator {
    display:none !important;
}

.u-header.disable_z-index {
    z-index: 0 !important;
}

.session-title-block__title-wrap.disable_z-index {
    z-index: 0 !important;
}


.download-popup__box {
  width: 375px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  top: 50%;
  border-radius: 6px;
  overflow: hidden;
  min-height: 427px;
}

.download-popup__header {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-direction: column;
  box-sizing: border-box;
  height: 154px;
  transform: translateY(144px);
}

.download-popup__header-text {
  font-weight: 400;
  display: none;
  max-width: 244px;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  line-height: 27px;
  min-height: 54px;
  align-items: center;
}

.download-popup__body {
  background-color: #377DFF;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  padding: 18px 30px 33px;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(100%);
}

.download-popup__title {
  margin: 0 0 21px;
  max-width: 280px;
  font-family: Poppins;
  opacity: 0;
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
}

.download-popup__image {
  height: auto;
  margin-bottom: 28px;
  opacity: 0;
}

.download-popup__button {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  height: 50px;
  font-family: Poppins;
  cursor: pointer;
  opacity: 0;
  transition: color 200ms ease-in, background-color 200ms ease-in
}

.download-popup__button:hover {
  background-color: #fff;
  color: #377DFF;
  transition: color 200ms ease-out, background-color 200ms ease-out
}

.download-popup__button--admit {
  background-color: #fff;
  color: #377DFF;
  margin-bottom: 16px;
}

.download-popup__button--admit:hover {
  background-color: transparent;
  color: #fff;
}

.download-popup__loader-wrapper {
  position: relative;
  height: 80px;
  min-height: 80px;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  margin-bottom: 17px;
}

.download-popup__loader {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  bottom: 0px;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.download-popup__loader-mask,
.download-popup__loader-fill {
  width: 80px;
  height: 80px;
  position: absolute;
  border-radius: 50%;
}

.download-popup__loader-mask {
  clip: rect(0px, 80px, 80px, 40px);
}

.download-popup__loader-fill {
  clip: rect(0px, 40px, 80px, 0px);
  background-color: #00C9A7;
}

.download-popup__loader-mask--full,
.download-popup__loader-fill {
  animation: cssload-spin ease-in 1s infinite;
  transform: rotate(180deg);
}

.download-popup__loader-inside-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 4px;
  top: 4px;
}

.download-popup__loader-icon {
  color: #d7d0d0;
  z-index: 1;
  position: relative;
}

.download-popup__loader-text {
  display: block;
  font-family: Poppins;
  max-width: 220px;
}

.download-popup__header.is-loaded .download-popup__header-text {
  display: flex;
}

.download-popup__header.is-loaded .download-popup__loader-icon {
  color: #00C9A7;
  transition: color 200ms ease-out;
}

.download-popup__header.is-loaded .download-popup__loader-text {
  display: none;
}

.download-popup__header.is-loaded .download-popup__loader {
  display: none;
}

.download-popup__header.is-animated .download-popup__loader-wrapper {
  display: none;
}

.download-popup__header.is-animated {
  animation: header-move 700ms forwards ease-out;
  animation-iteration-count: 1;
}

.download-popup__header.is-animated + .download-popup__body {
  animation: body-move 500ms forwards ease-out;
  animation-delay: 700ms;
  animation-iteration-count: 1;
}

.download-popup__header.is-animated + .download-popup__body .download-popup__title,
.download-popup__header.is-animated + .download-popup__body .download-popup__image {
  opacity: 1;
  transition: opacity 200ms ease-out;
  transition-delay: 1400ms;
}

.download-popup__header.is-animated + .download-popup__body .download-popup__button {
  opacity: 1;
  transition: opacity 200ms ease-out;
  transition-delay: 1600ms;
}

@keyframes cssload-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}

@keyframes header-move {
  0% {
    transform: translateY(150px);
  }
  100% {
    transform: translateY(-8px);
  }
}

@keyframes body-move {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}


/*------------------------------------
    intl-tel-input (International Telephone Input)
------------------------------------*/
.iti-mobile .iti--container {
    /* List of flags (country codes) is not visible on mobile in custombox popup.
    Since the list is appended to document.body on mobile https://github.com/jackocnr/intl-tel-input/blob/v16.0.8/src/js/intlTelInput.js#L117
    and list z-index is 1060, but custombox popup has z-index 9999.
    As a workaround just increase flags list container index for mobile
    */
    z-index: 10000;  /* custombox-content{z-index:9999 + 1 ... */
}

@media only screen and (max-width:480px) {
    .w-mobile-95 {
        width: 95% !important;
    }
}

.notary-status-background-color-blue {
    background-color: #B6D5FF;
}

.notary-status-background-color-yellow {
    background-color: #FFEEBD;
}

.notary-status-background-color-green {
    background-color: #C7FFDF;
}

.notary-status-header-24 {
    font-size: 24px;
    font-weight: 700;
}

.notary-status-header-24-lighter {
    font-size: 24px;
    font-weight: 400;
}

.notary-status-font-size-14 {
    font-size:.875rem;
    font-weight: 400;
}

.notary-status-shift-card {
    border: 0;
    width: 160px;
    font-size: .875rem;
    font-weight: 400;
}

.notary-status-shift-card-header {
    background-color: #B6D5FF;
    border: 1px solid var(--color_hex_base_blue);
    height: 35px;
    padding: 7px 10px;
}

.notary-status-shift-card-footer {
    border: 1px solid var(--color_hex_base_grey);
    border-top: none;
    height: 60px;
    padding: 7px 10px;
}

.notary-status-content-top {
    display: flex;
    align-items: start;
    flex-wrap: wrap;
}

.text-over-img-container {
    position: relative;
    text-align: center;
}

.text-over-img-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.img-darker {
    filter: brightness(50%);
}
.connectivity-warning {
  font-size: 80%;
  font-weight: 400;

  ul {
    padding-left: 1.5rem;
  }

  p {
    color: black;
  }

  p.list-title {
    margin-bottom: 0%;
  }
}
span.close-av-check {
  font-size: 35px;
  color: #000;
  cursor: pointer;
  position: absolute;
  top: 0px;
  right: 10px;

  /* Safari */
  -webkit-user-select: none;
  /* Firefox */
  -moz-user-select: none;
  /* IE10+/Edge */
  -ms-user-select: none;
  /* Standard */
  user-select: none;
}

.tooltip-popup {
    background-color: white;
    padding: 20px 22px;
    border-radius: 6px;
    border: 1px solid #E7EAF2;
    box-shadow: 0 4px 8px 0 rgba(142, 152, 163, 0.25);
}
