﻿:root {
    --bg-color: #f2f2f2;
    --font-family--regular: 'Barlow';
    --font-family--accented: 'Poppins';
    --accent-color-1: #d5e9fa;
    --accent-color-2: #5894cb;
    --accent-color-3: #a7ccec;
    --button-color: #3b88cd;
    --button-color-alpha: #3b88cdcf;
    --button-color-alpha2: rgb(59 136 205 / 50%);
    --button-text-color: #3e69b4;
    --button-text-color-bold: #1c3a6d;
    --text-title: #3a65b2;
    --text-title-bold: #083079;
}


/***** BODY *****/
.master-section > .section-content.host-confab {
    display: flex;
    flex-wrap: nowrap;
}

    .master-section > .section-content.host-confab > .view {
        flex-direction: column;
        position: relative !important;
    }

        .master-section > .section-content.host-confab > .view.view-side--left {
            width: 40%;
            margin-right: 10px;
            min-width: 450px;
            flex: 1 0 450px;
            order: 2;
        }

        .master-section > .section-content.host-confab > .view.view-side--right {
            width: 60%;
            order: 2;
        }

.master-section > .section-content.host-setup {
    display: flex;
    flex-wrap: nowrap;
}

    .master-section > .section-content.host-setup > .view {
        flex-direction: column;
        position: relative !important;
    }

        .master-section > .section-content.host-setup > .view.view-side--left {
            width: 100%;
            margin-right: 0;
        }

        .master-section > .section-content.host-setup > .view.view-side--right {
            display: none;
        }

    .master-section > .section-content.host-setup.split-view > .view.view-side--left {
        width: 40%;
        margin-right: 10px;
        min-width: 500px;
        flex: 1 0 500px;
        order: 2;
    }

    .master-section > .section-content.host-setup.split-view > .view.view-side--right {
        width: 60%;
        order: 2;
        display: block;
        position: relative;
    }



.master-section > .section-content > .view.view-side--left {
    width: 100%;
}

.master-section > .section-content.host-confab.full-screen > .view.view-side--right {
    display: none;
}



/***** VIEW-PANEL *****/
.master-section > .section-content > .view.content-panel > .panel-header:after {
    display: none;
}

.master-section > .section-content .panel-header .content-context a.action--reconnect {
    background: url('../../../Assets/Images/icon/svg-icon--refresh.svg') no-repeat center center;
    width: 22px;
    display: inline-block;
    margin-right: 5px;
    cursor: pointer;
}


.master-section > .section-content .panel-header .content-context a.action--view-toggle {
    background: url('../../../Assets/Images/icon/svg-icon--expand.svg') no-repeat center center;
    width: 22px;
    display: inline-block;
    margin-right: 5px;
    cursor: pointer;
}

    .master-section > .section-content .panel-header .content-context a.action--reconnect > span,
    .master-section > .section-content .panel-header .content-context a.action--view-toggle > span {
        display: none;
    }

.master-section > .section-content > .content-panel.app-setup .content-data.form,
.master-section > .section-content > .content-panel.host-logon .content-data.form {
    max-width: 500px;
    margin: 20px auto 0;
}



/***** VIDEO COMPONENTS *****/
@keyframes scaleIn {
    from {
        transform: scale(.5, .5);
        opacity: .5;
    }

    to {
        transform: scale(2.5, 2.5);
        opacity: 0;
    }
}


/***** VIDEOS *****/
.view .panel-body {
}

body.page--video-host .master-section > .section-content > .view.content-panel > .video-container {
    padding-bottom: 0px;
    height: calc( 100% - 56px );
    background: linear-gradient(180deg, rgba(251,252,253,1) 50%, rgba(213,233,250,1) 100%);
}

.view.view-side--left .panel-footer {
    position: absolute;
    width: 100%;
    height: 56px;
    bottom: 0;
    left: 0;
    padding: 10px;
    border-top: 1px solid #dbdee6;
    z-index: 20;
    overflow: hidden;
    text-align: center;
    background-color: var(--accent-color-1);
}

.view.view-side--right .panel-footer {
    background-color: var(--accent-color-1);
}


.view.content-panel > .panel-body.container #videos,
.view.content-panel > .panel-body.container .video-elements {
    display: block;
    height: 100%;
    width: 100%;
    padding: 15px;
    text-align: center;
}

.view.content-panel > .panel-body.container .video-status {
    position: relative;
    height: 1px;
    overflow: visible;
    z-index: 20;
}

    .view.content-panel > .panel-body.container .video-status > .sensor {
        position: absolute;
        display: inline-block;
        left: 0;
        top: .5em;
        font-size: 11px;
        text-transform: uppercase;
        line-height: 15px;
        padding: 1px 5px;
        background: rgba(208, 220, 245, 0.7);
        color: #000;
    }


    .view.content-panel > .panel-body.container .video-status > .wrtc-state:before {
        content: attr(data-label)': ';
    }

    .view.content-panel > .panel-body.container .video-status > .peer-state {
        top: 2.5em;
        top: calc(.5em + 18px);
    }

        .view.content-panel > .panel-body.container .video-status > .peer-state:before {
            content: attr(data-label)': ';
        }

.video-status > .sensor.video-state:before {
    content: attr(data-label)': ';
}



.view.content-panel > .panel-body.container .video-box {
    display: block;
    min-height: 100px;
    position: relative;
    max-height: calc(100%);
    height: calc(100%);
}


.view.content-panel > .panel-body.container .user-data.photos {
    display: block;
    padding: 5px 0;
}

    .view.content-panel > .panel-body.container .user-data.photos .photo {
        display: block;
        width: 125px;
        height: 100px;
        display: inline-block;
        margin-right: 5px;
        background: var(--accent-color-1) no-repeat center center;
        background-size: cover;
        border: 2px solid var(--accent-color-1);
    }

    .view.content-panel > .panel-body.container .user-data.photos .document-pdf {
        background-image: url('../../Images/icon/icon--pdf-logo.svg');
        /* background-size: auto 100%; */
        background-size: contain;
    }

    .view.content-panel > .panel-body.container .user-data.photos .photo:hover {
        background-color: var(--accent-color-3);
        border-color: var(--accent-color-3);
    }



/**** MAIN PLAYER ****/

.view.content-panel > .panel-body.container .video-player.main {
    position: relative;
    width: 100%;
    min-height: 100px;
    text-align: center;
    background: var(--accent-color-1);
    padding: 0px;
    opacity: 1;
    /*transition: all .25s ease-in-out;*/
    z-index: 1;
    box-sizing: content-box;
    max-height: 100%;
    background: #fbfcfd;
    background: transparent;
    height: calc(100%);
}


/* video-fill */
.view.content-panel > .panel-body.container video.video-fill {
    object-fit: fill;
    opacity: .5;
    background: #fff;
    filter: blur(15px);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    object-fit: cover;
    display: none;
}




