html, body {
    /* overflow: hidden; */
    height: 100%;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-family: 'Barlow', Arial, sans-serif;
    /* font-family: 'Barlow Semi Condensed', Arial, sans-serif; */
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #3d4056;
    font-size: 14px; /* 16: Barlow Semi Condensed */
    padding: 0px;
    background: var(--bg-color);
}

body {
    padding: 0px; /* was 10px */
    overscroll-behavior: auto;
}


/* CHROMIUM SCROLLBAR */
::-webkit-scrollbar-track {
    height: 6px;
    width: 6px;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: rgba(236, 235, 241, 0.25);
}

::-webkit-scrollbar-thumb {
    background-color: rgba(198, 198, 212, 0.75);
    border-radius: 0px;
    transition: background-color .5s ease-in-out 0s;
}

    ::-webkit-scrollbar-thumb:hover {
        background-color: rgba(198, 198, 212, 0.9);
        border-radius: 0px;
    }



*, *:before, *:after {
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

::-moz-selection,
::selection {
    background: #8092dc;
    text-shadow: none;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
}

a > label {
    cursor: inherit;
    pointer-events: none;
}



/******** DOCUMENT:OVERLAY  ********/
.ui-overlay {
    position: fixed;
    width: auto;
    height: auto;
    top: 11px;
    left: 11px;
    right: 11px;
    bottom: 11px;
    z-index: 11000;
    cursor: default;
    background: rgb(246, 246, 247, .9) no-repeat center center;
}

body > .ui-overlay {
    display: block;
}

.ui-overlay > .overlay-caption {
    text-align: center;
    font-weight: 400;
    width: 75%;
    min-width: 250px;
    margin: 0 auto;
    color: rgb(90, 104, 160);
}

    .ui-overlay > .overlay-caption em {
        color: #3f4348;
        font-weight: 400;
        font-style: normal;
        display: block;
        margin-top: 5px;
    }

body > .ui-overlay > .overlay-caption em:before,
body > .ui-overlay > .overlay-caption em:after {
    content: '"';
}

/*  LOADER: LOADER-8 (https://projects.lukehaas.me/css-loaders/) */
.ui-overlay.loading > .overlay-caption:before {
    content: '';
    font-size: 10px;
    display: block;
    position: relative;
    margin: 0px auto;
    top: -20px;
    border-top: 0.5em solid rgba(110, 120, 160, 0.2);
    border-right: 0.5em solid rgba(110, 120, 160, 0.2);
    border-bottom: 0.5em solid rgba(110, 120, 160, 0.2);
    border-left: .5em solid rgb(110, 120, 160);
    -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;
}




/******** DOCUMENT:LAYOUT  ********/

body > .form {
    display: block;
    padding: 48px 0px 10px 0px;
    margin: 0;
    /* 
        background-color: rgba(246,244,248,.75);
        border: 1px solid rgb(210, 215, 226); 
        box-shadow: 0px 0px 20px 5px rgba(195, 193, 197, 0.15);
    */
    position: relative;
    height: 100%;
}

body > .master-page.menubar-on {
    padding-top: 95px;
}


.layout-outer {
    position: relative;
    display: block;
}

    .layout-outer > .layout-inner {
        position: relative;
        display: block;
        margin: 0px 10px;
        -ms-transition: width .25s, height .25s, transform .25s;
        -o-transition: width .25s, height .25s, transform .25s;
        -webkit-transition: width .25s, height .25s, transform .25s;
        transition: width .25s, height .25s, transform .25s;
    }

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
    .layout-outer > .layout-inner {
        margin: 0 10px;
    }
}
/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
    .layout-outer > .layout-inner {
    }
}

body > .form b {
    font-weight: 500;
}

/******** DOCUMENT:HEADER  ********/

.master-header,
.master-footer {
    position: absolute;
    font-size: 16px;
    background: transparent;
    border: 0px solid rgba(220,225,235,1);
    margin: 0;
    padding: 0;
    z-index: 100;
    width: 100%;
    /* overflow: hidden; */
    z-index: 100;
}


body > .form.master-page {
}

    body > .form.master-page.footer--on {
        padding-bottom: 100px;
        transition: padding 0.25 ease;
    }

.master-footer {
    height: 90px;
    border-top-width: 1px;
    bottom: 0;
    left: 0;
    display: none;
}

body > .form.master-page.footer--on .master-footer {
    display: block;
}


.master-footer .form-group.form-action {
    text-align: center;
    white-space: nowrap;
    padding: 5px 0;
}