.view.content-panel > .panel-body.container .video-player.main.no-media > video.video-fill {
    display: none !important;
}

.host-confab.full-screen .view.content-panel > .panel-body.container .video-box .video-player.main video.video-fill {
    display: block;
}


.view.content-panel > .panel-body.container video.video-fill.no-media {
    opacity: 0;
}

/* video-element */
.view.content-panel > .panel-body.container video.video-element,
.master-section > .section-content.host-confab.screen-capture video.video-element-screen {
    display: block;
    position: relative;
    z-index: 10;
    display: block;
    transition: all .15s ease-in-out 0s;
    box-sizing: border-box;
    border: 2px solid var(--accent-color-1);
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
}

    .view.content-panel > .panel-body.container video.video-element.no-media {
        opacity: .15;
    }

    .view.content-panel > .panel-body.container video.video-element.hidden {
        display: block !important;
        visibility: hidden;
        opacity: 0 !important;
    }


.view.content-panel > #video_container video.video-element-screen {
    display: block;
    width: 90%;
    max-height: 90%;
    max-width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: all .15s ease-in-out 0s;
}

.view.content-panel > .panel-body.container video.video-element.loading {
    background: var(--accent-color-1) center center no-repeat;
    background-image: url('../../../Assets/Images/dialog/ajax-loader-infinite-01.gif');
}


.view.content-panel > #video_container.screen-capture video.video-element {
    display: block;
    position: absolute;
    max-width: 160px;
    max-height: 160px;
    width: 160px;
    height: 160px;
    z-index: 22;
    right: 175px;
    left: auto;
    top: 20px; /* 60px */
    margin: 0;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.25);
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all .15s ease-in-out 0s;
    transform: none;
}

.host-confab.full-screen .view.content-panel > #video_container.screen-capture video.video-element {
    object-fit: contain;
}

.view.content-panel > #video_container.screen-capture canvas.face-id {
    display: none;
}



.view.content-panel > .panel-body.container video.video-element-pip {
    position: absolute;
    max-width: 160px;
    max-height: 160px;
    width: 160px;
    height: 160px;
    z-index: 21;
    right: 20px;
    top: 60px;
    margin: 0;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.25);
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all .15s ease-in-out 0s;
}

body.page--video-host .view.content-panel > .panel-body.container video.video-element-pip {
    transform: scaleX(-1);
}


.view.content-panel .video-controls {
    display: block;
    position: relative;
    text-align: center;
    z-index: 2;
}


.view.content-panel.app-setup > .panel-body .content-data.form .form-action,
.view.content-panel.host-logon > .panel-body .content-data.form .form-action {
    text-align: center;
}

.view.content-panel.app-setup > .panel-body .content-data.form input[type="checkbox"] {
    vertical-align: top;
    font-size: 120%;
    transform: scale(1.2);
    display: inline-block;
    margin-left: 5px;
    margin-top: 0px;
    margin-right: 5px;
}


.master-section > .section-content > .view.content-panel > .video-container {
    overflow: hidden;
    position: relative;
}

/**** SCREEN-SHARE MODE ***/

.master-section > .section-content.host-confab video.video-element-screen {
    display: none;
}

.master-section > .section-content.host-confab.screen-capture video.video-element {
    display: block;
    position: absolute;
    max-width: 160px;
    max-height: 160px;
    width: 160px !important;
    height: 160px !important;
    z-index: 22;
    right: -22px;
    left: auto !important;
    top: -3px; /* 60px */
    margin: 0;
    object-fit: cover !important;
    /* box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.25); */
    border: 2px solid rgba(255, 255, 255, 1);
    transition: all .15s ease-in-out 0s;
    transform: none;
}

.master-section > .section-content.host-confab.screen-capture.full-screen video.video-element {
    left: auto !important;
    width: 160px !important;
    height: 160px !important;
    right: 5px !important;
    top: 5px !important;
}

.master-section > .section-content.host-confab.screen-capture video.video-element-screen {
    max-height: 100%;
}


/**** NEW BUTTONS ***/

.view.content-panel > .panel-body.container .video-controls {
    position: absolute;
    padding: .5em 0;
    bottom: 95px;
    width: 100%;
    z-index: 50;
    transition: all .25s ease-in-out;
}

@media only screen and (min-width : 1400px) {
    .view.content-panel > .panel-body.container .video-controls {
        bottom: 15px;
    }
}

.view.content-panel .video-controls > .control-group {
    position: relative;
    display: inline-block;
    margin: 0 5px 5px 0;
    width: 40%;
    text-align: right;
    padding: 8px 8px 4px 8px;
    background: #ffffffad;
    border-radius: 10px;
}

    .view.content-panel .video-controls > .control-group.video {
        max-width: 160px;
        width: 130px;
        text-align: left;
    }

    .view.content-panel .video-controls > .control-group.recording {
        width: 70px;
    }

.view.content-panel .video-controls .marker.video-marker,
.view.content-panel .video-controls button.video-action {
    border: 2px solid rgb(255 255 255 / .75);
    transition: border-color 0.05s ease-out, opacity 0.05s ease-out;
    height: 55px;
    width: 55px;
    position: relative;
    margin: 0 0px 4px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    padding: 0;
    border-radius: 0;
    background: var(--button-color-alpha) center center;
    vertical-align: baseline;
}

.view.content-panel .video-controls .marker.video-marker {
    border: 2px solid rgb(255 255 255 / 25%);
    background: rgb(39 75 107 / .0);
    background: var(--button-color-alpha2);
    opacity: .75;
    top: -1px;
}

    .view.content-panel .video-controls .marker.video-marker > svg,
    .view.content-panel .video-controls button.video-action > svg {
        opacity: .8;
        position: relative;
        left: 0;
        top: 0;
    }

    .view.content-panel .video-controls .marker.video-marker[data-state="1"] > svg {
        opacity: 1;
    }

        .view.content-panel .video-controls .marker.video-marker[data-state="1"] > svg .record-disk {
            fill: #f92020;
            stroke: rgb(145 0 0 / 50%);
        }

    .view.content-panel .video-controls .marker.video-marker[data-error="upload"]:after,
    .view.content-panel .video-controls .marker.video-marker[data-error="storage"]:after {
        content: '!';
        display: block;
        position: absolute;
        right: -.5em;
        top: -.5em;
        background: #fff;
        border-radius: 50%;
        width: 1.4em;
        height: 1.4em;
        font-size: .8em;
        font-weight: bold;
        line-height: 1.4em;
        color: red;
    }


.view.content-panel .video-controls button.video-action {
    cursor: pointer;
}

    .view.content-panel .video-controls button.video-action:hover {
        border-color: #fff;
    }

        .view.content-panel .video-controls button.video-action:hover > svg {
            opacity: 1;
        }

    .view.content-panel .video-controls button.video-action.disabled,
    .view.content-panel .video-controls button.video-action.disabled:hover {
        border: 2px solid #ffffffb8;
        opacity: .5;
        cursor: default;
    }

        .view.content-panel .video-controls button.video-action.disabled > svg,
        .view.content-panel .video-controls button.video-action.disabled > svg:hover {
            opacity: .6;
        }

    .view.content-panel .video-controls .video-marker.marker--client-audio > svg,
    .view.content-panel .video-controls button.video-action.action--host-audio-mute > svg {
        fill: white;
    }

        .view.content-panel .video-controls .video-marker.marker--client-audio > svg .bar,
        .view.content-panel .video-controls button.video-action.action--host-audio-mute > svg .bar {
            visibility: hidden;
        }

    .view.content-panel .video-controls .video-marker.marker--client-audio.muted > svg .bar,
    .view.content-panel .video-controls button.video-action.action--host-audio-mute.muted > svg .bar {
        visibility: visible;
    }

.video-controls button.video-action > label {
    display: none;
}

.view.content-panel .video-controls button.video-action.action--screenshot[data-type] {
    position: relative;
}

    .view.content-panel .video-controls button.video-action.action--screenshot[data-type]:after,
    .view.content-panel .video-controls button.video-action.action--marker:after {
        content: '';
        display: inline-block;
        background: red;
        position: absolute;
        bottom: 0px;
        right: 0px;
        color: white;
        font-size: 9px;
        text-transform: uppercase;
        padding: 1px 2px;
        text-align: center;
    }

.view.content-panel .video-controls button.video-action.action--screenshot[data-type="face_photo"]:after {
    content: 'user';
}

.view.content-panel .video-controls button.video-action.action--screenshot[data-type="front_id_photo"]:after {
    content: 'ID front';
}

.view.content-panel .video-controls button.video-action.action--screenshot[data-type="back_id_photo"]:after {
    content: 'ID back';
}


.view.content-panel .video-controls button.video-action.action--marker {
    cursor: pointer;
    position: relative;
}

    .view.content-panel .video-controls button.video-action.action--marker > svg {
        fill: white;
    }

    .view.content-panel .video-controls button.video-action.action--marker.marker-user:after {
        content: 'user';
    }

    .view.content-panel .video-controls button.video-action.action--marker.marker-document:after {
        content: 'doc';
    }

    .view.content-panel .video-controls button.video-action.action--marker.on {
        background: #cd3b3bcf;
    }

    .view.content-panel .video-controls button.video-action.action--marker > span {
        display: inline-block;
        line-height: 50px;
        font-size: 20px;
        color: #fff;
    }


.view.content-panel .video-controls button.video-action.action--screen-capture.active:after {
    content: '^';
    content: '\260D';
    position: absolute;
    right: -5px;
    top: -5px;
    color: #fff;
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 18px;
    background: red;
    border-radius: 50%;
}



/**** footer player ***/
.view.view-side--left .panel-footer,
.view.view-side--right .panel-footer {
    overflow: visible;
    padding: 0;
    height: 55px;
    border-top-color: #fff0;
}

    .view.view-side--left .panel-footer .actions {
        margin-right: 150px;
        white-space: nowrap;
    }

    .view.view-side--left .panel-footer .video-box {
        position: absolute;
        width: 150px;
        height: 150px;
        bottom: 0;
        right: 0;
        z-index: 1;
        transition: all .25s ease-in-out;
    }


        .view.view-side--left .panel-footer .video-box > video {
            width: 100%;
            height: 100%;
            position: relative;
            object-fit: cover;
            z-index: 1;
            border: 2px solid var(--accent-color-1);
        }

        .view.view-side--left .panel-footer .video-box > .video-controls {
            position: absolute;
            bottom: 0;
            left: 0;
            z-index: 2;
            width: 100%;
            height: 55px;
            text-align: left;
        }

        .view.view-side--left .panel-footer .video-box button.video-action {
            width: 55px;
            height: 55px
        }

            .view.view-side--left .panel-footer .video-box button.video-action.action--host-camera-switch {
                position: absolute;
                top: -94px;
                right: 0;
                border-width: 0;
                background: transparent url('../../Images/icon/svg-icon--camera3.svg') no-repeat center center;
                width: 28px;
                height: 28px;
                background-size: 75% auto;
                opacity: 1;
                filter: invert(.25);
            }


            .view.view-side--left .panel-footer .video-box button.video-action.action--host-screen-capture.active:after {
                content: '^';
                content: '\2605';
                content: '\260D';
                position: absolute;
                right: -5px;
                top: -5px;
                color: #fff;
                display: inline-block;
                width: 18px;
                height: 18px;
                line-height: 18px;
                background: red;
                border-radius: 50%;
            }



/**** FULL SCREEN ****/
.host-confab.full-screen {
}

    .host-confab.full-screen .view.view-side--left .panel-footer .video-box {
        bottom: 85px;
        right: 30px;
    }

    .host-confab.full-screen .view.content-panel > .panel-body.container .video-controls {
        bottom: 12px;
    }

    .host-confab.full-screen .view.content-panel > .panel-body.container .video-player.main {
        height: calc(100% - 10px);
        max-height: calc(100% - 10px);
    }

    .host-confab.full-screen .view.content-panel > .panel-body.container .video-box {
        width: 100%;
        height: calc(100% - 10px);
        position: relative;
    }

        .host-confab.full-screen .view.content-panel > .panel-body.container .video-box .video-element {
            object-fit: contain;
            width: 100%;
            height: 100%;
            max-height: 100%;
            display: block;
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            right: 0;
        }

    .host-confab.full-screen .view.content-panel > .panel-body.container .user-data.photos {
        position: absolute;
        bottom: 20px;
        left: 10px;
        z-index: 10;
    }


/** PhotoSwipe **/

.pswp__caption__center {
    text-align: center;
}

.pswp__zoom-wrap {
}

    .pswp__zoom-wrap > video {
        margin: auto;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        max-width: 100%;
        max-height: 100%;
    }


/*** FORMS ***/

.master-section > .section-content > .view.app-forms > .panel-header {
    height: 40px;
    border-bottom: 1px solid var(--accent-color-1);
}

.view.app-forms > .panel-header .form-summary {
    display: flex;
    flex-wrap: nowrap;
    margin: 8px 10px 8px 25px;
    color: var(--text-title);
    gap: 20px;
    gap: 0px 20px; /* row-gap column gap */
    overflow: hidden;
    align-items: flex-end;
}

    .view.app-forms > .panel-header .form-summary .block {
        flex: 0;
        white-space: nowrap;
    }

        .view.app-forms > .panel-header .form-summary .block.userdata-name,
        .view.app-forms > .panel-header .form-summary .block.userdata-services {
            flex: 1;
        }


        .view.app-forms > .panel-header .form-summary .block > label {
            color: var(--text-title);
            font-size: 1em;
            font-weight: 400;
            white-space: nowrap;
            position: relative;
            display: block;
            line-height: 22px;
        }

            .view.app-forms > .panel-header .form-summary .block > label i {
                font-style: normal;
            }