.master-footer .button {
    position: relative;
    z-index: 1;
    max-height: 36px;
    height: 36px;
    line-height: 36px;
    margin: 0 auto;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 400;
    text-transform: uppercase;
    color: #58679c;
    display: inline-block;
}

    .master-footer .button > svg {
        height: 26px;
        max-width: 26px;
        position: absolute;
        left: 7px;
        top: 4px;
        fill: #58679c;
        transition: fill .25s;
    }

    .master-footer .button.action--appt-cancel > svg {
        fill: #b96789;
    }

    .master-footer .button.action--appt-save > svg {
        fill: #34b4ad;
    }

    .master-footer .button > label {
        cursor: pointer;
        display: inline-block;
        padding: 0 36px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        text-align: center;
        transition: fill .25s, text-shadow .25s;
    }

    .master-footer .button:hover {
        color: #6247c3;
        text-shadow: 2px 1px 1px rgba(143, 151, 181, .25);
    }

    .master-footer .button.action--appt-cancel:hover > svg {
        fill: #de2571;
    }

    .master-footer .button.action--appt-save:hover > svg {
        fill: #34B44A;
    }

    .master-footer .button.form-action.disabled,
    .master-footer .button.form-action.disabled:hover,
    .master-footer .button.form-action.disabled > label,
    .master-footer .button.form-action.disabled:hover > label {
        color: #8f97b5;
        cursor: default;
        text-shadow: none;
    }

        .master-footer .button.form-action.disabled > svg,
        .master-footer .button.form-action.disabled:hover > svg {
            fill: #7985b1;
        }


.master-header {
    height: 50px;
    border-bottom-width: 0px;
    top: 0;
    left: 0;
    /* box-shadow: 0px 3px 5px 0px rgba(195, 193, 197, 0.15); */
}

body > .master-header {
    position: static;
}

body > .form > .master-header {
}

body > .master-page.menubar-on > .master-header {
    height: 90px;
}


.master-header > header.layout-inner {
    display: block;
    margin-left: 40px;
}

.master-header header > .title {
    height: 50px;
}

    .master-header header > .title > h1 {
        font-weight: 300;
        font-size: 1.5rem;
        letter-spacing: -1px;
        color: #46589e;
        line-height: 34px;
        padding: .5rem 0 0 0;
        margin: 0;
        height: 100%;
        text-shadow: 1px 1px 1px rgba(143, 151, 181, .5);
        z-index: 10;
        max-width: calc(100% - 75px);
    }

        .master-header header > .title > h1 label {
            /*background-color:#f5f4f7;*/
            display: inline-block;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            max-width: 100%;
        }

        .master-header header > .title > h1 > svg {
            width: 22px;
            height: 40px;
            fill: #9aa2bf;
            position: absolute;
            left: -30px;
        }

    .master-header header > .title > h2 {
        display: none;
    }

.master-header header > .controls {
    position: absolute;
    max-height: 100%;
    height: 90%;
    right: 0;
    top: 0;
    z-index: 11;
}

    .master-header header > .controls > .control {
        height: 100%;
        padding-left: 32px;
        /* background:#f5f4f7; */
    }


    .master-header header > .controls a.action {
        display: inline-block;
        white-space: nowrap;
        cursor: pointer;
        font-size: .9rem;
        font-weight: 500;
        text-transform: uppercase;
        color: #58679c;
        text-decoration: none;
        line-height: 22px;
        position: relative;
        top: 1rem;
    }

        .master-header header > .controls a.action b {
            font-weight: 600;
            color: #9c5872;
        }

        .master-header header > .controls a.action:hover {
            color: #9c5872;
        }

        .master-header header > .controls a.action svg {
            position: absolute;
            left: -24px;
            top: -2px;
            height: 20px;
            max-width: 24px;
            position: absolute;
            fill: #58679c;
            transition: fill .25s;
        }

    .master-header header > .controls .action.dropdown {
        position: relative;
        display: inline-block;
        z-index: 1000;
        white-space: nowrap;
        cursor: pointer;
        font-size: .9rem;
        font-weight: 500;
        text-transform: uppercase;
        color: #58679c;
        text-decoration: none;
        line-height: 22px;
        position: relative;
        top: 1.1rem;
        margin-left: 1rem;
        vertical-align: top;
    }

body.page--video-client .master-header header > .controls .user-ctrl {
    display: none !important;
}

.master-header header > .controls .action.dropdown:first-child {
    margin-left: 0;
}

.master-header header > .controls .action.dropdown > .dropdown-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 90px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1001;
    right: 0px;
    top: 24px;
    text-align: left;
    white-space: nowrap;
    padding: 2px;
    border: 1px solid #bdc6da;
    transition: all .25s ease-in-out;
}

    .master-header header > .controls .action.dropdown > .dropdown-content:after,
    .master-header header > .controls .action.dropdown > .dropdown-content:before {
        bottom: 100%;
        right: 8px;
        border: solid transparent;
        content: "";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
    }

    .master-header header > .controls .action.dropdown > .dropdown-content:after {
        border-color: rgba(249, 249, 249, 0);
        border-bottom-color: #f9f9f9;
        border-width: 5px;
        margin-left: -5px;
    }

    .master-header header > .controls .action.dropdown > .dropdown-content:before {
        border-color: rgba(189, 198, 218, 0);
        border-bottom-color: #bdc6da;
        border-width: 6px;
        margin-left: 6px;
        right: 7px;
    }

    /* Links inside the dropdown */
    .master-header header > .controls .action.dropdown > .dropdown-content b,
    .master-header header > .controls .action.dropdown > .dropdown-content a {
        color: #58679c;
        padding: .25rem 10px .25rem 10px;
        text-decoration: none;
        display: block;
        white-space: nowrap;
        text-align: right;
        margin: 1px;
        background-position: 5px;
        background-repeat: no-repeat;
        background-size: auto 16px;
    }

    .master-header header > .controls .action.dropdown > .dropdown-content b {
        color: #000;
        border-bottom: 1px solid #bdc6da;
    }

.master-header header > .controls .language-switch > .dropdown-content a {
    padding-left: 28px !important;
    color: black;
    text-align: left;
}

/* Change color of dropdown links on hover */
.master-header header > .controls .action.dropdown > .dropdown-content a:hover,
.master-header header > .controls .action.dropdown > .dropdown-content a.selected {
    background-color: #e5e8ef;
    color: #000;
}

/* Show the dropdown menu on hover */
.master-header header > .controls .action.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
}

.master-header header > .controls .action.dropdown .dropdown-value {
    display: inline-block;
    background-position: left;
    background-repeat: no-repeat;
    background-size: auto 16px;
    min-width: 22px;
    min-height: 22px;
}

    .master-header header > .controls .action.dropdown .dropdown-value > svg {
        width: 20px;
        height: 20px;
        display: inline-block;
        fill: #58679c;
        transition: fill .25s;
        display: inline-block;
        vertical-align: bottom;
        position: relative;
        top: -1px;
        left: -2px;
    }

    .master-header header > .controls .action.dropdown .dropdown-value > label {
        display: inline-block;
        white-space: nowrap;
        height: 100%;
        overflow-x: hidden;
        text-overflow: ellipsis;
        max-width: 100px;
        vertical-align: bottom;
        cursor: inherit;
    }

.master-header header > .controls .language-switch .dropdown-value {
    padding-left: 20px;
}


.master-header header > .controls .action.dropdown:hover .dropdown-value {
    color: #000;
}

.master-header header > .controls .language-switch [data-lang="ro"] {
    background-image: url('../Images/flags/flag-circle-ro.svg');
}

.master-header header > .controls .language-switch [data-lang="en"] {
    background-image: url('../Images/flags/flag-circle-en.svg');
}

.master-header header > .controls .language-switch [data-lang="si"] {
    background-image: url('../Images/flags/flag-circle-si.svg');
}

.master-header header > .controls .language-switch [data-lang="rs"] {
    background-image: url('../Images/flags/flag-circle-rs.svg');
}

.master-header header > .controls .language-switch [data-lang="vi"] {
    background-image: url('../Images/flags/flag-circle-vi.svg');
}

.master-header header > .controls .language-switch [data-lang="fr"] {
    background-image: url('../Images/flags/flag-circle-fr.svg');
}

.master-header header > .controls .language-switch [data-lang="bg"] {
    background-image: url('../Images/flags/flag-circle-bg.svg');
}

.master-header header > .controls .language-switch [data-lang="es"] {
    background-image: url('../Images/flags/flag-circle-es.svg');
}




@media only screen and (max-width: 450px) {
    .master-header header > .controls a.action > span > b {
        display: none;
    }

    .master-header header > .controls .action.dropdown .dropdown-value > label {
        display: none;
    }
}




.master-header header > .controls > .titles {
    top: 10px;
    right: 0px;
    height: 52px;
    position: relative;
    background: #f5f4f7;
}

    .master-header header > .controls > .titles h2 {
        position: relative;
        font-weight: 300;
        right: 75px;
        margin: 0;
        padding: 0;
        white-space: nowrap;
        text-shadow: 1px 1px 1px rgba(143, 151, 181, .5);
        text-align: right;
    }

        .master-header header > .controls > .titles h2.title-campaign {
            padding-top: 3px;
            font-size: 23px;
            line-height: 25px;
            color: #539bd2;
            letter-spacing: -1px;
            font-size: 20px;
            padding-top: 5px;
        }

        .master-header header > .controls > .titles h2.title-contact {
            font-size: 18px;
            line-height: 25px;
            padding-top: 2px;
            color: #54639a;
            font-weight: 400;
            padding-top: 0px;
            margin-top: -2px;
            color: #846ab1;
        }

    .master-header header > .controls > .titles .icon.icon-clndr {
        display: block;
        width: 55px;
        height: 55px;
        position: absolute;
        right: 0px;
        top: 0px;
        cursor: default;
    }

        .master-header header > .controls > .titles .icon.icon-clndr svg {
            z-index: 0;
            opacity: .75;
        }

        .master-header header > .controls > .titles .icon.icon-clndr .clndr-day,
        .master-header header > .controls > .titles .icon.icon-clndr .clndr-month {
            display: block;
            color: rgba(255, 255, 255, .75);
            z-index: 1;
            font-weight: 400;
            text-align: center;
            position: absolute;
            width: 100%;
            text-shadow: 1px 1px 1px rgba(87, 132, 167, .5);
        }

        .master-header header > .controls > .titles .icon.icon-clndr .clndr-day {
            font-size: 30px;
            letter-spacing: -1px;
        }

        .master-header header > .controls > .titles .icon.icon-clndr .clndr-month {
            font-size: 12px;
            text-transform: uppercase;
            bottom: 2px;
            display: none;
        }

        .master-header header > .controls > .titles .icon.icon-clndr .clndr-day {
            font-size: 22px;
            letter-spacing: -1px;
            color: #9a83c3;
            top: 14px;
            font-weight: 400;
            text-shadow: none;
        }