.view.app-forms .content-data.form .form-item .item-data input.data[type="text"],
.view.app-forms .content-data.form .form-item .item-data input.data[type="date"] {
    padding-left: 2px;
}

.view.app-forms .content-data.form .form-item .item-data input.data[type="text"],
.view.app-forms .content-data.form .form-item .item-data input.data[type="date"],
.view.app-forms .content-data.form .form-item .item-data select.data {
    border-bottom-color: #a0acc8;
}

    .view.app-forms .content-data.form .form-item .item-data input.data[type="text"]:focus,
    .view.app-forms .content-data.form .form-item .item-data input.data[type="date"]:focus,
    .view.app-forms .content-data.form .form-item .item-data select.data:focus {
        border-bottom-color: #a0acc8;
        color: #000;
    }

    .view.app-forms .content-data.form .form-item .item-data input[type="text"][disabled],
    .view.app-forms .content-data.form .form-item .item-data input.data[type="date"][disabled],
    .view.app-forms .content-data.form .form-item .item-data select.data[disabled],
    .view.app-forms .content-data.form .form-item .item-data input[type="text"][disabled]:focus,
    .view.app-forms .content-data.form .form-item .item-data input.data[type="date"][disabled]:focus,
    .view.app-forms .content-data.form .form-item .item-data select.data[disabled]:focus {
        border-bottom-color: #dae0ee !important;
    }

.view.app-forms .content-data.form .form-item.required .item-label:before {
    background: no-repeat left center url('../../Images/icon/icon--bullet-red.png');
}

.view.app-forms .content-data.form .form-item.error .item-label:before {
    background: no-repeat left center url('../../Images/icon/svg-icon--warning.svg');
}

.content-data.form .form-item.required .item-label {
    color: #2a367c;
    font-weight: 500;
}

    .content-data.form .form-item.required .item-label.highlighted {
        color: #d80027;
        background: #fafadb;
    }

.view.app-forms .content-data.form .form-item.required .item-data input.data[type="text"],
.view.app-forms .content-data.form .form-item.required .item-data input.data[type="date"],
.view.app-forms .content-data.form .form-item.required .item-data select.data {
    border-bottom-color: #a0acc8;
}

    .view.app-forms .content-data.form .form-item.required .item-data input.data.required,
    .view.app-forms .content-data.form .form-item.required .item-data input.data.required,
    .view.app-forms .content-data.form .form-item.required .item-data select.data.required {
        border-bottom-color: #d94d4d;
    }

.view.app-forms .content-data.form .form-item .item-data input.data.error,
.view.app-forms .content-data.form .form-item .item-data input.data.error,
.view.app-forms .content-data.form .form-item .item-data select.data.error {
    border-bottom-color: #d94d4d;
}


.view.app-forms .content-data.form .form-item.required .item-data input.data[type="date"] {
    position: relative;
}

    .view.app-forms .content-data.form .form-item.required .item-data input.data[type="date"][data-date]:before {
        position: absolute;
        top: 6px;
        left: 3px;
        content: attr(data-date);
        display: inline-block;
        color: black;
    }

input::-webkit-datetime-edit, input::-webkit-inner-spin-button, input::-webkit-clear-button {
    visibility: hidden;
}

input::-webkit-calendar-picker-indicator {
    /*
    position: absolute;
    top: 6px;
    right: 0; 
    color: black;
    opacity: 1;
    */
}

.view.app-forms .content-data.form .form-item.required .item-data input[type="text"].date {
    position: relative;
    background-repeat: no-repeat;
    background-position: right center;
    background-image: url('../../Images/icon/svg-icon--calendar.svg');
}

.view.app-forms .content-data.form .form-item .item-data input.free-text {
    position: absolute;
    left: 0;
    right: 25px;
    top: 0px;
    width: auto;
    background-color: rgb(253 230 188 / 50%);
    border: 0px solid #ffffff00;
    outline: none;
    z-index: 2;
    /*pointer-events:none;*/
    padding: 5px 32px 3px 5px;
    padding-left: 5px !important;
}


/** SELECT WRAPPER: STREET **/
.view.app-forms .content-data.form .form-item .item-data[data-item="street"] {
}

    .view.app-forms .content-data.form .form-item .item-data[data-item="street"] > .icon {
        position: absolute;
        width: 22px;
        height: 22px;
        top: 5px;
        right: 26px;
        z-index: 3;
        background: url('../../Images/icon/svg-icon--edit.svg') no-repeat center center;
        cursor: pointer;
        opacity: .75;
        transition: opacity .25s ease-in-out;
    }

        .view.app-forms .content-data.form .form-item .item-data[data-item="street"] > .icon:hover {
            opacity: 1;
        }

.view.app-forms .content-data.form .form-item .item-data.editable[data-item="street"] > .icon,
.view.app-forms .content-data.form .form-item .item-data.editable[data-item="street"] > .icon:hover {
    background-image: url('../../Images/icon/svg-icon--edit-off.svg');
}

.view.app-forms .content-data.form .form-item .item-data[data-item="street"] > select[name="street"] {
    z-index: 1;
    border-bottom-color: #a0acc8;
}

    .view.app-forms .content-data.form .form-item .item-data[data-item="street"] > select[name="street"]:disabled {
        border-bottom-color: #a0acc8 !important;
    }

    .view.app-forms .content-data.form .form-item .item-data[data-item="street"] > select[name="street"]:focus {
        border-bottom-color: #a0acc8 !important;
    }

.view.app-forms .content-data.form .form-item .item-data[data-item="street"] > input[name="street"] {
    display: none;
}

.view.app-forms .content-data.form .form-item .item-data.editable[data-item="street"] > input[name="street"] {
    display: block;
    width: calc(100% - 25px);
}

.view.app-forms .content-data.form .form-item .item-data[data-item="street"] > input[name="street"]:focus {
    background-color: rgba(240, 242, 249, .75);
    background-color: rgb(253 230 188 / 75%);
}







.view.app-forms > .panel-header .form-summary .block > .text {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
    min-height: 20px;
    color: var(--text-title-bold);
}

.view.app-forms > .panel-header .form-summary .block a.inline {
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    color: var(--text-title-bold);
    padding-right: .15em;
}

    .view.app-forms > .panel-header .form-summary .block a.inline:hover {
        background-color: rgb(229 228 240 / .5);
    }

.view.app-forms > .panel-header .form-summary .block a.action {
    cursor: pointer;
    display: inline-block;
    margin: .15em;
}

.view.app-forms > .panel-header .form-summary .block.userdata-kyc {
    vertical-align: top;
}

    .view.app-forms > .panel-header .form-summary .block.userdata-kyc.status {
        flex-grow: 0;
    }

    .view.app-forms > .panel-header .form-summary .block.userdata-kyc > label {
        /* padding-right: 16px; */
    }

    .view.app-forms > .panel-header .form-summary .block.userdata-kyc a.action--query-kyc {
        width: 16px;
        height: 10px;
        position: relative;
        transform-origin: center;
        display: inline-block;
        vertical-align: top;
    }