.master-header > nav.header-menu {
    display: block;
    position: relative;
    bottom: 1px;
    margin: 0 -10px;
    height: 35px;
    color: #787888;
    border-bottom: 1px solid rgba(220,225,235,1);
}

    .master-header > nav.header-menu ul {
        display: block;
        margin: 0 20px;
        padding: 0;
        height: 35px;
        line-height: 32px;
        white-space: nowrap;
        display: flex;
        flex-flow: row nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        list-style: none;
        align-items: flex-start;
    }

        .master-header > nav.header-menu ul > li {
            display: inline-block;
            position: relative;
            text-align: left;
            flex-grow: 0;
            text-overflow: ellipsis;
        }

            .master-header > nav.header-menu ul > li:first-child {
                text-align: left;
                margin-left: 10px;
            }

            .master-header > nav.header-menu ul > li > a {
                display: inline-block;
                position: relative;
                text-transform: uppercase;
                cursor: pointer;
                color: inherit;
                text-decoration: none;
                height: 100%;
            }

            .master-header > nav.header-menu ul > li > a {
                text-align: left;
                display: inline-block;
                padding: 0px 20px;
                font-size: 1rem;
                font-weight: 500;
            }

            .master-header > nav.header-menu ul > li.selected,
            .master-header > nav.header-menu ul > li:hover,
            .master-header > nav.header-menu ul > li.selected > a,
            .master-header > nav.header-menu ul > li:hover > a {
                color: #58679c;
            }

                .master-header > nav.header-menu ul > li.selected:after {
                    content: "";
                    display: block;
                    position: absolute;
                    bottom: 0px;
                    height: 1px;
                    width: 100%;
                    border-bottom: 1px solid #5b75dd;
                }

            .master-header > nav.header-menu ul > li.disabled > a,
            .master-header > nav.header-menu ul > li.disabled > a:hover {
                color: #aaaabb;
                cursor: default;
            }


/***** MASTER-SECTION *****/

body > .form > .master-section {
    position: relative;
    height: 100%;
    opacity: 1;
    transition: opacity .15s ease-in-out 0s;
}


/***** FORM *****/

.content-data.form {
    max-width: 500px;
    position: relative;
    max-width: 500px;
    margin: 20px auto 0;
}

.modal_dialog .dialog_body .content-data.form {
    margin: 0 1.25em;
}

.content-data.form .app-data--partyassets {
    margin-top: -12px;
}

.content-data.form .app-data--location {
    padding-bottom: 12px;
}

.content-data.form .form-group {
    display: block;
    margin: 0;
    padding: 0 0 12px 0;
    border-width: 0;
}

    .content-data.form .form-group.form-action {
        text-align: center;
    }


    .content-data.form .form-group > h5 {
        color: #142c80;
        font-size: 1.25rem;
        font-weight: 500;
        text-transform: uppercase;
        margin: .5rem 0 .75rem 0;
        padding: 0 0 .25rem 0;
        border-bottom: 2px solid #bdc6da;
        position: relative;
    }

    .content-data.form .form-group > h6 {
        color: #6f86d4;
        font-size: 1rem;
        font-weight: 500;
        text-transform: uppercase;
        margin: 0 0 .75rem 0;
        padding: 0 0 2px 0;
        border-bottom: 1px solid #bdc6da;
        position: relative;
    }

        .content-data.form .form-group > h5 > a,
        .content-data.form .form-group > h6 > a {
            display: inline-block;
            background: #f3f4fb;
            padding: 0.2em 1em;
            font-size: .9em;
            cursor: pointer;
        }

            .content-data.form .form-group > h5 > a:hover,
            .content-data.form .form-group > h6 > a:hover {
                color: #000;
            }

        .content-data.form .form-group > h5 > .position-right,
        .content-data.form .form-group > h6 > .position-right {
            float: right;
        }

.content-data.form .form-item {
    display: block;
    margin: 0;
    position: relative;
    border-width: 0;
    padding: 6px 0 3px;
    margin-bottom: 6px;
}

    .content-data.form .form-item.disabled {
        opacity: .7;
    }

.content-data.form .app-data--partyassets .form-item,
.content-data.form .app-data--location .form-item {
    padding-bottom: 0;
    padding-top: 0;
    margin-bottom: 0;
}

.content-data.form .form-item.no-label {
    padding-top: 0;
}

.content-data.form .form-item .item-label {
    position: relative;
    display: block;
    text-transform: uppercase;
    line-height: 14px;
    letter-spacing: 0px;
    white-space: nowrap;
    color: #000;
    padding: 0 0 2px;
    font-weight: 400;
}

    .content-data.form .form-item .item-label.inline,
    .content-data.form .form-item .data.inline {
        display: inline-block;
        padding-right: .5em;
    }

.content-data.form .form-item .data.inline {
    padding-left: .5em;
}

    .content-data.form .form-item .data.inline[type="checkbox"],
    .content-data.form .form-item .data.inline[type="radio"] {
        margin-right: .25em;
    }

.content-data.form .form-item .item-label > b {
    font-size: 14px;
}

.content-data.form .form-item .item-label:before {
    content: '';
    position: absolute;
    width: 13px;
    height: 13px;
    background: no-repeat left center url('../Images/icon/icon--bullet-grey.png');
    left: -18px;
}