.view.app-forms > .panel-header .form-summary .block a.action--query-kyc > svg {
    position: relative;
    left: 0;
    top: -3px;
    transform-origin: center;
}

.view.app-forms > .panel-header .form-summary .block a.action--query-kyc.running > svg {
    animation: load8 1.1s infinite linear;
}

.view.app-forms > .panel-header .form-summary .block.userdata-kyc.update {
    flex-grow: 0;
    flex-basis: 60px;
    text-align: center;
}

    .view.app-forms > .panel-header .form-summary .block.userdata-kyc.update a.action--query-kyc {
        display: flex;
        border: 1px solid #579ad5;
        background: #d4e9fa;
        flex-flow: column;
        line-height: 17px;
        text-align: center;
        height: 45px;
        width: 100%;
        max-width: 60px;
        padding: 5px 15px;
        border-radius: 3px;
        flex-grow: 0;
        text-align: center;
        align-items: center;
        justify-content: center;
        transition: all .25s ease-in-out;
        white-space: normal;
        cursor: pointer;
        box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    }

        .view.app-forms > .panel-header .form-summary .block.userdata-kyc.update a.action--query-kyc:hover {
            border-color: #579ad5;
            background: #77aede;
            color: #fff;
        }

        .view.app-forms > .panel-header .form-summary .block.userdata-kyc.update a.action--query-kyc.running {
            opacity: .75;
            cursor: default;
        }

/** BUBBLE-NAV **/
.view.app-forms > .panel-header .bubble-nav {
    margin: 1em 0;
    text-align: center;
    padding: 0 3em;
    margin: 0 auto;
    position: relative;
    height: 18px;
}

    .view.app-forms > .panel-header .bubble-nav:before {
        content: '';
        display: block;
        height: 1px;
        border-top: 1px solid var(--accent-color-1);
        position: absolute;
        z-index: 0;
        left: 0;
        right: 0;
        top: 10px;
    }

    .view.app-forms > .panel-header .bubble-nav a.nav-item {
        display: inline-block;
        width: 16px;
        height: 16px;
        margin: 1px 3px;
        z-index: 2;
        position: relative;
        cursor: pointer;
    }

        .view.app-forms > .panel-header .bubble-nav a.nav-item:before {
            content: '';
            display: inline-block;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--accent-color-1);
            border: 1px solid #fff;
            transition: border-width .05s ease-in-out, background-color .25s ease-in-out;
        }

        .view.app-forms > .panel-header .bubble-nav a.nav-item:hover:before {
            background: var(--accent-color-3);
        }

        .view.app-forms > .panel-header .bubble-nav a.nav-item.selected:before {
            background: var(--accent-color-3);
            border-width: 0;
        }


/** TAB-NAV **/
.view.app-forms > .panel-header .tab-nav {
    margin: 1em 0;
    text-align: left;
    padding: 0;
    margin: 0;
    position: relative;
    height: 40px;
    white-space: nowrap;
}

    .view.app-forms > .panel-header .tab-nav a.nav-item {
        display: inline-block;
        margin: 0;
        padding: 10px 24px 7px;
        z-index: 2;
        position: relative;
        cursor: pointer;
        text-transform: uppercase;
        font-weight: 500;
        color: var(--text-title);
        transition: all .15s ease-in-out;
        border-bottom: 1px solid var(--accent-color-1);
    }

        .view.app-forms > .panel-header .tab-nav a.nav-item:hover {
            color: var(--text-title-bold);
        }

        .view.app-forms > .panel-header .tab-nav a.nav-item.selected {
            border-bottom-color: var(--accent-color-2);
            color: var(--text-title-bold);
        }

        .view.app-forms > .panel-header .tab-nav a.nav-item[data-count]:after {
            content: attr(data-count);
            position: absolute;
            display: block;
            right: -5px;
            top: -2px;
            text-align: center;
            font-size: 11px;
            border-radius: 50%;
            background: color(srgb 0.97 0.35 0.56 / 0.8);
            min-width: 20px;
            height: 20px;
            line-height: 20px;
            color: #fff;
            white-space: nowrap;
        }


.master-section > .section-content > .view.app-forms > .panel-body {
    height: calc(100% - 50px);
    padding-top: 60px;
    position: relative;
}

.master-section > .section-content > .view.app-forms > .panel-header > h2 {
    white-space: nowrap;
    background: #fbfcfd;
    padding-top: 12px;
}

    .master-section > .section-content > .view.app-forms > .panel-header > h2 a.action {
        display: none;
    }

.view.app-forms .content-data.form .form-item {
    margin: .5em 0 1.5em;
    padding-bottom: 0;
    padding-top: 0;
}

    .view.app-forms .content-data.form .form-item.margin-0 {
        margin: .25em 0;
    }

    .view.app-forms .content-data.form .form-item .item-label.inline {
        line-height: 18px;
        white-space: normal !important;
    }

    .view.app-forms .content-data.form .form-item.list-item {
        margin-bottom: 0;
    }

        .view.app-forms .content-data.form .form-item.list-item .description {
            margin-bottom: 0.25em;
            display: block;
            width: 500px;
        }

        .view.app-forms .content-data.form .form-item.list-item .longdescription {
            font-size: 0.9em;
            margin-bottom: 0.5em;
            display: inline-block;
            width: 500px;
        }

        .view.app-forms .content-data.form .form-item.list-item .item-data {
            display: block;
            margin: 0 0 1em 20px;
            font-size: .9em;
        }


.master-section > .section-content > .view.view-side--right > .ui-overlay {
    position: absolute;
    background-color: rgb(251 252 253 / .9);
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 20;
}

.app-forms .form-section h3 {
    display: none;
}

.app-forms .form-section .content-data h3 {
    display: block;
    font-size: 1.3rem;
    line-height: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #2a4193;
    padding: 0px 10px 0 15px;
    margin: 2em 0 0.3em -15px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    background: #e1eefb;
}


.app-forms .form-section h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2a4193;
    margin: 0;
    padding: 0;
}


.app-forms .content-data.form {
    max-width: 90%;
    margin-left: 2em;
}

    .app-forms .content-data.form h5 {
    }

    .app-forms .content-data.form .form-item {
        transition: background-color .25s ease-in;
    }

        .app-forms .content-data.form .form-item.changed {
            /* background-color: rgb(250 218 223 / .2); */
        }

        .app-forms .content-data.form .form-item.error {
        }

        .app-forms .content-data.form .form-item > .form-error {
            font-size: .9em;
            color: #9f1d1d;
            display: none;
        }

        .app-forms .content-data.form .form-item.error > .form-error {
            display: block;
        }


.app-forms .form-section.scripts table {
    border: 1px solid #e5e4f0;
    border-collapse: separate;
    border-spacing: 0px;
}

    .app-forms .form-section.scripts table th,
    .app-forms .form-section.scripts table td {
        border-right: 1px solid #e5e4f0;
        padding: 5px 12px;
    }

        .app-forms .form-section.scripts table th:last-child,
        .app-forms .form-section.scripts table td:last-child {
            border-right-width: 0px;
        }

    .app-forms .form-section.scripts table th {
        border-bottom: 2px solid #d4e9fa;
    }

    .app-forms .form-section.scripts table td {
        vertical-align: top;
    }


.view.view-side--right.app-forms .panel-footer .form-nav {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    width: 130px;
}

    .view.view-side--right.app-forms .panel-footer .form-nav .button {
        border: 2px solid rgb(255 255 255 / .75);
        transition: border-color 0.05s ease-out, opacity 0.05s ease-out;
        height: 55px;
        width: 55px;
        position: relative;
        margin: 0 0 0;
        display: inline-block;
        text-align: center;
        padding: 0;
        border-radius: 0;
        background: var(--button-color-alpha) center center;
        vertical-align: top;
        line-height: 55px;
        font-size: 20px;
        color: #fff;
        cursor: pointer;
    }

        .view.view-side--right.app-forms .panel-footer .form-nav .button.disabled {
            cursor: default;
            opacity: .75;
        }

        .view.view-side--right.app-forms .panel-footer .form-nav .button svg {
            position: relative;
            top: -4px;
            left: 0;
        }


.view.view-side--left .panel-footer .actions {
    margin-right: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: left;
    height: 100%;
    transition: all .25s ease-in-out;
}

.host-confab.full-screen .view.view-side--left .panel-footer .actions {
    margin-right: 20px;
    text-align: right;
    justify-content: right;
    justify-content: flex-end;
}

.view.view-side--right .panel-footer .actions {
    display: block;
    height: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: right;
    justify-content: flex-end;
}

.view .panel-footer .actions a.action {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--button-text-color);
    text-transform: uppercase;
    margin: 0 1em;
    cursor: pointer;
    transition: all .25s ease-in-out;
}

    .view .panel-footer .actions a.action:hover {
        color: var(--button-text-color-bold);
    }

.view .panel-footer a.action--session-close {
    padding-left: 32px;
    background: no-repeat left url('../../Images/icon/svg-icon--ok.svg');
}

.view .panel-footer a.action--call-drop {
    padding-left: 40px;
    background: no-repeat left -4px url('../../Images/icon/icon--call-drop.png');
    background-size: auto 40px;
}

.view.view-side--left .panel-footer a.action--session-close {
    display: none;
}

.host-confab.full-screen .view.view-side--left .panel-footer a.action--session-close {
    display: block;
}


/*** AUTOCOMPLETE ***/
.autocomplete-suggestions {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #999;
    background: #FFF;
    cursor: default;
    overflow: auto;
    -webkit-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
    -moz-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
    box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
}

.autocomplete-suggestion {
    padding: 2px 5px;
    white-space: nowrap;
    overflow: hidden;
}

.autocomplete-no-suggestion {
    padding: 2px 5px;
}

.autocomplete-selected {
    background: #F0F0F0;
}

.autocomplete-suggestions strong {
    font-weight: bold;
    color: #000;
}

.autocomplete-group {
    padding: 2px 5px;
    font-weight: bold;
    font-size: 16px;
    color: #000;
    display: block;
    border-bottom: 1px solid #000;
}



/* *** MARKERS *** */
.app-forms .content-data.session-timeline {
}

    .app-forms .content-data.session-timeline:after {
        content: '';
        display: block;
        clear: both;
        float: none;
        min-height: 2em;
    }

    .app-forms .content-data.session-timeline .marker-item {
        position: relative;
        max-width: 100%;
        min-height: 1.35em;
        min-width: 25%;
        margin: 1.5em 2rem 1rem 2rem;
        padding: .2em 1rem;
        border: 1px solid rgba(148, 185, 250, .5);
        border-radius: 12px;
        box-shadow: 0 1px .5em 0 rgba(136, 161, 206, .5);
        transition: opacity .5s, background-color .75s, color .75s, min-width .15s ease-in-out;
        animation: bubble-fade-in .25s ease-in-out;
        clear: both;
        cursor: default;
        min-width: 60%;
        max-width: 80%;
    }

        .app-forms .content-data.session-timeline .marker-item[data-user-type="11"] {
            background: #d1e0fa;
            float: left;
            clear: both;
            border-top-left-radius: 0;
        }

        .app-forms .content-data.session-timeline .marker-item[data-user-type="1"] {
            background: #bdecb2;
            border-color: rgb(155 201 145 / 50%);
            border-top-right-radius: 0;
            float: right;
            clear: both;
        }

        .app-forms .content-data.session-timeline .marker-item .caption {
            position: absolute;
            white-space: nowrap;
            top: -1.75rem;
            left: 0;
            font-size: 1rem;
            display: block;
            width: 100%;
            text-overflow: ellipsis
        }

            .app-forms .content-data.session-timeline .marker-item .caption .user-initials {
                position: absolute;
                width: 2.75rem;
                height: 2.75rem;
                line-height: 2.5rem;
                text-align: center;
                display: block;
                left: -3.25rem;
                top: 1.5rem;
                background: #b6cdfc;
                border: 1px solid rgb(148 250 156 / 50%);
                border-radius: 50%;
                color: #fff;
                font-size: 1.25rem;
                text-transform: capitalize;
            }

        .app-forms .content-data.session-timeline .marker-item[data-user-type="1"] .user-initials {
            left: auto;
            right: -3.25rem;
            background: #98ca85;
            border: 1px solid #c1ecb0;
        }

        .app-forms .content-data.session-timeline .marker-item[data-user-type="1"] .caption {
            left: auto;
            right: 0;
            text-align: right;
        }

        .app-forms .content-data.session-timeline .marker-item .caption .user {
        }

        .app-forms .content-data.session-timeline .marker-item .caption .type {
            display: none;
        }

        .app-forms .content-data.session-timeline .marker-item span {
            display: inline-block;
        }

        .app-forms .content-data.session-timeline .marker-item .description span.info {
            display: block;
            overflow-x: hidden;
            text-overflow: ellipsis;
        }

        .app-forms .content-data.session-timeline .marker-item .caption .time {
            margin-right: 1rem;
        }

        .app-forms .content-data.session-timeline .marker-item .description .user {
            margin-right: 1rem;
            background: #d7e9fb;
            padding: 0 1rem .25rem 1rem;
            margin-left: -.5rem;
            line-height: 2rem;
            display: none;
        }

        .app-forms .content-data.session-timeline .marker-item .description {
            padding: .5rem .5rem;
        }