.content-data.form .form-item .item-label.no-decoration:before {
    content: none;
}

.content-data.form .form-item .item-data {
    position: relative;
    display: block;
    margin-bottom: 2px;
}



    .content-data.form .form-item .item-data input[type="text"],
    .content-data.form .form-item .item-data input[type="number"],
    .content-data.form .form-item .item-data input[type="password"],
    .content-data.form .form-item .item-data input[type="date"],
    .content-data.form .form-item .item-data > div.data,
    .content-data.form .form-item .item-data select.data,
    .content-data.form .form-item .item-data textarea.data {
        display: block;
        width: 100%;
        font-size: 1.1rem;
        line-height: 150%;
        border: 1px solid transparent;
        border-bottom-width: 1px;
        border-bottom-color: #bdc6da;
        background: transparent;
        padding: 5px 0;
        margin: 0;
        color: #293a63;
        transition: background-color .25s ease-in-out 0s;
        outline: none !important;
        outline-offset: 0px;
    }

    .content-data.form .form-item .item-data textarea.data {
        min-height: 112px;
        border-width: 1px;
        padding: 8px;
        line-height: 20px;
        font-size: 13px;
        background-color: rgba(240,242,249,.75);
        margin-top: 4px;
    }

    .content-data.form .form-item .item-data select.data optgroup {
        color: #434f6c;
        font-weight: 500;
        text-transform: uppercase;
        line-height: 2rem;
    }

    .content-data.form .form-item .item-data select.data option {
        font-size: 1rem;
        text-transform: none;
        text-indent: 15px;
        color: #434f6c;
    }

.content-data.form .form-item.error .item-data input[type="text"],
.content-data.form .form-item.error .item-data input[type="number"],
.content-data.form .form-item.error .item-data input[type="password"],
.content-data.form .form-item.error .item-data input[type="date"],
.content-data.form .form-item.error .item-data > div.data,
.content-data.form .form-item.error .item-data select.data,
.content-data.form .form-item.error .item-data textarea.data,
.content-data.form .form-item.error .item-data .chosen-container-multi .chosen-choices {
    border-bottom-color: #9e0606;
}


.content-data.form .form-result {
    display: block;
    margin: 0;
    position: relative;
    border: 1px solid #d2d7e2;
    padding: 5px 5px 5px 15px;
    margin: 5px 0 5px 0;
}

    .content-data.form .form-result:after {
        content: '';
        display: block;
        position: absolute;
        width: 0;
        height: 0;
        bottom: -8px;
        left: calc(50% - 4px);
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid #d2d7e2;
    }

    .content-data.form .form-result.nok,
    .content-data.form .form-result.error {
        color: #980000;
        background: #fff5f7;
        border-color: #ffd1d9;
    }

        .content-data.form .form-result.nok:after,
        .content-data.form .form-result.error:after {
            border-top-color: #ffd1d9;
        }


.content-data.form .form-item .item-data .chosen-container-single .chosen-single {
    border-radius: 0;
    font-size: 1rem;
    line-height: 150%;
    border: 1px solid transparent;
    border-bottom-width: 1px;
    border-bottom-color: #bdc6da;
    background: transparent;
    padding: 0px 0 5px 0 !important;
    margin: 0;
    color: #293a63;
    transition: background-color .25s ease-in-out 0s;
    outline: none !important;
    outline-offset: 0px;
    box-shadow: none;
    height: 32px;
}

    .content-data.form .form-item .item-data .chosen-container-single .chosen-single > span {
        margin-top: 8px;
        margin-left: 5px;
    }

    .content-data.form .form-item .item-data .chosen-container-single .chosen-single > div {
        top: 8px;
    }

.content-data.form .form-item .item-data .chosen-container-active.chosen-with-drop .chosen-single {
    border-color: #bdc6da;
    border-bottom-color: transparent;
}

.content-data.form .form-item .item-data .chosen-container-single .chosen-search input[type="text"] {
    line-height: 120% !important;
    border: 1px solid #d5dcec;
    border-radius: 5px;
    padding: 4px 20px 4px 8px;
    font-size: 12px;
    color: #576bbb;
    background: transparent url('../Images/dialog/ico22-search.png') no-repeat right 0px;
}

.content-data.form .form-item .item-data .chosen-container .chosen-drop {
    border-radius: 0;
    border-color: #bdc6da;
    -webkit-box-shadow: 0 4px 5px rgba(143, 151, 181, .25);
    box-shadow: 0 4px 5px rgba(143, 151, 181, .25);
}

.content-data.form .form-item .item-data .chosen-container .chosen-results li.group-result {
    display: list-item;
    font-weight: 500;
    font-size: 1rem;
    cursor: default;
    color: #576bbb;
}

.content-data.form .form-item .item-data .chosen-container .chosen-results li.highlighted {
    background: #7f92de;
}

.content-data.form .form-item .item-data .chosen-container .chosen-results li.group-option.rating-1:after,
.content-data.form .form-item .item-data .chosen-container .chosen-results li.group-option.rating-2:after,
.content-data.form .form-item .item-data .chosen-container .chosen-results li.group-option.rating-3:after,
.content-data.form .form-item .item-data .chosen-container .chosen-results li.group-option.rating-4:after,
.content-data.form .form-item .item-data .chosen-container .chosen-results li.group-option.rating-5:after {
    content: '';
    position: absolute;
    right: 2px;
    color: #ffab47;
}