/* *** DQ HUB *** */
.form-message.dqhub {
    margin: 1em 0;
    color: inherit;
    display: none;
    font-weight: 300;
    position: relative;
    top: -1.25rem;
    border: 1px solid #e0e9f1;
    background: #edf2f6;
    padding: 0.25rem;
    margin: 0;
}

.content-data.form .form-group h5 + .form-message.dqhub {
    top: -.5rem;
}


.form-message.dqhub:before {
    /*
        content: '\25B2';
        right: 0;top: -1.25rem;
        */
    content: '\25C0';
    left: -.8rem;
    top: 0rem;
    position: absolute;
    color: #e0e9f1;
}

.form-message.dqhub strong {
    font-weight: 500;
}

.form-message.dqhub[data-validation-severity="SUCCESS"],
.form-message.dqhub[data-validation-severity="ERROR"],
.form-message.dqhub[data-validation-severity="WARNING"],
.form-message.dqhub[data-validation-severity="INTERNAL_SERVER_ERROR"],
.form-message.dqhub:not([data-validation-severity=""]) {
    display: block;
}

.form-message.dqhub[data-validation-severity="WARNING"] {
    color: #a94528;
    background-color: #f9f1e6;
    border-color: #f9e4c7;
}

    .form-message.dqhub[data-validation-severity="WARNING"]:before {
        color: #f9e4c7;
    }


.form-message.dqhub[data-validation-severity="ERROR"] {
    color: #941414;
    background-color: #fdeeee;
    border-color: #ffd7d7;
}

    .form-message.dqhub[data-validation-severity="ERROR"]:before {
        color: #ffd7d7;
    }

.form-message.dqhub[data-validation-severity="SUCCESS"] {
    color: #055543;
    background-color: #e3f4e2;
    border-color: #cce5cb;
}

    .form-message.dqhub[data-validation-severity="SUCCESS"]:before {
        color: #cce5cb;
    }

.form-message.dqhub[data-validation-severity="INTERNAL_SERVER_ERROR"] label {
    color: #941414;
}



.form-message.dqhub .message-overview {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
}

    .form-message.dqhub .message-overview > .result-severity {
        margin-left: 0.5rem;
        font-weight: 600;
    }

.form-message.dqhub .message-overview-wrapper[data-validation-severity="INFO"] {
    color: #142c80;
}

.form-message.dqhub .message-overview-wrapper[data-validation-severity="SUCCESS"] {
    color: green;
}

.form-message.dqhub .message-overview-wrapper > .result-message {
    font-weight: bold;
}

.form-message.dqhub > .validation-responses-container {
    /* padding: 0.5rem 0; */
    padding: 0rem 0;
}
/*
        .form-message.dqhub > .validation-responses-container > .message-overview-wrapper > .message-content-container {
            margin: 0.2em auto;
        }

        .form-message.dqhub > .validation-responses-container > .message-overview-wrapper:last-child > .message-content-container {
            margin-bottom: 0;
        }

        .form-message.dqhub > .validation-responses-container .message-content-container > .validation-response-item {
            display: flex;
            justify-content: flex-start;
            gap: 0.5rem;
        }
        */

.form-message.dqhub ul.message-content-container {
    margin: 0.25rem 0.5rem;
    padding: 0;
    list-style: disc;
    display: block;
}

    .form-message.dqhub ul.message-content-container > li {
        list-style: disc;
        display: block;
        position: relative;
        font-size: 1rem;
        font-weight: normal;
        line-height: 1.25rem;
        margin: 0.25rem 0 0 1.5rem;
        color: #334b5e;
    }

        .form-message.dqhub ul.message-content-container > li:before {
            content: '\25BA';
            position: absolute;
            left: -1.5rem;
            color: white
        }

        .form-message.dqhub ul.message-content-container > li[data-severity="ERROR"]::before,
        .form-message.dqhub ul.message-content-container > li[data-severity="WARNING"]::before,
        .form-message.dqhub ul.message-content-container > li[data-severity="INFO"]::before {
            display: block;
            width: 13px;
            height: 13px;
            font-size: 10px;
            font-family: Arial, sans-serif;
            font-weight: 400;
            border-radius: 45%;
            text-align: center;
            line-height: 12px;
            color: white;
            left: -1.4rem;
            top: 2px;
        }

        .form-message.dqhub ul.message-content-container > li[data-severity="ERROR"]::before {
            content: 'X';
            background: #fc85aa;
        }

        .form-message.dqhub ul.message-content-container > li[data-severity="WARNING"]::before {
            content: '!';
            background: #fba555;
        }

        .form-message.dqhub ul.message-content-container > li[data-severity="INFO"]::before {
            content: 'i';
            background: #c4c2d6;
        }

.form-message.dqhub ul > li .item-severity,
.form-message.dqhub ul > li .item-message {
    display: inline-block;
}

.form-message.dqhub ul > li .item-severity {
    font-weight: 500;
    display: none;
}

.form-message.dqhub ul > li .item-action {
    display: block;
}

    .form-message.dqhub ul > li .item-action .item-suggestion {
        display: block;
    }

    .form-message.dqhub ul > li .item-action a {
        display: inline-block;
        font-weight: 500;
        user-select: all;
    }






/** client sensors **/
.view.content-panel > .panel-body.container .client-sensors {
    position: absolute;
    height: 32px;
    width: auto;
    overflow: visible;
    z-index: 20;
    right: 3px;
    top: 5px;
    background: rgb(8 68 122 / 50%);
    padding: 5px;
    cursor: pointer;
}

    .view.content-panel > .panel-body.container .client-sensors .info-line {
        width: 25px;
        height: 100%;
        display: inline-block;
        vertical-align: baseline;
        line-height: 22px;
    }

    .view.content-panel > .panel-body.container .client-sensors .info-network {
        width: 20px;
    }

.client-sensors .info-line > svg {
    position: absolute;
}

.client-sensors .info-line > label {
    color: #fff;
    margin-left: .25em;
    white-space: nowrap;
    display: none;
}

.client-sensors .info-line.info-connection.disabled svg .level,
.client-sensors .info-line.info-connection svg .level {
    opacity: 0.5;
}

.client-sensors .info-line.info-connection[data-level="1"] svg .level-1 {
    opacity: 1;
}

.client-sensors .info-line.info-connection[data-level="2"] svg .level-1,
.client-sensors .info-line.info-connection[data-level="2"] svg .level-2 {
    opacity: 1;
}

.client-sensors .info-line.info-connection[data-level="3"] svg .level-1,
.client-sensors .info-line.info-connection[data-level="3"] svg .level-2,
.client-sensors .info-line.info-connection[data-level="3"] svg .level-3 {
    opacity: 1;
}

.client-sensors .info-line.info-connection[data-level="4"] svg .level-1,
.client-sensors .info-line.info-connection[data-level="4"] svg .level-2,
.client-sensors .info-line.info-connection[data-level="4"] svg .level-3,
.client-sensors .info-line.info-connection[data-level="4"] svg .level-4 {
    opacity: 1;
}