.content-data.form .form-item .item-data .chosen-container .chosen-results li.group-option.rating-1:after {
    content: '\2605';
}

.content-data.form .form-item .item-data .chosen-container .chosen-results li.group-option.rating-2:after {
    content: '\2605\2605';
}

.content-data.form .form-item .item-data .chosen-container .chosen-results li.group-option.rating-3:after {
    content: '\2605\2605\2605';
}

.content-data.form .form-item .item-data .chosen-container .chosen-results li.group-option.rating-4:after {
    content: '\2605\2605\2605\2605';
}

.content-data.form .form-item .item-data .chosen-container .chosen-results li.group-option.rating-5:after {
    content: '\2605\2605\2605\2605\2605';
}





.content-data.form input:-webkit-autofill,
.content-data.form textarea:-webkit-autofill,
.content-data.form select:-webkit-autofill {
    background-color: rgba(218, 255, 244, .75) !important;
    background-image: none;
    color: #434f6c !important;
}

.content-data.form .form-item .item-data input.data:focus,
.content-data.form .form-item .item-data select.data:focus,
.content-data.form .form-item .item-data textarea.data:focus {
    border-bottom-color: #576bbb;
    background-color: rgba(240, 242, 249, .75);
    outline: none;
}

.content-data.form .form-item .item-data select.data:focus {
    border-color: rgb(237, 239, 249);
    border-bottom-color: rgba(87, 107, 187,1);
    background-color: rgba(240, 242, 249, .75);
    outline: none;
}

.content-data.form .form-item .item-data input::placeholder,
.content-data.form .form-item .item-data select.data.placeholder,
.content-data.form .form-item .item-data select.data option.placeholder {
    font-style: italic;
    color: #9ca3b3;
}

.content-data.form .form-item .item-data select.data option:not(.placeholder) {
    color: #434f6c;
    font-style: normal;
}