.client-sensors .info-line.info-network {
    margin-left: 5px;
    width: 20px;
}

    .client-sensors .info-line.info-network > .icons {
        position: relative;
        display: inline-block;
        height: 100%;
        width: 20px;
    }

    .client-sensors .info-line.info-network svg {
        position: absolute;
        left: -3px;
        top: -5px;
    }

        .client-sensors .info-line.info-network svg.traffic-outbound {
            top: 6px;
        }

        .client-sensors .info-line.info-network svg .level,
        .client-sensors .info-line.info-network.disabled svg .level {
            opacity: 0.75;
        }


        .client-sensors .info-line.info-network svg[data-level="1"] .level-1,
        .client-sensors .info-line.info-network svg[data-level="2"] .level-1,
        .client-sensors .info-line.info-network svg[data-level="2"] .level-2,
        .client-sensors .info-line.info-network svg[data-level="3"] .level-1,
        .client-sensors .info-line.info-network svg[data-level="3"] .level-2,
        .client-sensors .info-line.info-network svg[data-level="3"] .level-3,
        .client-sensors .info-line.info-network svg[data-level="4"] .level-1,
        .client-sensors .info-line.info-network svg[data-level="4"] .level-2,
        .client-sensors .info-line.info-network svg[data-level="4"] .level-3,
        .client-sensors .info-line.info-network svg[data-level="4"] .level-4,
        .client-sensors .info-line.info-network svg[data-level="5"] .level-1,
        .client-sensors .info-line.info-network svg[data-level="5"] .level-2,
        .client-sensors .info-line.info-network svg[data-level="5"] .level-3,
        .client-sensors .info-line.info-network svg[data-level="5"] .level-4,
        .client-sensors .info-line.info-network svg[data-level="5"] .level-5 {
            opacity: 1;
        }



/** FILES **/

.app-forms .form-section.media {
    height: calc(100% - 20px);
    position: relative;
    margin: 0;
    padding: 0;
}


.app-forms .content-data.form.session-media.screenshots {
    padding: 0;
    max-width: 100%;
    margin-left: 0;
    max-height: 100%;
    overflow-y: auto;
}

    .app-forms .content-data.form.session-media.screenshots:after {
        content: '';
        display: block;
        height: 150px;
        width: 100%;
    }

.session-media.screenshots > a.scrshot_link {
    display: inline-block;
    position: relative;
    margin: 0px 10px 10px 0px;
    width: 150px;
    height: 150px;
    overflow: hidden;
    text-align: center;
    background: var(--accent-color-1) no-repeat center center;
    background-size: 100% auto;
    background-size: cover;
    box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.25);
    border: 4px solid var(--accent-color-1);
    transition: all .15s ease-in-out 0s;
}

    .session-media.screenshots > a.scrshot_link.recording {
        background: #FFF;
        background-image: linear-gradient(-45deg, #f0f0f7 50%, #FFF 50%);
        position: relative;
    }

        .session-media.screenshots > a.scrshot_link.recording:after {
            content: '';
            display: block;
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: no-repeat url('../Images/icon/svg-icon--record-thumb2.svg') center center;
            z-index: 1;
        }


body.page--video-client .session-media.screenshots > a.scrshot_link {
    opacity: .9;
    border-color: rgba(255, 255, 255, 0.65);
}

.session-media.screenshots > a.scrshot_link:hover {
    opacity: .9;
    border-color: var(--accent-color-3);
}

.session-media.screenshots > a.scrshot_link.image[data-type]:after {
    content: attr(data-type);
    display: inline-block;
    background: red;
    position: absolute;
    bottom: 0px;
    right: 0px;
    color: white;
    font-size: 9px;
    text-transform: uppercase;
    padding: 1px 2px;
    text-align: center;
}

.session-media.screenshots > a.scrshot_link > img {
    display: block;
    max-height: 100%;
    max-width: 100%;
    border-radius: 50%;
    vertical-align: middle;
}

.session-media.screenshots > a.scrshot_link.loading {
    background-color: #fbfcfd;
}

    .session-media.screenshots > a.scrshot_link.loading > span {
        display: block;
        position: relative;
        width: 100%;
        height: 100%;
        text-align: center;
        vertical-align: center;
        line-height: 140px;
    }

    .session-media.screenshots > a.scrshot_link.loading:before {
        content: '';
        font-size: 12px;
        display: block;
        position: absolute;
        margin: 0px auto;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        z-index: 1;
        border-top: 0.5em solid rgba(134, 153, 180, 0.2);
        border-right: 0.5em solid rgba(134, 153, 180, 0.2);
        border-bottom: 0.5em solid rgba(134, 153, 180, 0.2);
        border-left: .5em solid rgb(134, 153, 180);
        -webkit-transform: translateZ(0);
        -ms-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-animation: load8 1.1s infinite linear;
        animation: load8 1.1s infinite linear;
        border-radius: 50%;
        width: 5em;
        height: 5em;
    }

.session-media.screenshots > a.scrshot_link.document {
    background: var(--accent-color-1) no-repeat url('../../Images/icon/icon--file-document.svg') center center;
    background-size: auto 75%;
}

    .session-media.screenshots > a.scrshot_link.document[data-mimetype="application/pdf"] {
        background-image: url('../../Images/icon/icon--file-pdf.svg');
    }

    .session-media.screenshots > a.scrshot_link.document[data-info]:after {
        content: attr(data-info);
        display: inline-block;
        background: #ffffffc7;
        position: absolute;
        bottom: 1.5em;
        right: 0px;
        color: #000;
        font-size: 11px;
        text-transform: uppercase;
        padding: 2px 5px;
        text-align: center;
    }


.app-forms .content-data.document-upload {
    height: 135px !important;
    min-height: 120px;
    padding: 0;
    border: 2px dashed var(--accent-color-1);
    border-radius: 1em;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: fit-content;
    min-width: 150px;
    overflow: hidden;
    background: #ffffff8a no-repeat center center url('../../Images/icon/svg-icon--dropzone.svg');
    z-index: 10;
    opacity: .75;
    cursor: pointer;
    transition: opacity .15s ease-in-out;
}

    .app-forms .content-data.document-upload:hover {
        opacity: 1;
    }

.dropzone .dz-preview .dz-remove {
    display: none;
}

.dropzone .dz-preview .dz-image {
    border-radius: 20px;
    overflow: hidden;
    width: 100px;
    height: 100px;
    position: relative;
    display: block;
    z-index: 10
}

.dropzone .dz-preview .dz-remove {
    display: none;
}

.dropzone .dz-preview .dz-image {
    border-radius: 20px;
    overflow: hidden;
    width: 100px;
    height: 100px;
    position: relative;
    display: block;
    z-index: 10
}

.dropzone .dz-message .dz-button {
    opacity: 0;
}