.content-data.form .button {
    min-width: 100%;
}

    .content-data.form .button > label {
        cursor: inherit;
        pointer-events: none;
    }

    .content-data.form .button.form-action:hover {
        background-image: linear-gradient(135deg, rgba(222, 228, 245, 1) 75%, rgba(193, 204, 236, 1) 75%);
        border-color: rgba(188, 194, 234, 1);
    }

    .content-data.form .button.form-action.red {
        border: 2px solid #f9758f;
        text-align: center;
        font-size: 14px;
        font-weight: bold;
        letter-spacing: 1px;
        font-family: Lato;
        background-image: linear-gradient(135deg, #fba1b4 84%,#fd879e 84%,#f9758f 100%);
        transition: border-color 0.1s;
        color: #ffffff;
    }

    .content-data.form .button.form-action {
        display: block;
        padding: .75rem;
        text-transform: uppercase;
        border: 1px solid rgba(188, 194, 234, .5);
        border-radius: 24px;
        text-align: center;
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 1px;
        white-space: nowrap;
        cursor: pointer;
        background-image: linear-gradient(135deg, rgba(222, 228, 245, .5) 75%, rgba(193, 204, 236, .5) 75%);
        transition: background-image 0.25s, border-color 0.1s;
        color: #58679c;
    }

    .content-data.form .button.form-action {
        display: inline-block;
        padding: 0.25em 1.5em;
        border: 2px solid #d6ddec;
        background-color: #fbfcfd;
        background: linear-gradient(to bottom, #fbfcfd 0%,#f5f4f7 100%);
        border-radius: 24px;
        line-height: 24px;
        margin: 0 auto 1em;
        cursor: pointer;
        font-size: 1.1rem;
        font-weight: 500;
        text-transform: uppercase;
        color: #58679c;
        transition: all .15s ease-in-out 0s;
        outline: none;
        min-width: 50%;
    }

        .content-data.form .button.form-action:hover {
            background-color: #fbfcfd;
            background: linear-gradient(to bottom, #fbfcfd 0%,#f5f4f7 100%);
            box-shadow: 0px 1px 5px 0px rgba(150, 145, 177, 0.25);
            border-color: #c7cfe0;
        }

        .content-data.form .button.form-action.disabled:hover {
            box-shadow: none;
            border-color: #dee3ef;
            color: #a2acd0;
            cursor: default;
        }





/* VIEW PANEL */

.master-section > .section-content,
.master-section > .section-content > .content-panel {
    position: relative;
    height: 100%;
}

    .master-section > .section-content > .view.content-panel {
        background: #fbfcfd;
        border: 1px solid rgba(221, 220, 235,.75);
        box-shadow: 0px 0px 5px rgba(195, 193, 197, .25);
        font-size: 15px;
    }


        .master-section > .section-content > .view.content-panel > .panel-header {
            position: absolute;
            top: 0;
            width: 100%;
            height: 40px;
            z-index: 20;
            background-color: #fbfcfd;
        }


            .master-section > .section-content > .view.content-panel > .panel-header:after {
                content: '';
                display: block;
                border-top: 1px solid #bdc6da;
                margin: 8px 20px 0 25px;
                position: relative;
                height: 0;
                top: -1px;
            }

        .master-section > .section-content > .view.content-panel ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
            background-color: rgba(236, 235, 241, 0.5);
        }

        .master-section > .section-content > .view.content-panel ::-webkit-scrollbar-thumb {
            background-color: rgba(198, 198, 212, 0.5);
            border-radius: 0px;
            transition: background-color .5s ease-in-out 0s;
        }

        .master-section > .section-content > .view.content-panel > .panel-body {
            position: relative;
            height: 100%;
            overflow-x: visible;
            overflow-y: auto;
            padding: 40px 20px 0 25px;
            z-index: 10;
        }

body.page--video-host .master-section > .section-content > .view.content-panel > .video-container {
    padding-bottom: 20px;
}

.master-section > .section-content > .view--no-header.content-panel > .panel-body {
    padding: 5px 0 0 5px;
}


.master-section > .section-content > .view.view-side--left {
    margin-right: 360px;
    transition: margin 0.25s ease, width 0.2s ease-in-out;
}

.master-section > .section-content > .view.view-side--right {
    position: absolute;
    right: 0;
    top: 0;
    /*padding-top:40px;*/
    width: 350px;
    transition: width 0.2s ease, opacity 0.1s ease-in-out 0.05s;
}



@media only screen and (min-width: 601px) {

    /** fluid section layout **/
    .master-section > .section-content.split-fluid {
        display: flex;
        flex-direction: row;
    }

        .master-section > .section-content.split-fluid > .view.view-side--left {
            flex-grow: 1;
            width: 60%;
            min-width: 400px;
            margin-right: 10px;
        }

        .master-section > .section-content.split-fluid > .view.view-side--right {
            flex-grow: 0;
            width: 40%;
            min-width: 350px;
            max-width: 550px;
            position: relative;
            height: 100%;
        }
}

@media only screen and (max-width: 600px) {
    .master-section > .section-content > .view.view-side--right {
        width: 0;
        opacity: 0;
        overflow: hidden;
    }

    .master-section > .section-content > .view.view-side--left {
        width: 100%;
        margin-right: 0;
    }
}

.master-section > .section-content > .view .panel-body .content-data.placeholder {
    height: 100%;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    container-name: auth-placeholder;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .master-section > .section-content > .view .panel-body .content-data.placeholder img.placeholder {
        max-width: 90%;
        max-height: 75%;
        min-width: 300px;
        width: 75%;
        display: block;
        opacity: 0;
        animation: fadeIn 3s forwards;
    }

    .master-section > .section-content > .view .panel-body .content-data.placeholder h4 {
        display: block;
        text-align: right;
        font-size: max(min(3cqw, 1.5em), 0.5em);
        font-weight: 500;
        text-transform: uppercase;
        color: #58679c;
        padding: 0px 20px 0 25px;
        margin: -1.5em 0 0 0;
        white-space: nowrap;
        max-width: 90%;
        overflow: hidden;
        text-overflow: ellipsis;
    }



.master-section > .section-content > .view.view-side--right > .panel-body {
}

.master-section > .section-content > .view > .panel-header > h2 {
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #58679c;
    padding: 8px 20px 0 25px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .master-section > .section-content > .view > .panel-header > h2 > a {
        display: inline-block;
        margin-left: 5px;
        color: #3e486b;
        cursor: pointer;
    }

.master-section > .section-content .content-data.app-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #bdc6da;
    position: relative;
    font-size: 1rem;
    color: #58679c;
}

    .master-section > .section-content .content-data.app-info b {
        font-weight: 500;
        color: #49578a;
    }

    .master-section > .section-content .content-data.app-info::before {
        content: '//';
        font-size: 1rem;
        position: absolute;
        display: block;
        text-align: center;
        width: 100%;
        color: #bdc6da;
        top: -.75rem;
        left: 0;
    }


.master-section > .section-content > .view > .panel-header > .content-context {
    font-size: .9rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #6a6d77;
    padding: 11px 12px 0 0;
    margin: 0;
    line-height: 1.6rem;
    position: absolute;
    right: 0;
    top: 0;
    white-space: nowrap;
}

.master-section > .section-content .panel-header .content-context a {
    color: #c15190;
    cursor: pointer;
    display: inline-block;
    white-space: nowrap;
    min-height: 1.5rem;
    padding: 0 5px;
}

    .master-section > .section-content .panel-header .content-context a:hover {
        color: #d63535;
        text-shadow: 1px 1px 1px rgba(143, 151, 181, .25);
    }

    .master-section > .section-content .panel-header .content-context a.action--context {
        width: 22px;
        height: 22px;
        padding: 0;
        margin-right: 3px;
        fill: #909fc1;
    }

        .master-section > .section-content .panel-header .content-context a.action--context:hover {
            fill: #d63535;
        }

    .master-section > .section-content .panel-header .content-context a.disabled,
    .master-section > .section-content .panel-header .content-context a.disabled:hover {
        color: #737b8a;
        text-shadow: none;
        cursor: default;
        fill: #909fc1;
    }



/*** VIEW-SIDE RIGHT ***/
.view.view-side--right .panel-menu {
    position: absolute;
    width: 100%;
    height: 42px;
    top: 0;
    left: 0;
    padding-right: 6px;
    border-bottom: 1px solid #dbdee6;
    z-index: 20;
    box-shadow: 0px 2px 2px 0px rgba(195, 193, 197, 0.25);
}

    .view.view-side--right .panel-menu .menu-item {
        display: inline-block;
        height: 42px;
        text-transform: uppercase;
        text-align: center;
        line-height: 24px;
        font-size: 1.1rem;
        font-weight: 400;
        padding: 10px 20px 0;
        overflow: hidden;
        cursor: pointer;
        color: #58679c;
        transition: all .2s ease-in-out;
    }

        .view.view-side--right .panel-menu .menu-item:hover {
            /*font-weight:500;*/
            color: #000;
        }

        .view.view-side--right .panel-menu .menu-item.selected {
            border-bottom: 1px solid #5b75dd;
            color: #000;
        }

.view.view-side--right .menu-section {
    position: relative;
    height: calc(100% - 42px);
    margin-top: 42px;
    padding-bottom: 56px;
    z-index: 10;
    overflow: auto;
}

    .view.view-side--right .menu-section .panel-body {
        height: 100%;
        overflow: auto;
    }

        .view.view-side--right .menu-section .panel-body .session-logger {
        }

            .view.view-side--right .menu-section .panel-body .session-logger > code {
                padding: 2px 10px;
                line-height: 13px;
                display: block;
                width: auto;
                margin-top: 2px;
                white-space: normal;
            }


        .view.view-side--right .menu-section .panel-body .content-data.form {
            margin: 1em 2em;
        }


.view.view-side--right .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;
}

    .view.view-side--right .panel-footer .button {
        display: inline-block;
        padding: 0.25em 1.5em;
        border: 2px solid #d6ddec;
        background-color: #fbfcfd;
        background: linear-gradient(to bottom, #fbfcfd 0%,#f5f4f7 100%);
        border-radius: 24px;
        line-height: 24px;
        margin: 0 auto 1em;
        cursor: pointer;
        font-size: 1.1rem;
        font-weight: 500;
        text-transform: uppercase;
        color: #58679c;
        transition: all .15s ease-in-out 0s;
        outline: none;
    }


/*** ERROR ***/
ul.data-group,
ul.data-group li.group-title,
ul.data-group li.group-items,
ul.data-group ul.group-nodes,
ul.data-group li.group-item {
    display: block;
    list-style: none;
    margin: 0 0 0 0px;
    padding: 0;
}

ul.data-group {
    margin: 0 0 .15em 0;
}

    ul.data-group.root {
        margin: 1em;
        overflow-x:;
    }

    ul.data-group,
    ul.data-group ul {
        margin-left: 16px;
        position: relative;
    }

        ul.data-group > li.group-title {
            font-weight: 500;
            position: relative;
        }

            ul.data-group > li.group-title:before {
                position: absolute;
                left: -1.5em;
                top: 3px;
                font-size: 10px;
                content: '\2304';
                content: '\25BC';
                color: #bdc6da;
            }

        ul.data-group.collapsed > li.group-title:before {
            content: '\2303';
            content: '\25B2';
        }

        ul.data-group.collapsed > li.group-items {
            display: none;
        }

ul.group-nodes > li.group-item {
    display: flex;
    flex-direction: row;
    margin: 0 0 .25em 16px;
}

ul.group-nodes > ul.data-group {
}

ul.data-group > li.group-item {
    display: flex;
    flex-direction: row;
    margin: 0 0 .25em 0;
}

ul.data-group li.group-item > label {
    flex-grow: 0;
    white-space: nowrap;
    margin-right: 10px;
    color: #58679c;
    line-height: 1.25em;
    display: inline-block;
}

    ul.data-group li.group-item > label:after {
        content: ':';
    }

ul.data-group li.group-item > .item-value {
    flex-grow: 1;
    background: var(--bg-color);
    padding: 0 .5em;
    border-radius: 3px;
    user-select: all;
    display: inline-block;
    line-height: 1.25em;
    text-overflow: ellipsis;
}


    ul.data-group li.group-item > .item-value:focus {
        animation: select 100ms step-end forwards;
        background: #ffefba;
    }

    ul.data-group li.group-item > .item-value::selection {
        background: #ffefba;
        padding: 0;
        margin: 0;
    }

@keyframes select {
    to {
        -webkit-user-select: text;
        user-select: text;
    }
}





/*** ERROR ***/

.master-section > .section-content .page-error > .info {
    padding: 1em 1em;
    font-size: 1.1em;
}

.master-section > .section-content .page-error h3 {
    font-weight: 300;
    font-size: 2.5em;
    line-height: 1em;
    color: #2664d5;
    padding-top: 1em;
    margin: 0 .25em 0 0;
    vertical-align: baseline;
}

.master-section > .section-content .page-error .error-details {
    font-size: 1.25em;
    margin: .75em .25em 1.5em;
    font-weight: normal;
    color: #000;
}

.master-section > .section-content .page-error .error-links {
    margin: 1em .25em 0;
}

.master-section > .section-content .page-error h3 > .error-code {
    font-size: 1.5em;
}

.master-section > .section-content .page-error h3 > .error-text {
    color: #000;
}

.master-section > .section-content .page-error code {
    line-height: 1em;
    font-size: .8rem;
}
