/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* ==================================================
    =SASS CSS
===================================================== */
/* ==================================================
    =Styles
===================================================== */

body {
    font: 100% "roboto-regular", sans-serif;
    color: var(--K1);
}
/* ==================================================
    =Mixins
===================================================== */
/*dropkick mixins*/
/* ==================================================
    =General classes for usage
===================================================== */

.left {
    text-align: left !important;
}

.center {
    text-align: center !important;
}

.right {
    text-align: right !important;
}

.alignleft {
    float: left;
}

.aligncenter {
    margin: 0 auto;
}

.alignright {
    float: right;
}

.show {
    display: block !important;
}

.hide {
    display: none !important;
}

.cf:before,
.cf:after,
.container:before,
.container:after,
.widget:before,
.widget:after,
form ol > li:before,
form ol > li:after {
    content: "\0020";
    display: block;
    height: 0;
    visibility: hidden;
}

.cf:after, .clear,
.container:after,
.widget:after,
form ol > li:after {
    clear: both;
}

.cf,
.container,
.widget,
form ol > li {
    zoom: 1;
}
/* Defined in html element when using rem unit */

html {
    scroll-behavior: smooth; /*Ovo ce biti aplicirano preko de2 css fajla sa * */
}
/* apply a natural box layout model to all elements */
/* http://paulirish.com/2012/box-sizing-border-box-ftw/ */
/* Buggy in IE7, avoid if developing for IE7 */

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
/* User generated  */

.user-content ul {
    list-style: disc;
    margin-left: 24px;
}

    .user-content ul ul {
        margin-left: 20px;
        margin-bottom: 0;
    }

    .user-content ul li {
        margin-bottom: 0;
    }

.user-content ol {
    margin-left: 24px;
    list-style: decimal;
}

    .user-content ol ol {
        list-style: lower-latin;
        margin-bottom: 0;
    }

.user-content ul ul,
.view ol ol {
    margin-bottom: 0;
}

.user-content li li {
    font-size: 1em;
}
/* Table */

table {
    width: 100%;
    border: none;
    border-collapse: collapse;
    border-spacing: 0;
}

    table td,
    table th {
        vertical-align: middle;
    }
/* Normal form */

.normal-form input[type="text"],
.normal-form input[type="password"],
.normal-form input[type="datetime"],
.normal-form input[type="datetime-local"],
.normal-form input[type="date"],
.normal-form input[type="month"],
.normal-form input[type="time"],
.normal-form input[type="week"],
.normal-form input[type="number"],
.normal-form input[type="email"],
.normal-form input[type="url"],
.normal-form input[type="search"],
.normal-form input[type="tel"],
.normal-form input[type="color"],
.normal-form textarea,
.normal-form select {
    -webkit-appearance: none;
}

.normal-form textarea {
    overflow: auto;
}

    .normal-form input[type="text"]:focus,
    .normal-form input[type="password"]:focus,
    .normal-form input[type="datetime"]:focus,
    .normal-form input[type="datetime-local"]:focus,
    .normal-form input[type="date"]:focus,
    .normal-form input[type="month"]:focus,
    .normal-form input[type="time"]:focus,
    .normal-form input[type="week"]:focus,
    .normal-form input[type="number"]:focus,
    .normal-form input[type="email"]:focus,
    .normal-form input[type="url"]:focus,
    .normal-form input[type="search"]:focus,
    .normal-form input[type="tel"]:focus,
    .normal-form input[type="color"]:focus,
    .normal-form textarea:focus,
    .normal-form select:focus {
        outline: none;
    }
/* Button styling */

button {
    display: inline-block;
    padding: 10px 20px;
    margin: 0;
    /*font: bold 14px/20px "geomanist", sans-serif;*/
    color: var(--BG);
    border: none;
    text-align: center;
    overflow: visible;
    cursor: pointer;
}
/* ==================================================
    =Typography
===================================================== */

h1,
h2,
h3,
h4,
h5,
h6,
p,
table,
.user-content ul,
.user-content ol,
.user-content dl {
    margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 10px;
}

h1 {
    font: 400 32px/1.3 "Roboto", sans-serif;
}

h2 {
    font: 400 24px/1.2 "Roboto", sans-serif;
}

h3 {
    font: 400 22px/1.2 "Roboto", sans-serif;
}

h4 {
    font: 400 20px/1.2 "Roboto", sans-serif;
}

h5 {
    font: 400 16px/1.2 "Roboto", sans-serif;
}

h6 {
    font: 400 14px/1.2 "Roboto", sans-serif;
}

a {
    text-decoration: none;
}
/* Styling */

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

sup {
    vertical-align: text-top;
    font-size: 75%;
}

sub {
    vertical-align: bottom;
    font-size: 75%;
}

blockquote {
    font-style: italic;
}
/* User generated  */

.user-content ul {
    list-style: disc;
    margin-left: 24px;
}

    .user-content ul ul {
        margin-left: 20px;
        margin-bottom: 0;
    }

    .user-content ul li {
        margin-bottom: 0;
    }

.user-content ol {
    margin-left: 24px;
    list-style: decimal;
}

    .user-content ol ol {
        list-style: lower-latin;
        margin-bottom: 0;
    }

.user-content ul ul,
.view ol ol {
    margin-bottom: 0;
}

.user-content li li {
    font-size: 1em;
}
/* Table */

table {
    width: 100%;
    border: none;
    border-collapse: collapse;
    border-spacing: 0;
}

    table td,
    table th {
        vertical-align: middle;
    }
/* Normal form */

.normal-form input[type="text"],
.normal-form input[type="password"],
.normal-form input[type="datetime"],
.normal-form input[type="datetime-local"],
.normal-form input[type="date"],
.normal-form input[type="month"],
.normal-form input[type="time"],
.normal-form input[type="week"],
.normal-form input[type="number"],
.normal-form input[type="email"],
.normal-form input[type="url"],
.normal-form input[type="search"],
.normal-form input[type="tel"],
.normal-form input[type="color"],
.normal-form textarea,
.normal-form select {
    -webkit-appearance: none;
}

    .normal-form input[type="text"]:focus,
    .normal-form input[type="password"]:focus,
    .normal-form input[type="datetime"]:focus,
    .normal-form input[type="datetime-local"]:focus,
    .normal-form input[type="date"]:focus,
    .normal-form input[type="month"]:focus,
    .normal-form input[type="time"]:focus,
    .normal-form input[type="week"]:focus,
    .normal-form input[type="number"]:focus,
    .normal-form input[type="email"]:focus,
    .normal-form input[type="url"]:focus,
    .normal-form input[type="search"]:focus,
    .normal-form input[type="tel"]:focus,
    .normal-form input[type="color"]:focus,
    .normal-form textarea:focus,
    .normal-form select:focus {
        outline: none;
    }
/* ===============================================================================
    = Fonts
=============================================================================== */

/*@font-face {
    font-family: 'geomanist';
    src: url("../../fonts/geomanist-regular-webfont.eot");
    src: url("../../fonts/geomanist-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../../fonts/geomanist-regular-webfont.woff") format("woff"), url("../../fonts/geomanist-regular-webfont.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'geomanist';
    src: url("../../fonts/geomanist-light-webfont.eot");
    src: url("../../fonts/geomanist-light-webfont.eot?#iefix") format("embedded-opentype"), url("../../fonts/geomanist-light-webfont.woff") format("woff"), url("../../fonts/geomanist-light-webfont.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'geomanist';
    src: url("../../fonts/geomanist-medium-webfont.eot");
    src: url("../../fonts/geomanist-medium-webfont.eot?#iefix") format("embedded-opentype"), url("../../fonts/geomanist-medium-webfont.woff") format("woff"), url("../../fonts/geomanist-medium-webfont.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'geomanist';
    src: url("../fonts/geomanist-bold-webfont.eot");
    src: url("../fonts/geomanist-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../../fonts/geomanist-bold-webfont.woff") format("woff"), url("../../fonts/geomanist-bold-webfont.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'geomanist';
    src: url("../../fonts/geomanist-book-webfont.eot");
    src: url("../../fonts/geomanist-book-webfont.eot?#iefix") format("embedded-opentype"), url("../../fonts/geomanist-book-webfont.woff") format("woff"), url("../../fonts/geomanist-book-webfont.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}*/


@font-face {
    font-family: 'roboto-black';
    src: url('/webapp/Themes/StandardRedesign/fonts/roboto-black.ttf') format('truetype');
}

@font-face {
    font-family: 'roboto-blackitalic';
    src: url('/webapp/Themes/StandardRedesign/fonts/roboto-blackitalic.ttf') format('truetype');
}

@font-face {
    font-family: 'roboto-bold';
    src: url('/webapp/Themes/StandardRedesign/fonts/roboto-bold.ttf') format('truetype');
}

@font-face {
    font-family: 'roboto-bolditalic';
    src: url('/webapp/Themes/StandardRedesign/fonts/roboto-bolditalic.ttf') format('truetype');
}

@font-face {
    font-family: 'roboto-italic';
    src: url('/webapp/Themes/StandardRedesign/fonts/roboto-italic.ttf') format('truetype');
}

@font-face {
    font-family: 'roboto-light';
    src: url('/webapp/Themes/StandardRedesign/fonts/roboto-light.ttf') format('truetype');
}

@font-face {
    font-family: 'roboto-lightitalic';
    src: url('/webapp/Themes/StandardRedesign/fonts/roboto-lightitalic.ttf') format('truetype');
}

@font-face {
    font-family: 'roboto-medium';
    src: url('/webapp/Themes/StandardRedesign/fonts/roboto-medium.ttf') format('truetype');
}

@font-face {
    font-family: 'roboto-mediumitalic';
    src: url('/webapp/Themes/StandardRedesign/fonts/roboto-mediumitalic.ttf') format('truetype');
}

@font-face {
    font-family: 'roboto-regular';
    src: url('/webapp/Themes/StandardRedesign/fonts/roboto-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'roboto-thin';
    src: url('/webapp/Themes/StandardRedesign/fonts/roboto-thin.ttf') format('truetype');
}

@font-face {
    font-family: 'roboto-thinitalic';
    src: url('/webapp/Themes/StandardRedesign/fonts/roboto-thinitalic.ttf') format('truetype');
}
/* ==================================================
    =Placeholders
===================================================== */

.place-1:focus::-webkit-input-placeholder {
    color: transparent;
}

.place-1:focus::-moz-placeholder {
    color: transparent;
}

.place-1::-webkit-input-placeholder {
    /* WebKit browsers */
    color: var(--K2);
}

.place-1::-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: var(--K2);
    opacity: 1;
}

input.place-1:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: var(--K2);
}

textarea.place-1:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: var(--K2);
}

.place-2:focus::-webkit-input-placeholder {
    color: transparent;
}

.place-2:focus::-moz-placeholder {
    color: transparent;
}

.place-2::-webkit-input-placeholder {
    /* WebKit browsers */
    color: var(--P1);
}

.place-2::-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: var(--P1);
    opacity: 1;
}

input.place-2:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: var(--P1);
}

textarea.place-2:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: var(--P1);
}
/* ===============================================================================
    =Site css
    for importing base.scss on top of media query doc copy this : @import 'base';
=============================================================================== */

body {
    overflow-x: hidden;
}

#wrapper {
    overflow: hidden;
}
/* Buttons */


/* Form elements --------------------------------------------------------------------------------------------- */

.group {
    zoom: 1;
}

    .group:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .group .group-inner {
        margin-bottom: 20px;
    }

        .group .group-inner.important {
            position: relative;
        }

        .group .group-inner.no-label {
            margin-top: 20px;
        }

        .group .group-inner.important:after {
            content: '*';
            position: absolute;
            top: -20px;
            right: 4px;
            font-size: 18px;
            color: var(--ERROR);
        }

.uk-grid .divider-10 {
    width: 100%;
    margin-bottom: 10px;
}

.uk-grid .divider-20 {
    width: 100%;
    margin-bottom: 20px;
}

.uk-grid .divider-30 {
    width: 100%;
    margin-bottom: 30px;
}

.label-1 {
    display: block;
    /* font-family: Roboto;*/
    font-style: normal;
    font-size: 14px;
    line-height: 18px;
    color: var(--K2);
    text-transform: capitalize;
    margin-bottom: 5px;
}

.label-2 {
    display: block;
    font-size: 14px;
    color: var(--K2);
    margin-bottom: 5px;
}

.input-1,
.textarea-1 {
    display: block;
    /*  font-family: Roboto;*/
    width: 100%;
    border: none;
    border-bottom: 1px solid #DEDEDE;
    background: transparent;
    font-size: 16px;
    line-height: 19px;
    color: var(--K1);
    /* padding: 8px 10px;*/
    -webkit-appearance: none;
    -webkit-box-shadow: 0 0px 0 0 var(--P1);
    box-shadow: 0 0px 0 0 var(--P1);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.textarea-1 {
    border: 1px solid #DEDEDE;
}

.input-1.placeholder-color-1::-webkit-input-placeholder {
    color: var(--P1);
}

.input-1.placeholder-color-1:-moz-placeholder {
    color: var(--P1);
}

.input-1.placeholder-color-1::-moz-placeholder {
    color: var(--P1);
}

.input-1.placeholder-color-1:-ms-input-placeholder {
    color: var(--P1);
}

.textarea-1 {
    height: 120px;
    resize: none;
    overflow: auto;
}


    .input-1.dark,
    .textarea-1.dark {
        color: var(--K1);
    }

        .input-1.dark:focus,
        .textarea-1.dark:focus {
            -webkit-box-shadow: 0 0px 0 0 #fff200;
            box-shadow: 0 0px 0 0 #fff200;
        }

        .input-1.dark:disabled {
            opacity: 0.5;
        }


input:-webkit-autofill::first-line {
    font-size: 16px !important;
}


.password-hint {
    position: relative;
}

    .password-hint .hint {
        position: absolute;
        bottom: 5px;
        right: 7px;
    }

.hint {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    border-radius: 100px;
}



.hint-pictures li img {
    width: 100%;
}


.error .error-msg {
    display: block;
    color: red;
    float: right;
}


.error .select-4 div.fancy-select div.trigger {
    -webkit-box-shadow: inset 0 0 0 2px var(--ERROR) !important;
    box-shadow: inset 0 0 0 2px var(--ERROR) !important;
}

input:focus,
textarea:focus,
button:focus {
    outline: none;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}
/* Checkbox */

.checkbox-1.styledCheckbox {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/checkbox-1.png);
    background-repeat: no-repeat;
    background-position: 0px -20px !important;
    background-size: 20px;
    cursor: pointer;
}

    .checkbox-1.styledCheckbox.checked {
        background-position: 0px 0px !important;
    }

    .checkbox-1.styledCheckbox.disabled {
        opacity: 0.5;
    }

.checkbox-3.styledCheckbox {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/checkbox-2.png);
    background-repeat: no-repeat;
    background-position: 0px -20px !important;
    background-size: 20px;
    cursor: pointer;
}

    .checkbox-3.styledCheckbox.checked {
        background-position: 0px 0px !important;
    }

    .checkbox-3.styledCheckbox.disabled {
        opacity: 0.5;
    }

.checkbox-3:first-child {
    background-color: var(--BG);
}

.checkbox-wrap {
    padding: 30px 0 10px 0;
}

    .checkbox-wrap .checkbox-1 {
        position: relative;
    }

    .checkbox-wrap .checkbox-3 {
        position: relative;
        top: 4px;
        margin-right: 5px;
    }

    .checkbox-wrap .checkbox-label {
        font-size: 14px;
        color: var(--K1);
    }



.checkbox-2.styledCheckbox:after { /*Prebaciti u de2.css*/
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    top: -3px;
    left: -3px;
    background: var(--K2);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    border-radius: 100%;
    -webkit-transition: left 0.3s ease;
    -moz-transition: left 0.3s ease;
    -o-transition: left 0.3s ease;
    transition: left 0.3s ease;
    -webkit-box-shadow: 1px 2px 3px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 1px 2px 3px 0 rgba(0, 0, 0, 0.4);
}

.checkbox-2.styledCheckbox.checked:after { /*Prebaciti u de2.css*/
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    left: 3px;
    background: var(--P1);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    border-radius: 100%;
    -webkit-transition: left 0.3s ease;
    -moz-transition: left 0.3s ease;
    -o-transition: left 0.3s ease;
    transition: left 0.3s ease;
    -webkit-box-shadow: 1px 2px 3px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 1px 2px 3px 0 rgba(0, 0, 0, 0.4);
}

.checkbox-2.styledCheckbox.checked:after {
    left: 20px;
}

.checkbox-wrap-2 {
    zoom: 1;
}

    .checkbox-wrap-2:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .checkbox-wrap-2 .checkbox-1 {
        position: relative;
        top: 4px;
        margin-right: 5px;
    }

    .checkbox-wrap-2 .checkbox-label-2 {
        font-family: 'Roboto', sans-serif;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--K2);
    }

    .checkbox-wrap-2 .checkbox-label-3 {
        font-family: 'Roboto', sans-serif;
        font-size: 14px;
        color: var(--K2);
        margin-left: 10px;
        position: relative;
        top: 9px;
    }

    .checkbox-wrap-2 .checkbox-label-4 {
        font-family: 'Roboto', sans-serif;
        font-size: 14px;
        color: var(--K2);
        margin-right: 10px;
        position: relative;
        top: -12px;
    }

.fl-r {
    float: right !important;
}
/* Radio */

.radio-1.styledRadio {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/radio-1.png);
    background-size: 20px;
    cursor: pointer;
}

    .radio-1.styledRadio.disabled {
        background-image: url(/webapp/Themes/StandardRedesign/img/icons/radio-disabled.png);
    }

.radio-wrap {
    padding-top: 8px;
}

    .radio-wrap .radio-1 {
        position: relative;
        top: 4px;
        margin-right: 5px;
    }

    .radio-wrap .radio-label {
        font-family: roboto-medium, sans-serif;
        font-size: 14px;
        color: var(--K1);
        margin-right: 0px;
    }
/* Upload file */

.file-wrapper {
    display: block;
    width: 100%;
    height: 41px;
    position: relative;
    background: transparent;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    -webkit-appearance: none;
    -webkit-box-shadow: 0 0px 0 0 #fff200;
    box-shadow: 0 0px 0 0 #fff200;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .file-wrapper .upload-file {
        opacity: 0;
        visibility: hidden;
        position: absolute;
    }

    .file-wrapper .upload-btn {
        display: inline-block;
        width: 30px;
        /*   height: 30px;*/
        background-size: 14px;
        border: 0;
        position: absolute;
        right: 5px;
        top: 5px;
        padding: 0;
        margin: 0;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        -ms-border-radius: 100%;
        border-radius: 100%;
        -webkit-transition: background 0.3s ease;
        -moz-transition: background 0.3s ease;
        -o-transition: background 0.3s ease;
        transition: background 0.3s ease;
    }

        .file-wrapper .upload-btn::-webkit-input-placeholder {
            text-align: center;
        }

        .file-wrapper .upload-btn:hover {
            background-color: var(--P1);
        }

        .file-wrapper .upload-btn:focus {
            outline: none;
        }

    .file-wrapper .file-name {
        width: 100%;
        display: inline-block;
        font-family: 'Roboto', sans-serif;
        font-size: 18px;
        color: var(--P1);
        padding-left: 0px;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-right: 50px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .file-wrapper .name-wrapper {
        overflow: hidden;
    }

    .file-wrapper.disabled .upload-btn,
    .file-wrapper.disabled .upload-btn:hover {
        background-color: var(--K2);
        opacity: 0.5;
    }
/* Upload file 2 */

.custom-file-upload-2 {
    position: relative;
    overflow: hidden;
    outline: none;
}

    .custom-file-upload-2:hover {
        background: var(--P1);
    }

    .custom-file-upload-2 input.file-input {
        position: absolute;
        top: 0;
        right: 0;
        margin: 0;
        padding: 0;
        font-size: 20px;
        cursor: pointer;
        opacity: 0;
        filter: alpha(opacity=0);
    }


.select-1.disabled {
    position: relative;
    pointer-events: none;
    opacity: 0.5;
}

    .select-1.disabled:after {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

.select-2 .dd-container {
    width: 100% !important;
}

.select-2 .dd-select {
    border: none;
    width: 100% !important;
}

.select-2 .ui-selectmenu-button,
.select-2 .dd-selected {
    min-width: 56px;
    height: 30px;
    border-radius: 4px;
    background-color: transparent;
    border: 1px solid var(--BG);
}

.select-2 .dd-pointer-down {
    border-top: solid 5px var(--BG);
}

.select-2 .dd-pointer-up {
    border-bottom: solid 5px var(--BG) !important;
}

.select-2 .dd-options {
    width: 100% !important;
    border: none;
    background: transparent;
    box-shadow: none;
    -webkit-box-shadow: none;
}

.select-2 .dd-option {
    font-size: 14px;
    color: var(--BG);
    font-weight: 600;
    background: var(--P0);
    -webkit-transition: background 0.3s ease;
    -moz-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
    transition: background 0.3s ease;
    border: none;
}

    .select-2 .dd-option.dd-option-selected,
    .select-2 .dd-option:hover {
        background: var(--P0);
    }

        .select-2 .dd-option:hover .dd-option-text {
            color: var(--BG);
        }

.select-2 .ui-selectmenu-button.ui-state-focus,
.select-2 .ui-selectmenu-button.ui-state-focus:focus {
    outline: none;
}

.select-2 .ui-selectmenu-button span.ui-selectmenu-text {
    line-height: 14px;
    font-size: 12px;
    color: var(--BG);
    padding: 8px 4px 8px 4px !important;
}

    .select-2 .ui-selectmenu-button span.ui-selectmenu-text:focus {
        outline: none;
    }

.select-2 .ui-selectmenu-button.ui-selectmenu-button-open span.ui-selectmenu-text {
    background: var(--P0);
}

.ui-icon, .ui-widget-content .ui-icon {
    background-image: none;
}

.select-2 .ui-selectmenu-button span.ui-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    border-color: var(--BG) transparent transparent transparent;
    right: 7px;
    margin-top: -3px;
}

body .ui-selectmenu-menu {
    margin-left: -1px;
    border-radius: 0 0 2px 2px;
    background: var(--P0);
    z-index: 1000;
}

    body .ui-selectmenu-menu .ui-menu {
        border: none;
        padding-bottom: 0;
        border-radius: 0 0 2px 2px;
    }

    body .ui-selectmenu-menu .ui-menu-item {
        font-size: 14px;
        border: none;
        background: var(--BG);
        padding: 8px 6px;
        font-weight: normal;
        font-family: 'roboto-medium';
    }

        body .ui-selectmenu-menu .ui-menu-item:hover {
            list-style-image: none;
            background: var(--P2);
        }

            body .ui-selectmenu-menu .ui-menu-item:hover .ui-menu-item-wrapper {
                color: var(--onSU) !important;
            }

        body .ui-selectmenu-menu .ui-menu-item::marker {
            content: none !important;
        }

    body .ui-selectmenu-menu .ui-menu .ui-state-focus {
        border: none;
        margin: 0;
        background: var(--P0);
        font-weight: 700;
        color: var(--BG);
    }



div.fancy-select.disabled {
    opacity: 0.5;
}

div.fancy-select select:focus + div.trigger {
    box-shadow: 0 0 0 2px var(--K0);
}

    div.fancy-select select:focus + div.trigger.open {
        box-shadow: none;
    }

div.fancy-select div.trigger {
    border-radius: 4px;
    cursor: pointer;
    padding: 10px 24px 9px 9px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    background: var(--K3);
    border: 1px solid var(--K3);
    border-top-color: #A5B2CB;
    color: var(--K0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    width: 200px;
    transition: all 240ms ease-out;
    -webkit-transition: all 240ms ease-out;
    -moz-transition: all 240ms ease-out;
    -ms-transition: all 240ms ease-out;
    -o-transition: all 240ms ease-out;
}

    div.fancy-select div.trigger:after {
        content: "";
        display: block;
        position: absolute;
        width: 0;
        height: 0;
        border: 5px solid transparent;
        border-top-color: var(--K0);
        top: 20px;
        right: 9px;
    }

    div.fancy-select div.trigger.open {
        background: var(--P0);
        border: 1px solid var(--P0);
        color: var(--K2);
        box-shadow: none;
    }

        div.fancy-select div.trigger.open:after {
            border-top-color: var(--K2);
        }

div.fancy-select ul.options {
    list-style: none;
    margin: 0;
    position: absolute;
    top: 40px;
    left: 0;
    visibility: hidden;
    opacity: 0;
    z-index: 50;
    max-height: 200px;
    overflow: auto;
    background: #62C8BF;
    border-radius: 4px;
    border-top: 1px solid #7DD8D2;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    transition: opacity 300ms ease-out, top 300ms ease-out, visibility 300ms ease-out;
    -webkit-transition: opacity 300ms ease-out, top 300ms ease-out, visibility 300ms ease-out;
    -moz-transition: opacity 300ms ease-out, top 300ms ease-out, visibility 300ms ease-out;
    -ms-transition: opacity 300ms ease-out, top 300ms ease-out, visibility 300ms ease-out;
    -o-transition: opacity 300ms ease-out, top 300ms ease-out, visibility 300ms ease-out;
}

    div.fancy-select ul.options.open {
        visibility: visible;
        top: 50px;
        opacity: 1;
        /* have to use a non-visibility transition to prevent this iOS issue (bug?): */
        /*http://stackoverflow.com/questions/10736478/css-animation-visibility-visible-works-on-chrome-and-safari-but-not-on-ios*/
        transition: opacity 300ms ease-out, top 300ms ease-out;
        -webkit-transition: opacity 300ms ease-out, top 300ms ease-out;
        -moz-transition: opacity 300ms ease-out, top 300ms ease-out;
        -ms-transition: opacity 300ms ease-out, top 300ms ease-out;
        -o-transition: opacity 300ms ease-out, top 300ms ease-out;
    }

    div.fancy-select ul.options.overflowing {
        top: auto;
        bottom: 40px;
        transition: opacity 300ms ease-out, bottom 300ms ease-out, visibility 300ms ease-out;
        -webkit-transition: opacity 300ms ease-out, bottom 300ms ease-out, visibility 300ms ease-out;
        -moz-transition: opacity 300ms ease-out, bottom 300ms ease-out, visibility 300ms ease-out;
        -ms-transition: opacity 300ms ease-out, bottom 300ms ease-out, visibility 300ms ease-out;
        -o-transition: opacity 300ms ease-out, bottom 300ms ease-out, visibility 300ms ease-out;
    }

        div.fancy-select ul.options.overflowing.open {
            top: auto;
            bottom: 50px;
            transition: opacity 300ms ease-out, bottom 300ms ease-out;
            -webkit-transition: opacity 300ms ease-out, bottom 300ms ease-out;
            -moz-transition: opacity 300ms ease-out, bottom 300ms ease-out;
            -ms-transition: opacity 300ms ease-out, bottom 300ms ease-out;
            -o-transition: opacity 300ms ease-out, bottom 300ms ease-out;
        }

    div.fancy-select ul.options li {
        padding: 8px 12px;
        color: #2B8686;
        cursor: pointer;
        white-space: nowrap;
        transition: all 150ms ease-out;
        -webkit-transition: all 150ms ease-out;
        -moz-transition: all 150ms ease-out;
        -ms-transition: all 150ms ease-out;
        -o-transition: all 150ms ease-out;
    }

        div.fancy-select ul.options li.selected {
            background: rgba(43, 134, 134, 0.3);
            color: rgba(255, 255, 255, 0.75);
        }

        div.fancy-select ul.options li.hover {
            color: var(--BG);
        }
/* Select-1 */

.select-1 div.fancy-select div.trigger {
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 40px;
    text-transform: none;
    background-color: var(--P1);
    border-radius: 3px;
    border: 0;
    box-shadow: none !important;
    color: var(--BG);
    padding: 0px 15px 0px 10px;
    border: 0;
}

.select-1 div.fancy-select select:focus + div.trigger.open {
    color: #d2d29d;
    box-shadow: none !important;
}

.select-1 div.fancy-select div.trigger:after {
    width: 40px;
    height: 30px;
    border: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 4px 0 4px;
    border-color: var(--BG) transparent transparent transparent;
    top: 17px;
    right: 10px;
}

.select-1 div.fancy-select ul.options {
    top: 40px;
    border-radius: 3px;
    border: 0;
    background: #e8e8e8;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

    .select-1 div.fancy-select ul.options li.selected,
    .select-1 div.fancy-select ul.options li.selected:hover {
        background: #33b2e1;
    }

    .select-1 div.fancy-select ul.options li {
        font-family: 'Roboto', sans-serif;
        font-weight: 500;
        font-size: 18px;
        line-height: 26px;
        text-transform: none;
        color: var(--BG);
        background-color: var(--P1);
        padding-left: 10px;
        padding-right: 10px;
    }

        .select-1 div.fancy-select ul.options li:hover {
            background: #33b2e1;
        }
/* Custom scrollbar */

.mCustomScrollBox .mCSB_scrollTools {
    opacity: 1;
}

.mCustomScrollBox .mCSB_horizontal.mCSB_inside > .mCSB_container {
    margin-bottom: 10px;
}

.mCustomScrollBox .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    height: 10px;
    background: #49505a;
    bottom: 1px;
}

.mCustomScrollBox .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    height: 10px;
    top: 1px;
    background: #ebeced;
}

.mCustomScrollBox .mCSB_scrollTools.mCSB_1_scrollbar.mCS-light.mCSB_scrollTools_horizontal {
    bottom: 1px;
}

.mCustomScrollBox .mCSB_inside > .mCSB_container {
    margin-right: 15px;
}

.mCustomScrollBox .mCSB_horizontal.mCSB_inside > .mCSB_container {
    margin-bottom: 10px;
}

.mCustomScrollBox .mCSB_scrollTools.mCSB_scrollTools_vertical .mCSB_draggerRail {
    width: 7px;
    background: var(--K3);
    bottom: 1px;
}

.mCustomScrollBox .mCSB_scrollTools.mCSB_scrollTools_vertical .mCSB_dragger .mCSB_dragger_bar {
    width: 7px;
    top: 0px;
    background: var(--P1);
}

.mCustomScrollBox .mCSB_scrollTools.mCSB_1_scrollbar.mCS-light.mCSB_scrollTools_horizontal {
    bottom: 1px;
}
/* Datepicker calendar */
/* Calendar style */

body #ui-datepicker-div {
    width: 270px;
    border-radius: 2px;
    background: var(--BG);
}

body .ui-widget-header {
    border: none;
    background: var(--BG);
}

body table thead th {
    background: none;
    font-size: 12px;
    color: var(--P1);
}

body .ui-datepicker .ui-datepicker-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--P1);
}

body .ui-widget-content .ui-state-default,
body .ui-widget-header .ui-state-default {
    background: none;
    color: var(--P1);
    font-size: 11px;
    padding-top: 4px;
    padding-bottom: 4px;
}

body .ui-widget-content .ui-state-active,
body .ui-widget-header .ui-state-active,
body .ui-widget-content .ui-state-hover,
body .ui-widget-header .ui-state-hover {
    border: none;
    background: none;
    color: var(--K1);
    font-size: 12px;
    font-weight: normal;
}

body table tr:nth-child(even) td,
body table tr:nth-child(even) th {
    background: none;
}

body .ui-icon {
    width: 20px;
    height: 20px;
}

body .ui-datepicker .ui-datepicker-prev,
body .ui-datepicker .ui-datepicker-next {
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

body .ui-datepicker .ui-datepicker-prev {
    top: 4px;
    left: 0;
    margin-left: 5px;
}

body .ui-datepicker .ui-datepicker-next {
    top: 4px;
    right: 0;
    margin-right: 7px;
}

body .ui-widget-content .ui-state-highlight,
body .ui-widget-header .ui-state-highlight,
body .ui-widget-content .ui-state-highlight.ui-state-hover,
body .ui-widget-header .ui-state-highlight.ui-state-hover {
    border-color: var(--P1);
    background: var(--P1);
    color: var(--BG);
}

body .ui-datepicker .ui-datepicker-prev.ui-state-hover,
body .ui-datepicker .ui-datepicker-next.ui-state-hover {
    background: none;
    border: none;
    top: 4px;
}

body .ui-datepicker .ui-datepicker-prev.ui-state-hover {
    left: -2px;
}

body .ui-datepicker .ui-datepicker-next.ui-state-hover {
    right: -2px;
}

body .ui-datepicker .ui-datepicker-prev span,
body .ui-datepicker .ui-datepicker-prev.ui-state-hover span {
    background: url(/webapp/Themes/StandardRedesign/img/icons/arrow-left-1.png) center center no-repeat;
    background-size: 10px;
    border: none;
}

body .ui-datepicker .ui-datepicker-next span,
body .ui-datepicker .ui-datepicker-next.ui-state-hover span {
    background: url(/webapp/Themes/StandardRedesign/img/icons/arrow-right-1.png) center center no-repeat;
    background-size: 10px;
    border: none;
}
/* Loaderi ----------------------------------------------------------------------------------------------- */

.cssload-container {
    width: 100%;
    height: 50px;
    text-align: center;
}

.cssload-speeding-wheel {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border: 3px solid #494f5a;
    border-radius: 50%;
    border-left-color: transparent;
    border-right-color: transparent;
    animation: cssload-spin 800ms infinite linear;
    -o-animation: cssload-spin 800ms infinite linear;
    -ms-animation: cssload-spin 800ms infinite linear;
    -webkit-animation: cssload-spin 800ms infinite linear;
    -moz-animation: cssload-spin 800ms infinite linear;
}

@keyframes cssload-spin {
    100% {
        transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes cssload-spin {
    100% {
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-ms-keyframes cssload-spin {
    100% {
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes cssload-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes cssload-spin {
    100% {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/* Custom tables ----------------------------------------------------------------------------------------------- */

.custom-table .table-row {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .custom-table .table-row:hover {
        background: var(--P2);
    }

    .custom-table .table-row.table-head:hover {
        background: var(--BG);
    }

    .custom-table .table-row.row-1 {
        border-bottom: 1px solid #ebeced;
    }

.custom-table .col-text {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 0;
}

.custom-table .col {
    padding: 8px 15px;
    position: relative;
}

.custom-table .action-wrap-1 {
    zoom: 1;
}

    .custom-table .action-wrap-1:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .custom-table .action-wrap-1 .btn-1,
    .custom-table .action-wrap-1 .btn-2 {
        display: inline-block;
        width: 31.3%;
        margin-right: 3%;
        float: left;
    }

        .custom-table .action-wrap-1 .btn-1:last-child,
        .custom-table .action-wrap-1 .btn-2:last-child {
            margin-right: 0;
        }

.custom-table .row-1 .col.no-border:before {
    display: none;
}

.custom-table .row-1 .col:before {
    content: '';
    width: 1px;
    height: 18px;
    background: var(--K3);
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -9px;
}

.custom-table .pos-left {
    float: left;
}

.custom-table .row-1 .col:first-child:before {
    display: none;
}

.custom-table .col .center {
    text-align: center;
}

.custom-table .text-cl-1 {
    color: var(--K2);
}

.custom-table .text-cl-2 {
    color: var(--K2);
    white-space: nowrap !important;
    text-overflow: ellipsis;
}

.custom-table .text-cl-3 {
    color: var(--P1);
}

.custom-table .text-cl-4 {
    color: var(--ERROR);
}

.custom-table .text-cl-5 {
    color: var(--OK);
}

.custom-table .text-lh-46 {
    line-height: 46px !important;
}

.custom-table .text-1 {
    font-size: 14px;
    text-transform: uppercase;
    line-height: 34px;
}

.custom-table .text-2 {
    font-size: 14px;
    line-height: 17px;
    height: 34px;
    position: relative;
    white-space: normal;
    overflow: hidden;
}

    .custom-table .text-2 span {
        display: inline-block;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
    }

.custom-table .text-3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 34px;
}

.custom-table .text-4 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 34px;
}

.custom-table .text-5 {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 34px;
}

.custom-table .text-6 {
    font-size: 14px;
    line-height: 34px;
}

.custom-table .text-7 {
    font-size: 14px;
    line-height: 16px;
    height: 34px;
    position: relative;
    white-space: normal;
    overflow: hidden;
}

    .custom-table .text-7 span {
        display: inline-block;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
    }

.custom-table .tag-col {
    position: relative;
    padding-left: 55px;
}



.custom-table .flag-col {
    position: relative;
    padding-left: 65px;
}

.custom-table .flag-box {
    display: inline-block;
    width: 38px;
    height: 38px;
    float: left;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    border-radius: 100%;
    overflow: hidden;
    position: absolute;
    top: 5px;
    left: 10px;
}

    .custom-table .flag-box img {
        width: 100%;
        height: auto;
    }



/*.custom-table .table-btn:hover {
        background: #515661;
    }*/

.custom-table .col-btn-right {
    zoom: 1;
}

    .custom-table .col-btn-right:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .custom-table .col-btn-right p > span {
        float: left;
    }

    .custom-table .col-btn-right .btn-retry {
        display: inline-block;
        float: right;
        color: var(--BG);
        font-size: 14px;
    }

.custom-table .btn-retry i {
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-right: 5px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 16px;
    position: relative;
    top: 5px;
}

.custom-table .order {
    cursor: pointer;
}

.custom-table .order-icon {
    display: inline-block;
    width: 8px;
    height: 13px;
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/arrows-sprite-1.png);
    background-repeat: no-repeat;
    background-position: 0 -13px;
    background-size: 8px;
    margin-left: 10px;
    position: relative;
    top: 2px;
}

.custom-table .order.down .order-icon {
    background-position: 0 -29px;
}

.custom-table .order.up .order-icon {
    background-position: 0 5px;
}

.custom-table.table-2 .col {
    padding-top: 8px;
    padding-bottom: 8px;
}

.custom-table.table-2 .tag {
    top: 14px;
}

.custom-table.border-top {
    /*  border-top: 1px solid #ebeced;*/
}

    .custom-table.border-top .table-head {
        padding-top: 0;
    }

.custom-table .table-head.no-padding {
    padding-top: 0;
}

.custom-table .col.no-border:after {
    display: none;
}

.custom-table .col.high-padding {
    padding: 13px 15px 18px;
}

.custom-table.m-bottom {
    margin-bottom: 20px;
}

.table-head .head-txt-1 {
    font-size: 14px;
    line-height: 26px;
    color: var(--K3);
    text-transform: uppercase;
}


/* Grid --------------------------------------------------------------------------------------------- */

.grid {
    zoom: 1;
}

    .grid:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

.col-ls-1,
.col-ls-2,
.col-ls-3,
.col-ls-4,
.col-ls-5,
.col-ls-6,
.col-ls-7,
.col-ls-8,
.col-ls-9,
.col-ls-10,
.col-ls-11,
.col-ls-12,
.col-ls-13,
.col-ls-14,
.col-ls-15,
.col-ls-16,
.col-ls-17,
.col-ls-18,
.col-ls-19,
.col-ls-20,
.col-ls-21,
.col-ls-22,
.col-ls-23,
.col-ls-24,
.col-ms-1,
.col-ms-2,
.col-ms-3,
.col-ms-4,
.col-ms-5,
.col-ms-6,
.col-ms-7,
.col-ms-8,
.col-ms-9,
.col-ms-10,
.col-ms-11,
.col-ms-12,
.col-ss-1,
.col-ss-2,
.col-ss-3,
.col-ss-4,
.col-ss-5,
.col-ss-6,
.col-ss-7,
.col-ss-8,
.col-ss-9,
.col-ss-10,
.col-ss-11,
.col-ss-12 {
    float: left;
}

.col-ls-24 {
    width: 100%;
}

.col-ls-23 {
    width: 95.83333333%;
}

.col-ls-22 {
    width: 91.66666667%;
}

.col-ls-21 {
    width: 87.5%;
}

.col-ls-20 {
    width: 83.33333333%;
}

.col-ls-19 {
    width: 79.16666666%;
}

.col-ls-18 {
    width: 75%;
}

.col-ls-17 {
    width: 70.83333266%;
}

.col-ls-16 {
    width: 66.66666667%;
}

.col-ls-15 {
    width: 62.5%;
}

.col-ls-14 {
    width: 58.33333333%;
}

.col-ls-13 {
    width: 54.16666667%;
}

.col-ls-12 {
    /*    width: 50%;*/
}

.col-ls-11 {
    width: 45.83333333%;
}

.col-ls-10 {
    width: 41.66666667%;
}

.col-ls-9 {
    width: 37.5%;
}

.col-ls-8 {
    width: 33.33333333%;
}

.col-ls-7 {
    width: 29.16666667%;
}

.col-ls-6 {
    width: 25%;
}

.col-ls-5 {
    width: 20.83333333%;
}

.col-ls-4 {
    width: 16.66666667%;
}

.col-ls-3 {
    width: 12.5%;
}

/*.col-ls-2 {
    width: 8.333333333%;
}*/

.col-ls-1 {
    width: 4.166666667%;
}
/* -------------------------------------------------------------------------- Icons */

.icon-alert-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-alert-2.png);
    background-size: 24px;
}

.icon-attachment-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/attachment-icon.png);
    background-size: 20px;
}

.icon-attachment-2 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-attachment-2.png);
    /*  background-size: 10px 22px;*/
}

.icon-archive {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-archive.png);
    /*  background-size: 10px 22px;*/
}

.icon-replay {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/ic_transaction_external_transfer.png);
    /*  background-size: 10px 22px;*/
}

.icon-message {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-message.png);
    /*  background-size: 10px 22px;*/
}

.icon-atm-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-atm-1.png);
    background-size: 18px;
}

.icon-arrow-right {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/arrow-icon-right.png);
    background-size: 18px;
}

.icon-arrow-down {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/arrow-down-icon.png);
    background-size: 18px;
}

.icon-book-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-book-1.png);
    background-size: 18px;
}

.file-upload-add {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/add-icon-white.png);
    background-size: 18px;
    margin-bottom: 10px;
}

.file-upload-delete {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/remove-icon-white.png);
    background-size: 18px;
}

.transfer-upload-add {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/add-icon-white.png);
    background-size: 18px;
    margin-bottom: 10px;
}

.transfer-upload-delete {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/remove-icon-white.png);
    background-size: 18px;
}

#AddFileButton_1_ID .label-1 {
    position: absolute;
    margin-top: 11px;
    margin-left: 50px;
}

*[id^='DeleteFileButton_'] {
    margin-top: 20px;
}

    *[id^='DeleteFileButton_'] .label-1 {
        position: absolute;
        margin-top: 11px;
        margin-left: 50px;
    }

.icon-branch-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-branch.png);
    background-size: 18px;
}

.icon-branch-2 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-branch-1.png);
    background-size: 18px;
}

.icon-card-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-card-1.png);
    background-size: 26px;
}

.icon-card-2 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-card-2.png);
    background-size: 26px;
}

.icon-card-3 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-card-3.png);
    background-size: 36px;
}

.icon-card-4 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-card-4.png);
    background-size: 26px;
}

.icon-catalogue {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-catalogue-1.png);
    background-size: 40px;
}

.icon-catalogue-2 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-catalogue-2.png);
    background-size: 40px;
}

.icon-catalogue-3 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-catalogue-3.png);
    background-size: 40px;
}

.icon-check-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-check-3.png);
    background-size: 24px;
}

.icon-clock-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-clock-1.png);
    background-size: 24px;
}

.icon-contact {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-contact.png);
    background-size: 40px;
}

.icon-contact-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-contact-1.png);
    background-size: 26px;
}

.icon-language {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-language.png);
    background-size: 26px;
}

.icon-inbox {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-inbox.png);
    background-size: 26px;
}

.icon-selfcare {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-selfcare.png);
    background-size: 26px;
}

.icon-contact-2 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-contact-2.png);
    background-size: 26px;
}

.icon-dashboard-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-dashboard-1.png);
    background-size: 26px;
}

.icon-dashboard-2 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-dashboard-2.png);
    background-size: 26px;
}

.icon-download-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-download-1.png);
    background-size: 14px;
}

.icon-exit-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/exit-2.png);
    background-size: 20px;
}

.icon-exchange {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-exchange.png);
    background-size: 40px;
}

.icon-exchange-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-exchange-1.png);
    background-size: 26px;
}

.icon-exchange-2 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-exchange-2.png);
    background-size: 26px;
}

.icon-exchange-3 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-exchange-3.png);
    background-size: 26px;
}

.icon-eye {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-eye.png);
    background-size: 40px;
}

.icon-facebook {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/facebook.png);
    background-size: 9px;
}

.icon-facebook-2 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/facebook-2.png);
    background-size: 9px;
}

.icon-grid-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-grid-1.png);
    background-size: 18px;
}

.icon-grid-2 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-grid-2.png);
    background-size: 23px !important;
    width: 25px !important;
    height: 25px !important;
}

    .icon-grid-2::after {
    }
/*andrej obrisati - pregledati sve ove ikonice i obrisati nepotrebno*/
.icon-rearange-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-rearange-1.png);
    background-size: 23px !important;
    width: 25px !important;
    height: 25px !important;
}

.icon-help-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/help-icon-2.png);
    background-size: 20px;
}

.icon-linkedin {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/linkedin.png);
    background-size: 19px;
}

.icon-linkedin-2 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/linkedin-2.png);
    background-size: 19px;
}

.icon-login {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-out-1.png);
    background-size: 40px;
}

.icon-prelogin-login {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-prelogin-login.png);
    background-size: 40px;
}

.icon-prelogin-contact {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-prelogin-contact.png);
    background-size: 40px;
}

.icon-prelogin-exchange {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-prelogin-exchange.png);
    background-size: 40px;
}

.icon-prelogin-pin {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-prelogin-pin.png);
    background-size: 40px;
}

.icon-mail-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-mail-1.png);
    background-size: 24px;
}

.icon-mail-2 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-mail-2.png);
    background-size: 26px;
}

.icon-mail-3 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-mail-3.png);
    background-size: 20px;
}

.icon-mail-4 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-mail-4.png);
    background-size: 20px;
}

.icon-money-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-money-1.png);
    background-size: 26px;
}

.icon-money-2 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-money-2.png);
    background-size: 26px;
}

.icon-money-3 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-money-3.png);
    background-size: 26px;
}

.icon-money-4 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-money-4.png);
    background-size: 26px;
}

.icon-move-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-move-1.png);
    background-size: 14px;
}

.icon-move-2 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-move-2.png);
    background-size: 14px;
}

.icon-out-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-out-1.png);
    background-size: 22px;
}

.icon-out-2 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-out-2.png);
    background-size: 22px;
}

.icon-pin {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-pin.png);
    background-size: 40px;
}

.icon-reset-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-reset-1.png);
    background-size: 16px;
}

.icon-reset-2 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-reset-2.png);
    background-size: 16px;
}

.icon-rss-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-rss.png);
    background-size: 20px;
}

.icon-safe-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-safe-1.png);
    background-size: 26px;
}

.icon-internaltransfer {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-internal-transfer.png);
    background-size: 26px;
}

.icon-paysomeone {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-contact-2.png);
    background-size: 26px;
}

.icon-pfm {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-pfm.png);
    background-size: 66px !important;
}

.icon-safe-2 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-safe-2.png);
    background-size: 26px;
}

.icon-safe-3 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-safe-3.png);
    background-size: 26px;
}

.icon-safe-4 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-safe-4.png);
    background-size: 26px;
}

.icon-search {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-search.png);
    background-size: 8px;
}

.icon-service-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-puzzle.png);
    background-size: 20px;
}

.icon-service-2 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-service-2.png);
    background-size: 20px;
}

.icon-service-3 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-service-3.png);
    background-size: 15px;
}

.icon-service-4 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-service-4.png);
    background-size: 18px;
}

.icon-service-5 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-service-5.png);
    background-size: 16px;
}

.icon-service-6 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-service-6.png);
    background-size: 20px;
}

.icon-settings-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-settings-1.png);
    background-size: 20px;
}

.icon-settings-2 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-settings-2.png);
    background-size: 20px;
}

.icon-settings-3 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-settings-3.png);
    background-size: 20px;
}

.icon-settings-4 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/settings-5.png);
    background-size: 20px;
}

.icon-question {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-contact-3.png);
    background-size: 40px;
}

.icon-tel-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-tel-1.png);
    background-size: 24px;
}

.icon-youtube {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/youtube-1.png);
    background-size: 15px;
}

.icon-twitter {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/twitter.png);
    background-size: 22px;
}

.icon-twitter-2 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/twitter-2.png);
    background-size: 22px;
}


.container {
    margin: 0 auto;
    zoom: 1;
    max-width: 1170px;
}

    .container:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

#page-header {
    width: 100%;
    height: 80px;
    background: var(--BG);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    box-shadow: 4px 4px 8px rgb(0 0 0 / 15%);
    padding: 8px 24px;
}

    #page-header .site-branding {
        margin-right: auto;
    }

    #page-header .site-logo a {
        display: block;
        width: 100%;
        height: 64px;
        text-indent: -9999px;
        overflow: hidden;
        margin: auto;
        background-position: center;
    }

    #page-header .main-nav {
        zoom: 1;
        float: left;
        padding: 10px 0 0 60px;
    }

        #page-header .main-nav:after {
            display: block;
            visibility: hidden;
            height: 0;
            clear: both;
            content: ".";
        }

        #page-header .main-nav li {
            float: left;
            margin-right: 35px;
        }

            #page-header .main-nav li a {
                font-size: 13px;
                text-transform: uppercase;
                line-height: 26px;
                font-weight: 700;
                color: var(--BG);
                -webkit-transition: color 0.3s ease;
                -moz-transition: color 0.3s ease;
                -o-transition: color 0.3s ease;
                transition: color 0.3s ease;
            }

                #page-header .main-nav li a:hover {
                    color: var(--P1);
                }

            #page-header .main-nav li i {
                display: inline-block;
                float: left;
                margin-right: 10px;
                width: 26px;
                height: 26px;
                background-size: 26px;
                background-position: center center;
                background-repeat: no-repeat;
            }

        #page-header .main-nav .has-menu {
            position: relative;
        }

        #page-header .main-nav .subnav-trigger {
            position: relative;
            z-index: 1;
        }

        #page-header .main-nav .has-menu .subnav-trigger i {
            position: relative;
        }

        #page-header .main-nav .submenu {
            position: absolute;
            top: -10px;
            left: -20px;
            width: 200px;
            background: var(--P0);
            padding-top: 48px;
            -webkit-border-radius: 2px;
            -moz-border-radius: 2px;
            -ms-border-radius: 2px;
            border-radius: 2px;
            -webkit-box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

        #page-header .main-nav .open .submenu {
            opacity: 1;
            visibility: visible;
        }

        #page-header .main-nav .submenu li {
            width: 100%;
        }

            #page-header .main-nav .submenu li a {
                display: block;
                text-transform: none;
                padding: 6px 20px;
                background: var(--P0);
                -webkit-transition: background 0.3s ease;
                -moz-transition: background 0.3s ease;
                -o-transition: background 0.3s ease;
                transition: background 0.3s ease;
            }

            #page-header .main-nav .submenu li.active a,
            #page-header .main-nav .submenu li:hover a {
                background: var(--P1);
                color: var(--BG);
            }


.profile-bar:after {
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
    content: ".";
}

.profile-bar .profile-option {
    float: left;
    width: 110px;
    padding-top: 10px;
}

.profile-bar .profile-img {
    float: none;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: all ease 0.3s;
}

    .profile-bar .profile-img:hover {
        background: var(--P2) !important;
    }

.profile-bar .img-box {
    width: 48px;
    height: 48px;
    overflow: hidden;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    border-radius: 100%;
    display: inline-block;
    margin-right: 16px;
}

    .profile-bar .img-box img {
        width: 100%;
        height: auto;
    }

.profile-bar .profile-img span {
    display: block;
    width: 26px;
    height: 26px;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    text-align: center;
    line-height: 20px;
    font-weight: 700;
    color: var(--BG);
    background: #eb0255;
    border: 3px solid var(--P0);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    border-radius: 100%;
    position: absolute;
    top: -4px;
    right: -12px;
}

.profile-bar a {
    /*display: inline-block;
        width: 32px;
        height: 22px;
        float: left;
        background-repeat: no-repeat;
        background-position: center center;*/
    /*    margin-top: 10px;*/
    /*margin-left: 26px;*/
}

.profile-bar .icon-settings-1 {
    background-size: 20px;
}

.profile-bar .icon-out-1 {
    background-size: 32px;
    height: 32px;
}

#main {
    background: var(--K4);
    /*margin-left: 260px;*/
    height: 100%;
    padding-top: 75px;
}

#page-header-left {
    width: 94px;
    height: 100%;
    background: var(--BG);
    position: fixed;
    top: 80px;
    left: 0;
    z-index: 100;
    background-color: var(--P0);
}

    #page-header-left .site-branding {
        float: left;
        margin-top: 0px;
        width: 100%;
        padding: 0px 27px;
        margin-bottom: 20px;
        box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.15);
    }

    #page-header-left .site-logo a {
        display: block;
        width: 100%;
        height: 64px;
        text-indent: -9999px;
        overflow: hidden;
        margin: auto;
    }

    #page-header-left .mCSB_inside > .mCSB_container {
        margin-right: 0;
    }

    #page-header-left .mCustomScrollBox .mCSB_scrollTools.mCSB_scrollTools_vertical .mCSB_dragger .mCSB_dragger_bar {
        width: 3px;
        top: 0px;
        background: #666666;
        opacity: 0.5;
    }

    #page-header-left .mCustomScrollBox .mCSB_scrollTools.mCSB_scrollTools_vertical .mCSB_draggerRail {
        width: 7px;
        background: var(--BG);
        bottom: 1px;
    }

    #page-header-left .mCustomScrollBox .mCSB_scrollTools {
        position: absolute;
        width: 3px;
        height: auto;
        left: auto;
        top: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
        transition: all ease 0.3s;
    }

    #page-header-left .mCustomScrollBox:hover .mCSB_scrollTools {
        opacity: 1;
    }

    #page-header-left .main-nav {
        zoom: 1;
        padding: 0px 0px 0px 0px;
    }

        #page-header-left .main-nav:after {
            display: block;
            visibility: hidden;
            height: 0;
            clear: both;
            content: ".";
        }

        #page-header-left .main-nav li {
            transition: all ease 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }



        #page-header-left .main-nav .submenu {
            position: relative;
            width: 100%;
            background: transparent;
            padding-top: 0px;
            height: 0px;
            opacity: 0;
            visibility: hidden;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

        #page-header-left .main-nav .open .submenu {
            opacity: 1;
            visibility: visible;
            height: auto;
        }

        #page-header-left .main-nav .submenu li {
            width: 100%;
            border-left: none;
        }

            #page-header-left .main-nav .submenu li a {
                display: block;
                text-transform: none;
                padding: 6px 20px 6px 75px;
                color: #666666;
                -webkit-transition: background 0.3s ease;
                -moz-transition: background 0.3s ease;
                -o-transition: background 0.3s ease;
                transition: background 0.3s ease;
            }

            #page-header-left .main-nav .submenu li:hover a {
                color: var(--P1);
                border-left: none;
            }

        #page-header-left .main-nav .icon-arrow-right {
            background-size: 5px;
            position: absolute;
            height: 15px;
            width: 10px;
            background-repeat: no-repeat;
            right: 36px;
            top: auto;
            margin-top: 9px;
        }

        #page-header-left .main-nav .icon-arrow-down {
            background-size: 8px;
            position: absolute;
            height: 15px;
            width: 10px;
            background-repeat: no-repeat;
            right: 36px;
            top: auto;
            margin-top: 9px;
        }

.page-header-left_wrapper .menu-btn {
    position: absolute;
    top: 40px;
    left: -17px;
}

    .page-header-left_wrapper .menu-btn li {
        background: #999999;
        margin-bottom: 4px;
    }

.profile {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--K4);
}


.profile-bar a {
    background-position: 0px 2px;
    transition: all ease 0.3s;
}

/*.profile-bar a:hover {
            background-position: 0px -20px;
        }*/

.inbox-count {
    position: relative;
    float: left;
    padding: 20px 0px 0px 27px;
    z-index: 100;
}

    .inbox-count .icon-mail-4 {
        padding: 13px;
        background-repeat: no-repeat;
        background-position: center;
    }

    .inbox-count span {
        position: absolute;
        left: 42px;
        top: 5px;
        background-color: #eb0658;
        border-radius: 100%;
        padding: 5px 6px;
        color: var(--BG);
        font-weight: 600;
    }

    .inbox-count p {
        float: right;
        margin-left: 30px;
        font-size: 13px;
        color: #666666;
    }

        .inbox-count p:hover {
            color: var(--P1);
        }

.drop-select .select-3 {
    padding: 0px 27px;
}

    .drop-select .select-3 .fancy-select {
        text-transform: none;
    }

        .drop-select .select-3 .fancy-select .trigger {
            background: transparent;
            border: none;
            box-shadow: none;
            width: 100%;
            color: var(--P1);
            padding-left: 0px;
        }

            .drop-select .select-3 .fancy-select .trigger:after {
                top: 16px;
                border-top-color: var(--P1);
            }

        .drop-select .select-3 .fancy-select .options {
            background: var(--P1);
            width: 100%;
            border-radius: 0px;
            border-top: none;
        }

        .drop-select .select-3 .fancy-select .open {
            top: 100%;
        }

        .drop-select .select-3 .fancy-select .options li {
            color: var(--BG);
            transition: all ease 0.3s;
        }

            .drop-select .select-3 .fancy-select .options li .selected {
                color: var(--BG);
                background: rgba(255, 255, 255, 0.3);
            }

            .drop-select .select-3 .fancy-select .options li:hover {
                background: rgba(255, 255, 255, 0.3);
            }

.page-header-left_footer {
    width: 100%;
    position: relative;
    text-align: center;
    height: auto;
    margin-top: 21%;
}

    .page-header-left_footer p {
        font-size: 13px;
        color: #c1c1c1;
    }

        .page-header-left_footer p span {
            color: var(--P1);
            font-weight: 500;
        }

    .page-header-left_footer .page-header-left_footer__social-list {
        position: relative;
        float: left;
        width: 100%;
        text-align: center;
    }

        .page-header-left_footer .page-header-left_footer__social-list li {
            float: left;
            width: 25%;
            border: 1px solid #f4f4f4;
            padding: 20px;
        }

        .page-header-left_footer .page-header-left_footer__social-list a {
            display: inline-block;
            height: 20px;
            width: 20px;
            background-repeat: no-repeat;
        }

    .page-header-left_footer .lang-nav {
        zoom: 1;
        float: left;
        margin: 0px 0px 25px 0px;
        position: relative;
        /*width: 180px;*/
        left: 45%;
        margin-left: -79px;
    }

        .page-header-left_footer .lang-nav:after {
            display: block;
            visibility: hidden;
            height: 0;
            clear: both;
            content: ".";
        }

        .page-header-left_footer .lang-nav li {
            float: left;
            margin-right: 30px;
        }

            .page-header-left_footer .lang-nav li span {
                font-family: 'Roboto', sans-serif;
                font-size: 14px;
                line-height: 24px;
                text-transform: uppercase;
                color: var(--P0);
                font-weight: bold;
            }

            .page-header-left_footer .lang-nav li.active a span {
                color: var(--P1);
            }

            .page-header-left_footer .lang-nav li:hover a span {
                color: var(--P1);
            }

    .page-header-left_footer .lang-flag {
        float: left;
        width: 24px;
        height: 24px;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        -ms-border-radius: 12px;
        border-radius: 12px;
        overflow: hidden;
        margin-right: 10px;
        border: 1px solid grey;
    }

        .page-header-left_footer .lang-flag img {
            width: 100%;
            height: absolute;
        }

.main-content.background-fix {
    padding: 90px 0px;
}

@media only screen and (max-width: 1200px) {
    #page-header-left {
        width: 70px;
        overflow: none;
    }

        #page-header-left .site-branding {
            padding: 0px 0px 0px 23px;
        }

            #page-header-left .site-branding .site-logo a {
                background-size: 250px;
            }

        #page-header-left .profile {
            padding-bottom: 35px;
        }

        #page-header-left .profile-bar {
            padding-left: 19px;
        }

            #page-header-left .profile-bar a {
                display: none;
            }

        #page-header-left .inbox-count {
            padding: 7px 0px 0px 23px;
        }

            #page-header-left .inbox-count span {
                top: -5px;
                left: 35px;
            }

            #page-header-left .inbox-count p {
                display: none;
            }

        #page-header-left .drop-select {
            display: none;
        }

        #page-header-left .main-nav li a {
            text-indent: -9999px;
            padding: 15px 0px 15px 21px;
        }

        #page-header-left .main-nav li span {
            display: none;
        }

        #page-header-left .main-nav .has-menu span {
            display: none;
        }

        #page-header-left .page-header-left_footer {
            display: none;
        }

    .account-list .col-2 .trigger {
        background: transparent;
        border: none;
        box-shadow: none;
        width: 70px;
        color: var(--P1);
        padding-left: 0px;
    }

        .account-list .col-2 .trigger:after {
            top: 16px;
            border-top-color: var(--P1);
            margin-right: 5px;
        }

    #page-header-left.mobile {
        width: 260px;
    }

        #page-header-left.mobile .site-branding {
            padding: 0px 27px 0px 27px;
        }

            #page-header-left.mobile .site-branding .site-logo a {
                background-size: 100%;
            }

        #page-header-left.mobile .profile {
            padding-bottom: 15px;
        }

        #page-header-left.mobile .profile-bar {
            padding-left: 27px;
        }

            #page-header-left.mobile .profile-bar a {
                display: block;
            }

        #page-header-left.mobile .inbox-count {
            padding: 7px 0px 0px 27px;
        }

            #page-header-left.mobile .inbox-count span {
                top: -5px;
                left: 43px;
            }

            #page-header-left.mobile .inbox-count p {
                display: block;
            }

        #page-header-left.mobile .drop-select {
            display: block;
        }

        #page-header-left.mobile .main-nav li a {
            text-indent: 0px;
        }

        #page-header-left.mobile .main-nav li span {
            display: block;
            margin-top: -16px;
        }

        #page-header-left.mobile .main-nav .has-menu span {
            display: block;
            margin-top: -16px;
        }

        #page-header-left.mobile .page-header-left_footer {
            display: block;
        }

    #main {
        margin-left: 70px;
        padding-top: 0px;
    }

    .page-header-left_wrapper .menu-btn {
        display: block;
        cursor: pointer;
        width: 100%;
        background: transparent;
        height: 98px;
        top: 0;
        left: 0;
    }

        .page-header-left_wrapper .menu-btn ul {
            padding-top: 40px;
        }

    .menu-btn li {
        width: 21px;
        height: 2px;
        background: var(--BG);
        margin-bottom: 7px;
    }

    .page-header-left_wrapper.menu-btn .second {
        position: relative;
    }

    .page-header-left_wrapper .menu-btn.with-notify .second {
        width: 21px;
    }

        .page-header-left_wrapper.menu-btn.with-notify .second:after {
            content: '';
            width: 8px;
            height: 8px;
            -webkit-border-radius: 100%;
            -moz-border-radius: 100%;
            -ms-border-radius: 100%;
            border-radius: 100%;
            position: absolute;
            right: -10px;
            top: -3px;
            background: #eb0255;
        }
}

@media only screen and (max-width: 720px) {
    #page-header-left {
        width: 100%;
        height: 50px;
        overflow: hidden;
    }

        #page-header-left .site-branding {
            padding: 0px 0px 0px 0px;
            height: 50px;
            position: relative;
            box-shadow: none;
            margin-top: 0px;
            margin-bottom: 0px;
            width: 170px;
            float: right;
        }

            #page-header-left .site-branding h1 {
                float: right;
                margin-right: 20px;
                margin-top: 7px;
                font: 400 50px/1.3 "Roboto", sans-serif;
            }

            #page-header-left .site-branding .site-logo a {
                background-size: 130px;
                overflow: hidden;
            }

        #page-header-left .profile {
            display: none;
        }

        #page-header-left .main-nav {
            display: none;
        }

    .page-header-left_footer {
        display: none;
    }

    #main {
        margin: 0px;
    }

    .slider-tabs {
        top: auto !important;
    }

    .list-options {
        top: 60px !important;
    }

    .page-header-left_wrapper .menu-btn {
        padding-top: 18px;
        padding-left: 20px;
    }

        .page-header-left_wrapper .menu-btn ul {
            padding-top: 20px;
            padding-left: 40px;
        }

    #page-header-left.mobile {
        width: 260px;
        height: 100%;
        overflow: none;
    }

        #page-header-left.mobile .site-branding {
            float: left;
            margin-top: 10px;
            width: 100%;
            padding: 0px 27px 0px 27px;
            margin-bottom: 20px;
            box-shadow: -4px 6px 12px rgba(241, 241, 241, 0.8);
            height: auto;
        }

            #page-header-left.mobile .site-branding h1 {
                float: none;
                margin-right: 0px;
                margin-top: 0px;
                font: 400 32px/1.3 "Roboto", sans-serif;
            }

            #page-header-left.mobile .site-branding .site-logo a {
                background-size: 100%;
                overflow: none;
                height: 65px;
            }

        #page-header-left.mobile .profile {
            display: block;
        }

        #page-header-left.mobile .main-nav {
            display: block;
        }

        #page-header-left.mobile .page-header-left_wrapper .menu-btn {
            top: 0px;
            z-index: 100;
        }

            #page-header-left.mobile .page-header-left_wrapper .menu-btn ul {
                padding-top: 40px;
                padding-left: 10px;
            }

    .page-header-left_wrapper .menu-btn {
        padding-top: 0px;
        padding-left: 0px;
        margin-left: -20px;
    }

    .page-header-left_footer {
        display: block;
    }
}

@media only screen and (max-width: 400px) {
    #page-header-left.mobile {
        width: 100%;
    }

        #page-header-left.mobile .site-branding .site-logo a {
            background-size: 230px;
        }
}

@media only screen and (max-height: 680px) {
    #page-header-left.mobile {
        overflow-x: hidden;
    }

    .page-header-left_footer {
        position: relative;
        margin-top: 20%;
    }

    #page-header-left .site-branding {
        /*   padding: 0px 7px 0px 21px;*/
    }
}

/*This was commented out in previous version--BEGIN*/
.list-options {
    position: absolute;
    right: 30px;
    top: 30px;
    zoom: 1;
    overflow: hidden;
}

    .list-options:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .list-options li {
        float: left;
        display: inline-block;
        width: 38px;
        height: 21px;
        text-indent: -999px;
        background-repeat: no-repeat;
        cursor: pointer;
    }

    .list-options .option-slider {
        background-image: url(/webapp/Themes/StandardRedesign/img/icons/grid-icon-2.png);
        background-position: center 7px;
        background-size: 20px;
    }

        .list-options .option-slider.active {
            background-position: center -14px;
        }

    .list-options .option-list {
        background-image: url(/webapp/Themes/StandardRedesign/img/icons/list-icon-2.png);
        background-position: center 5px;
        background-size: 20px;
    }

        .list-options .option-list.active {
            background-position: center -15px;
        }

/*.accounts-widget .account-tab {
    position: absolute;
    top: 80px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}*/

/*.account-tab.active {
    opacity: 1;
    visibility: visible;
}*/

/*This was commented out in previous version--END*/


/* Grid widgets ----------------------------------------------------------------------------------------------- */
/* Widget grid */

.widget-grid {
    width: 100%;
}

    .widget-grid .widget-h-1 .widget-inner { /*Visina widgeta zavisi od ovoga? Pakao.*/
        height: 410px;
        /*   z-index: 998;*/
    }


    .widget-grid .widget-inner {
        background: var(--BG);
        position: relative;
        border: 1px solid #dadada;
    }


.widget-grid-options {
    position: relative;
    zoom: 1;
    z-index: 10;
    /* margin-bottom: 10px;*/
}


    .widget-grid-options .grid-title {
        float: left;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        color: #b7b7b7;
        background: var(--K4);
        position: relative;
        padding-right: 10px;
    }


.grid-options .widget-select {
    position: relative;
    padding-right: 16px;
    z-index: 1;
}

    .grid-options .widget-select:after {
        /*      content: '';*/
        position: absolute;
        right: 0;
        top: 7px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 5px 4px 0 4px;
        border-color: var(--P0) transparent transparent transparent;
    }



.grid-options .grid-option.active {
    z-index: 1;
}

.grid-options .active .widget-select-menu {
    opacity: 1;
    visibility: visible;
}

.widget {
    position: relative;
    background: var(--BG);
}

    .widget .title-1 {
        font-size: 14px;
    }

        .widget .title-1 span:after {
            width: 36px;
        }

.widget-header {
    zoom: 1;
}

    .widget-header:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .widget-header .cnt {
        zoom: 1;
    }

        .widget-header .cnt:after {
            display: block;
            visibility: hidden;
            height: 0;
            clear: both;
            content: ".";
        }

    .widget-header .col-left {
        float: left;
    }

    .widget-header .col-right {
        float: right;
    }

    .widget-header .table-head {
        padding-top: 14px;
    }

.table-head {
    padding-top: 20px;
}

    .table-head .col {
        padding: 8px 15px;
    }

    .table-head p {
        font-family: 'Roboto', sans-serif;
        font-size: 12px;
        color: var(--K2);
        text-transform: uppercase;
        margin-bottom: 0;
    }

.widget-header.header-dark {
    background: var(--P0);
}

.widget-actions {
    zoom: 1;
}

    .widget-actions:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }



    .widget-actions i {
        display: inline-block;
        width: 15px;
        height: 15px;
        background-size: 15px;
        background-position: center center;
        background-repeat: no-repeat;
        cursor: pointer;
    }

    .widget-actions .widget-options {
        /* position: static;
        margin-top: 2px;*/
    }

    .widget-actions .options-list {
        top: 28px;
        box-shadow: 0 5px 13px 5px rgba(0, 0, 0, 0.2);
        -webkit-box-shadow: 0 5px 13px 5px rgba(0, 0, 0, 0.2);
        z-index: 1;
    }

    .widget-actions.widget-corner {
        /*   position: absolute;
        top: 15px;
        right: 10px;*/
    }

.mobile-detected .drag-handle,
.tablet-detected .drag-handle {
    display: none;
}

.widget-tabs:after {
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
    content: ".";
}

.widget-tabs li.active:after {
    height: 3px;
}

.widget-tabs li.active a,
.widget-tabs li:hover a {
    color: var(--BG);
}

.widget-tabs.style-2 li {
    font-size: 14px;
    padding-left: 16px;
    padding-right: 16px;
    line-height: 16px;
}

    .widget-tabs.style-2 li a {
        color: var(--K2);
    }

    .widget-tabs.style-2 li.active a,
    .widget-tabs.style-2 li:hover a {
        color: var(--P1);
    }


.widget-map {
    position: relative;
}

    .widget-map .widget-header {
        position: relative;
        z-index: 10;
    }

    .widget-map .map-search {
        width: calc(100% - 20px);
        font-family: 'Roboto', sans-serif;
        font-size: 14px;
        font-weight: 700;
        color: #148cb8;
        position: absolute;
        bottom: 13px;
        left: 10px;
        z-index: 10;
        background: var(--BG) url(/webapp/Themes/StandardRedesign/img/icons/icon-search.png) 94% center no-repeat;
        background-size: 17px;
        border: none;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        -ms-border-radius: 2px;
        border-radius: 2px;
        padding: 12px 42px 12px 16px;
        border-bottom: 2px solid #148cb8;
    }

        .widget-map .map-search:focus {
            outline: none;
        }

.widget-transactions .btn-1,
.widget-transactions-pfm .btn-1 {
    float: right;
    max-width: 360px;
    width: 100%;
}

.widget-transactions .table-btn.btn-retry,
.widget-transactions-pfm .table-btn.btn-retry {
    height: 25px;
    float: left;
    padding: 0 5px;
    position: relative;
    top: 5px;
}

    .widget-transactions .table-btn.btn-retry i,
    .widget-transactions-pfm .table-btn.btn-retry i {
        width: 15px;
        height: 15px;
        margin-right: 0;
        top: -6px;
        background-size: 12px;
    }

.widget-transactions .custom-table .tag,
.widget-transactions-pfm .custom-table .tag {
    top: 10px;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    /*top: 0;
    left: 0;*/
}

    .map-wrapper #map-canvas {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

.map-wrapper-side-modal {
    height: 200px;
    position: relative;
    width: 100%;
    margin-top: 20px;
}

#map-canvas-side-modal {
    width: 100%;
    height: 245px;
}

.infobox-wrapper {
    display: none;
    background: var(--BG);
}

.infobox-button-container {
    display: flex;
    justify-content: space-between;
    height: 50px;
    column-gap: 16px;
    margin: 5px 10px;
}

.infobox {
    display: block;
    justify-content: space-between;
    height: 180px;
    width: 400px;
    background: var(--P1);
    background-size: 30px;
    padding: 10px 10px;
    padding-right: 60px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    word-spacing: 2px;
}

    .infobox .loc-kind {
        font-family: 'Roboto', sans-serif;
        font-size: 15px;
        text-transform: uppercase;
        line-height: 16px;
        color: var(--BG);
        letter-spacing: 0.5px;
        margin-bottom: 0px;
    }

    .infobox .loc-title {
        font-family: 'Roboto', sans-serif;
        font-size: 18px;
        line-height: 20px;
        font-weight: 900;
        color: var(--BG);
        margin-bottom: 0px;
    }

    .infobox .loc-info {
        font-family: 'Roboto', sans-serif;
        font-size: 15px;
        line-height: 16px;
        color: var(--BG);
        letter-spacing: 0.5px;
        margin-bottom: 0px;
    }

    .infobox img {
        width: 15px;
        height: 15px;
    }

    .infobox.bg-atm {
        background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-atm-1.png);
    }

    .infobox.bg-branch {
        background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-branch-1.png);
        background-color: red !important;
    }

.gm-style img {
    width: 15px;
    height: 15px;
}

.widget-exchange .widget-buttons.two-buttons {
    zoom: 1;
}

    .widget-exchange .widget-buttons.two-buttons:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

.widget-exchange .btn-1 {
    float: left;
    width: 49%;
}

.widget-exchange .widget-buttons .btn-1:first-child {
    margin-right: 2%;
}


.actions-wrap:after {
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
    content: ".";
}



.actions-wrap .action-box:hover i {
}

.widget-advertising h2 {
    font-size: 42px;
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--P0);
    letter-spacing: -2px;
    line-height: 40px;
}

.widget-advertising .promo {
    float: left;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.widget-advertising .apps {
    position: absolute;
    top: 120px;
    right: 15px;
}

    .widget-advertising .apps li {
        margin-bottom: 5px;
    }

#page-footer span {
    font-size: 12px;
    font-family: roboto-regular;
}

#page-footer-prelogin .app-version {
    white-space: pre;
}

#page-footer .app-version {
    font-family: roboto-medium;
}

#page-footer .app-copyright {
    margin: 0 auto;
}

#page-footer-prelogin span {
    font-size: 12px;
    font-family: roboto-regular;
}


.widget-calendar .ui-widget.ui-widget-content {
    border: none;
}

.widget-calendar .ui-widget-content {
    border: none;
}

.widget-calendar .ui-datepicker {
    width: 100%;
    padding: 30px 0px;
}

.widget-calendar table thead th {
    color: var(--K1);
}

.widget-calendar .ui-datepicker .ui-datepicker-title {
    font-size: 17px;
    font-family: inherit;
    margin-bottom: 20px;
}

.widget-calendar .ui-widget-content .ui-state-default {
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    width: 35px;
    height: 35px;
    padding-top: 11px;
}

.widget-calendar .ui-state-default,
.widget-calendar .ui-widget-content .ui-state-default {
    border: none;
}

.widget-calendar .ui-widget-content .ui-state-default {
    color: #9a9a9a;
    transition: all ease 0.3s;
}

.widget-calendar .ui-priority-secondary,
.widget-calendar .ui-widget-content .ui-priority-secondary,
.widget-calendar .ui-widget-header .ui-priority-secondary {
    opacity: 1;
    color: #ededed;
    transition: all ease 0.3s;
}

.widget-calendar .ui-widget-content .ui-state-active {
    border-color: var(--P1);
    background: var(--P1);
    color: var(--BG);
    transition: all ease 0.3s;
}

.widget-calendar .ui-widget-content .ui-state-hover {
    border-color: #f4f4f4;
    background: #f7f7f7;
    color: #9a9a9a;
    transition: all ease 0.3s;
}

.widget-calendar .ui-datepicker .ui-datepicker-prev span,
.widget-calendar .ui-datepicker .ui-datepicker-prev.ui-state-hover span {
    background: url(/webapp/Themes/StandardRedesign/img/icons/arrow-left-2.png) center center no-repeat;
    background-size: 6px;
    border: none;
}

.widget-calendar .ui-datepicker .ui-datepicker-next span,
.widget-calendar .ui-datepicker .ui-datepicker-next.ui-state-hover span {
    background: url(/webapp/Themes/StandardRedesign/img/icons/arrow-right-2.png) center center no-repeat;
    background-size: 6px;
    border: none;
}

.widget-calendar .ui-datepicker td {
    text-align: center;
}

#page-footer .social {
    float: right;
}

    #page-footer .social li a {
        display: inline-block;
        height: 25px;
        text-indent: -9999px;
        overflow: hidden;
        background-repeat: no-repeat;
    }

    #page-footer .social .icon-linkedin-2 {
        width: 15px;
        background-size: 15px;
    }

    #page-footer .social .icon-facebook-2 {
        width: 7px;
        background-size: 7px;
    }

    #page-footer .social .icon-twitter-2 {
        width: 17px;
        background-size: 17px;
        background-position: center 2px;
    }

#page-footer-prelogin .social {
    float: right;
}

    #page-footer-prelogin .social li a {
        display: inline-block;
        height: 25px;
        text-indent: -9999px;
        overflow: hidden;
        background-repeat: no-repeat;
    }

    #page-footer-prelogin .social .icon-linkedin-2 {
        width: 15px;
        background-size: 15px;
    }

    #page-footer-prelogin .social .icon-facebook-2 {
        width: 7px;
        background-size: 7px;
    }

    #page-footer-prelogin .social .icon-twitter-2 {
        width: 17px;
        background-size: 17px;
        background-position: center 2px;
    }
/* Payment between accounts ----------------------------------------------------------------------------------------------- */

.account-row.account-bg-1 {
    background: #363A40 url(/webapp/Themes/StandardRedesign/img/bg/acc-bg-2.png) center top no-repeat;
    background-size: cover;
}

.account-row.account-bg-2 {
    background: var(--P0) url(/webapp/Themes/StandardRedesign/img/bg/acc-bg-3.png) center top no-repeat;
    background-size: cover;
}

.account-row.account-bg-3 {
    background: var(--P0) url(/webapp/Themes/StandardRedesign/img/bg/acc-bg-2.png) center center no-repeat;
    background-size: cover;
}

.account-row {
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
    z-index: 15;
}

    .account-row .title-1 {
        width: 850px;
        text-align: left;
        margin: 0 auto;
        margin-bottom: 10px;
    }

    .account-row .swiper-pagination-1,
    .account-row .swiper-pagination-2 {
        display: none;
        position: absolute;
        bottom: 17px;
        width: 100%;
        text-align: center;
        z-index: 50;
    }

    .account-row .swiper-pagination-bullet {
        width: 9px;
        height: 9px;
        background: transparent;
        border: 2px solid var(--BG);
        opacity: 1;
        margin: 0 4px;
    }

    .account-row .swiper-pagination-bullet-active {
        background: var(--BG);
    }

    .account-row .swiper-button-prev,
    .account-row .swiper-button-next {
        width: 50px;
        height: 50px;
        top: 110px;
    }

    .account-row .swiper-button-prev {
        left: 50%;
        margin-left: -550px;
        background: var(--P0) url(/webapp/Themes/StandardRedesign/img/icons/arrow-left-1.png) center center no-repeat;
    }

    .account-row .swiper-button-next {
        right: 50%;
        margin-right: -550px;
        background: var(--P0) url(/webapp/Themes/StandardRedesign/img/icons/arrow-right-1.png) center center no-repeat;
    }

    .account-row .swiper-slide {
        opacity: 0;
        -webkit-transition: opacity 0.3s ease;
        -moz-transition: opacity 0.3s ease;
        -o-transition: opacity 0.3s ease;
        transition: opacity 0.3s ease;
    }

    .account-row .swiper-slide-active {
        opacity: 1;
    }

    .account-row .account-box {
        text-align: center;
        padding: 15px;
    }

        .account-row .account-box .acc-img {
            width: 70px;
            height: 70px;
        }

        .account-row .account-box .account-main {
            display: inline-block;
            padding-left: 85px;
            padding-top: 10px;
        }

        .account-row .account-box .acc-nr {
            text-align: left;
        }

        .account-row .account-box .acc-name {
            text-align: left;
        }

        .account-row .account-box .main-balance p {
            font-size: 48px;
        }

        .account-row .account-box .select-2 {
            margin-right: 110px;
        }

            .account-row .account-box .select-2 div.fancy-select div.trigger {
                padding: 9px 30px 9px 15px;
            }

                .account-row .account-box .select-2 div.fancy-select div.trigger:after {
                    top: 18px;
                }

            .account-row .account-box .select-2 div.fancy-select ul.options {
                top: 41px;
            }

        .account-row .account-box .main-balance {
            display: inline-block;
        }

            .account-row .account-box .main-balance .acc-balance-txt {
                width: 100%;
                float: left;
                font-family: 'Roboto', sans-serif;
                font-size: 14px;
                font-weight: 700;
                color: var(--K3);
                text-align: center;
                text-transform: uppercase;
            }

    .account-row .account-single {
        max-width: 920px;
        width: 94%;
        margin: 0 auto;
    }

        .account-row .account-single .account-box {
            zoom: 1;
            padding: 15px 20px;
        }

            .account-row .account-single .account-box:after {
                display: block;
                visibility: hidden;
                height: 0;
                clear: both;
                content: ".";
            }

        .account-row .account-single .title-1 {
            float: left;
            text-align: left;
            width: 100%;
            margin-bottom: 25px;
        }

            .account-row .account-single .title-1 span:after {
                width: 36px;
            }

        .account-row .account-single .account-box .acc-nr {
            text-align: left;
        }

        .account-row .account-single .account-box .acc-name {
            text-align: left;
            font-size: 36px;
            line-height: 40px;
            margin-bottom: 0;
            white-space: normal;
        }

        .account-row .account-single .account-box .account-main,
        .account-row .account-single .account-box .main-balance {
            float: left;
            width: 50%;
            padding-top: 5px;
            margin-bottom: 0;
        }

            .account-row .account-single .account-box .main-balance p {
                float: none;
                text-align: right;
            }

        .account-row .account-single .account-box .acc-balance-txt {
            font-family: 'Roboto', sans-serif;
            font-size: 14px;
            line-height: 18px;
            color: var(--P0);
            font-weight: 700;
            text-align: right;
            padding-right: 35px;
            margin-bottom: 0px;
        }

        .account-row .account-single .account-box .main-balance .balance {
            font-size: 36px;
            line-height: 40px;
            margin-bottom: 0;
        }

            .account-row .account-single .account-box .main-balance .balance span {
                font-size: 14px;
            }

    .account-row .slider-tabs {
        position: relative;
        top: 25px;
    }


.main-content {
    width: 100%;
    max-width: 1170px;
    padding: 16px 0;
    margin: 0 auto;
}

    .main-content h2 {
        font-size: 30px;
        font-weight: 300;
    }

        .main-content h2 i {
            display: inline-block;
            float: left;
            width: 30px;
            height: 36px;
            background-repeat: no-repeat;
            background-position: center center;
            margin-right: 8px;
        }

    .main-content.content-full {
        /*  privremeno za testiranje ful sirene contenta*/
        /*   max-width: 752px;*/
        max-width: 1170px;
    }

    /*  privremeno za testiranje ful sirene contenta*/
    .main-content.payment-content-full {
        max-width: 752px;
    }

.content-white {
    background: var(--BG);
    padding: 25px 40px;
    margin-bottom: 25px;
}

    .content-white .title-2 {
        margin-top: 25px;
        margin-bottom: 25px;
    }



.widget-slat:after {
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
    content: ".";
}

.widget-slat .col-left {
    width: 31%;
    float: left;
    margin-right: 4%;
}

    .widget-slat .col-left h2 {
        margin-bottom: 20px;
    }

.widget-slat .col-right {
    width: 65%;
    float: left;
}

    .widget-slat .col-right .content {
        margin-bottom: 60px;
    }

        .widget-slat .col-right .content p {
            font-family: 'Roboto';
            font-size: 16px;
            color: var(--K2);
        }

            .widget-slat .col-right .content p span {
                color: var(--P1);
            }

.widget-slat h3 {
    position: relative;
    margin-bottom: 30px;
}



.widget-slat .col-left p {
    font-size: 14px;
    color: var(--K2);
    line-height: 18px;
}

    .widget-slat .col-left p span {
        color: var(--P1);
    }



.links-list {
    border-top: 1px solid var(--K3);
    margin-bottom: 40px;
}

    .links-list a {
        display: block;
        font-size: 14px;
        color: var(--P1);
        font-weight: 700;
        border-bottom: 1px solid var(--K3);
        position: relative;
        padding: 15px 15px 15px 0;
        background: var(--BG);
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

        .links-list a:after {
            content: '';
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 4px 0 4px 5px;
            border-color: transparent transparent transparent var(--P1);
            position: absolute;
            top: 50%;
            margin-top: -4px;
            right: 7px;
            -webkit-transition: right 0.3s ease;
            -moz-transition: right 0.3s ease;
            -o-transition: right 0.3s ease;
            transition: right 0.3s ease;
        }

        .links-list a:hover {
            background: var(--P2);
            padding-left: 10px;
        }

            .links-list a:hover:after {
                right: 2px;
            }

.custom-form .input-select {
    zoom: 1;
}

    .custom-form .input-select:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .custom-form .input-select .input-1 {
        width: calc(100% - 92px);
        float: left;
        text-align: right;
        font-weight: 700;
    }

    .custom-form .input-select .select-1 {
        float: right;
        width: 82px;
    }

    .custom-form .input-select .select-3 {
        float: right;
        width: 82px;
    }

        .custom-form .input-select .select-3 .dk-selected {
            padding: 1.4rem 2.5rem 1.1rem 1.2rem;
            font-size: 14px;
            font-weight: 700;
        }

        .custom-form .input-select .select-3 .dk-option {
            font-size: 14px;
        }

.custom-form .dk-select-disabled {
    opacity: 0.5 !important;
}

.custom-form .input-select .select-3 select {
    padding: 0;
    font-size: 14px;
    padding: 1rem 2rem 1rem 1.2rem;
    font-weight: 700;
}

.custom-form .input-select .select-1 .dd-selected-text {
    font-size: 14px;
    font-weight: 600;
}

.custom-form .input-select .select-1 .dd-selected {
    padding: 12px;
}

.custom-form .input-select .select-1 .dd-option {
    font-size: 14px;
    font-weight: 600;
    padding-left: 12px;
}

.custom-form .input-select .error-msg {
    float: left;
    width: 100%;
    padding-right: 92px;
}

.custom-form .date-wrap {
    position: relative;
    max-width: 220px;
}

    .custom-form .date-wrap.full-width {
        max-width: none;
    }

    .custom-form .date-wrap:before {
        content: '';
        width: 20px;
        height: 21px;
        position: absolute;
        top: 10px;
        right: 10px;
        background: url(/webapp/Themes/StandardRedesign/img/icons/icon-calendar-1.png) 0 0 no-repeat;
        background-size: 20px;
        z-index: 1;
    }

    .custom-form .date-wrap.light:before {
        content: '';
        width: 20px;
        height: 21px;
        position: absolute;
        top: 10px;
        right: 10px;
        background: url(/webapp/Themes/StandardRedesign/img/icons/icon-calendar-2.png) 0 0 no-repeat;
        background-size: 20px;
        z-index: 1;
    }

.custom-form .date-checkbox .date-wrap {
    float: left;
    width: 250px;
    margin-right: 35px;
}

.custom-form .date-checkbox .checkbox-wrap {
    float: left;
}

.custom-form .input-icon-wrap {
    zoom: 1;
}

    .custom-form .input-icon-wrap:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .custom-form .input-icon-wrap .input-1 {
        width: calc(100% - 55px);
        float: left;
    }

    .custom-form .input-icon-wrap .input-icon {
        display: inline-block;
        float: right;
        width: 39px;
        height: 39px;
        background-color: var(--P1);
        background-repeat: no-repeat;
        background-position: center center;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        -ms-border-radius: 100%;
        border-radius: 100%;
        -webkit-transition: background 0.3s ease;
        -moz-transition: background 0.3s ease;
        -o-transition: background 0.3s ease;
        transition: background 0.3s ease;
    }

        .custom-form .input-icon-wrap .input-icon:hover {
            background-color: var(--P1);
        }

        .custom-form .input-icon-wrap .input-icon.icon-book-1 {
            background-size: 18px;
        }

.custom-form .checkbox-wrap-2 {
    display: inline-block;
}

    .custom-form .checkbox-wrap-2 .checkbox-2 {
        display: block;
        float: left;
    }

    .custom-form .checkbox-wrap-2 .checkbox-label-2 {
        display: block;
        float: left;
        padding-top: 11px;
        margin-left: 15px;
        margin-bottom: 10px;
    }

.custom-form .group-inner.error .dk-selected {
    border: 2px solid #ff0202;
}

.widget .widget-inner {
    position: relative;
}

.loader-wrap {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.cssload-container {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
}

.notification {
    padding: 20px 25px 30px 25px;
    position: relative;
}

    .notification p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 0;
        text-align: center;
        color: var(--BG);
        text-transform: uppercase;
    }

        .notification p a {
            text-decoration: underline;
            color: var(--BG);
        }

    .notification i {
        display: inline-block;
        width: 24px;
        height: 24px;
        background-size: 24px;
        margin-right: 10px;
        position: relative;
        top: 5px;
    }

    .notification .close-btn {
        display: inline-block;
        width: 8px;
        height: 8px;
        position: absolute;
        top: 50%;
        right: 10px;
        margin-top: -4px;
        background: url(/webapp/Themes/StandardRedesign/img/icons/icon-close-1.png);
        background-size: 8px;
    }

    .notification.green {
        background: #7cb342;
    }

    .notification.red {
        background: #b71c1c;
    }

.payment-widget,
.pfm-post-v2 {
    position: relative;
}



    .payment-widget .steps,
    .pfm-post-v2 .steps {
        position: absolute;
        left: 35%;
        top: 30px;
    }

    .payment-widget .links-list,
    .pfm-post-v2 .links-list {
        margin-top: 25px;
    }



.plain-list div {
    zoom: 1;
}

    .plain-list div:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

.plain-list p {
    line-height: 20px;
    margin-bottom: 4px;
}



.plain-list .link-row {
    padding: 0 15px 0 0;
    position: relative;
}

    .plain-list .link-row .value-description {
        font-weight: 400 !important;
    }

    .plain-list .link-row:after {
        content: "";
        width: 5px;
        height: 8px;
        display: block;
        background: url(/webapp/Themes/StandardRedesign/img/icons/arrow-right-2.png) no-repeat center center;
        background-size: 5px;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    .plain-list .link-row:hover:after {
        right: 10px;
    }

    .plain-list .link-row .value-description,
    .plain-list .value-description {
        font-size: 18px;
        color: var(--P1);
        font-weight: 400;
    }

        .plain-list .link-row .value-description span,
        .plain-list .value-description span {
            display: block;
            font-size: 14px;
            text-transform: uppercase;
            color: var(--K2);
        }

        .plain-list .link-row .value-description .data,
        .plain-list .value-description .data {
            text-transform: none;
        }

.plain-list .key {
    float: left;
    font-size: 14px;
    color: var(--K2);
}

.plain-list .value {
    font-size: 18px;
    color: var(--P1);
    float: right;
}

    .plain-list .value.color-2 {
        color: #55c45f;
    }

    .plain-list .value.color-3 {
        color: #eb0255;
    }

    .plain-list .value.icon-value {
        margin-bottom: 10px;
    }

        .plain-list .value.icon-value i {
            width: 30px;
            height: 30px;
            display: inline-block;
            margin-bottom: -8px;
        }

.plain-list .plain-list-link {
    margin: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .plain-list .plain-list-link:hover {
        background: var(--P2);
    }

.plain-list .action-pointer {
    padding-right: 15px;
    overflow: hidden;
    position: relative;
}

    .plain-list .action-pointer:after {
        content: "";
        width: 5px;
        height: 8px;
        display: block;
        position: absolute;
        top: 50%;
        right: 0;
        margin-top: -4px;
        background: url(/webapp/Themes/StandardRedesign/img/icons/arrow-right-2.png) no-repeat center center;
        background-size: 5px;
        visibility: visible;
    }

.plain-list .tag.up,
.plain-list .tag.down {
    padding-right: 20px;
}

.plain-list .tag.up {
    background: url(/webapp/Themes/StandardRedesign/img/icons/arrow-top-2.png) no-repeat right center;
    background-size: 11px;
}

.plain-list .tag.down {
    background: url(/webapp/Themes/StandardRedesign/img/icons/arrow-bottom-3.png) no-repeat right center;
    background-size: 11px;
}

.plain-list.border-top {
    padding-top: 25px;
    border-top: 1px solid var(--K3);
}

.icon-traveling {
    background: url(/webapp/Themes/StandardRedesign/img/icons/icon-traveling.png) no-repeat center center;
    background-size: 30px;
}

.plain-list.no-mb {
    margin-bottom: 0;
}

.payment-list .button-wrap {
    padding: 10px;
    text-align: right;
}

.payment-list .btn-1 {
    display: inline-block;
    width: auto;
    min-width: 350px;
}
/* PFM ----------------------------------------------------------------------------------------------- */

.pfm-post-v2 .uk-width-1-1.width-70 {
    width: 70%;
}

.pfm-post-v2 .uk-width-1-1 .group-inner .label-1 {
    text-transform: none;
    font-weight: 500;
    padding-bottom: 20px;
    font-size: 15px;
    color: var(--K2);
}

.pfm-post-v2 .widget-slat .col-right .content {
    margin-bottom: 40px;
}

.pfm-post-v2 .widget-slat .col-left p {
    line-height: 30px;
}

.pfm .pfm-notification .description p {
    float: left;
}

.pfm .pfm-notification .notification-condition {
    float: left;
    margin-top: -10px;
    width: 50px;
}

.pfm .pfm-notification .special-notif {
    color: var(--P1);
    font-weight: 600;
    font-size: 15px;
    margin-top: 15px;
}

.pfm .widget-buttons {
    width: 60%;
    margin: auto;
    margin-top: 15px;
}

.pfm-transactions-list .widget > .container,
.widget-transactions-pfm .widget > .container,
.pfm-financial-calendar .widget > .container,
.pfm-financial-treemap .widget > .container,
.pfm-financial-donut .widget > .container,
.pfm-financial-bar .widget > .container {
    padding-bottom: 0px;
    width: 100%;
}

.pfm-transactions-list .widget,
.widget-transactions-pfm .widget,
.pfm-financial-calendar .widget,
.pfm-financial-treemap .widget,
.pfm-financial-donut .widget,
.pfm-financial-bar .widget {
    border: none;
}

.pfm-transactions-list .table-head .head-txt-1,
.widget-transactions-pfm .table-head .head-txt-1,
.pfm-financial-calendar .table-head .head-txt-1,
.pfm-financial-treemap .table-head .head-txt-1,
.pfm-financial-donut .table-head .head-txt-1,
.pfm-financial-bar .table-head .head-txt-1 {
    text-align: left;
}

.pfm-transactions-list .table-row,
.widget-transactions-pfm .table-row,
.pfm-financial-calendar .table-row,
.pfm-financial-treemap .table-row,
.pfm-financial-donut .table-row,
.pfm-financial-bar .table-row {
    cursor: pointer;
}

.pfm-transactions-list .custom-table .order-icon,
.widget-transactions-pfm .custom-table .order-icon,
.pfm-financial-calendar .custom-table .order-icon,
.pfm-financial-treemap .custom-table .order-icon,
.pfm-financial-donut .custom-table .order-icon,
.pfm-financial-bar .custom-table .order-icon {
    position: absolute;
    top: 15px;
    right: 10px;
}

.pfm-transactions-list .widget-actions.widget-corner,
.widget-transactions-pfm .widget-actions.widget-corner,
.pfm-financial-calendar .widget-actions.widget-corner,
.pfm-financial-treemap .widget-actions.widget-corner,
.pfm-financial-donut .widget-actions.widget-corner,
.pfm-financial-bar .widget-actions.widget-corner {
    top: 0px;
    right: 0px;
}

.pfm-transactions-list .widget-actions .widget-options,
.widget-transactions-pfm .widget-actions .widget-options,
.pfm-financial-calendar .widget-actions .widget-options,
.pfm-financial-treemap .widget-actions .widget-options,
.pfm-financial-donut .widget-actions .widget-options,
.pfm-financial-bar .widget-actions .widget-options {
    margin-top: 0px;
    padding: 0 0;
}

.pfm-transactions-list .widget-options .trigger-3,
.widget-transactions-pfm .widget-options .trigger-3,
.pfm-financial-calendar .widget-options .trigger-3,
.pfm-financial-treemap .widget-options .trigger-3,
.pfm-financial-donut .widget-options .trigger-3,
.pfm-financial-bar .widget-options .trigger-3 {
    padding: 20px 25px;
    background: #eb0255;
    z-index: 60;
    position: relative;
    cursor: pointer;
}

    .pfm-transactions-list .widget-options .trigger-3 li,
    .widget-transactions-pfm .widget-options .trigger-3 li,
    .pfm-financial-calendar .widget-options .trigger-3 li,
    .pfm-financial-treemap .widget-options .trigger-3 li,
    .pfm-financial-donut .widget-options .trigger-3 li,
    .pfm-financial-bar .widget-options .trigger-3 li {
        width: 4px;
        height: 4px;
        background: var(--BG);
        border-radius: 100%;
        margin-bottom: 2px;
    }

.pfm-transactions-list .widget-actions .options-list,
.widget-transactions-pfm .widget-actions .options-list,
.pfm-financial-calendar .widget-actions .options-list,
.pfm-financial-treemap .widget-actions .options-list,
.pfm-financial-donut .widget-actions .options-list,
.pfm-financial-bar .widget-actions .options-list {
    top: 0px;
}

.pfm-transactions-list .widget-actions .options-list-2,
.widget-transactions-pfm .widget-actions .options-list-2,
.pfm-financial-calendar .widget-actions .options-list-2,
.pfm-financial-treemap .widget-actions .options-list-2,
.pfm-financial-donut .widget-actions .options-list-2,
.pfm-financial-bar .widget-actions .options-list-2 {
    min-width: 280px;
}

    .pfm-transactions-list .widget-actions .options-list-2 li a,
    .widget-transactions-pfm .widget-actions .options-list-2 li a,
    .pfm-financial-calendar .widget-actions .options-list-2 li a,
    .pfm-financial-treemap .widget-actions .options-list-2 li a,
    .pfm-financial-donut .widget-actions .options-list-2 li a,
    .pfm-financial-bar .widget-actions .options-list-2 li a {
        font-weight: 500;
    }

        .pfm-transactions-list .widget-actions .options-list-2 li a:hover,
        .widget-transactions-pfm .widget-actions .options-list-2 li a:hover,
        .pfm-financial-calendar .widget-actions .options-list-2 li a:hover,
        .pfm-financial-treemap .widget-actions .options-list-2 li a:hover,
        .pfm-financial-donut .widget-actions .options-list-2 li a:hover,
        .pfm-financial-bar .widget-actions .options-list-2 li a:hover {
            background-color: var(--K4);
            color: var(--P0);
        }

    .pfm-transactions-list .widget-actions .options-list-2 .active,
    .widget-transactions-pfm .widget-actions .options-list-2 .active,
    .pfm-financial-calendar .widget-actions .options-list-2 .active,
    .pfm-financial-treemap .widget-actions .options-list-2 .active,
    .pfm-financial-donut .widget-actions .options-list-2 .active,
    .pfm-financial-bar .widget-actions .options-list-2 .active {
        background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-check-7.png);
    }

.pfm-transactions-list .custom-table .text-7,
.widget-transactions-pfm .custom-table .text-7,
.pfm-financial-calendar .custom-table .text-7,
.pfm-financial-treemap .custom-table .text-7,
.pfm-financial-donut .custom-table .text-7,
.pfm-financial-bar .custom-table .text-7 {
    padding-top: 8px;
}

.pfm-transactions-list .custom-table .text-3,
.widget-transactions-pfm .custom-table .text-3,
.pfm-financial-calendar .custom-table .text-3,
.pfm-financial-treemap .custom-table .text-3,
.pfm-financial-donut .custom-table .text-3,
.pfm-financial-bar .custom-table .text-3 {
    margin-right: 30px;
}

.pfm-transactions-list .trigger-2,
.widget-transactions-pfm .trigger-2,
.pfm-financial-calendar .trigger-2,
.pfm-financial-treemap .trigger-2,
.pfm-financial-donut .trigger-2,
.pfm-financial-bar .trigger-2 {
    position: absolute;
    right: 0px;
    top: 6px;
    padding: 10px 10px 10px 20px;
}

    .pfm-transactions-list .trigger-2 li,
    .widget-transactions-pfm .trigger-2 li,
    .pfm-financial-calendar .trigger-2 li,
    .pfm-financial-treemap .trigger-2 li,
    .pfm-financial-donut .trigger-2 li,
    .pfm-financial-bar .trigger-2 li {
        width: 4px;
        height: 4px;
        display: block;
        border-radius: 50%;
        background-color: #b1b1b1;
        margin-bottom: 3px;
    }

.pfm-transactions-list .split,
.widget-transactions-pfm .split,
.pfm-financial-calendar .split,
.pfm-financial-treemap .split,
.pfm-financial-donut .split,
.pfm-financial-bar .split {
    display: inline-block;
    width: 100%;
    border: 1px var(--P1) solid;
    text-align: left;
    padding: 10px 22px;
    border-radius: 5px;
    background-color: var(--BG);
    transition: all ease 0.3s;
}

    .pfm-transactions-list .split p,
    .widget-transactions-pfm .split p,
    .pfm-financial-calendar .split p,
    .pfm-financial-treemap .split p,
    .pfm-financial-donut .split p,
    .pfm-financial-bar .split p {
        color: var(--P1);
        font-size: 13px;
        text-transform: uppercase;
        margin-bottom: 0px;
    }

    .pfm-transactions-list .split:after,
    .widget-transactions-pfm .split:after,
    .pfm-financial-calendar .split:after,
    .pfm-financial-treemap .split:after,
    .pfm-financial-donut .split:after,
    .pfm-financial-bar .split:after {
        content: "";
        background: url("/webapp/Themes/StandardRedesign/img/icons/spliting-icon.png") no-repeat;
        display: inline-block;
        width: 20px;
        height: 20px;
        position: absolute;
        right: 30px;
        top: 20px;
    }

    .pfm-transactions-list .split:hover,
    .widget-transactions-pfm .split:hover,
    .pfm-financial-calendar .split:hover,
    .pfm-financial-treemap .split:hover,
    .pfm-financial-donut .split:hover,
    .pfm-financial-bar .split:hover {
        background: var(--P1);
    }

        .pfm-transactions-list .split:hover p,
        .widget-transactions-pfm .split:hover p,
        .pfm-financial-calendar .split:hover p,
        .pfm-financial-treemap .split:hover p,
        .pfm-financial-donut .split:hover p,
        .pfm-financial-bar .split:hover p {
            color: var(--BG);
        }

        .pfm-transactions-list .split:hover:after,
        .widget-transactions-pfm .split:hover:after,
        .pfm-financial-calendar .split:hover:after,
        .pfm-financial-treemap .split:hover:after,
        .pfm-financial-donut .split:hover:after,
        .pfm-financial-bar .split:hover:after {
            background: url("/webapp/Themes/StandardRedesign/img/icons/spliting-icon-2.png") no-repeat;
        }

.pfm-transactions-list .dropdown-1 .main-content .widget,
.widget-transactions-pfm .dropdown-1 .main-content .widget,
.pfm-financial-calendar .dropdown-1 .main-content .widget,
.pfm-financial-treemap .dropdown-1 .main-content .widget,
.pfm-financial-donut .dropdown-1 .main-content .widget,
.pfm-financial-bar .dropdown-1 .main-content .widget {
    margin-bottom: 0px;
}

.pfm-transactions-list .dropdown-1 .widget-select-group,
.widget-transactions-pfm .dropdown-1 .widget-select-group,
.pfm-financial-calendar .dropdown-1 .widget-select-group,
.pfm-financial-treemap .dropdown-1 .widget-select-group,
.pfm-financial-donut .dropdown-1 .widget-select-group,
.pfm-financial-bar .dropdown-1 .widget-select-group {
    margin-top: 0px;
    margin-bottom: 0px;
}

    .pfm-transactions-list .dropdown-1 .widget-select-group .group-icon-selected,
    .pfm-transactions-list .dropdown-1 .widget-select-group .group-icon-selected img,
    .widget-transactions-pfm .dropdown-1 .widget-select-group .group-icon-selected,
    .widget-transactions-pfm .dropdown-1 .widget-select-group .group-icon-selected img,
    .pfm-financial-calendar .dropdown-1 .widget-select-group .group-icon-selected,
    .pfm-financial-calendar .dropdown-1 .widget-select-group .group-icon-selected img,
    .pfm-financial-treemap .dropdown-1 .widget-select-group .group-icon-selected,
    .pfm-financial-treemap .dropdown-1 .widget-select-group .group-icon-selected img,
    .pfm-financial-donut .dropdown-1 .widget-select-group .group-icon-selected,
    .pfm-financial-donut .dropdown-1 .widget-select-group .group-icon-selected img,
    .pfm-financial-bar .dropdown-1 .widget-select-group .group-icon-selected,
    .pfm-financial-bar .dropdown-1 .widget-select-group .group-icon-selected img {
        width: 17px;
        height: 17px;
    }

    .pfm-transactions-list .dropdown-1 .widget-select-group .group-icon-selected,
    .widget-transactions-pfm .dropdown-1 .widget-select-group .group-icon-selected,
    .pfm-financial-calendar .dropdown-1 .widget-select-group .group-icon-selected,
    .pfm-financial-treemap .dropdown-1 .widget-select-group .group-icon-selected,
    .pfm-financial-donut .dropdown-1 .widget-select-group .group-icon-selected,
    .pfm-financial-bar .dropdown-1 .widget-select-group .group-icon-selected {
        top: 9px;
    }

.pfm-transactions-list .dropdown-1 .widget-select-group,
.widget-transactions-pfm .dropdown-1 .widget-select-group,
.pfm-financial-calendar .dropdown-1 .widget-select-group,
.pfm-financial-treemap .dropdown-1 .widget-select-group,
.pfm-financial-donut .dropdown-1 .widget-select-group,
.pfm-financial-bar .dropdown-1 .widget-select-group {
    padding: 0;
    padding-right: 0;
}

.pfm-transactions-list .dropdown-1 .group-selected,
.widget-transactions-pfm .dropdown-1 .group-selected,
.pfm-financial-calendar .dropdown-1 .group-selected,
.pfm-financial-treemap .dropdown-1 .group-selected,
.pfm-financial-donut .dropdown-1 .group-selected,
.pfm-financial-bar .dropdown-1 .group-selected {
    padding: 10px 20px;
}

    .pfm-transactions-list .dropdown-1 .group-selected:before,
    .widget-transactions-pfm .dropdown-1 .group-selected:before,
    .pfm-financial-calendar .dropdown-1 .group-selected:before,
    .pfm-financial-treemap .dropdown-1 .group-selected:before,
    .pfm-financial-donut .dropdown-1 .group-selected:before,
    .pfm-financial-bar .dropdown-1 .group-selected:before {
        right: 20px;
    }

.pfm-transactions-list .dropdown-1 .widget-select-group .content,
.widget-transactions-pfm .dropdown-1 .widget-select-group .content,
.pfm-financial-calendar .dropdown-1 .widget-select-group .content,
.pfm-financial-treemap .dropdown-1 .widget-select-group .content,
.pfm-financial-donut .dropdown-1 .widget-select-group .content,
.pfm-financial-bar .dropdown-1 .widget-select-group .content {
    padding: 0 0 0 0;
}

.pfm-transactions-list .dropdown-1 .group-info,
.widget-transactions-pfm .dropdown-1 .group-info,
.pfm-financial-calendar .dropdown-1 .group-info,
.pfm-financial-treemap .dropdown-1 .group-info,
.pfm-financial-donut .dropdown-1 .group-info,
.pfm-financial-bar .dropdown-1 .group-info {
    padding-left: 30px;
}

.pfm-transactions-list .dropdown-1 .widget-select-group .group-name-selected,
.widget-transactions-pfm .dropdown-1 .widget-select-group .group-name-selected,
.pfm-financial-calendar .dropdown-1 .widget-select-group .group-name-selected,
.pfm-financial-treemap .dropdown-1 .widget-select-group .group-name-selected,
.pfm-financial-donut .dropdown-1 .widget-select-group .group-name-selected,
.pfm-financial-bar .dropdown-1 .widget-select-group .group-name-selected {
    font-size: 13px !important;
    text-transform: uppercase;
}

.pfm-transactions-list .dropdown-1 .widget-select-group .group-select,
.widget-transactions-pfm .dropdown-1 .widget-select-group .group-select,
.pfm-financial-calendar .dropdown-1 .widget-select-group .group-select,
.pfm-financial-treemap .dropdown-1 .widget-select-group .group-select,
.pfm-financial-donut .dropdown-1 .widget-select-group .group-select,
.pfm-financial-bar .dropdown-1 .widget-select-group .group-select {
    height: 250px;
}

.pfm-transactions-list .dropdown-1 .widget-select-group .group-name,
.widget-transactions-pfm .dropdown-1 .widget-select-group .group-name,
.pfm-financial-calendar .dropdown-1 .widget-select-group .group-name,
.pfm-financial-treemap .dropdown-1 .widget-select-group .group-name,
.pfm-financial-donut .dropdown-1 .widget-select-group .group-name,
.pfm-financial-bar .dropdown-1 .widget-select-group .group-name {
    font-size: 13px !important;
    text-transform: uppercase;
}

.pfm-transactions-list .dropdown-1 .content ul li,
.widget-transactions-pfm .dropdown-1 .content ul li,
.pfm-financial-calendar .dropdown-1 .content ul li,
.pfm-financial-treemap .dropdown-1 .content ul li,
.pfm-financial-donut .dropdown-1 .content ul li,
.pfm-financial-bar .dropdown-1 .content ul li {
    font-size: 13px !important;
}

.pfm-transactions-list .widget-options,
.widget-transactions-pfm .widget-options,
.pfm-financial-calendar .widget-options,
.pfm-financial-treemap .widget-options,
.pfm-financial-donut .widget-options,
.pfm-financial-bar .widget-options {
    position: unset;
}

@media only screen and (max-width: 720px) {
    .pfm-transactions-list .custom-table .row-1 .col:before,
    .widget-transactions-pfm .custom-table .row-1 .col:before,
    .pfm-financial-calendar .custom-table .row-1 .col:before,
    .pfm-financial-treemap .custom-table .row-1 .col:before,
    .pfm-financial-donut .custom-table .row-1 .col:before,
    .pfm-financial-bar .custom-table .row-1 .col:before {
        display: none;
    }

    .pfm-transactions-list .custom-table .col,
    .widget-transactions-pfm .custom-table .col,
    .pfm-financial-calendar .custom-table .col,
    .pfm-financial-treemap .custom-table .col,
    .pfm-financial-donut .custom-table .col,
    .pfm-financial-bar .custom-table .col {
        padding: 8px 8px;
        position: relative;
    }

    .pfm-transactions-list .custom-table .text-6,
    .widget-transactions-pfm .custom-table .text-6,
    .pfm-financial-calendar .custom-table .text-6,
    .pfm-financial-treemap .custom-table .text-6,
    .pfm-financial-donut .custom-table .text-6,
    .pfm-financial-bar .custom-table .text-6 {
        padding-left: 50px;
    }

    .pfm-transactions-list .trigger-2,
    .widget-transactions-pfm .trigger-2,
    .pfm-financial-calendar .trigger-2,
    .pfm-financial-treemap .trigger-2,
    .pfm-financial-donut .trigger-2,
    .pfm-financial-bar .trigger-2 {
        top: -94px;
        right: 10px;
    }
}

@media only screen and (max-width: 1400px) {
    .pfm-transactions-list .custom-table .text-7,
    .widget-transactions-pfm .custom-table .text-7,
    .pfm-financial-calendar .custom-table .text-7,
    .pfm-financial-treemap .custom-table .text-7,
    .pfm-financial-donut .custom-table .text-7,
    .pfm-financial-bar .custom-table .text-7 {
        padding-top: 5px;
    }
}

#pfm-transaction-detail .map-wrapper-side-modal {
    position: static;
    margin: 11px 0 30px;
}

#pfm-transaction-detail .content-inner .title-1 {
    margin-bottom: 10px;
}

#pfm-transaction-detail .mCSB_inside > .mCSB_container {
    margin-right: 20px;
}

#pfm-transaction-detail .mCustomScrollBox .mCSB_scrollTools.mCSB_scrollTools_vertical .mCSB_dragger .mCSB_dragger_bar {
    width: 3px;
    top: 0px;
    background: #666666;
    opacity: 0.5;
}

#pfm-transaction-detail .mCustomScrollBox .mCSB_scrollTools.mCSB_scrollTools_vertical .mCSB_draggerRail {
    width: 7px;
    background: var(--BG);
    bottom: 1px;
}

#pfm-transaction-detail .mCustomScrollBox .mCSB_scrollTools {
    position: absolute;
    width: 3px;
    height: auto;
    left: auto;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all ease 0.3s;
}

#pfm-transaction-detail .mCustomScrollBox:hover .mCSB_scrollTools {
    opacity: 1;
}

#pfm-transaction-detail .value span {
    position: absolute;
    margin-top: -13px;
    background: var(--P1);
    padding: 3px 9px;
    border-radius: 50%;
    color: var(--BG);
    font-weight: 500;
    right: 2px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
}

#pfm-transaction-detail .pad-right {
    padding-right: 40px;
}

.widget-transactions-pfm .full-btn {
    max-width: 100%;
}

.widget-transactions-pfm .widget-tabs li a {
    color: var(--K2);
}

    .widget-transactions-pfm .widget-tabs li a:hover {
        color: var(--P1);
    }

.widget-transactions-pfm .widget-tabs .active a {
    color: var(--P1);
}

.widget-transactions-pfm .widget-grid .widget {
    padding: 10px 20px;
    padding-right: 40px;
    border-radius: 5px;
    width: 94%;
    max-width: 1170px;
    margin: 0 auto;
    margin-top: 10px;
}

.widget-transactions-pfm .widget-select-group {
    padding: 10px 20px;
    padding-right: 40px;
    border-radius: 5px;
    width: 94%;
    max-width: 1170px;
    margin: 0 auto;
    margin-top: 10px;
}

    .widget-transactions-pfm .widget-select-group .group-select {
        background: var(--P1);
    }

.widget-transactions-pfm .widget-buttons {
    padding: 7px;
    zoom: 1;
}

.widget-transactions-pfm .overflow {
    overflow: visible;
}

.pfm-financial-calendar .widget-options,
.pfm-financial-treemap .widget-options,
.pfm-financial-donut .widget-options,
.pfm-financial-bar .widget-options {
    padding: 0 0;
    margin-top: 0;
}

.pfm-financial-calendar .trigger-6,
.pfm-financial-treemap .trigger-6,
.pfm-financial-donut .trigger-6,
.pfm-financial-bar .trigger-6 {
    font-size: 25px;
    display: block;
    background: #eb0255;
    color: var(--BG);
    padding: 7px 15px;
    z-index: 60;
    position: relative;
    cursor: pointer;
}

.pfm-financial-calendar .calendar-tools,
.pfm-financial-treemap .calendar-tools,
.pfm-financial-donut .calendar-tools,
.pfm-financial-bar .calendar-tools {
    height: 80px;
    width: 100%;
    border-top: 2px solid var(--K4);
    padding: 14px 20px 0px 20px;
}

    .pfm-financial-calendar .calendar-tools .month-prev,
    .pfm-financial-calendar .calendar-tools .month-next,
    .pfm-financial-treemap .calendar-tools .month-prev,
    .pfm-financial-treemap .calendar-tools .month-next,
    .pfm-financial-donut .calendar-tools .month-prev,
    .pfm-financial-donut .calendar-tools .month-next,
    .pfm-financial-bar .calendar-tools .month-prev,
    .pfm-financial-bar .calendar-tools .month-next {
        display: block;
        width: 37px;
        height: 37px;
        border: 1px solid var(--K4);
        content: "";
        float: right;
        background: url(/webapp/Themes/StandardRedesign/img/icons/arrows-sprite-1.png) no-repeat;
        background-position-y: 13px;
        background-position-x: 10px;
        background-size: 15px;
        cursor: pointer;
        transition: all ease 0.3s;
    }

        .pfm-financial-calendar .calendar-tools .month-prev:hover,
        .pfm-financial-calendar .calendar-tools .month-next:hover,
        .pfm-financial-treemap .calendar-tools .month-prev:hover,
        .pfm-financial-treemap .calendar-tools .month-next:hover,
        .pfm-financial-donut .calendar-tools .month-prev:hover,
        .pfm-financial-donut .calendar-tools .month-next:hover,
        .pfm-financial-bar .calendar-tools .month-prev:hover,
        .pfm-financial-bar .calendar-tools .month-next:hover {
            border: 1px solid var(--P1);
        }

    .pfm-financial-calendar .calendar-tools .month-prev,
    .pfm-financial-treemap .calendar-tools .month-prev,
    .pfm-financial-donut .calendar-tools .month-prev,
    .pfm-financial-bar .calendar-tools .month-prev {
        transform: rotate(90deg);
    }

    .pfm-financial-calendar .calendar-tools .month-next,
    .pfm-financial-treemap .calendar-tools .month-next,
    .pfm-financial-donut .calendar-tools .month-next,
    .pfm-financial-bar .calendar-tools .month-next {
        transform: rotate(270deg);
        margin-right: 10px;
    }

.pfm-financial-calendar .widget-tabs,
.pfm-financial-calendar h2,
.pfm-financial-treemap .widget-tabs,
.pfm-financial-treemap h2,
.pfm-financial-donut .widget-tabs,
.pfm-financial-donut h2,
.pfm-financial-bar .widget-tabs,
.pfm-financial-bar h2 {
    padding: 0px 20px;
}

.pfm-financial-calendar .widget > .container,
.pfm-financial-treemap .widget > .container,
.pfm-financial-donut .widget > .container,
.pfm-financial-bar .widget > .container {
    width: 100%;
}

.pfm-financial-calendar header,
.pfm-financial-treemap header,
.pfm-financial-donut header,
.pfm-financial-bar header {
    text-align: center;
}

.pfm-financial-calendar #calendar,
.pfm-financial-treemap #calendar,
.pfm-financial-donut #calendar,
.pfm-financial-bar #calendar {
    width: 100%;
}

    .pfm-financial-calendar #calendar a,
    .pfm-financial-treemap #calendar a,
    .pfm-financial-donut #calendar a,
    .pfm-financial-bar #calendar a {
        color: #8e352e;
        text-decoration: none;
    }

    .pfm-financial-calendar #calendar ul,
    .pfm-financial-treemap #calendar ul,
    .pfm-financial-donut #calendar ul,
    .pfm-financial-bar #calendar ul {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .pfm-financial-calendar #calendar li,
    .pfm-financial-treemap #calendar li,
    .pfm-financial-donut #calendar li,
    .pfm-financial-bar #calendar li {
        display: block;
        float: left;
        width: 14.272%;
        padding: 5px;
        box-sizing: border-box;
        border: 2px solid var(--K4);
        transition: all ease 0.3s;
    }

    .pfm-financial-calendar #calendar ul.weekdays,
    .pfm-financial-treemap #calendar ul.weekdays,
    .pfm-financial-donut #calendar ul.weekdays,
    .pfm-financial-bar #calendar ul.weekdays {
        height: 40px;
        background: #8e352e;
    }

        .pfm-financial-calendar #calendar ul.weekdays li,
        .pfm-financial-treemap #calendar ul.weekdays li,
        .pfm-financial-donut #calendar ul.weekdays li,
        .pfm-financial-bar #calendar ul.weekdays li {
            text-align: center;
            text-transform: uppercase;
            line-height: 20px;
            border: none !important;
            padding: 10px 6px;
            color: var(--BG);
            font-size: 13px;
        }

    .pfm-financial-calendar #calendar .days li,
    .pfm-financial-treemap #calendar .days li,
    .pfm-financial-donut #calendar .days li,
    .pfm-financial-bar #calendar .days li {
        height: 100px;
    }

        .pfm-financial-calendar #calendar .days li:hover,
        .pfm-financial-treemap #calendar .days li:hover,
        .pfm-financial-donut #calendar .days li:hover,
        .pfm-financial-bar #calendar .days li:hover {
            border: 2px solid var(--P1);
        }

    .pfm-financial-calendar #calendar .date,
    .pfm-financial-treemap #calendar .date,
    .pfm-financial-donut #calendar .date,
    .pfm-financial-bar #calendar .date {
        text-align: right;
        margin-bottom: 5px;
        padding: 4px;
        background: transparent;
        color: #b0b0b0;
        border-radius: 50%;
        font-size: 13px;
    }

    .pfm-financial-calendar #calendar .event,
    .pfm-financial-treemap #calendar .event,
    .pfm-financial-donut #calendar .event,
    .pfm-financial-bar #calendar .event {
        clear: both;
        display: block;
        font-size: 13px;
        border-radius: 4px;
        padding: 5px;
        margin-top: 40px;
        margin-bottom: 5px;
        line-height: 14px;
        background: #e4f2f2;
        border: 1px solid #b5dbdc;
        color: #009aaf;
        text-decoration: none;
    }

    .pfm-financial-calendar #calendar .event-desc,
    .pfm-financial-treemap #calendar .event-desc,
    .pfm-financial-donut #calendar .event-desc,
    .pfm-financial-bar #calendar .event-desc {
        color: #666;
        margin: 3px 0 7px 0;
        text-decoration: none;
    }

    .pfm-financial-calendar #calendar .other-month,
    .pfm-financial-treemap #calendar .other-month,
    .pfm-financial-donut #calendar .other-month,
    .pfm-financial-bar #calendar .other-month {
        background: #f5f5f5;
        color: #666;
    }

.pfm-financial-calendar .icon-1,
.pfm-financial-treemap .icon-1,
.pfm-financial-donut .icon-1,
.pfm-financial-bar .icon-1 {
    background: url("/webapp/Themes/StandardRedesign/img/icons/calendar-icon-1.png") no-repeat;
    display: block;
    height: 28px;
    width: 26px;
    float: left;
    margin-top: 20%;
    margin-right: 7px;
}

.pfm-financial-calendar .icon-2,
.pfm-financial-treemap .icon-2,
.pfm-financial-donut .icon-2,
.pfm-financial-bar .icon-2 {
    background: url("/webapp/Themes/StandardRedesign/img/icons/calendar-icon-2.png") no-repeat;
    display: block;
    height: 28px;
    width: 26px;
    float: left;
    margin-top: 20%;
    margin-right: 7px;
}

.pfm-financial-calendar .icon-3,
.pfm-financial-treemap .icon-3,
.pfm-financial-donut .icon-3,
.pfm-financial-bar .icon-3 {
    background: url("/webapp/Themes/StandardRedesign/img/icons/calendar-icon-3.png") no-repeat;
    display: block;
    height: 28px;
    width: 26px;
    float: left;
    margin-top: 20%;
    margin-right: 7px;
}

.pfm-financial-calendar .icon-4,
.pfm-financial-treemap .icon-4,
.pfm-financial-donut .icon-4,
.pfm-financial-bar .icon-4 {
    background: url("/webapp/Themes/StandardRedesign/img/icons/calendar-icon-4.png") no-repeat;
    display: block;
    height: 28px;
    width: 26px;
    float: left;
    margin-top: 20%;
    margin-right: 7px;
}

.pfm-financial-calendar .icon-5,
.pfm-financial-treemap .icon-5,
.pfm-financial-donut .icon-5,
.pfm-financial-bar .icon-5 {
    background: url("/webapp/Themes/StandardRedesign/img/icons/calendar-icon-5.png") no-repeat;
    display: block;
    height: 28px;
    width: 32px;
    float: left;
    margin-top: 20%;
    margin-right: 7px;
}

.pfm-financial-calendar .select-3 .dk-selected,
.pfm-financial-calendar .select-3 .dk-option,
.pfm-financial-treemap .select-3 .dk-selected,
.pfm-financial-treemap .select-3 .dk-option,
.pfm-financial-donut .select-3 .dk-selected,
.pfm-financial-donut .select-3 .dk-option,
.pfm-financial-bar .select-3 .dk-selected,
.pfm-financial-bar .select-3 .dk-option {
    font-size: 15px;
    padding: 1rem 3rem 1rem 1rem;
}

.pfm-financial-calendar .details-wrap,
.pfm-financial-treemap .details-wrap,
.pfm-financial-donut .details-wrap,
.pfm-financial-bar .details-wrap {
    display: none;
}

    .pfm-financial-calendar .details-wrap .show,
    .pfm-financial-treemap .details-wrap .show,
    .pfm-financial-donut .details-wrap .show,
    .pfm-financial-bar .details-wrap .show {
        display: block;
    }

.pfm-financial-calendar .day .selected,
.pfm-financial-treemap .day .selected,
.pfm-financial-donut .day .selected,
.pfm-financial-bar .day .selected {
    display: block;
}

.pfm-financial-calendar .head,
.pfm-financial-treemap .head,
.pfm-financial-donut .head,
.pfm-financial-bar .head {
    height: 80px;
    text-align: center;
    position: relative;
    padding: 20px;
}

    .pfm-financial-calendar .head h3,
    .pfm-financial-treemap .head h3,
    .pfm-financial-donut .head h3,
    .pfm-financial-bar .head h3 {
        font-size: 20px;
        font-weight: 500px;
        margin-bottom: 0px;
    }

    .pfm-financial-calendar .head p,
    .pfm-financial-treemap .head p,
    .pfm-financial-donut .head p,
    .pfm-financial-bar .head p {
        font-size: 15px;
        color: #b1b1b1;
    }

.pfm-financial-calendar .selected,
.pfm-financial-treemap .selected,
.pfm-financial-donut .selected,
.pfm-financial-bar .selected {
    border: 2px solid var(--P1);
}

@media only screen and (max-width: 860px) {
    .pfm-financial-calendar #calendar .weekdays,
    .pfm-financial-calendar #calendar .other-month,
    .pfm-financial-treemap #calendar .weekdays,
    .pfm-financial-treemap #calendar .other-month,
    .pfm-financial-donut #calendar .weekdays,
    .pfm-financial-donut #calendar .other-month,
    .pfm-financial-bar #calendar .weekdays,
    .pfm-financial-bar #calendar .other-month {
        display: none;
        margin-bottom: 0px;
    }

    .pfm-financial-calendar #calendar li,
    .pfm-financial-treemap #calendar li,
    .pfm-financial-donut #calendar li,
    .pfm-financial-bar #calendar li {
        height: auto !important;
        border: 1px solid #ededed;
        width: 100%;
        padding: 10px;
        margin-bottom: 0px;
    }

    .pfm-financial-calendar #calendar .date,
    .pfm-financial-treemap #calendar .date,
    .pfm-financial-donut #calendar .date,
    .pfm-financial-bar #calendar .date {
        float: left;
        text-align: left;
    }

    .pfm-financial-calendar .custom-form.uk-grid .group,
    .pfm-financial-treemap .custom-form.uk-grid .group,
    .pfm-financial-donut .custom-form.uk-grid .group,
    .pfm-financial-bar .custom-form.uk-grid .group {
        width: auto;
    }

    .pfm-financial-calendar .uk-width-1-2,
    .pfm-financial-treemap .uk-width-1-2,
    .pfm-financial-donut .uk-width-1-2,
    .pfm-financial-bar .uk-width-1-2 {
        width: 50%;
        float: left;
    }

    .pfm-financial-calendar .uk-width-1-3,
    .pfm-financial-treemap .uk-width-1-3,
    .pfm-financial-donut .uk-width-1-3,
    .pfm-financial-bar .uk-width-1-3 {
        width: 33.33%;
        float: left;
    }

    .pfm-financial-calendar .icon-1,
    .pfm-financial-calendar .icon-2,
    .pfm-financial-calendar .icon-3,
    .pfm-financial-calendar .icon-4,
    .pfm-financial-calendar .icon-5,
    .pfm-financial-treemap .icon-1,
    .pfm-financial-treemap .icon-2,
    .pfm-financial-treemap .icon-3,
    .pfm-financial-treemap .icon-4,
    .pfm-financial-treemap .icon-5,
    .pfm-financial-donut .icon-1,
    .pfm-financial-donut .icon-2,
    .pfm-financial-donut .icon-3,
    .pfm-financial-donut .icon-4,
    .pfm-financial-donut .icon-5,
    .pfm-financial-bar .icon-1,
    .pfm-financial-bar .icon-2,
    .pfm-financial-bar .icon-3,
    .pfm-financial-bar .icon-4,
    .pfm-financial-bar .icon-5 {
        float: right;
        margin-top: auto;
    }
}

@media only screen and (max-width: 980px) {
    .pfm-financial-calendar .widget-slat .col-right,
    .pfm-financial-treemap .widget-slat .col-right,
    .pfm-financial-donut .widget-slat .col-right,
    .pfm-financial-bar .widget-slat .col-right {
        width: 33%;
        float: right;
        margin-bottom: 0px;
    }

    .pfm-financial-calendar .widget-slat .col-left,
    .pfm-financial-treemap .widget-slat .col-left,
    .pfm-financial-donut .widget-slat .col-left,
    .pfm-financial-bar .widget-slat .col-left {
        width: 60%;
        float: left;
        margin-bottom: 0px;
    }

        .pfm-financial-calendar .widget-slat .col-left .custom-form.uk-grid .group,
        .pfm-financial-treemap .widget-slat .col-left .custom-form.uk-grid .group,
        .pfm-financial-donut .widget-slat .col-left .custom-form.uk-grid .group,
        .pfm-financial-bar .widget-slat .col-left .custom-form.uk-grid .group {
            width: 50%;
        }

        .pfm-financial-calendar .widget-slat .col-left .uk-grid > *,
        .pfm-financial-treemap .widget-slat .col-left .uk-grid > *,
        .pfm-financial-donut .widget-slat .col-left .uk-grid > *,
        .pfm-financial-bar .widget-slat .col-left .uk-grid > * {
            padding-left: 10px;
        }

        .pfm-financial-calendar .widget-slat .col-left .uk-grid,
        .pfm-financial-treemap .widget-slat .col-left .uk-grid,
        .pfm-financial-donut .widget-slat .col-left .uk-grid,
        .pfm-financial-bar .widget-slat .col-left .uk-grid {
            margin-left: -15px;
        }

    .pfm-financial-calendar .select-3 select,
    .pfm-financial-treemap .select-3 select,
    .pfm-financial-donut .select-3 select,
    .pfm-financial-bar .select-3 select {
        padding: 0.8rem 0rem 0.8rem 1.2rem;
        font-size: 13px;
    }
}

.pfm-financial-treemap #container {
    width: 100%;
    max-height: 500px;
    margin: auto;
    border: 1px solid #ebeced;
    border-left: none;
    border-right: none;
}

.yolo {
    font-size: 18px;
}

@media only screen and (max-width: 600px) {
    .yolo .yolo {
        font-size: 12px;
        word-break: break-all;
    }
}

.pfm-financial-donut #container {
    width: 100%;
    height: auto;
    margin: auto;
    max-width: 500px;
    padding-top: 15px;
}

.pfm-financial-donut .col-left {
    width: 50%;
    margin-right: 0;
}

.pfm-financial-donut .col-right {
    width: 49%;
    padding: 60px;
    z-index: 10;
    position: relative;
}

.pfm-financial-donut .icon-1,
.pfm-financial-donut .icon-4,
.pfm-financial-donut .icon-5 {
    background: url(/webapp/Themes/StandardRedesign/img/icons/calendar-icon-5.png) no-repeat;
    display: block;
    height: 28px;
    width: 26px;
    float: left;
    margin: 12px 0px;
    margin-right: 7px;
}

.pfm-financial-donut .icon-2 {
    background: url(/webapp/Themes/StandardRedesign/img/icons/calendar-icon-4.png) no-repeat;
    display: block;
    height: 28px;
    width: 26px;
    float: left;
    margin: 12px 0px;
    margin-right: 7px;
}

.pfm-financial-donut .icon-3 {
    background: url(/webapp/Themes/StandardRedesign/img/icons/calendar-icon-3.png) no-repeat;
    display: block;
    height: 28px;
    width: 26px;
    float: left;
    margin: 12px 0px;
    margin-right: 7px;
}

.pfm-financial-donut .icon-4 {
    background: url(/webapp/Themes/StandardRedesign/img/icons/calendar-icon-2.png) no-repeat;
    display: block;
    height: 28px;
    width: 26px;
    float: left;
    margin: 12px 0px;
    margin-right: 7px;
}

.pfm-financial-donut .icon-5 {
    background: url(/webapp/Themes/StandardRedesign/img/icons/calendar-icon-1.png) no-repeat;
    display: block;
    height: 28px;
    width: 26px;
    float: left;
    margin: 12px 0px;
    margin-right: 7px;
}

.pfm-financial-donut .plain-list div {
    margin-bottom: 0;
}

.pfm-financial-donut .plain-list p {
    line-height: 0;
    margin: 10px 0px;
    margin-top: 26px;
}

.pfm-financial-donut .widget-slat {
    border: 1px solid #ebeced;
    border-left: none;
    border-right: none;
    margin-bottom: 0;
}

.pfm-financial-donut .details-wrap {
    display: none;
}

.pfm-financial-donut .show {
    display: block;
}

@media only screen and (max-width: 1000px) {
    .pfm-financial-donut .widget-slat .col-left {
        width: 100%;
        float: left;
    }

    .pfm-financial-donut .widget-slat .col-right {
        width: 100%;
        float: left;
        padding: 30px;
    }

        .pfm-financial-donut .widget-slat .col-right .key {
            width: auto;
        }

        .pfm-financial-donut .widget-slat .col-right .value {
            width: auto;
        }
}

@media only screen and (max-width: 600px) {
    .pfm-financial-donut .widget-slat .col-right {
        padding: 10px;
    }

        .pfm-financial-donut .widget-slat .col-right .key {
            width: auto;
        }

        .pfm-financial-donut .widget-slat .col-right .value {
            width: 100%;
        }

        .pfm-financial-donut .widget-slat .col-right .plain-list p {
            margin-top: 15px;
            margin: 20px 0px;
        }

        .pfm-financial-donut .widget-slat .col-right .plain-list div {
            margin-bottom: 20px;
        }

        .pfm-financial-donut .widget-slat .col-right .icon-1,
        .pfm-financial-donut .widget-slat .col-right .icon-2,
        .pfm-financial-donut .widget-slat .col-right .icon-3,
        .pfm-financial-donut .widget-slat .col-right .icon-4,
        .pfm-financial-donut .widget-slat .col-right .icon-5 {
            margin: 0px 10px 10px 0px;
        }
}

.pfm-financial-bar #container {
    width: 100%;
    height: auto;
    margin: auto;
    max-width: 100%;
}

.pfm-financial-bar .col-right {
    width: 78%;
    margin-right: 0;
    float: right;
}

.pfm-financial-bar .col-left {
    width: 22%;
    z-index: 10;
    position: relative;
    margin-right: 0;
}

.pfm-financial-bar .icon-1,
.pfm-financial-bar .icon-4,
.pfm-financial-bar .icon-5 {
    background: url(/webapp/Themes/StandardRedesign/img/icons/calendar-icon-5.png) no-repeat;
    display: block;
    height: 28px;
    width: 26px;
    float: left;
    margin: 12px 0px;
    margin-right: 7px;
}

.pfm-financial-bar .icon-2 {
    background: url(/webapp/Themes/StandardRedesign/img/icons/calendar-icon-4.png) no-repeat;
    display: block;
    height: 28px;
    width: 26px;
    float: left;
    margin: 12px 0px;
    margin-right: 7px;
}

.pfm-financial-bar .icon-3 {
    background: url(/webapp/Themes/StandardRedesign/img/icons/calendar-icon-3.png) no-repeat;
    display: block;
    height: 28px;
    width: 26px;
    float: left;
    margin: 12px 0px;
    margin-right: 7px;
}

.pfm-financial-bar .icon-4 {
    background: url(/webapp/Themes/StandardRedesign/img/icons/calendar-icon-2.png) no-repeat;
    display: block;
    height: 28px;
    width: 26px;
    float: left;
    margin: 12px 0px;
    margin-right: 7px;
}

.pfm-financial-bar .icon-5 {
    background: url(/webapp/Themes/StandardRedesign/img/icons/calendar-icon-1.png) no-repeat;
    display: block;
    height: 28px;
    width: 26px;
    float: left;
    margin: 12px 0px;
    margin-right: 7px;
}

.pfm-financial-bar .plain-list {
    margin-top: 22px;
    margin-bottom: 0;
    padding-left: 20px;
}

    .pfm-financial-bar .plain-list div {
        margin-bottom: 16px;
        border: none;
    }

    .pfm-financial-bar .plain-list p {
        line-height: 0;
        margin: 10px 0px;
        margin-top: 26px;
    }

.pfm-financial-bar .widget-slat {
    border: 1px solid #ebeced;
    border-left: none;
    border-right: none;
    margin-bottom: 0;
}

@media only screen and (max-width: 1000px) {
    .pfm-financial-bar .widget-slat .col-right {
        width: 75%;
        float: right;
    }

    .pfm-financial-bar .widget-slat .col-left {
        width: 25%;
        float: left;
    }

        .pfm-financial-bar .widget-slat .col-left .key {
            width: auto;
        }

        .pfm-financial-bar .widget-slat .col-left .value {
            width: auto;
        }
}

@media only screen and (max-width: 840px) {
    .pfm-financial-bar .widget-slat .col-right {
        width: 67%;
        float: right;
    }

    .pfm-financial-bar .widget-slat .col-left {
        width: 33%;
        float: left;
    }

        .pfm-financial-bar .widget-slat .col-left .key {
            width: auto;
        }

        .pfm-financial-bar .widget-slat .col-left .value {
            width: auto;
        }
}

@media only screen and (max-width: 600px) {
    .pfm-financial-bar .widget-slat .col-left .plain-list {
        margin-top: 24px;
        margin-bottom: 0;
    }

    .pfm-financial-bar .widget-slat .col-right {
        width: 87%;
        float: right;
    }

    .pfm-financial-bar .widget-slat .col-left {
        padding: 10px;
        width: 10%;
        float: left;
    }

        .pfm-financial-bar .widget-slat .col-left .key {
            display: none;
        }

        .pfm-financial-bar .widget-slat .col-left .value {
            width: 100%;
        }

        .pfm-financial-bar .widget-slat .col-left .plain-list {
            padding-left: 10px;
        }

            .pfm-financial-bar .widget-slat .col-left .plain-list p {
                margin-top: 15px;
                margin: 20px 0px;
            }

            .pfm-financial-bar .widget-slat .col-left .plain-list div {
                border: none;
                margin-bottom: 32px;
            }

        .pfm-financial-bar .widget-slat .col-left .icon-1,
        .pfm-financial-bar .widget-slat .col-left .icon-2,
        .pfm-financial-bar .widget-slat .col-left .icon-3,
        .pfm-financial-bar .widget-slat .col-left .icon-4,
        .pfm-financial-bar .widget-slat .col-left .icon-5 {
            margin: 0px 10px 10px 0px;
        }
}

.pfm-budget {
    margin-top: 0px;
}

    .pfm-budget .widget {
        border: none;
    }

        .pfm-budget .widget > .container {
            width: 100%;
            padding-bottom: 0;
        }

    .pfm-budget .widget-actions.widget-corner {
        top: 19px;
        right: 20px;
    }

    .pfm-budget .top-padding h2 {
        font-weight: 500;
        padding-left: 20px;
    }

    .pfm-budget .widget-buttons {
        padding: 0px 0px;
    }

    .pfm-budget .btn-1 {
        padding: 15px 16px;
        font-size: 12px;
    }

    .pfm-budget .border {
        display: inline-block;
        width: 100%;
        margin: 20px 0px;
        background: var(--K4);
        height: 2px;
    }

    .pfm-budget .col-left {
        width: 50%;
        margin-right: 0;
        overflow: hidden;
    }

    .pfm-budget .col-right {
        width: 50%;
    }

    .pfm-budget #container {
        padding-left: 5%;
        width: 400px;
        margin: 0 auto;
        position: relative;
    }

    .pfm-budget .widget-slat {
        border-bottom: 2px solid var(--K4);
        margin-bottom: 0;
    }

    .pfm-budget .plain-list {
        padding: 120px 150px 100px 0px;
        margin-bottom: 0px;
    }

        .pfm-budget .plain-list div {
            margin-bottom: 20px;
        }

            .pfm-budget .plain-list div:nth-child(1) {
                border-top: 2px solid var(--K4);
                padding-top: 20px;
            }

        .pfm-budget .plain-list p {
            margin-bottom: 20px;
        }

    .pfm-budget .pfm-budget_budgets__details {
        border-bottom: 2px solid var(--K4);
        padding: 20px;
    }

    .pfm-budget .pfm-budget_budgets__details___left {
        width: 25%;
        float: left;
    }

        .pfm-budget .pfm-budget_budgets__details___left h3 {
            color: var(--P1);
            font-size: 20px;
            margin-bottom: 20px;
        }

        .pfm-budget .pfm-budget_budgets__details___left ul {
            float: left;
        }

            .pfm-budget .pfm-budget_budgets__details___left ul li {
                margin-bottom: 10px;
            }

            .pfm-budget .pfm-budget_budgets__details___left ul p {
                color: #979797;
                font-size: 14px;
                margin-bottom: 0;
            }

            .pfm-budget .pfm-budget_budgets__details___left ul span {
                color: var(--K2);
                font-weight: 600;
            }

            .pfm-budget .pfm-budget_budgets__details___left ul .span1 {
                color: var(--P1);
            }

            .pfm-budget .pfm-budget_budgets__details___left ul .span2 {
                color: #eb0255;
            }

    .pfm-budget .pfm-budget_budgets__details___right {
        float: left;
        width: 75%;
        position: relative;
    }

        .pfm-budget .pfm-budget_budgets__details___right .budget-bar {
            float: left;
            max-width: 700px;
            width: 80%;
            padding-top: 55px;
        }

        .pfm-budget .pfm-budget_budgets__details___right .bar-background {
            width: 100%;
            height: 14px;
            background: var(--K4);
            border-radius: 8px;
        }

        .pfm-budget .pfm-budget_budgets__details___right .bar-inner {
            background: var(--P1);
            height: 14px;
            border-radius: 8px;
        }

    .pfm-budget .bar-value,
    .pfm-budget .bar-value-2 {
        padding-top: 36px;
        font-size: 34px;
        color: var(--P1);
        float: right;
        width: 15%;
    }

    .pfm-budget .bar-value-2 {
        color: #eb0255;
    }

    .pfm-budget .trigger-2 {
        position: absolute;
        right: -8px;
        top: -17px;
        padding: 10px 10px 10px 20px;
        cursor: pointer;
    }

        .pfm-budget .trigger-2 li {
            width: 4px;
            height: 4px;
            display: block;
            border-radius: 50%;
            background-color: #b1b1b1;
            margin-bottom: 3px;
        }

    .pfm-budget .icon-travel,
    .pfm-budget .icon-transport,
    .pfm-budget .icon-food,
    .pfm-budget .icon-bills {
        display: block;
        height: 40px;
        width: 40px;
        float: left;
        border-radius: 50%;
        border: 3px solid var(--BG);
        position: absolute;
        top: 40px;
        left: -30px;
    }

    .pfm-budget .icon-transport {
        background: url(/webapp/Themes/StandardRedesign/img/icons/icon-car.png) no-repeat;
        background-color: var(--P1);
        background-size: 22px;
        background-position: center;
    }

    .pfm-budget .icon-travel {
        background: url(/webapp/Themes/StandardRedesign/img/icons/plane-icon-2.png) no-repeat;
        background-color: var(--P1);
        background-size: 22px;
        background-position: center;
    }

    .pfm-budget .icon-food {
        background: url(/webapp/Themes/StandardRedesign/img/icons/icon-food.png) no-repeat;
        background-color: var(--P1);
        background-size: 16px;
        background-position: center;
    }

    .pfm-budget .icon-bills {
        background: url(/webapp/Themes/StandardRedesign/img/icons/icon-bills.png) no-repeat;
        background-color: var(--P1);
        background-size: 22px;
        background-position: center;
    }

    .pfm-budget .negative-acc {
        background-color: #eb0255;
    }
/*side-modal*/

#side-modal-new-budget h2,
#side-modal-edit-budget h2 {
    margin-bottom: 15px;
    font-weight: 500;
}

#side-modal-new-budget p,
#side-modal-edit-budget p {
    font-size: 15px;
    color: var(--K2);
    margin-bottom: 40px;
}

#side-modal-new-budget span,
#side-modal-edit-budget span {
    color: var(--P1);
}

#side-modal-new-budget .category-info,
#side-modal-edit-budget .category-info {
    width: 100%;
    position: relative;
    background: var(--K4);
    border-bottom: 3px solid #d9d9d9;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 27px;
    margin-top: 17px;
    padding: 10px 20px 10px 10px;
}

    #side-modal-new-budget .category-info p,
    #side-modal-edit-budget .category-info p {
        color: var(--P1);
        font-size: 15px;
    }

    #side-modal-new-budget .category-info:before,
    #side-modal-edit-budget .category-info:before {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 10px 10px 10px;
        border-color: transparent transparent var(--K4) transparent;
        content: "";
        position: absolute;
        top: -10px;
        transform: translateX(-50%);
    }

#side-modal-new-budget .bulb,
#side-modal-edit-budget .bulb {
    height: 50px;
    width: 50px;
    background: url(/webapp/Themes/StandardRedesign/img/icons/lightbulb-icon-2.png) no-repeat;
    display: block;
    margin: auto;
    background-position: center;
    background-size: 50px;
    margin-top: 15px;
    margin-bottom: 15px;
}

#side-modal-new-budget .mCSB_container,
#side-modal-edit-budget .mCSB_container {
    height: 100%;
}

#side-modal-new-budget .dropdown-1 .group-select,
#side-modal-edit-budget .dropdown-1 .group-select {
    height: 250px;
    overflow: scroll;
}

@media only screen and (max-width: 800px) {
    #side-modal-new-budget .mCSB_container,
    #side-modal-edit-budget .mCSB_container {
        height: auto;
    }
}

@media only screen and (max-width: 1000px) {
    .pfm-budget .pfm-budget_budgets__details___left {
        width: 100%;
        float: left;
    }

    .pfm-budget .pfm-budget_budgets__details___right {
        float: left;
        width: 100%;
        position: relative;
    }

    .pfm-budget .icon-travel,
    .pfm-budget .icon-bills,
    .pfm-budget .icon-transport,
    .pfm-budget .icon-food {
        top: 16px;
        left: 0px;
    }

    .pfm-budget .pfm-budget_budgets__details___right .budget-bar {
        width: 82%;
        padding-top: 30px;
        margin-right: 30px;
        margin-left: 10px;
    }

    .pfm-budget .bar-value,
    .pfm-budget .bar-value-2 {
        padding-top: 20px;
        font-size: 24px;
        width: 10%;
    }

    .pfm-budget .widget-options {
        position: absolute;
        top: -115px;
        right: 5px;
        padding: 0 4px;
    }

    .pfm-budget .plain-list {
        padding: 0 20px 0 20px;
    }

    .pfm-budget #container {
        padding-left: 0;
        height: 400px;
    }

    .pfm-budget {
        margin-top: 0px;
    }
}

@media only screen and (max-width: 740px) {
    .pfm-budget {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 600px) {
    .pfm-budget .pfm-budget_budgets__details___right .budget-bar {
        width: 70%;
    }

    .pfm-budget .pfm-budget_budgets__details___right .budget-bar {
        margin-right: 0px;
    }

    .pfm-budget .bar-value,
    .pfm-budget .bar-value-2 {
        width: 20%;
    }
}

@media only screen and (max-width: 350px) {
    .pfm-budget .top-padding h2 {
        margin-bottom: 50px;
    }

    .pfm-budget .btn-1 {
        font-size: 10px;
    }

    .pfm-budget .widget-actions > li {
        float: none;
        margin-left: 0px;
    }

    .pfm-budget .widget-actions.widget-corner {
        top: 65px;
        left: 0px;
        width: 100%;
        padding: 0px 20px;
    }
}

.pfm-financial-goals .widget {
    border: none;
}

    .pfm-financial-goals .widget > .container {
        padding-bottom: 0px;
    }

.pfm-financial-goals .widget-slat {
    margin-bottom: 0px;
}

.pfm-financial-goals .pfm-goal {
    padding: 25px 30px;
    overflow: hidden;
    border-top: 2px solid var(--K4);
}

.pfm-financial-goals .pfm-goal_info {
    float: left;
    width: 50%;
}

    .pfm-financial-goals .pfm-goal_info .pfm-goal_info__profile {
        float: left;
        width: 40px;
        height: 40px;
        overflow: hidden;
        border-radius: 50%;
        margin-right: 20px;
    }

        .pfm-financial-goals .pfm-goal_info .pfm-goal_info__profile img {
            width: 100%;
            height: auto;
        }

    .pfm-financial-goals .pfm-goal_info h3 {
        font-size: 18px;
        color: var(--P1);
        font-weight: 500;
    }

    .pfm-financial-goals .pfm-goal_info p {
        font-size: 11px;
        color: var(--K2);
        margin-bottom: 0px;
    }

.pfm-financial-goals .f-share {
    float: right;
    padding: 6px 11px;
    background-color: #4267b2;
    color: var(--BG);
    font-size: 11px;
    border-radius: 5px;
    transition: all ease 0.3s;
}

    .pfm-financial-goals .f-share:before {
        background: url("/webapp/Themes/StandardRedesign/img/icons/face-icon.png");
        background-repeat: no-repeat;
        display: block;
        width: 13px;
        height: 13px;
        content: "";
        float: left;
        background-size: 13px;
        border-radius: 2px;
        padding-right: 10px;
    }

    .pfm-financial-goals .f-share:hover {
        opacity: 0.8;
    }

.pfm-financial-goals .pfm-goal_progress-bar {
    width: 100%;
    float: left;
    padding: 23px 0px;
}

.pfm-financial-goals .bar-background {
    width: 90%;
    height: 14px;
    background: var(--K4);
    border-radius: 8px;
    float: left;
}

.pfm-financial-goals .bar-inner {
    background: var(--P1);
    height: 14px;
    border-radius: 8px;
}

.pfm-financial-goals .bar-value {
    font-size: 27px;
    color: var(--P1);
    position: absolute;
    right: 30px;
    margin-top: -13px;
}

    .pfm-financial-goals .bar-value p {
        margin-bottom: 0;
    }

.pfm-financial-goals .widget-buttons {
    padding: 0;
    padding-right: 20px;
}

.pfm-financial-goals .hidden {
    display: none;
    padding-top: 15%;
}

.pfm-financial-goals .bulb {
    height: 70px;
    width: 50px;
    background: url(/webapp/Themes/StandardRedesign/img/icons/lightbulb-icon-2.png) no-repeat;
    display: block;
    margin: auto;
    background-position: center;
    background-size: 37px;
    float: left;
    margin-right: 15px;
    margin-top: -5px;
}

.pfm-financial-goals .widget-slat .col-left .blue {
    color: var(--P1);
}

.pfm-financial-goals .show {
    display: block;
}

@media only screen and (max-width: 720px) {
    .pfm-financial-goals .widget {
        margin-top: 60px;
    }

    .pfm-financial-goals .pfm-goal_progress-bar {
        width: 90%;
    }
}

@media only screen and (max-width: 450px) {
    .pfm-financial-goals .pfm-goal_info {
        width: 64%;
    }

        .pfm-financial-goals .pfm-goal_info h3 {
            float: left;
        }

        .pfm-financial-goals .pfm-goal_info p {
            float: left;
        }

    .pfm-financial-goals .pfm-goal_info__profile {
        float: none;
        margin-bottom: 10px;
    }

    .pfm-financial-goals .pfm-goal_progress-bar {
        width: 75%;
    }

    .pfm-financial-goals .hidden {
        padding-top: 170px;
    }

    .pfm-financial-goals .widget-actions > li {
        float: right;
        margin-left: 10px;
        width: 90%;
    }

    .pfm-financial-goals .widget-slat {
        padding-top: 60px;
    }

    .pfm-financial-goals .widget-actions.widget-corner {
        right: 0;
        top: 80px;
        width: 100%;
    }

        .pfm-financial-goals .widget-actions.widget-corner li {
            margin-left: 0;
            width: 100%;
            padding: 0px 15px;
        }

    .pfm-financial-goals .pfm-goal {
        padding: 25px 15px;
    }

    .pfm-financial-goals .widget-buttons {
        padding-right: 0;
    }

    .pfm-financial-goals .widget-tabs {
        padding-top: 20px;
    }

        .pfm-financial-goals .widget-tabs.style-2 li {
            font-size: 11px;
        }
}

#side-modal-edit-goal .avatar-box,
#side-modal-create-goal .avatar-box {
    width: 104px;
    height: 104px;
    overflow: hidden;
    margin: 0 auto;
}

    #side-modal-edit-goal .avatar-box img,
    #side-modal-create-goal .avatar-box img {
        width: 100%;
        height: auto;
        border-radius: 50%;
    }

#side-modal-edit-goal .avatar-btn,
#side-modal-create-goal .avatar-btn {
    text-align: center;
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: var(--P1);
    margin-bottom: 44px;
    margin-top: 15px;
    transition: all ease 0.3s;
}

    #side-modal-edit-goal .avatar-btn:hover,
    #side-modal-create-goal .avatar-btn:hover {
        text-decoration: underline;
    }

#side-modal-edit-goal .group,
#side-modal-create-goal .group {
    position: relative;
}

    #side-modal-edit-goal .group .date-wrap:before,
    #side-modal-create-goal .group .date-wrap:before {
        content: '';
        width: 20px;
        height: 21px;
        position: absolute;
        top: 32px;
        right: 15px;
        background: url(/webapp/Themes/StandardRedesign/img/icons/icon-calendar-1.png) 0 0 no-repeat;
        background-size: 20px;
        z-index: 1;
    }

#side-modal-edit-goal p,
#side-modal-create-goal p {
    font-size: 13px;
    color: var(--K2);
    margin-bottom: 50px;
}

#side-modal-create-goal-step2 p {
    font-size: 13px;
    color: var(--K2);
    margin-bottom: 50px;
}

#side-modal-create-goal-step2 .radio-wrap {
    float: left;
}

    #side-modal-create-goal-step2 .radio-wrap .radio-1 {
        top: 24px;
        margin-right: 25px;
    }

#side-modal-create-goal-step2 img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    float: left;
}

#side-modal-create-goal-step2 .acc-profile {
    float: right;
}

#side-modal-create-goal-step2 .acc-info {
    float: left;
    margin-left: 20px;
}

    #side-modal-create-goal-step2 .acc-info p {
        margin-bottom: 5px;
    }

    #side-modal-create-goal-step2 .acc-info .acc-name {
        color: var(--P1);
        font-size: 15px;
    }

    #side-modal-create-goal-step2 .acc-info .acc-number {
        color: var(--K2);
        font-size: 13px;
    }

    #side-modal-create-goal-step2 .acc-info .status {
        font-size: 13px;
        color: var(--OK);
    }

#side-modal-create-goal-step2 .new-account .acc-name {
    padding-top: 24px;
}

@media only screen and (max-width: 450px) {
    #side-modal-create-goal-step2 .acc-info {
        float: left;
        margin-left: 0px;
        margin-top: 10px;
        width: 100%;
    }

    #side-modal-create-goal-step2 .new-account .acc-name {
        padding-top: 15px;
    }

    #side-modal-create-goal-step2 .btn-1 {
        font-size: 11px;
    }
}

#side-modal-create-goal-step3 .confirm-text,
#side-modal-create-goal-step4 .confirm-text {
    margin-bottom: 30px;
    font-size: 13px;
    color: var(--K2);
}

#side-modal-create-goal-step3 .top-text,
#side-modal-create-goal-step4 .top-text {
    font-size: 13px;
    color: var(--K2);
    margin-bottom: 50px;
}

#side-modal-create-goal-step3 h3,
#side-modal-create-goal-step4 h3 {
    margin-bottom: 0px;
}

#side-modal-create-goal-step3 .btn-1,
#side-modal-create-goal-step4 .btn-1 {
    font-size: 11px;
}

.pfm-categorization-rules h2 {
    padding-left: 20px;
}

.pfm-categorization-rules .widget > .container {
    width: 100%;
}

.pfm-categorization-rules .widget {
    border: none;
    margin-top: 50px;
}

.pfm-categorization-rules .custom-table {
    margin-top: 40px;
}

    .pfm-categorization-rules .custom-table .row-1 .col:before {
        background: transparent;
    }

    .pfm-categorization-rules .custom-table .table-row.row-1 {
        border-bottom: 2px solid #ebeced;
    }

    .pfm-categorization-rules .custom-table.border-top {
        border-top: 2px solid #ebeced;
    }

.pfm-categorization-rules span {
    color: var(--P1);
}

.pfm-categorization-rules .trigger-2 {
    top: -7px;
}

.pfm-categorization-rules .widget-select-group .group-select .item .widget {
    margin-top: 0px;
}

.pfm-categorization-rules .widget-options .options-list {
    top: -9px;
}

.pfm-categorization-rules .dropdown-1 {
    padding-bottom: 6px;
}

@media only screen and (max-width: 720px) {
    .pfm-categorization-rules .trigger-2 {
        top: -44px;
        right: 0;
    }

    .pfm-categorization-rules .custom-table .text-6 {
        padding-left: 10px;
    }
}

@media only screen and (max-width: 500px) {
    .pfm-categorization-rules .top-padding h2 {
        margin-bottom: 80px;
        font-size: 25px;
        text-align: center;
    }

    .pfm-categorization-rules .btn-1 {
        font-size: 10px;
    }

    .pfm-categorization-rules .widget-actions > li {
        float: none;
        margin-left: 0px;
    }

    .pfm-categorization-rules .widget-actions.widget-corner {
        top: 65px;
        left: 0px;
        width: 100%;
        padding: 0px 20px;
    }
}

#side-modal-pfm-rule-details .title-2.title-full {
    margin-top: 65px;
}

#side-modal-pfm-new-rule .info-p {
    font-size: 13px;
    color: var(--K2);
    margin: 30px 0px 45px 0px;
}

#side-modal-pfm-new-rule .rule-details {
    margin-bottom: 40px;
}

    #side-modal-pfm-new-rule .rule-details p {
        font-size: 15px;
        font-weight: 600;
        color: var(--K2);
        float: left;
    }

#side-modal-pfm-new-rule .checkbox-2.styledCheckbox {
    float: right;
}

#side-modal-pfm-new-rule2 .checkbox-2.styledCheckbox {
    float: right;
}

#side-modal-pfm-new-rule2 .rule-details {
    margin-bottom: 70px;
}

    #side-modal-pfm-new-rule2 .rule-details p {
        font-size: 15px;
        font-weight: 600;
        color: var(--K2);
        float: left;
    }

#side-modal-pfm-new-rule2 h3 {
    font-size: 12px;
    margin-bottom: 0px;
}

#side-modal-pfm-new-rule2 .info-p {
    font-size: 13px;
    color: var(--K2);
    margin: 30px 0px 45px 0px;
}

#side-modal-pfm-new-rule2 .custom-table .row-1 .col:before {
    background: transparent;
}

#side-modal-pfm-new-rule2 .checkbox-2.styledCheckbox {
    margin-right: 20px;
}

@media only screen and (max-width: 450px) {
    #side-modal-pfm-new-rule2 .custom-table .text-7 {
        font-size: 11px;
    }

    #side-modal-pfm-new-rule2 .rule-details p {
        font-size: 12px;
    }
}
/*popup-24--------------------------------------------------------------------------------------------------------------*/


/* Payment confirmation ----------------------------------------------------------------------------------------------- */

.succes-box {
    text-align: center;
}

    .succes-box .checkmark {
        margin-bottom: 20px;
    }

    .succes-box .errormark {
        margin-bottom: 20px;
    }

    .succes-box p {
        font-size: 30px !important;
        font-family: 'Roboto';
        color: var(--K1);
        font-weight: 100;
    }

.checkmark {
    width: 82px;
    height: 62px;
    display: inline-block;
    background: url(/webapp/Themes/StandardRedesign/img/icons/checkmark.png) no-repeat center center;
    background-size: 82px;
}

.hourglassmark {
    width: 82px;
    height: 62px;
    display: inline-block;
    background: url(/webapp/Themes/StandardRedesign/img/icons/hourglassmark.png) no-repeat center center;
    background-size: 82px;
}

.errormark {
    width: 82px;
    height: 62px;
    display: inline-block;
    background: url(/webapp/Themes/StandardRedesign/img/icons/error-icon.png) no-repeat center center;
    background-size: 82px;
}

.links-list-2 p {
    font-family: 'Roboto';
    font-size: 24px;
    font-weight: 400;
    color: var(--P1);
    margin-bottom: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--K3);
}

.links-list-2 a {
    display: block;
    font-size: 16px;
    color: var(--K1);
    font-weight: 600;
    border-bottom: 1px solid var(--K3);
    position: relative;
    padding: 15px 15px 15px 30px;
    background: var(--BG);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .links-list-2 a:after {
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 4px 0 4px 5px;
        border-color: transparent transparent transparent var(--P1);
        position: absolute;
        top: 50%;
        margin-top: -4px;
        left: 0;
        -webkit-transition: left 0.3s ease;
        -moz-transition: left 0.3s ease;
        -o-transition: left 0.3s ease;
        transition: left 0.3s ease;
    }

    .links-list-2 a:hover {
        background: var(--P2);
        padding-left: 25px;
    }

        .links-list-2 a:hover:after {
            left: 5px;
        }

.geolocation-wrapper {
    position: relative;
    width: 100%;
    height: 375px;
    margin-bottom: 20px;
}

    .geolocation-wrapper .search-box {
        background: var(--BG);
        position: absolute;
        left: 3%;
        bottom: 20px;
        width: 93%;
    }

    .geolocation-wrapper .search-1 {
        border: none;
        border-bottom: 3px solid var(--P1);
    }

#geolocation-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Transaction list ----------------------------------------------------------------------------------------------- */

.main-content .widget {
    margin-bottom: 20px;
}

    .main-content .widget .widget-header {
        position: relative;
        z-index: 10;
    }

        .main-content .widget .widget-header .cnt {
            padding: 10px 10px 0 10px;
        }

    .main-content .widget .title-1 {
        font-size: 14px;
    }

.main-content .widget-white {
    background: var(--BG);
    border: 1px solid #dadada;
}

.widget-transaction-list {
    background: var(--BG);
}

.hidden-content {
    display: none;
}

.widget-actions .options-list-2 {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    background: var(--BG);
    padding: 0;
    min-width: 200px;
}

    .widget-actions .options-list-2 li a {
        font-family: 'Roboto', sans-serif;
        font-size: 14px;
        font-weight: 500;
        text-transform: none;
        color: var(--P0);
        padding: 11px 22px;
        background-color: var(--BG);
    }

        .widget-actions .options-list-2 li a:hover {
            background-color: var(--P1);
            color: var(--BG);
        }

    .widget-actions .options-list-2 .border {
        border-bottom: 1px solid #ebeced;
    }

    .widget-actions .options-list-2 .active {
        background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-check-4.png);
        background-position: 92% center;
        background-repeat: no-repeat;
        background-size: 12px;
    }

.account-row h3 {
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--BG);
    position: absolute;
    top: 6px;
    left: 0px;
    text-transform: uppercase;
    text-align: center;
}

.account-row.account-bg-1 {
    background: var(--P1);
}

    .account-row.account-bg-1 .bg-overlay.overlay-1 {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        opacity: 0.1;
        background-image: url(/webapp/Themes/StandardRedesign/img/bg/bg-1.jpg);
    }

    .account-row.account-bg-1 .bg-overlay.overlay-2 {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        opacity: 0.1;
        background-image: url(/webapp/Themes/StandardRedesign/img/bg/bg-1.jpg);
    }

.account-small-slider {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

    .account-small-slider .slide {
        padding: 0 10px;
    }

    .account-small-slider .account-box {
        position: relative;
        zoom: 1;
        background: var(--P1);
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        border-radius: 10px;
        padding: 10px 15px;
        opacity: 0.5;
        -webkit-transition: opacity 0.5s ease;
        -moz-transition: opacity 0.5s ease;
        -o-transition: opacity 0.5s ease;
        transition: opacity 0.5s ease;
    }

        .account-small-slider .account-box:after {
            display: block;
            visibility: hidden;
            height: 0;
            clear: both;
            content: ".";
        }

        .account-small-slider .account-box:after {
            content: "";
            width: 100%;
            height: 100%;
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 9999;
            visibility: visible;
        }

    .account-small-slider .slick-center .account-box {
        opacity: 1;
    }

        .account-small-slider .slick-center .account-box:after {
            display: none;
        }

    .account-small-slider .account-box .acc-name {
        font-size: 18px;
        margin-bottom: 0;
    }

    .account-small-slider .account-box .acc-nr {
        font-size: 14px;
        font-weight: 500;
        color: var(--P0);
    }

    .account-small-slider .account-main {
        float: left;
        width: 50%;
    }

    .account-small-slider .balance-slat {
        float: left;
        width: 50%;
        padding-top: 12px;
    }

    .account-small-slider .select-1 {
        float: right;
    }

    .account-small-slider .ui-selectmenu-button span.ui-selectmenu-text {
        font-family: 'Roboto', sans-serif;
        font-weight: 500;
        font-size: 14px;
        line-height: 22px;
        text-transform: uppercase;
        color: var(--BG);
        padding: 0px 15px 0px 10px;
    }

    .account-small-slider .ui-selectmenu-button span.ui-icon {
        width: 40px;
        height: 30px;
        border: 0;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 6px 4px 0 4px;
        border-color: var(--BG) transparent transparent transparent;
        top: 17px;
        right: 7px;
    }

    .account-small-slider .account-box .main-balance .acc-balance-txt {
        color: var(--P0);
        text-align: right;
        line-height: 16px;
        padding-right: 72px;
    }

    .account-small-slider .account-box .main-balance {
        display: block;
        margin-bottom: 0px;
    }

        .account-small-slider .account-box .main-balance .balance {
            float: right;
            font-size: 18px;
            line-height: 22px;
        }

    .account-small-slider .account-box .select-2 {
        float: right;
        margin-right: 0;
        position: relative;
        top: -2px;
    }

    .account-small-slider .slick-dots {
        display: none !important;
    }

.single-slide .account-small-slider .slide {
    width: 550px;
    margin-left: auto;
    margin-right: auto;
}

    .single-slide .account-small-slider .slide .account-box {
        opacity: 1;
    }

.single-slide .slider-button-prev,
.single-slide .slider-button-next {
    display: none;
}

.account-row .slider-button-prev,
.account-row .slider-button-next {
    position: absolute;
    top: 40px;
    width: 50px;
    height: 50px;
    top: 45px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    cursor: pointer;
    opacity: 0.15;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

    .account-row .slider-button-prev:hover,
    .account-row .slider-button-next:hover {
        opacity: 1;
    }

.account-row .slider-button-prev {
    left: 50%;
    margin-left: -640px;
    background: var(--BG) url(/webapp/Themes/StandardRedesign/img/icons/arrow-left-1.png) center center no-repeat;
    background-size: 25px;
}

.account-row .slider-button-next {
    right: 50%;
    margin-right: -640px;
    background: var(--BG) url(/webapp/Themes/StandardRedesign/img/icons/arrow-right-1.png) center center no-repeat;
    background-size: 25px;
}

/***************************** DO PRODUCT CATALOGUE ************************************/

#do-catalogue-frame {
    height: 100%;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    display: block;
}

@media only screen and (max-width:1200px) {
    #do-catalogue-frame {
        top: -60px;
    }
}

@media only screen and (max-width:720px) {
    #do-catalogue-frame {
        top: -30px;
    }
}

#do-application-list-frame {
    width: 100%;
}

.card-name {
    width: 290px;
    line-height: 22px !important;
}
/* Transaction calendar view ----------------------------------------------------------------------------------------------- */

.calendar .table-head {
    background: var(--P1);
    padding-top: 0;
    border-bottom: 4px solid #187193;
    zoom: 1;
}

    .calendar .table-head:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

.calendar .th {
    position: relative;
    height: 40px;
    float: left;
    width: 14.28%;
    text-align: center;
}

    .calendar .th p {
        color: var(--BG);
        font-size: 14px;
        position: relative;
        font-family: 'Roboto', sans-serif;
        text-transform: none;
        position: relative;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .calendar .th:after {
        content: "";
        height: 17px;
        width: 1px;
        display: block;
        background: var(--BG);
        position: absolute;
        top: 12px;
        right: 0;
    }

    .calendar .th:last-child:after {
        display: none;
    }

.calendar .tr {
    border-right: 1px solid #d0d0d0;
    zoom: 1;
}

    .calendar .tr:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

.calendar .td {
    position: relative;
    height: 90px;
    float: left;
    width: 14.28%;
    border-bottom: 1px solid #d0d0d0;
    border-left: 1px solid #d0d0d0;
}

    .calendar .td p {
        font-family: 'Roboto', sans-serif;
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 14px;
        color: #000;
        margin: 0;
    }

        .calendar .td p span {
            display: none;
        }

    .calendar .td a {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

.calendar .last-month p,
.calendar .next-month p {
    color: #d0d0d0;
}

.time-lapse-trigger {
    width: 190px;
    margin: 10px auto 20px;
}

.transaction-tracker-wrapper {
    position: absolute;
    bottom: 5px;
    left: 10px;
}

.transaction-tracker {
    padding: 4px 7px 2px;
    margin-right: 5px;
    margin-bottom: 5px;
    float: left;
    zoom: 1;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    border-radius: 100px;
}

    .transaction-tracker:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .transaction-tracker p {
        display: inline-block;
        color: var(--BG) !important;
        font-size: 14px !important;
        margin: -3px 0 0 0 !important;
        float: left;
        position: static !important;
    }

    .transaction-tracker .tranaction-down,
    .transaction-tracker .tranaction-up {
        float: left;
        margin-right: 5px;
    }

.tranaction-down,
.tranaction-up {
    width: 11px;
    height: 11px;
    display: inline-block;
}

.tranaction-down {
    background: url(/webapp/Themes/StandardRedesign/img/icons/arrow-bottom-4.png) no-repeat center center;
    background-size: 11px;
}

.tranaction-up {
    background: url(/webapp/Themes/StandardRedesign/img/icons/arrow-bottom-5.png) no-repeat center center;
    background-size: 11px;
}

.transaction-tracker.up {
    background: #eb0255;
}

.transaction-tracker.down {
    background: #70b01e;
}

.side-modal-popup .custom-table {
    margin-bottom: 30px;
}

#balance-evolution-chart,
#bar-view {
    width: 100%;
    height: 520px;
}
/* Prelogin ATM/branch ----------------------------------------------------------------------------------------------- */


/*=====================================
	Dropkick dd css
======================================*/

.select-3 {
    position: relative;
}

    .select-3 select {
        width: 100%;
        padding: 1rem 5rem 1rem 1.2rem;
        font-size: 18px;
        font-weight: normal;
        font-family: "Roboto";
        background-color: var(--P1);
        color: var(--BG);
        overflow: hidden;
        white-space: nowrap;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        border: 1px solid var(--P1);
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        border-radius: 0px;
        outline: 0 !important;
        position: relative;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        border-radius: 3px;
    }

    .select-3 .dk-select {
        display: block;
        width: 100%;
        line-height: 1;
        cursor: pointer;
        position: relative;
    }

    .select-3 .dk-selected {
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        border-radius: 3px;
        width: 100%;
        padding: 1.2rem 5rem 1.2rem 1.2rem;
        font-size: 18px;
        font-weight: normal;
        font-family: "Roboto";
        background-color: var(--P1);
        color: var(--BG);
        overflow: hidden;
        white-space: nowrap;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        border: 1px solid var(--P1);
        -webkit-transition: border-radius 0s ease;
        -moz-transition: border-radius 0s ease;
        -o-transition: border-radius 0s ease;
        transition: border-radius 0s ease;
        -webkit-transition-delay: 300ms;
        -moz-transition-delay: 300ms;
        -o-transition-delay: 300ms;
        transition-delay: 300ms;
        outline: 0 !important;
        position: relative;
    }

        .select-3 .dk-selected:before {
            content: ' ';
            display: inline-block;
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            width: 4rem;
            height: 100%;
            background-color: var(--P1);
            -webkit-transition: background-color 300ms ease;
            -moz-transition: background-color 300ms ease;
            -o-transition: background-color 300ms ease;
            transition: background-color 300ms ease;
        }

        .select-3 .dk-selected:after {
            content: ' ';
            display: inline-block;
            right: 12px;
            position: absolute;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -o-transform: translateY(-50%);
            transform: translateY(-50%);
            border: solid transparent;
            border-width: 6px 5px 0;
            border-top-color: var(--BG);
        }

    .select-3 .dk-select-options {
        list-style: none;
        padding-left: 0;
        position: absolute;
        z-index: 3;
        top: 42px;
        left: 0;
        right: 0;
        width: 100%;
        border: 1px solid var(--P1);
        border-top: none;
        -webkit-border-radius: 0 0 0px 0px;
        -moz-border-radius: 0 0 0px 0px;
        border-radius: 0 0 0px 0px;
        -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
        -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
        box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
        overflow: hidden;
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: center top;
        -moz-transform-origin: center top;
        -ms-transform-origin: center top;
        -o-transform-origin: center top;
        transform-origin: center top;
        -webkit-transition: -webkit-transform 300ms ease;
        -moz-transition: -moz-transform 300ms ease;
        -o-transition: -o-transform 300ms ease;
        transition: transform 300ms ease;
    }

        .select-3 .dk-select-options .dk-option-selected {
            background-color: var(--P2);
            color: var(--BG);
        }

        .select-3 .dk-select-options .dk-option-highlight {
            background-color: var(--P2);
            color: var(--BG);
        }

    .select-3 .dk-option {
        padding: 1.2rem 5rem 1.2rem 1.2rem;
        font-size: 18px;
        font-weight: normal;
        font-family: "Roboto";
        background-color: var(--P1);
        color: var(--BG);
        -webkit-transition: background-color 300ms ease;
        -moz-transition: background-color 300ms ease;
        -o-transition: background-color 300ms ease;
        transition: background-color 300ms ease;
    }

    .select-3 .dk-select-open-down .dk-selected,
    .select-3 .dk-select-open-up .dk-selected {
        -webkit-transition-delay: 0s;
        -moz-transition-delay: 0s;
        -o-transition-delay: 0s;
        transition-delay: 0s;
        -webkit-border-radius: 0px 0px 0 0;
        -moz-border-radius: 0px 0px 0 0;
        border-radius: 0px 0px 0 0;
    }

        .select-3 .dk-select-open-down .dk-selected:after,
        .select-3 .dk-select-open-up .dk-selected:after {
            border-width: 0 5px 6px;
            border-bottom-color: var(--BG);
        }

    .select-3 .dk-select-open-down .dk-select-options,
    .select-3 .dk-select-open-up .dk-select-options {
        -webkit-transform: scaleY(1);
        -moz-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
        transform: scaleY(1);
    }

    .select-3 select[data-dkcacheid] {
        display: none;
    }

.ie9 .dk-select-options {
    display: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    display: none;
}

.ie9 .dk-select-open-down .dk-select-options {
    display: block;
}
/* Prelogin Contact ----------------------------------------------------------------------------------------------- */

.prelogin-full .-no-col-head {
    padding-top: 20px;
}



.sample-bank-logo {
    width: 48px;
    height: 48px;
    display: inline-block;
    margin-right: 15px;
    background: url(/webapp/Themes/StandardRedesign/img/photos/sample-logo.png) no-repeat center center;
    margin-bottom: -15px;
}

.bank-sample-title {
    margin-bottom: 0;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase !important;
    font-size: 24px !important;
    color: var(--P0) !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
}

.map-canvas-small {
    height: 200px;
    margin-top: -20px;
    width: 100%;
}



.contact-data-wrapper:after {
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
    content: ".";
}

.contact-data-wrapper .half {
    position: relative;
    float: left;
    width: 50%;
    padding-right: 20px;
}

.contact-data-wrapper .data {
    position: relative;
    /*padding-left: 45px;*/
}

    .contact-data-wrapper .data i {
        position: absolute;
        top: 0;
        left: 0;
    }

    .contact-data-wrapper .data p {
        font-family: 'Roboto', sans-serif;
        font-size: 15px;
        color: var(--P1);
        word-break: break-word;
        margin-bottom: 18px;
        font-weight: 900;
    }

        .contact-data-wrapper .data p span {
            text-transform: uppercase;
            font-size: 14px;
            color: var(--K2);
            display: block;
        }

        .contact-data-wrapper .data p a {
            color: var(--P1);
            border-bottom: 1px solid transparent;
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
        }

            .contact-data-wrapper .data p a:hover {
                border-bottom: 1px solid var(--P1);
            }

.pin-icon {
    width: 18px;
    height: 26px;
    background: url(/webapp/Themes/StandardRedesign/img/icons/ggl-pin-icon.png) no-repeat center center;
    background-size: 18px;
}

.phone-icon {
    width: 24px;
    height: 24px;
    background: url(/webapp/Themes/StandardRedesign/img/icons/icon-tel-1.png) no-repeat center center;
    background-size: 24px;
}

.clock-icon {
    width: 24px;
    height: 24px;
    background: url(/webapp/Themes/StandardRedesign/img/icons/icon-clock-1.png) no-repeat center center;
    background-size: 24px;
}

.mail-icon {
    width: 24px;
    height: 18px;
    background: url(/webapp/Themes/StandardRedesign/img/icons/icon-mail-1.png) no-repeat center center;
    background-size: 24px;
}

.globe-icon {
    width: 24px;
    height: 24px;
    background: url(/webapp/Themes/StandardRedesign/img/icons/globe-icon.png) no-repeat center center;
    background-size: 24px;
}

.facebook-icon {
    width: 12px;
    height: 26px;
    background: url(/webapp/Themes/StandardRedesign/img/icons/facebook-icon.png) no-repeat center center;
    background-size: 12px;
}

.twitter-icon {
    width: 24px;
    height: 22px;
    background: url(/webapp/Themes/StandardRedesign/img/icons/twitter-icon.png) no-repeat center center;
    background-size: 24px;
}



.faq-help-icon {
    display: inline-block;
    width: 48px;
    height: 48px;
    margin-right: 10px;
    background: url(/webapp/Themes/StandardRedesign/img/icons/faq-icon.png) no-repeat center center;
    background-size: 48px;
}
/* ------------------------------------------------------------------------------------------ Popups */

.modal-container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 120;
    display: none;
}

.modal-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.popup-box {
    width: 400px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    background: var(--BG);
    display: none;
}

    .popup-box .popup-inner {
        position: relative;
        padding: 0 20px 0px 20px;
    }

    .popup-box .scrollable-content {
        height: 200px;
        margin-bottom: 30px;
        border: 1px solid var(--K3);
        padding: 20px 10px 20px 20px;
        -webkit-box-shadow: inset 0px 0px 40px -20px rgba(0, 0, 0, 0.75);
        -moz-box-shadow: inset 0px 0px 40px -20px rgba(0, 0, 0, 0.75);
        box-shadow: inset 0px 0px 40px -20px rgba(0, 0, 0, 0.75);
    }

    .popup-box .plain-list {
        margin-bottom: 30px;
    }

    .popup-box .scrollable-content p {
        font-size: 14px;
        color: var(--K2);
        line-height: 22px;
    }

    .popup-box .uk-grid {
        margin-left: -15px;
    }

        .popup-box .uk-grid > * {
            /*padding-left: 15px;*/
        }

    .popup-box .line-devider {
        width: 100%;
        height: 1px;
        background: var(--K3);
    }

    .popup-box .popup-header {
        padding-top: 10px;
    }

        .popup-box .popup-header:after {
            content: '';
            width: 70px;
            height: 5px;
            background: var(--P1);
            position: absolute;
            top: 0;
            left: 50%;
            margin-left: -35px;
        }

        .popup-box .popup-header h3 {
            font-size: 30px;
            color: var(--P0);
            text-align: center;
            font-weight: 300;
            position: relative;
            margin-bottom: 20px;
        }

    .popup-box .popup-inner > p,
    .popup-box .popup-inner > form > p {
        font-size: 15px;
        color: var(--K2);
        line-height: 22px;
    }

        .popup-box .popup-inner > p > span {
            color: var(--P1);
        }

    .popup-box .popup-inner.padding-top {
        padding-top: 20px;
    }

    .popup-box .warning-new-pass {
        border: 2px solid #eb0255;
        color: #eb0255;
        font-size: 13px;
        font-weight: 500;
        padding: 10px 10px 0px 10px;
        margin: 20px;
        display: none;
        line-height: 17px;
        text-align: center;
    }

    .popup-box .error {
        display: block;
        padding-bottom: 8px;
    }

    .popup-box.popup-wide {
        max-width: 540px;
        width: 96%;
    }

.popup-1 .popup-header,
.popup-2 .popup-header {
    height: 215px;
    position: relative;
    padding-top: 10px;
    margin-bottom: 25px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/var(--BG)+0,e8e8e8+100 */
    background: var(--BG);
    /* Old browsers */
    background: -moz-linear-gradient(top, var(--BG) 0%, #e8e8e8 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, var(--BG) 0%, #e8e8e8 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, var(--BG) 0%, #e8e8e8 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='var(--BG)', endColorstr='#e8e8e8', GradientType=0);
    /* IE6-9 */
}

.popup-1 .header-img,
.popup-2 .header-img {
    width: 280px;
    height: 145px;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -140px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 0 0;
}

.popup-1 .authorize-sms,
.popup-2 .authorize-sms {
    background-image: url(/webapp/Themes/StandardRedesign/img/bg/sms-authorize.png);
}

.popup-1 .authorize-token,
.popup-2 .authorize-token {
    background-image: url(/webapp/Themes/StandardRedesign/img/bg/token-authorize.png);
}

.popup-1 .authorize-push,
.popup-2 .authorize-push {
    background-image: url(/webapp/Themes/StandardRedesign/img/bg/push-authorize.png);
}

.popup-1 .line-devider,
.popup-2 .line-devider {
    margin-bottom: 20px;
}

.popup-1 .btn-1.resend-btn,
.popup-2 .btn-1.resend-btn {
    width: auto;
    padding-left: 30px;
    padding-right: 30px;
}

.popup-2 .input-1 {
    margin-bottom: 60px;
}

.popup-3 {
    width: 1100px;
    height: 500px;
}

    .popup-3 .prelogin-full .inner {
        width: 100%;
    }

.popup-4 .selected-image {
    text-align: center;
    margin-bottom: 30px;
}

    .popup-4 .selected-image img {
        width: 100%;
        height: auto;
    }

.popup-4 .img-box {
    display: inline-block;
    width: 60px;
    height: 60px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px;
    border: 5px solid var(--P1);
    margin-bottom: 10px;
}

.popup-4 .selected-image p {
    font-size: 14px;
    color: var(--K2);
}

.popup-6 p span {
    color: var(--P1);
}

.popup-6 .uk-width-1-1 {
    padding-top: 40px;
    padding-bottom: 50px;
}

.popup-head-img .popup-header {
    height: 190px;
    position: relative;
    padding-top: 10px;
    margin-bottom: 25px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/var(--BG)+0,e8e8e8+100 */
    background: var(--BG);
    /* Old browsers */
    background: -moz-linear-gradient(top, var(--BG) 0%, #e8e8e8 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, var(--BG) 0%, #e8e8e8 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, var(--BG) 0%, #e8e8e8 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='var(--BG)', endColorstr='#e8e8e8', GradientType=0);
    /* IE6-9 */
}

.popup-head-img .header-img {
    width: 280px;
    height: 120px;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -140px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 0 0;
}

.popup-head-img .activate-card {
    background-image: url(/webapp/Themes/StandardRedesign/img/photos/card-preview.jpg);
}

.popup-head-img .group-inner {
    position: relative;
}

.popup-head-img .dash:after {
    content: "";
    display: block;
    position: absolute;
    right: -10px;
    top: 19px;
    height: 1px;
    width: 6px;
    background: #a7a7a7;
}

.popup-single-check {
    padding: 0 !important;
}

.popup-box.popup-wide.popup-23 .popup-header p,
#side-modal-new-budget .popup-header p,
.pfm-post-v2 .popup-header p,
.dropdown-1 .popup-header p {
    font-size: 15px;
    text-align: center;
    margin: 30px 0px 50px 0px;
}

.popup-box.popup-wide.popup-23 .select-3,
#side-modal-new-budget .select-3,
.pfm-post-v2 .select-3,
.dropdown-1 .select-3 {
    margin-bottom: 60px;
}

.popup-box.popup-wide.popup-23 .divider,
#side-modal-new-budget .divider,
.pfm-post-v2 .divider,
.dropdown-1 .divider {
    display: block;
    width: 100%;
    height: 1px;
    background: #b6b6b6;
    margin: 20px 0px;
}

.popup-box.popup-wide.popup-23 .widget-select-group,
#side-modal-new-budget .widget-select-group,
.pfm-post-v2 .widget-select-group,
.dropdown-1 .widget-select-group {
    width: 100%;
}

    .popup-box.popup-wide.popup-23 .widget-select-group .group-select,
    #side-modal-new-budget .widget-select-group .group-select,
    .pfm-post-v2 .widget-select-group .group-select,
    .dropdown-1 .widget-select-group .group-select {
        height: 350px;
    }

    .popup-box.popup-wide.popup-23 .widget-select-group .group-icon,
    #side-modal-new-budget .widget-select-group .group-icon,
    .pfm-post-v2 .widget-select-group .group-icon,
    .dropdown-1 .widget-select-group .group-icon {
        width: 25px;
        height: 25px;
        top: 10px;
        position: absolute;
    }

    .popup-box.popup-wide.popup-23 .widget-select-group .group-icon-selected,
    #side-modal-new-budget .widget-select-group .group-icon-selected,
    .pfm-post-v2 .widget-select-group .group-icon-selected,
    .dropdown-1 .widget-select-group .group-icon-selected {
        width: 25px;
        height: 25px;
        top: 0px;
        position: absolute;
    }

    .popup-box.popup-wide.popup-23 .widget-select-group .group-icon img,
    #side-modal-new-budget .widget-select-group .group-icon img,
    .pfm-post-v2 .widget-select-group .group-icon img,
    .dropdown-1 .widget-select-group .group-icon img {
        width: auto;
        height: auto;
        border-radius: 0;
    }

    .popup-box.popup-wide.popup-23 .widget-select-group .group-icon-selected img,
    #side-modal-new-budget .widget-select-group .group-icon-selected img,
    .pfm-post-v2 .widget-select-group .group-icon-selected img,
    .dropdown-1 .widget-select-group .group-icon-selected img {
        width: auto;
        height: auto;
        border-radius: 0;
    }

    .popup-box.popup-wide.popup-23 .widget-select-group .group-name,
    .popup-box.popup-wide.popup-23 .widget-select-group .group-name-selected,
    #side-modal-new-budget .widget-select-group .group-name,
    #side-modal-new-budget .widget-select-group .group-name-selected,
    .pfm-post-v2 .widget-select-group .group-name,
    .pfm-post-v2 .widget-select-group .group-name-selected,
    .dropdown-1 .widget-select-group .group-name,
    .dropdown-1 .widget-select-group .group-name-selected {
        font-size: 20px !important;
        color: var(--BG) !important;
        margin-bottom: 0px;
        font-weight: light;
        font-family: 'Roboto';
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .popup-box.popup-wide.popup-23 .widget-select-group .group-name,
    #side-modal-new-budget .widget-select-group .group-name,
    .pfm-post-v2 .widget-select-group .group-name,
    .dropdown-1 .widget-select-group .group-name {
        padding: 10px;
    }

        .popup-box.popup-wide.popup-23 .widget-select-group .group-name:hover,
        #side-modal-new-budget .widget-select-group .group-name:hover,
        .pfm-post-v2 .widget-select-group .group-name:hover,
        .dropdown-1 .widget-select-group .group-name:hover {
            background: var(--P2);
            color: var(--P1) !important;
        }

.popup-box.popup-wide.popup-23 .content ul,
#side-modal-new-budget .content ul,
.pfm-post-v2 .content ul,
.dropdown-1 .content ul {
    border-left: 1px dotted var(--BG);
}

    .popup-box.popup-wide.popup-23 .content ul li,
    #side-modal-new-budget .content ul li,
    .pfm-post-v2 .content ul li,
    .dropdown-1 .content ul li {
        font-size: 20px;
        color: var(--BG);
        margin-bottom: 0px;
        font-weight: light;
        font-family: 'Roboto';
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        padding: 10px 20px;
        transition: all ease 0.3s;
    }

        .popup-box.popup-wide.popup-23 .content ul li:hover,
        #side-modal-new-budget .content ul li:hover,
        .pfm-post-v2 .content ul li:hover,
        .dropdown-1 .content ul li:hover {
            background-color: var(--P2);
        }

.popup-box.popup-wide.popup-23 .widget-select-group .group-select .item:hover,
#side-modal-new-budget .widget-select-group .group-select .item:hover,
.pfm-post-v2 .widget-select-group .group-select .item:hover,
.dropdown-1 .widget-select-group .group-select .item:hover {
    background-color: var(--P1);
}

.popup-box.popup-wide.popup-23 .group-info,
#side-modal-new-budget .group-info,
.pfm-post-v2 .group-info,
.dropdown-1 .group-info {
    padding-left: 50px;
}

.popup-box.popup-wide.popup-23 .uk-grid,
#side-modal-new-budget .uk-grid,
.pfm-post-v2 .uk-grid,
.dropdown-1 .uk-grid {
    margin-left: 4px;
    margin-right: 19px;
}

.popup-box.popup-wide.popup-23 .mCSB_inside > .mCSB_container,
#side-modal-new-budget .mCSB_inside > .mCSB_container,
.pfm-post-v2 .mCSB_inside > .mCSB_container,
.dropdown-1 .mCSB_inside > .mCSB_container {
    margin-right: 0;
}

.popup-box.popup-wide.popup-23 .mCustomScrollBox .mCSB_scrollTools.mCSB_scrollTools_vertical .mCSB_dragger .mCSB_dragger_bar,
#side-modal-new-budget .mCustomScrollBox .mCSB_scrollTools.mCSB_scrollTools_vertical .mCSB_dragger .mCSB_dragger_bar,
.pfm-post-v2 .mCustomScrollBox .mCSB_scrollTools.mCSB_scrollTools_vertical .mCSB_dragger .mCSB_dragger_bar,
.dropdown-1 .mCustomScrollBox .mCSB_scrollTools.mCSB_scrollTools_vertical .mCSB_dragger .mCSB_dragger_bar {
    width: 5px;
    top: 0px;
    background: var(--P2);
    opacity: 0.8;
}

.popup-box.popup-wide.popup-23 .mCustomScrollBox .mCSB_scrollTools.mCSB_scrollTools_vertical .mCSB_draggerRail,
#side-modal-new-budget .mCustomScrollBox .mCSB_scrollTools.mCSB_scrollTools_vertical .mCSB_draggerRail,
.pfm-post-v2 .mCustomScrollBox .mCSB_scrollTools.mCSB_scrollTools_vertical .mCSB_draggerRail,
.dropdown-1 .mCustomScrollBox .mCSB_scrollTools.mCSB_scrollTools_vertical .mCSB_draggerRail {
    width: 10px;
    background: var(--P1);
    bottom: 1px;
}

.popup-box.popup-wide.popup-23 .mCSB_scrollTools,
#side-modal-new-budget .mCSB_scrollTools,
.pfm-post-v2 .mCSB_scrollTools,
.dropdown-1 .mCSB_scrollTools {
    position: absolute;
    width: 5px;
    height: auto;
    left: auto;
    top: 0;
    right: 6px;
    bottom: 0;
}
/*dropdown---------------------------------------------------*/

.dropdown-1 .widget-select-group {
    width: 100%;
}

    .dropdown-1 .widget-select-group .group-select {
        height: 350px;
    }

    .dropdown-1 .widget-select-group .group-icon {
        width: 25px;
        height: 25px;
        top: 10px;
        position: absolute;
    }

    .dropdown-1 .widget-select-group .group-icon-selected {
        width: 25px;
        height: 25px;
        top: 0px;
        position: absolute;
    }

    .dropdown-1 .widget-select-group .group-icon img {
        width: auto;
        height: auto;
        border-radius: 0;
    }

    .dropdown-1 .widget-select-group .group-icon-selected img {
        width: auto;
        height: auto;
        border-radius: 0;
    }

    .dropdown-1 .widget-select-group .group-name,
    .dropdown-1 .widget-select-group .group-name-selected {
        font-size: 20px !important;
        color: var(--BG) !important;
        margin-bottom: 0px;
        font-weight: light;
        font-family: 'Roboto';
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .dropdown-1 .widget-select-group .group-name {
        padding: 10px;
    }

.dropdown-1 .content ul {
    border-left: 1px dotted var(--BG);
}

    .dropdown-1 .content ul li {
        font-size: 20px;
        color: var(--BG);
        margin-bottom: 0px;
        font-weight: light;
        font-family: 'Roboto';
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        padding: 10px 20px;
        transition: all ease 0.3s;
    }

        .dropdown-1 .content ul li:hover {
            background-color: var(--P2);
            color: #187193 !important;
        }

.dropdown-1 .widget-select-group .group-select .item:hover {
    background-color: var(--P1);
}

.dropdown-1 .group-info {
    padding-left: 50px;
}
/*account-select----------------------------------------------*/



.application-wrapper .widget {
    background-color: var(--P1);
    border: none;
}

.application-wrapper .acc-lable {
    font-size: 13px;
    padding-left: 24px;
    text-transform: uppercase;
    color: #bfbfbf;
    margin-bottom: 0px;
}

@media only screen and (max-width: 768px) {
    .application-wrapper-btn {
        width: 100% !important;
        margin-top: 30px;
        padding: 0px 20px;
        margin-left: 0px !important;
    }
}

.widget-select-account,
.widget-select-group {
    padding: 10px 20px;
    padding-right: 40px;
    border-radius: 5px;
    width: 94%;
    max-width: 1170px;
    margin: 0 auto;
    margin-top: 10px;
}

    .widget-select-account img,
    .widget-select-group img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }

    .widget-select-account .acc-img,
    .widget-select-group .acc-img {
        position: relative;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        position: absolute;
        left: 0px;
        width: 50px;
        height: 50px;
    }

        .widget-select-account .acc-img img,
        .widget-select-group .acc-img img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
        }

    .widget-select-account .acc-info,
    .widget-select-group .acc-info {
        padding-left: 70px;
    }

        .widget-select-account .acc-info .content,
        .widget-select-group .acc-info .content {
            padding: 0;
        }

    .widget-select-account .account-selected,
    .widget-select-account .group-selected,
    .widget-select-group .account-selected,
    .widget-select-group .group-selected {
        zoom: 1;
        cursor: pointer;
        position: relative;
    }

        .widget-select-account .account-selected:after,
        .widget-select-account .group-selected:after,
        .widget-select-group .account-selected:after,
        .widget-select-group .group-selected:after {
            display: block;
            visibility: hidden;
            height: 0;
            clear: both;
            content: ".";
        }

        .widget-select-account .group-selected:before,
        .widget-select-account .account-selected:before,
        .widget-select-group .group-selected:before,
        .widget-select-group .account-selected:before {
            content: "";
            position: relative;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            position: absolute;
            right: -20px;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 5px 4px 0 4px;
            border-color: var(--BG) transparent transparent transparent;
        }

.account-selected:before {
    border-style: none !important;
}

.widget-select-account .content,
.widget-select-group .content {
    padding: 0px 20px 0px 20px;
    margin-bottom: 0px !important;
}

.widget-select-account .small,
.widget-select-group .small {
    color: #82ddff !important;
    font-size: 15px !important;
    margin-bottom: 0px !important;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.widget-select-account .acc-name,
.widget-select-group .acc-name {
    font-size: 20px !important;
    color: var(--BG) !important;
    margin-bottom: 0px;
    font-weight: light;
    font-family: 'Roboto';
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.widget-select-account .acc-select-small,
.widget-select-group .acc-select-small {
    font-size: 16px;
    color: #8069b4;
    margin-bottom: 0px;
}

.widget-select-account .big-s,
.widget-select-group .big-s {
    font-size: 18px;
    color: #28007d;
    margin-bottom: 0px;
    margin-top: 5px;
}

.widget-select-account .big,
.widget-select-group .big {
    font-size: 25px;
    color: #28007d;
    margin-bottom: 0px;
    font-family: "Roboto-Regular";
}

.widget-select-account .col-border,
.widget-select-group .col-border {
    border-right: 1px solid var(--K4);
}

.widget-select-account .acc-select-border,
.widget-select-group .acc-select-border {
    border-right: 1px solid #8069b4;
}

.widget-select-account .float-right,
.widget-select-group .float-right {
    float: right;
    clear: both;
}

.widget-select-account .acc-drop-btn,
.widget-select-group .acc-drop-btn {
    margin: 20px 0px 0px 50px;
    display: inline-block;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.1) 100%);
    border: 1px solid #dadada;
    transition: all ease 0.3s;
}

    .widget-select-account .acc-drop-btn:hover,
    .widget-select-group .acc-drop-btn:hover {
        opacity: 0.7;
    }

.widget-select-account .acc-list-btn,
.widget-select-group .acc-list-btn {
    padding: 7px 10px;
}

.widget-select-account .triangle,
.widget-select-group .triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 5px 0 5px;
    border-color: #28007d transparent transparent transparent;
    display: inline-block;
}

.widget-select-account .triangle-right,
.widget-select-group .triangle-right {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 7px;
    border-color: transparent transparent transparent #8069b4;
    margin-left: 60px;
    margin-top: 20px;
}

.widget-select-account .triangle-right-white,
.widget-select-group .triangle-right-white {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--BG);
    margin-left: -60px;
    margin-top: 15px;
    position: absolute;
    opacity: 0;
    transition: all ease 0.3s;
}

@media only screen and (max-width: 600px) {
    .widget-select-account .account-select p .big,
    .widget-select-group .account-select p .big {
        font-size: 20px;
    }

    .widget-select-account .account-select .item,
    .widget-select-group .account-select .item {
        padding: 20px 20px !important;
    }
}

@media only screen and (max-width: 980px) {
    .widget-select-account .col-ss-12,
    .widget-select-group .col-ss-12 {
        width: 100%;
    }

    .widget-select-account .float-right,
    .widget-select-group .float-right {
        float: none;
    }

    .widget-select-account .col-border,
    .widget-select-group .col-border {
        border-right: none !important;
        border-bottom: 1px solid var(--K4);
    }

    .widget-select-account .widget-select-account.content,
    .widget-select-group .widget-select-account.content {
        padding: 10px 0px 0px 0px;
    }
}

@media only screen and (max-width: 1200px) {
    .widget-select-account .acc-drop-btn,
    .widget-select-group .acc-drop-btn {
        margin: 20px 0px 0px 35px;
    }
}

@media only screen and (max-width: 980px) {
    .widget-select-account .acc-drop-btn,
    .widget-select-group .acc-drop-btn {
        position: absolute !important;
        top: 0px !important;
        right: 20px !important;
    }
}

.widget-select-account .account-select,
.widget-select-account .group-select,
.widget-select-group .account-select,
.widget-select-group .group-select {
    width: 100%;
    position: absolute;
    z-index: 40;
    left: 0px;
    top: 100%;
    margin-top: -3px;
    display: none;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
}

    .widget-select-account .account-select .item,
    .widget-select-account .group-select .item,
    .widget-select-group .account-select .item,
    .widget-select-group .group-select .item {
        width: 100%;
        background-color: var(--P1);
        padding: 10px 20px;
        transition: all ease 0.3s;
        cursor: pointer;
    }

        .widget-select-account .account-select .item:hover,
        .widget-select-account .group-select .item:hover,
        .widget-select-group .account-select .item:hover,
        .widget-select-group .group-select .item:hover {
            background-color: var(--P2);
        }

            .widget-select-account .account-select .item:hover .triangle-right-white,
            .widget-select-account .group-select .item:hover .triangle-right-white,
            .widget-select-group .account-select .item:hover .triangle-right-white,
            .widget-select-group .group-select .item:hover .triangle-right-white {
                opacity: 1;
                margin-left: -40px;
            }

        .widget-select-account .account-select .item .widget,
        .widget-select-account .group-select .item .widget,
        .widget-select-group .account-select .item .widget,
        .widget-select-group .group-select .item .widget {
            border: none;
            background-color: transparent;
            margin-bottom: 0px;
        }

        .widget-select-account .account-select .item img,
        .widget-select-account .group-select .item img,
        .widget-select-group .account-select .item img,
        .widget-select-group .group-select .item img {
            filter: grayscale(0%);
        }

        .widget-select-account .account-select .item .content .acc-select-small,
        .widget-select-account .group-select .item .content .acc-select-small,
        .widget-select-group .account-select .item .content .acc-select-small,
        .widget-select-group .group-select .item .content .acc-select-small {
            color: #82ddff !important;
        }

.widget-select-account .small,
.widget-select-group .small {
    color: var(--BG);
}

.widget-select-account .big-s,
.widget-select-group .big-s {
    color: var(--BG);
}

.widget-select-account .big,
.widget-select-group .big {
    color: var(--BG);
}

.widget-select-account .desaturate,
.widget-select-group .desaturate {
    filter: grayscale(100%);
}

@media only screen and (max-width: 980px) {
    .account-select .content {
        padding: 0px !important;
    }
}

@media only screen and (max-width: 600px) {
    .widget-select-account {
        padding: 20px 20px !important;
        padding-right: 35px !important;
    }
}
/* ------------------------------------------------------------------------------------------ Account */

.custom-list-1 {
    margin-bottom: 60px;
}

    .custom-list-1 li {
        padding: 50px 0 0 0;
        border-bottom: 1px solid var(--K3);
        zoom: 1;
    }

        .custom-list-1 li:after {
            display: block;
            visibility: hidden;
            height: 0;
            clear: both;
            content: ".";
        }

    .custom-list-1 .left-content,
    .custom-list-1 .right-content {
        float: left;
        width: 50%;
        margin-bottom: 0;
    }

    .custom-list-1 .left-content {
        font-size: 14px;
        line-height: 22px;
        color: var(--K2);
        text-transform: uppercase;
        text-align: left;
    }

    .custom-list-1 .right-content {
        font-size: 18px;
        line-height: 22px;
        color: var(--P0);
        text-align: right;
    }
/* ------------------------------------------------------------------------------------------ P2P payment */
/*-- autocomplete --*/

.ui-menu {
    border: 1px solid #ebebeb !important;
    -webkit-box-shadow: 0px 0px 10px 0px #a3a3a3;
    -moz-box-shadow: 0px 0px 10px 0px #a3a3a3;
    box-shadow: 0px 0px 10px 0px #a3a3a3;
    overflow: hidden;
    background: var(--BG) !important;
}

.ui-autocomplete.ui-menu .ui-menu-item {
    background: transparent !important;
    border: none !important;
    font-size: 18px;
    font-family: 'Roboto';
    color: var(--P1);
    font-weight: 500;
    padding: 7px 15px !important;
}

    .ui-autocomplete.ui-menu .ui-menu-item:hover {
        background: var(--P2) !important;
        border: none !important;
        color: var(--BG);
        padding: 7px 15px !important;
    }

.autoCompleteImgWrapper {
    display: inline-block;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    overflow: hidden;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    border-radius: 100px;
}

    .autoCompleteImgWrapper img {
        width: 100%;
        height: auto;
    }

.autoCompleteImgLabel {
    display: inline-block;
    position: relative;
    top: -12px;
}
/* ------------------------------------------------------------------------------------------ Inbox */

.widget {
    /* border: 1px solid #dadada;*/
}

    .widget > .container {
        padding-top: 30px;
        padding-bottom: 30px;
    }

        .widget > .container.top-padding {
            padding-top: 20px;
        }

.widget-inbox .col-left {
    float: left;
    width: 27%;
}

    .widget-inbox .col-left h2 {
        font-size: 30px;
        font-weight: 300;
        margin-bottom: 30px;
    }

        .widget-inbox .col-left h2 i {
            display: inline-block;
            float: none;
            width: 20px;
            height: 16px;
            margin-right: 10px;
        }

.widget-inbox .col-right {
    float: left;
    width: 69%;
    margin-left: 4%;
}

.widget-inbox .search-1 {
    margin-bottom: 22px;
}

.widget-inbox .custom-table {
    margin-bottom: 20px;
}

    .widget-inbox .custom-table .table-row.row-first {
        border-top: 1px solid #ebeced;
    }

    .widget-inbox .custom-table .tag {
        background-repeat: no-repeat;
        background-position: center center;
    }

.widget-inbox .table-row {
    cursor: pointer;
    background: var(--BG);
    -webkit-transition: background 0.3s ease;
    -moz-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
    transition: background 0.3s ease;
}

    .widget-inbox .table-row:hover {
        background: var(--P2);
    }

    .widget-inbox .table-row .col {
        position: relative;
    }

        .widget-inbox .table-row .col .msg-title {
            padding-right: 130px;
        }

        .widget-inbox .table-row .col .msg-date {
            width: 120px;
            position: absolute;
            top: 12px;
            right: 0;
        }

            .widget-inbox .table-row .col .msg-date:after {
                content: '';
                width: 1px;
                height: 20px;
                background: #e4e4e4;
                position: absolute;
                left: 0;
                top: 8px;
            }

.arr-up-tag {
    width: 11px;
    height: 11px;
    position: absolute;
    top: 20px;
    left: 10px;
    background: url(/webapp/Themes/StandardRedesign/img/icons/arrow-top-2.png) no-repeat center center;
    background-size: 11px;
}

.arr-down-tag {
    width: 11px;
    height: 11px;
    position: absolute;
    top: 20px;
    left: 10px;
    background: url(/webapp/Themes/StandardRedesign/img/icons/arrow-bottom-3.png) no-repeat center center;
    background-size: 11px;
}

.select-1.icon-select .dd-selected {
    padding-left: 17px;
}

.select-1.icon-select .dd-selected-image,
.select-1.icon-select .dd-option-image {
    height: 18px;
    margin-right: 16px;
}

.select-1.icon-select .dd-option-image {
    margin-top: 4px;
}

.select-1.icon-select .dd-selected-text,
.select-1.icon-select .dd-option-text {
    line-height: 20px !important;
}

.select-1.icon-select .dd-option {
    padding-left: 17px;
}

.select-3.icon-select .dk-selected {
    padding-left: 55px;
}

    .select-3.icon-select .dk-selected:before {
        content: "";
        width: 20px;
        height: 18px;
        display: block;
        background: url(/webapp/Themes/StandardRedesign/img/icons/icon-mail-3.png) no-repeat center center;
        position: absolute;
        top: 12px;
        left: 14px;
        background-size: 20px;
    }

.message-options li {
    margin: 26px 0;
}

    .message-options li a {
        font-size: 14px;
        line-height: 24px;
        text-transform: uppercase;
        color: var(--K2);
    }

    .message-options li ul {
        padding-left: 15px;
    }

    .message-options li a span {
        display: inline-block;
        float: right;
        min-width: 24px;
        text-align: center;
    }

.message-options .active {
    color: var(--P1);
}

.message-options a span.active {
    color: var(--BG);
    width: 24px;
    height: 24px;
    text-align: center;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    border-radius: 12px;
    background: #eb0557;
}

.search-1 {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    position: relative;
}

    .search-1:after {
        content: '';
        width: 17px;
        height: 17px;
        /*   background: url(../../img/icons/icon-search.png) 0 0 no-repeat;*/
        background-size: 17px;
        position: absolute;
        top: 14px;
        right: 20px;
    }

    .search-1 input {
        width: 100%;
        border: none;
        background: none;
        font-size: 14px;
        color: var(--P1);
        font-weight: 700;
        line-height: 46px;
        height: 35px;
        padding: 0 55px 0 20px;
        position: relative;
        z-index: 1;
    }

.side-modal {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 120;
    overflow: hidden;
}


.side-modal-popup .actions a {
    font-size: 14px;
    color: var(--P0);
    text-transform: uppercase;
    font-weight: 700;
}

.side-modal-popup .actions .close-box {
    width: 32px;
    height: 32px;
    background-color: #F5FCFE !important;
    margin-left: auto;
    background: url(/webapp/Themes/StandardRedesign/img/icons/icon-close-3.png) 100% no-repeat;
    background-position: center;
    border-radius: 16px;
}

.side-modal-popup .actions .prev-box {
    width: 32px;
    height: 32px;
    background-color: #F5FCFE !important;
    float: right;
    background: url(/webapp/Themes/StandardRedesign/img/icons/icon-arrow-left.png) 100% no-repeat;
    background-position: center;
    border-radius: 16px;
}

.side-modal-popup .actions .next-box {
    width: 32px;
    height: 32px;
    background-color: #F5FCFE !important;
    float: right;
    background: url(/webapp/Themes/StandardRedesign/img/icons/icon-arrow-right.png) 100% no-repeat;
    background-position: center;
    border-radius: 16px;
}

.side-modal-popup .actions .prev-box,
.side-modal-popup .actions .next-box {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}



.side-modal-popup .content-inner h2 {
    font-size: 30px;
    line-height: 32px;
    font-weight: 300;
    color: var(--K2);
    margin-bottom: 35px;
}

.side-modal-popup .content-inner.no-action-btns {
    height: calc(100vh - 100px);
}



.side-modal-popup .inbox-content a {
    color: var(--P1);
    text-decoration: none;
}

.side-modal-popup .inbox-content img {
    width: 100%;
    min-width: 100%;
    height: auto;
}

.side-modal-popup .bottom-actions {
    zoom: 1;
    padding-top: 30px;
}

    .side-modal-popup .bottom-actions:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .side-modal-popup .bottom-actions .btn-1 {
        float: left;
        width: 48%;
    }

        .side-modal-popup .bottom-actions .btn-1:first-child {
            margin-right: 3%;
        }

.side-modal-popup .attachments-title {
    font-size: 14px;
    color: var(--P1);
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--K3);
    position: relative;
}

    .side-modal-popup .attachments-title:after {
        content: '';
        width: 30px;
        height: 3px;
        position: absolute;
        bottom: 0;
        left: 0;
        background: var(--P1);
    }



.side-modal-popup .attachments i {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center center;
}

.side-modal-popup .attachments .name {
    font-size: 14px;
    color: var(--P1);
    font-weight: 700;
    margin-bottom: 0;
}

.side-modal-popup .attachments .doc {
    font-size: 14px;
    color: var(--K2);
    margin-bottom: 0;
}

.side-modal-popup .attachments .att-delete {
    width: 20px;
    height: 20px;
    background: url(/webapp/Themes/StandardRedesign/img/icons/icon-close-2.png) center center no-repeat;
    background-size: 8px;
    position: absolute;
    top: 0px;
    right: 0px;
}

.side-modal-popup.active {
    transform: translateX(-540px);
    -moz-transform: translateX(-540px);
    -ms-transform: translateX(-540px);
    -o-transform: translateX(-540px);
    -webkit-transform: translateX(-540px);
}

.side-modal-popup.inbox-bg-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/bg/msg-img.png);
    background-size: 140px;
    background-repeat: no-repeat;
    background-position: 450px 50px;
}

.side-modal-inner .content-inner .title-1 {
    position: relative;
    margin-bottom: 30px;
}

    .side-modal-inner .content-inner .title-1:before {
        content: '';
        width: 100%;
        height: 1px;
        position: absolute;
        bottom: -10px;
        left: 0;
        background: var(--K3);
    }


.side-modal-inner .content-inner .user-content p {
    font-family: 'Roboto';
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--K2);
}

.side-modal-inner .content-inner .user-content ul {
    list-style: none;
}

    .side-modal-inner .content-inner .user-content ul li {
        position: relative;
        font-family: 'Roboto';
        font-size: 14px;
        color: var(--K2);
    }

        .side-modal-inner .content-inner .user-content ul li:after {
            content: "";
            width: 6px;
            height: 6px;
            display: block;
            background: var(--P1);
            position: absolute;
            left: -20px;
            top: 6px;
            -webkit-border-radius: 100px;
            -moz-border-radius: 100px;
            -ms-border-radius: 100px;
            border-radius: 100px;
        }

.side-modal-inner .content-inner .attachments .btn-1 {
    margin-bottom: 30px;
}

.prelogin-exchange-inner .col-left .actions {
    text-align: center;
}

.btn-1.full-width {
    margin: 0 0 20px 0 !important;
    width: 100% !important;
}

.inbox-2 {
    display: block;
}

    .inbox-2 h2 {
        font-size: 30px;
        line-height: 32px;
        font-weight: 300;
        color: var(--K2);
        margin-bottom: 5px;
    }

    .inbox-2 .input-1,
    .inbox-2 .textarea-1 {
        font-size: 14px;
        color: var(--K2);
    }

    .inbox-2 .textarea-1 {
        height: 360px;
    }

    .inbox-2 .attachments li {
        padding-right: 20px;
    }

    .inbox-2 .attachments .btn-1 {
        display: inline-block;
        width: auto;
        min-width: 225px;
    }
/*---------------------------------------side-modal-payment-recivers-profiles-----------*/

#side-modal-payment-recivers-profiles .id-tag {
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 18px;
    text-align: center;
    padding-top: 6px;
    font-weight: 600;
    color: var(--BG);
    background-color: #b2d885;
    margin-right: 15px;
    float: left;
}

#side-modal-payment-recivers-profiles .id-p {
    color: grey;
    margin-top: 8px;
    float: left;
    font-size: 15px;
    margin-bottom: 0px;
}

#side-modal-payment-recivers-profiles .id-tag-img {
    background: url("/webapp/Themes/StandardRedesign/img/icons/reciver-2.png") no-repeat center center;
    background-size: 35px;
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 18px;
    text-align: center;
    padding-top: 6px;
    font-weight: 600;
    margin-right: 15px;
    float: left;
}

#side-modal-payment-recivers-profiles .id-img {
    display: block;
    float: left;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

#side-modal-payment-recivers-profiles .btn-1 {
    float: right;
    padding: 10px 10px;
    width: 25%;
    font-size: 14px;
    margin-right: 0%;
}

#side-modal-payment-recivers-profiles .reciver-info {
    border-top: 1px solid var(--K3);
    border-bottom: 1px solid var(--K3);
    padding: 10px 5px;
    background-color: var(--BG);
    transition: all ease-in-out 0.6s;
}

    #side-modal-payment-recivers-profiles .reciver-info:hover {
        background-color: #f2f2f2;
    }

#side-modal-payment-recivers-profiles .hidden {
    display: none;
    transition: all ease-in-out 1s;
}

#side-modal-payment-recivers-profiles .reciver-info:hover .hidden {
    display: block;
}

#side-modal-payment-recivers-profiles .show-content {
    display: block;
    background-color: #f2f2f2;
}

#side-modal-payment-recivers-profiles .plain-list {
    float: left;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 0px;
    border-bottom: 2px solid var(--BG);
}

    #side-modal-payment-recivers-profiles .plain-list div {
        margin: 10px 5px;
        border-bottom: none;
    }

        #side-modal-payment-recivers-profiles .plain-list div:after {
            display: none;
        }

#side-modal-payment-recivers-profiles .cf:before {
    display: none;
}

#side-modal-payment-recivers-profiles .news .search-btn {
    position: absolute;
    right: 20px;
    width: 20px;
    background: url(/webapp/Themes/StandardRedesign/img/icons/icon-search.png) center center no-repeat;
    background-size: 17px;
    border: none;
    margin-right: 15px;
    margin-top: -30px;
}

#side-modal-payment-recivers-profiles .input-1 {
    display: block;
    font-family: inherit;
    width: 100%;
    background: transparent;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    font-size: 18px;
    color: #28007d;
    padding: 8px 10px;
    -webkit-appearance: none;
    -webkit-box-shadow: 0 0px 0 0 var(--P1);
    box-shadow: 0 0px 0 0 var(--P1);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#side-modal-payment-recivers-profiles .actions .col-left {
    float: left;
    clear: both;
    margin-top: 40px;
}

    #side-modal-payment-recivers-profiles .actions .col-left h3 {
        font-size: 30px;
        margin-bottom: 0px;
        color: grey;
    }

#side-modal-payment-recivers-profiles .content-inner {
    height: calc(100vh - 300px);
}


#side-modal-payment-recivers-profiles .btn-1 {
    margin-right: 4%;
}

    #side-modal-payment-recivers-profiles .btn-1:after {
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 4px 5px 4px;
        border-color: transparent transparent var(--P1) transparent;
        position: absolute;
        right: 3px;
        transform: rotate(180deg);
        margin-top: 7px;
        transition: all ease 0.3s;
    }

#side-modal-payment-recivers-profiles .reciver-info:hover .btn-1:after {
    transform: rotate(360deg);
}
/* ------------------------------------------------------------------------------------------ Prelogin steps */
/*--------------side-modal-currency---------------------------------------------------------------------------*/

#side-modal-currency-new .dashboard-shortcut-list {
    margin-top: 3%;
}

#side-modal-currency-new .description {
    height: 44px;
    border-bottom: 1px solid #b1b1b1;
}

    #side-modal-currency-new .description img {
        width: 30px;
        height: 30px;
        float: left;
        margin-top: 7px;
        margin-right: 15px;
    }

#side-modal-currency-new .shortcut-name {
    font-size: 16px;
    color: #b1b1b1;
    margin-bottom: 0px;
    padding-top: 13px;
}

#side-modal-currency-new .notification-trigger {
    margin-top: -29px;
}

#side-modal-currency-new .trigger-mobile {
    margin-top: -29px;
}

#side-modal-currency-new .float-right {
    float: right !important;
}

#side-modal-currency-new .plain-list p {
    margin-bottom: 8px;
}

#side-modal-currency-new .col-left {
    float: left;
}

#side-modal-currency-new .col-right {
    float: right;
}

#side-modal-currency-new h2 {
    font-weight: 500;
}

#side-modal-currency-new .actions {
    margin-bottom: 40px;
}

    #side-modal-currency-new .actions p {
        font-size: 14px;
        color: var(--K2);
        line-height: 18px;
        margin-top: 8%;
    }

#side-modal-currency-new .content-inner {
    height: calc(100vh - 180px);
}

#side-modal-currency-new .inner-p {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 15px !important;
    color: #b1b1b1;
    font-weight: 500;
}

    #side-modal-currency-new .inner-p span {
        color: #4f4f4f;
    }

#side-modal-currency-new .bottom-actions {
    padding-top: 0px;
}

#side-modal-currency-new .mCustomScrollBox {
    height: 80%;
}

@media only screen and (max-width: 500px) {
    #side-modal-currency-new .dashboard-shortcut-list {
        margin-top: 0%;
    }

    #side-modal-currency-new p {
        margin-bottom: 0px !important;
    }

    #side-modal-currency-new .btn-1 {
        font-size: 15px;
    }

    #side-modal-currency-new .mCustomScrollBox {
        height: 90%;
    }

    #side-modal-currency-new .shortcut-name {
        font-size: 14px;
    }

    #side-modal-currency-new .actions .close-box {
        margin-right: 20px;
    }

    #side-modal-currency-new .trigger-mobile {
        margin-top: -26px;
    }
}

#popup-content-side .dashboard-shortcut-list {
    margin-top: 3%;
}

/*#popup-content-side .description {
  height: 44px;
  border-bottom: 1px solid #b1b1b1; }*/
#popup-content-side .description img {
    width: 40px;
    height: 24px;
    float: left;
    margin-top: 7px;
    margin-right: 15px;
    border-radius: 2px;
}

#popup-content-side .shortcut-name {
    font-size: 16px;
    color: #b1b1b1;
    margin-bottom: 0px;
    padding-top: 13px;
}

/*#popup-content-side .notification-trigger {
  margin-top: -29px; }*/

#popup-content-side .trigger-mobile {
    margin-top: -29px;
}

#popup-content-side .float-right {
    float: right !important;
}

#popup-content-side .plain-list p {
    margin-bottom: 8px;
}

#popup-content-side .col-left {
    float: left;
}

/*#popup-content-side .col-right {
  float: right; }*/

#popup-content-side h2 {
    font-weight: 500;
}



#popup-content-side .actions p {
    font-size: 14px;
    color: var(--K2);
    line-height: 18px;
    margin-top: 8%;
}

#side-modal-currency-new .mCustomScrollBox {
    height: 90%;
}

#side-modal-currency-new .shortcut-name {
    font-size: 14px;
}

#side-modal-currency-new .actions .close-box {
    margin-right: 20px;
}

#side-modal-currency-new .trigger-mobile {
    margin-top: -26px;
}

}

#popup-content-side .dashboard-shortcut-list {
    margin-top: 3%;
}

#popup-content-side .shortcut-name {
    font-size: 16px;
    color: #b1b1b1;
    margin-bottom: 0px;
    padding-top: 13px;
}

/*#popup-content-side .notification-trigger {
  margin-top: -29px; }*/

#popup-content-side .trigger-mobile {
    margin-top: -29px;
}

#popup-content-side .float-right {
    float: right !important;
}

#popup-content-side .plain-list p {
    margin-bottom: 8px;
}

#popup-content-side .col-left {
    float: left;
}

/*#popup-content-side .col-right {
  float: right; }*/

#popup-content-side h2 {
    font-weight: 500;
}



#popup-content-side .actions p {
    font-size: 14px;
    color: var(--K2);
    line-height: 18px;
    margin-top: 8%;
}
















#second-popup-content-side .dashboard-shortcut-list {
    margin-top: 3%;
}


#second-popup-content-side .description img {
    width: 100%;
    height: 100%;
}

#second-popup-content-side .shortcut-name {
    font-size: 16px;
    color: #b1b1b1;
    margin-bottom: 0px;
    padding-top: 13px;
}

#second-popup-content-side .trigger-mobile {
    margin-top: -29px;
}

#second-popup-content-side .float-right {
    float: right !important;
}

#second-popup-content-side .plain-list p {
    margin-bottom: 8px;
}

#second-popup-content-side .col-left {
    float: left;
}

#second-popup-content-side h2 {
    font-weight: 500;
}

#second-popup-content-side .actions {
    margin-bottom: 40px;
}

    #second-popup-content-side .actions p {
        font-size: 14px;
        color: var(--K2);
        line-height: 18px;
        margin-top: 8%;
    }
















#side-modal-currency-new .actions .close-box {
    margin-right: 20px;
}

#side-modal-currency-new .trigger-mobile {
    margin-top: -26px;
}

}
/*--------------side-modal-currency------------------------------------------------------------------------*/

.login-steps {
    margin-top: 20px;
    padding-right: 60px;
}

    .login-steps li {
        display: inline-block;
        -webkit-border-radius: 100px;
        -moz-border-radius: 100px;
        -ms-border-radius: 100px;
        border-radius: 100px;
        font-family: 'Roboto';
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        background: var(--K3);
        height: 32px !important;
        min-width: 32px;
        text-align: center;
        color: var(--BG);
        padding: 9px 0px 0px;
        margin-right: 5px;
        margin-bottom: 5px;
    }

        .login-steps li.active {
            background: var(--P1);
            padding: 9px 22px 7px;
            height: auto !important;
        }

.prelogin-full.sign-up-steps .col-head {
    top: 20px;
    z-index: 1;
}

    .prelogin-full.sign-up-steps .col-head .close {
        line-height: 38px;
        background: url(/webapp/Themes/StandardRedesign/img/icons/icon-close-2.png) 100% 13px no-repeat;
        background-size: 10px;
    }

.prelogin-full.sign-up-steps .inner {
    height: 540px;
}

.prelogin-full.sign-up-steps .scrollable-content {
    margin-top: 20px;
    height: 375px;
    padding-bottom: 20px;
}

.prelogin-full.sign-up-steps .button-actions {
    border-top: 1px solid var(--K3);
    padding-top: 20px;
    zoom: 1;
}

    .prelogin-full.sign-up-steps .button-actions:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .prelogin-full.sign-up-steps .button-actions .btn-1 {
        float: left;
        width: 49%;
    }

        .prelogin-full.sign-up-steps .button-actions .btn-1:first-child {
            margin-right: 2%;
        }

.prelogin-full.sign-up-steps .checkbox-wrap {
    padding: 0;
}

.search-button {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 20px;
    height: 100%;
    background: url(/webapp/Themes/StandardRedesign/img/icons/icon-search.png) center center no-repeat;
    background-size: 17px;
    border: none;
    margin-right: 0;
}

.mobile-entry {
    zoom: 1;
}

    .mobile-entry:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .mobile-entry .select-3 {
        float: left;
        width: 100px;
    }

        .mobile-entry .select-3 .dk-selected,
        .mobile-entry .select-3 .dk-option {
            padding: 1rem 2.5rem 1rem 1.2rem;
        }

    .mobile-entry .input-1 {
        width: calc(100% - 110px);
        float: right;
    }

.checkbox-wrap a {
    color: var(--K2);
    position: relative;
}

    .checkbox-wrap a span {
        color: var(--P1);
    }

.download-link {
    position: relative;
    padding-right: 35px !important;
}

    .download-link:after {
        content: "";
        width: 29px;
        height: 29px;
        display: block;
        background: url(/webapp/Themes/StandardRedesign/img/icons/download-icon.png) no-repeat center center;
        background-size: 29px;
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -15px;
    }

.info-content {
    margin-bottom: 20px;
}

    .info-content p {
        font-family: 'Roboto';
        font-size: 13px;
        margin-bottom: 10px;
        color: var(--K2);
        line-height: 20px;
    }

.button-actions .fl-r {
    margin-right: 0 !important;
}

.statement-half:last-child {
    padding-right: 0;
    padding: 0 0 0 20px;
    border-left: 1px solid var(--K3);
}

.checkmark-icon {
    width: 61px;
    height: 42px;
    display: inline-block;
    background: url(/webapp/Themes/StandardRedesign/img/icons/icon-check-6.png) no-repeat center center;
    background-size: 61px;
}

.error-icon {
    width: 43px;
    height: 43px;
    display: inline-block;
    background: url(/webapp/Themes/StandardRedesign/img/icons/error-icon.png) no-repeat center center;
    background-size: 43px;
}

.title-done {
    font-family: 'Roboto';
    font-size: 30px;
    color: var(--P1);
    margin-top: 10px;
    font-weight: 100;
}

    .title-done .checkmark-icon {
        position: relative;
        top: 8px;
        margin-right: 10px;
    }

.title-error {
    font-family: 'Roboto';
    font-size: 30px;
    color: #ff0000;
    margin-top: 10px;
    font-weight: 100;
}

    .title-error .error-icon {
        position: relative;
        top: 10px;
        margin-right: 10px;
    }

.sign-up-data-check {
    margin-top: 12px;
    zoom: 1;
}

    .sign-up-data-check:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .sign-up-data-check .half {
        float: left;
        width: 50%;
        padding-right: 10px;
    }

        .sign-up-data-check .half:nth-child(2) {
            padding-left: 10px;
            padding-right: 0;
        }

    .sign-up-data-check p,
    .sign-up-data-check a {
        font-family: 'Roboto';
        font-size: 14px;
        color: var(--K2);
    }

    .sign-up-data-check p {
        margin-bottom: 10px;
    }

.data-control {
    zoom: 1;
    border-bottom: 1px solid var(--K3);
    padding-bottom: 5px;
    margin-bottom: 25px;
}

    .data-control:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .data-control .key,
    .data-control .value {
        margin-bottom: 0;
        font-size: 14px;
    }

    .data-control .key {
        float: left;
        text-transform: uppercase;
        color: var(--K2);
    }

    .data-control .value {
        color: var(--P1);
        float: right;
    }

.download-link-1 {
    display: block;
    padding-right: 40px;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .download-link-1 .download-icon {
        position: absolute;
        top: 5px;
        right: 0;
    }

    .download-link-1:hover {
        color: var(--P1);
    }

.download-icon {
    width: 29px;
    height: 29px;
    display: inline-block;
    background: url(/webapp/Themes/StandardRedesign/img/icons/download-icon.png) no-repeat center center;
    background-size: 29px;
}

#map-canvas-signup {
    width: 100%;
    height: 295px;
}

.error-log-wrapper {
    margin-top: 15px;
}

    .error-log-wrapper p {
        font-family: 'Roboto';
        font-size: 14px;
        color: var(--K2);
    }

.error-log .hidden {
    margin-top: 35px;
    display: none;
}

.error-log-title {
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'Roboto';
    color: var(--K2);
    border-bottom: 1px solid var(--K3);
    text-align: center;
    cursor: pointer;
}

    .error-log-title span {
        background: var(--BG);
        padding: 0 35px 0 10px;
        position: relative;
        top: 9px;
    }

        .error-log-title span:after {
            content: "";
            width: 0;
            height: 0;
            position: absolute;
            right: 15px;
            top: 50%;
            margin-top: -2px;
            border-style: solid;
            border-width: 5px 4px 0 4px;
            border-color: var(--K3) transparent transparent transparent;
        }
/* ------------------------------------------------------------------------------------------ News */

.news .icon-rss-1 {
    background-repeat: no-repeat;
    background-position: 5px 7px;
}

.news .custom-table .tag.tagcolor-6 {
    background-color: var(--P1);
}

.news .widget-slat h3 {
    color: var(--K2);
}

    .news .widget-slat h3:before {
        display: none;
    }

.news .search-btn {
    position: absolute;
    top: 35px;
    right: 39px;
    width: 20px;
    background: url(/webapp/Themes/StandardRedesign/img/icons/icon-search-2.png) center center no-repeat;
    background-size: 17px;
    border: none;
}

.news .input-1 {
    font-size: 13px;
    color: var(--K2);
    padding: 12px 10px;
}

.news .custom-table .text-cl-1 {
    color: var(--K2);
}

.news .widget-slat .col-left p {
    color: var(--K2);
}

.news .group {
    border-bottom: 1px solid #ebeced;
}

.news .custom-table .row-1 .col:before {
    display: none;
}

.news .custom-table .text-2 {
    line-height: 33px;
    white-space: nowrap;
}

.news .widget-buttons {
    padding: 30px 0px 12px 0px;
}

.news .custom-table span {
    text-transform: none;
}

.news .custom-table .text-1 {
    font-weight: 600;
}

.news .custom-table .table-row.row-1 {
    cursor: pointer;
}
/* ------------------------------------------------------------------------------------------ News-modal */

#side-modal-news .input-search {
    position: relative;
}

    #side-modal-news .input-search .input-1 {
        -webkit-box-shadow: 0 2px 0 0 #28007c;
        box-shadow: 0 2px 0 0 #28007c;
    }

#side-modal-news .search-btn {
    position: absolute;
    top: 0px;
    right: 20px;
    width: 20px;
    height: 100%;
    background: url(/webapp/Themes/StandardRedesign/img/icons/icon-search-2.png) center center no-repeat;
    background-size: 17px;
    border: none;
    margin-right: 0;
}

#side-modal-news .title-4:before {
    display: none;
}

#side-modal-news h3 span {
    color: var(--K2);
}

#side-modal-news .col-left {
    float: left;
    width: 90%;
}

    #side-modal-news .col-left img {
        position: absolute;
        left: 116px;
        top: 17px;
        width: auto;
        height: auto;
    }

    #side-modal-news .col-left p {
        font-size: 13px;
    }

#side-modal-news .button-wrap {
    margin-top: 20px;
}

#side-modal-news .table-row {
    cursor: pointer;
}

#side-modal-news img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

#side-modal-news p {
    font-size: 15px;
    color: var(--K2);
    margin-bottom: 10px;
}

#side-modal-news i {
    color: var(--P1);
}

#side-modal-news br {
    line-height: 40px;
}

#side-modal-news .content-inner {
    height: calc(100vh - 250px) !important;
}

#side-modal-news .plain-list div {
    border-bottom: none;
}

#side-modal-news .plain-list a {
    color: var(--P1);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: inherit;
    display: inline;
    padding: 0px 0px;
    transition: all ease 0.3s;
}

    #side-modal-news .plain-list a:hover {
        text-decoration: underline;
    }

#side-modal-news .close-box {
    margin-bottom: 20px;
}
/* ------------------------------------------------------------------------------------------ Product catalogue */

.product-cat-slat .widget-grid-options {
    text-align: center;
}

.product-cat-slat .grid-options {
    display: inline-block;
    float: none;
    background: var(--BG);
    padding: 0 20px;
}

    .product-cat-slat .grid-options .grid-option {
        margin-left: 0;
    }

.product-list {
    zoom: 1;
}

    .product-list:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }




.product-slider {
    position: relative;
    margin-bottom: 20px;
}

    .product-slider .title-1 {
        position: absolute;
        top: 10px;
        left: 10px;
        z-index: 10;
    }

        .product-slider .title-1 span:after {
            width: 100%;
        }

    .product-slider .slide {
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .product-slider .product-inner {
        width: 100%;
    }

    .product-slider h3 {
        font-size: 40px;
        font-weight: 300;
        color: var(--BG);
    }

        .product-slider h3 strong {
            font-weight: 600;
        }

    .product-slider .product-inner {
        height: 330px;
        padding-left: 53%;
        padding-right: 13%;
        padding-top: 50px;
        padding-bottom: 30px;
    }

        .product-slider .product-inner p {
            font-size: 14px;
            color: var(--BG);
            line-height: 24px;
        }

    .product-slider .btn-1 {
        width: auto;
        display: inline-block;
        min-width: 200px;
    }

    .product-slider .slider-button-prev,
    .product-slider .slider-button-next {
        position: absolute;
        top: 40px;
        width: 50px;
        height: 50px;
        top: 130px;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        -ms-border-radius: 2px;
        border-radius: 2px;
        cursor: pointer;
        opacity: 0.15;
        -webkit-transition: opacity 0.3s ease;
        -moz-transition: opacity 0.3s ease;
        -o-transition: opacity 0.3s ease;
        transition: opacity 0.3s ease;
    }

        .product-slider .slider-button-prev:hover,
        .product-slider .slider-button-next:hover {
            opacity: 1;
        }

    .product-slider .slider-button-prev {
        left: 15px;
        background: var(--BG) url(/webapp/Themes/StandardRedesign/img/icons/arrow-left-1.png) center center no-repeat;
        background-size: 25px;
    }

    .product-slider .slider-button-next {
        right: 15px;
        background: var(--BG) url(/webapp/Themes/StandardRedesign/img/icons/arrow-right-1.png) center center no-repeat;
        background-size: 25px;
    }

    .product-slider .slick-dots {
        width: 100%;
        position: absolute;
        top: 15px;
        left: 0;
        text-align: center;
    }

        .product-slider .slick-dots li {
            display: inline-block;
            width: 6px;
            height: 6px;
            margin-right: 6px;
        }

        .product-slider .slick-dots button {
            text-indent: -9999px;
            overflow: hidden;
            padding: 0;
            width: 6px;
            height: 6px;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            -ms-border-radius: 3px;
            border-radius: 3px;
            background: transparent;
            border: 1px solid var(--BG);
            background: transparent;
        }

        .product-slider .slick-dots .slick-active button {
            background: var(--BG);
        }

.product-wrapper .widget-grid-options {
    text-align: center;
}

.product-wrapper .grid-options {
    display: inline-block;
    float: none;
    padding: 0 20px;
}

    .product-wrapper .grid-options .grid-option {
        margin-left: 0;
    }

.product-wrapper .product-box {
    float: left;
    width: 32%;
    margin-right: 2%;
    margin-bottom: 20px;
}

.product-wrapper .product-list .product-box:nth-child(3n + 3) {
    margin-right: 0;
}

.product-single {
    border: none;
}

    .product-single .title-1 {
        margin-bottom: 20px;
        position: relative;
    }

        .product-single .title-1:after {
            content: '';
            width: 100%;
            height: 1px;
            background: var(--K3);
            position: absolute;
            bottom: -10px;
            left: 0;
        }

        .product-single .title-1.no-margin {
            margin-bottom: 10px;
        }

            .product-single .title-1.no-margin:after {
                display: none;
            }

    .product-single .product-info li {
        float: left;
        width: 48%;
    }

        .product-single .product-info li:nth-child(odd) {
            margin-right: 4%;
        }

    .product-single .info-inner {
        height: 360px;
        margin-bottom: 10px;
    }

        .product-single .info-inner p {
            font-size: 14px;
            color: var(--K2);
        }

        .product-single .info-inner ul {
            margin-bottom: 20px;
        }

        .product-single .info-inner .content-list li {
            font-size: 14px;
            color: var(--K2);
            position: relative;
            padding-left: 10px;
        }

            .product-single .info-inner .content-list li:after {
                content: '';
                position: absolute;
                top: 6px;
                left: 0px;
                width: 5px;
                height: 5px;
                background: var(--P1);
                -webkit-border-radius: 3px;
                -moz-border-radius: 3px;
                -ms-border-radius: 3px;
                border-radius: 3px;
            }

    .product-single .download {
        font-size: 14px;
        color: var(--K2);
    }

        .product-single .download a {
            display: inline-block;
            width: 28px;
            height: 28px;
            margin-left: 10px;
            -webkit-border-radius: 14px;
            -moz-border-radius: 14px;
            -ms-border-radius: 14px;
            border-radius: 14px;
            background-color: var(--P1);
            background-repeat: no-repeat;
            background-position: center center;
            position: relative;
            top: 9px;
        }

    .product-single .product-actions {
        border-top: 1px solid var(--K3);
        padding-top: 20px;
        zoom: 1;
    }

        .product-single .product-actions:after {
            display: block;
            visibility: hidden;
            height: 0;
            clear: both;
            content: ".";
        }

        .product-single .product-actions .btn-1 {
            float: left;
            width: 49%;
        }

            .product-single .product-actions .btn-1:first-child {
                margin-right: 2%;
            }

.product-info {
    background: var(--K4);
    padding: 0 20px;
    margin-bottom: 20px;
}

    .product-info ul {
        zoom: 1;
    }

        .product-info ul:after {
            display: block;
            visibility: hidden;
            height: 0;
            clear: both;
            content: ".";
        }

    .product-info li {
        font-size: 14px;
        line-height: 20px;
        padding: 15px 0px 15px 0px;
        color: var(--P0);
        text-transform: uppercase;
        border-bottom: 1px solid var(--BG);
    }

        .product-info li span {
            color: var(--P1);
            font-size: 18px;
            line-height: 20px;
            text-transform: none;
            float: right;
        }

body .ui-selectmenu-menu .ui-widget-content[id^="select-currency"] .ui-menu-item {
    background: var(--P1);
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
    color: var(--BG);
}

body .ui-selectmenu-menu .ui-widget-content[id^="select-currency"] .ui-state-focus {
    background: var(--P2);
}

body .ui-selectmenu-menu .ui-menu {
    border: none !important;
    box-shadow: none;
    padding-bottom: 0;
    border-radius: 0 0 2px 2px;
}
/* ------------------------------------------------------------------------------------------ Selfcare my profile */

.account-row.profile-row {
    text-align: center;
    padding: 15px;
}

    .account-row.profile-row .img-box {
        display: inline-block;
        width: 62px;
        height: 62px;
        -webkit-border-radius: 31px;
        -moz-border-radius: 31px;
        -ms-border-radius: 31px;
        border-radius: 31px;
        overflow: hidden;
    }

        .account-row.profile-row .img-box img {
            width: 100%;
            height: auto;
        }

    .account-row.profile-row p {
        font-size: 36px;
        color: var(--BG);
        margin-bottom: 0;
    }

.selfcare-widget h2 {
    margin-bottom: 40px;
}

.selfcare-widget .col-right {
    position: relative;
}

.selfcare-widget .position-top {
    width: 100%;
    position: absolute;
    top: -76px;
    left: 0;
    padding-left: 0;
}

.profile-img-group {
    position: relative;
    margin: 10px auto 40px auto;
}

    .profile-img-group .img-box {
        width: 128px;
        height: 128px;
        -webkit-border-radius: 60px;
        -moz-border-radius: 60px;
        -ms-border-radius: 60px;
        border-radius: 60px;
        position: relative;
        cursor: pointer;
    }

        .profile-img-group .img-box img {
            width: 100%;
            height: auto;
            opacity: 1;
            -webkit-transition: opacity 0.3s ease;
            -moz-transition: opacity 0.3s ease;
            -o-transition: opacity 0.3s ease;
            transition: opacity 0.3s ease;
            -webkit-border-radius: 60px;
            -moz-border-radius: 60px;
            -ms-border-radius: 60px;
            border-radius: 60px;
        }

        .profile-img-group .img-box span {
            width: 100%;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            color: var(--BG);
            text-align: center;
            position: absolute;
            top: 40px;
            left: 0;
            opacity: 0;
            -webkit-transition: opacity 0.3s ease;
            -moz-transition: opacity 0.3s ease;
            -o-transition: opacity 0.3s ease;
            transition: opacity 0.3s ease;
        }

    .profile-img-group .cancel-link {
        width: 35px;
        height: 35px;
        position: absolute;
        top: 0px;
        right: 0px;
        background-color: #eb0255;
        background-image: url(/webapp/Themes/StandardRedesign/img/icons/close.png);
        background-position: center center;
        background-size: 10px;
        background-repeat: no-repeat;
        border: 3px solid var(--BG);
        -webkit-border-radius: 18px;
        -moz-border-radius: 18px;
        -ms-border-radius: 18px;
        border-radius: 18px;
        -webkit-transition: background 0.3s ease;
        -moz-transition: background 0.3s ease;
        -o-transition: background 0.3s ease;
        transition: background 0.3s ease;
    }

        .profile-img-group .cancel-link:hover {
            background-color: #fd2371;
        }

    .profile-img-group:hover .img-box img {
        opacity: 0.5;
    }

    .profile-img-group:hover .img-box span {
        opacity: 1;
    }

.popup-profile-thumb-wrapper {
    width: 44px;
    height: 45px;
    overflow: hidden;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    border-radius: 100px;
    margin: 0 auto 40px;
    text-align: center;
}

    .popup-profile-thumb-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
/* ------------------------------------------------------------------------------------------ Selfcare authentication */

.img-flag {
    width: 46px;
}

    .img-flag img {
        width: 100%;
        height: auto;
    }

    .img-flag .img-box span {
        opacity: 1;
    }

.flag-slider {
    height: 52px;
    overflow: hidden;
    padding-left: 10px;
    padding-right: 10px;
    margin: 40px 0;
}

    .flag-slider .slide {
        text-align: center;
    }

        .flag-slider .slide img {
            display: inline-block;
            width: 49px;
            -webkit-border-radius: 25px;
            -moz-border-radius: 25px;
            -ms-border-radius: 25px;
            border-radius: 25px;
            -webkit-transition: border 0.3s ease;
            -moz-transition: border 0.3s ease;
            -o-transition: border 0.3s ease;
            transition: border 0.3s ease;
            border: 3px solid var(--BG);
            cursor: pointer;
        }

            .flag-slider .slide img:hover {
                border-color: var(--P1);
            }

    .flag-slider .slick-prev,
    .flag-slider .slick-next {
        width: 15px;
        height: 45px;
        position: absolute;
        top: 0;
        padding: 0;
        text-indent: -999px;
        overflow: hidden;
        background: transparent;
        margin-right: 0;
    }

        .flag-slider .slick-prev:after,
        .flag-slider .slick-next:after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            margin-left: -2px;
            margin-top: -5px;
            width: 0;
            height: 0;
            border-style: solid;
        }

    .flag-slider .slick-prev {
        left: 0;
    }

        .flag-slider .slick-prev:after {
            border-width: 5px 5px 5px 0;
            border-color: transparent var(--P1) transparent transparent;
        }

    .flag-slider .slick-next {
        right: 0;
    }

        .flag-slider .slick-next:after {
            border-width: 5px 0 5px 5px;
            border-color: transparent transparent transparent var(--P1);
        }
/* ------------------------------------------------------------------------------------------ Selfcare my applications */

.-border-top {
    border-top: 1px solid var(--K3);
}

.application-head {
    position: relative;
    padding-right: 20px;
}

    .application-head.-border-top {
        padding-top: 13px;
        margin-top: 24px;
        border-top: 1px solid var(--K3);
    }

    .application-head h3 {
        color: var(--P1);
        margin-bottom: 0;
        font-family: 'Roboto', sans-serif;
        font-weight: normal;
        font-size: 18px;
        margin-bottom: 2px;
    }

        .application-head h3:before {
            display: none;
        }

    .application-head p {
        margin-bottom: 0;
        font-family: 'Roboto', sans-serif;
        font-weight: normal;
        color: var(--K1);
        font-size: 14px;
        margin-bottom: 13px;
    }

    .application-head .widget-options {
        right: 0;
        top: 20px;
    }

.document-actions {
    border-top: 1px solid var(--K3);
    zoom: 1;
}

    .document-actions:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .document-actions p {
        font-family: 'Roboto', sans-serif;
        color: var(--K1);
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 0px;
    }

    .document-actions .btn-1 {
        height: 35px;
        width: auto;
        padding: 8px 13px;
        margin: 8px 3px;
    }

    .document-actions .custom-file-upload-2 {
        margin-right: 0;
    }

    .document-actions .description {
        float: left;
        width: 50%;
        padding-top: 14px;
    }

    .document-actions .btn-wrapper {
        float: right;
        width: 50%;
        text-align: right;
    }

.attachment-wrapper {
    position: relative;
    padding-right: 75px;
}

    .attachment-wrapper p {
        font-family: 'Roboto', sans-serif;
        color: var(--K1);
        font-size: 15px;
        margin-bottom: 0px;
        position: relative;
        padding-left: 35px;
        margin-bottom: 30px;
        word-break: break-all;
    }

        .attachment-wrapper p:before {
            content: "";
            display: inline-block;
            width: 30px;
            height: 30px;
            position: absolute;
            top: -6px;
            left: 0;
            background: url(/webapp/Themes/StandardRedesign/img/icons/attachment-icon.png) no-repeat center center;
            background-size: 20px;
        }

    .attachment-wrapper .delete {
        font-family: 'Roboto', sans-serif;
        color: var(--K1);
        font-size: 15px;
        text-transform: uppercase;
        position: absolute;
        top: 0;
        right: 0;
        padding-right: 20px;
        -webkit-transition: color 0.3s ease-in-out;
        -moz-transition: color 0.3s ease-in-out;
        -o-transition: color 0.3s ease-in-out;
        transition: color 0.3s ease-in-out;
    }

        .attachment-wrapper .delete:after {
            content: "";
            width: 9px;
            height: 9px;
            display: block;
            position: absolute;
            top: 5px;
            right: 0;
            background: url(/webapp/Themes/StandardRedesign/img/icons/error-icon-small.png) no-repeat center center;
            background-size: 9px;
        }

        .attachment-wrapper .delete:hover {
            color: #ed183a;
        }
/* ------------------------------------------------------------------------------------------ Selfcare my documents */

.document-wrapper {
    padding-left: 35px;
}

    .document-wrapper .format-icon {
        left: 0;
        position: absolute;
    }

.format-icon {
    padding-top: 9px;
    text-align: center;
    width: 36px;
    height: 36px;
    display: block;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: var(--BG);
    background: #777777;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    border-radius: 100px;
}
/* ------------------------------------------------------------------------------------------ Selfcare notifications */


.notification-wraper {
    zoom: 1;
    margin-bottom: 9px;
}

    .notification-wraper:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .notification-wraper .description {
        float: left;
        padding-top: 14px;
        margin-left: 10px;
        width: calc(100% - 150px);
    }

        .notification-wraper .description p,
        .notification-wraper .notification-group-title p {
            font-family: 'Roboto', sans-serif;
            color: var(--K1);
            font-size: 16px;
            margin-bottom: 0;
        }

    .notification-wraper .notification-group-title {
        margin-left: 10px;
        zoom: 1;
    }

        .notification-wraper .notification-group-title:after {
            display: block;
            visibility: hidden;
            height: 0;
            clear: both;
            content: ".";
        }

        .notification-wraper .notification-group-title p {
            margin-bottom: 15px;
        }

    .notification-wraper .notification-trigger,
    .notification-wraper .notification-condition {
        float: right;
        padding-top: 14px;
    }

    .notification-wraper .checkbox-wrap-2 {
        margin: 7px 0 4px;
        margin-right: 10px;
    }

    .notification-wraper .notification-condition {
        width: 130px;
        margin-right: 10px;
        margin-bottom: 10px;
    }

        .notification-wraper .notification-condition input[type="text"],
        .notification-wraper .notification-condition input[type="number"] {
            font-family: 'Roboto', sans-serif;
            color: var(--K1);
            font-size: 14px;
            text-align: right;
            border: 1px solid var(--K3);
            background: var(--BG);
            outline: none;
            width: 100%;
            font-weight: 600;
            padding: 11px 13px 10px 10px;
        }

    .notification-wraper .hidden {
        clear: both;
        border-top: 1px solid var(--K3);
        /*   configure widget*/
        /*  background: #fafafa;*/
        padding: 15px 0 3px 0;
        display: none;
        zoom: 1;
    }

        .notification-wraper .hidden:after {
            display: block;
            visibility: hidden;
            height: 0;
            clear: both;
            content: ".";
        }


    .notification-wraper .sub-notification {
        zoom: 1;
    }

        .notification-wraper .sub-notification:after {
            display: block;
            visibility: hidden;
            height: 0;
            clear: both;
            content: ".";
        }

        .notification-wraper .sub-notification p {
            font-size: 15px;
        }

.notification-divider {
    height: 1px;
    clear: both;
    width: 100%;
    background: var(--K3);
    margin: 5px 0 15px 0;
}
/* ------------------------------------------------------------------------------------------ Cards */

.card-preview {
    margin-bottom: 20px;
}

    .card-preview img {
        max-width: 100%;
        height: auto;
        display: block;
    }

.col-right.expanable {
    display: none;
}


.plain-list .checkbox-wrap-2 {
    margin-bottom: 0;
    border: none;
}

    .plain-list .checkbox-wrap-2 .checkbox-2.styledCheckbox {
        margin-bottom: 5px;
        float: right;
        margin-top: -17px;
    }

.plain-list .m-bottom {
    margin-bottom: 20px;
}

.card-logo {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: auto;
}

    .card-logo img {
        width: 100%;
        height: auto;
        display: block;
    }

.payment-widget .full-width,
.pfm-post-v2 .full-width {
    width: 100%;
}

.custom-table.card-limit .col {
    margin-bottom: -2px;
}

.custom-table.card-limit .col-text {
    margin-top: 2px;
}

.no-margin {
    margin-bottom: 0 !important;
}

.no-border {
    border: none !important;
}

.hidden-col {
    display: none;
}

.action-list li {
    border-bottom: 1px solid var(--K3);
    padding: 8px 10px;
    font-size: 14px;
    color: #555;
    zoom: 1;
}

    .action-list li:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .action-list li .details {
        float: left;
        width: calc(100% - 110px);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .action-list li:first-child {
        border-top: 1px solid var(--K3);
    }

.action-list .icon,
.action-list .icon-rounded {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: #777;
    color: var(--BG);
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    text-align: center;
    line-height: 36px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    margin-right: 10px;
}

.action-list .btn-1 {
    padding: 8px 10px;
    float: right;
    width: 110px;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-25 {
    margin-top: 25px !important;
}

.mt-35 {
    margin-top: 35px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.pl-10 {
    padding-left: 10px !important;
}

.ws-30-50 {
    margin: 30px 0 50px 0 !important;
}
/* ------------------------------------------------------------------------------------------ Bill presentment */

.table-corner-button {
    position: absolute;
    top: 70px;
    right: 3%;
    width: auto;
    padding: 8px 35px !important;
}
/* ------------------------------------------------------------------------------------------ Tips and tricks */

.tips-and-tricks-modal-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.tips-and-tricks-modal {
    width: 540px;
    background: var(--P0);
    position: absolute;
    top: 249px;
    left: 50%;
    margin-left: -270px;
}

    .tips-and-tricks-modal .modal-inner {
        position: relative;
    }

    .tips-and-tricks-modal .modal-header {
        padding: 15px 120px 0;
        position: relative;
        margin-bottom: 40px;
    }

        .tips-and-tricks-modal .modal-header h3 {
            text-align: center;
            font-family: 'Roboto', sans-serif;
            font-weight: 100;
            color: var(--BG);
            font-size: 30px;
        }

        .tips-and-tricks-modal .modal-header:after {
            content: "";
            width: 70px;
            height: 5px;
            background: var(--BG);
            position: absolute;
            top: 0;
            left: 50%;
            margin-left: -35px;
        }

    .tips-and-tricks-modal .modal-content-wrapper {
        height: 300px;
        padding: 0 50px;
        margin-bottom: 30px;
        text-align: center;
    }

        .tips-and-tricks-modal .modal-content-wrapper h4 {
            text-transform: uppercase;
            font-family: 'Roboto', sans-serif;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 25px;
            color: var(--BG);
        }

        .tips-and-tricks-modal .modal-content-wrapper p {
            font-family: 'Roboto', sans-serif;
            color: var(--BG);
            font-size: 16px;
            font-weight: 400;
        }

    .tips-and-tricks-modal .modal-content {
        position: relative;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .tips-and-tricks-modal .close-modal {
        text-align: center;
        text-transform: uppercase;
        font-family: 'Roboto', sans-serif;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 25px;
        color: var(--BG);
        width: 100%;
        display: block;
    }

    .tips-and-tricks-modal:before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 130px 130px 0;
        border-color: transparent var(--P1) transparent transparent;
    }

    .tips-and-tricks-modal:after {
        content: "";
        width: 50px;
        height: 51px;
        position: absolute;
        top: 15px;
        right: 15px;
        background: url(/webapp/Themes/StandardRedesign/img/icons/lightbulb-icon.png) no-repeat center center;
        background-size: 50px;
    }

.widget.widget-tips-and-tricks .widget-inner {
    background: var(--P0);
    border: none;
    padding-bottom: 75px;
}

.widget.widget-tips-and-tricks .widget-header {
    background: transparent;
}

.widget.widget-tips-and-tricks .widget-buttons.two-buttons {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

    .widget.widget-tips-and-tricks .widget-buttons.two-buttons .btn-1 {
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

        .widget.widget-tips-and-tricks .widget-buttons.two-buttons .btn-1:hover {
            color: var(--P1);
        }

.widget.widget-tips-and-tricks .tips {
    padding: 0 30px;
    position: absolute;
    left: 0;
    bottom: 100px;
}

    .widget.widget-tips-and-tricks .tips h4 {
        font-family: 'Roboto', sans-serif;
        font-weight: 100;
        font-size: 30px;
        color: var(--P1);
        margin-bottom: 45px;
    }

    .widget.widget-tips-and-tricks .tips p {
        font-family: 'Roboto', sans-serif;
        font-weight: 400;
        color: var(--BG);
        font-size: 14px;
    }

.widget.widget-tips-and-tricks:before {
    content: "";
    position: absolute;
    top: 0;
    right: 10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 130px 130px 0;
    border-color: transparent var(--P1) transparent transparent;
    visibility: visible;
    z-index: 2;
}

.widget.widget-tips-and-tricks:after {
    content: "";
    width: 50px;
    height: 51px;
    position: absolute;
    top: 15px;
    right: 25px;
    background: url(/webapp/Themes/StandardRedesign/img/icons/lightbulb-icon.png) no-repeat center center;
    background-size: 50px;
    visibility: visible;
    z-index: 2;
}

.widget-buttons.two-buttons .btn-1 {
    color: var(--BG);
    float: left;
    width: 49%;
}

    .widget-buttons.two-buttons .btn-1:first-child {
        margin-right: 2%;
    }

.msg-widget-wrapper .msg-status {
    zoom: 1;
}

    .msg-widget-wrapper .msg-status:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .msg-widget-wrapper .msg-status .unread-msgs,
    .msg-widget-wrapper .msg-status .total-msgs {
        float: left;
        width: 50%;
        padding: 32px 0 15px 30px;
    }

        .msg-widget-wrapper .msg-status .unread-msgs p,
        .msg-widget-wrapper .msg-status .total-msgs p {
            font-family: roboto-regular;
            margin-bottom: 0;
            display: inline-block;
            /*  font-size: 14px;*/
            text-transform: uppercase;
        }

        .msg-widget-wrapper .msg-status .unread-msgs .msg-counter,
        .msg-widget-wrapper .msg-status .total-msgs .msg-counter {
            font-weight: 100;
            margin-right: 5px;
            font-size: 26px;
            line-height: 31px;
        }

    .msg-widget-wrapper .msg-status .unread-msgs {
        color: #eb0255;
        border-right: 1px solid #e8e8e8;
    }

    .msg-widget-wrapper .msg-status .total-msgs {
        color: var(--P1);
    }

.msg-widget-wrapper .msg-container {
    height: 212px;
}

    .msg-widget-wrapper .msg-container .msg {
        border-bottom: 1px solid #e8e8e8;
        padding: 8px 15px;
        position: relative;
        zoom: 1;
    }

        .msg-widget-wrapper .msg-container .msg:after {
            display: block;
            visibility: hidden;
            height: 0;
            clear: both;
            content: ".";
        }

        .msg-widget-wrapper .msg-container .msg p {
            margin-bottom: 0;
            font-family: 'Roboto', sans-serif;
            font-size: 14px;
        }

    .msg-widget-wrapper .msg-container .tag {
        width: 34px;
        height: 35px;
        float: left;
        margin-right: 15px;
        -webkit-border-radius: 100px;
        -moz-border-radius: 100px;
        -ms-border-radius: 100px;
        border-radius: 100px;
    }

    .msg-widget-wrapper .msg-container .msg-unread {
        background: #eb0255 url(/webapp/Themes/StandardRedesign/img/icons/icon-mail-3.png) no-repeat center center;
        background-size: 20px;
    }

    .msg-widget-wrapper .msg-container .msg-red {
        background: var(--P1) url(/webapp/Themes/StandardRedesign/img/icons/icon-opened-msg.png) no-repeat center center;
        background-size: 20px;
    }

    .msg-widget-wrapper .msg-container .msg-content {
        float: left;
        width: 64%;
        height: 36px;
        padding-right: 10px;
        overflow: hidden;
    }

    .msg-widget-wrapper .msg-container .sender {
        color: var(--K2);
    }

    .msg-widget-wrapper .msg-container .msg-date {
        color: var(--K2);
        float: right;
        margin-top: 10px;
        position: relative;
    }

    .msg-widget-wrapper .msg-container .msg.important .msg-date:after {
        content: "";
        width: 2px;
        height: 13px;
        display: block;
        background: url(/webapp/Themes/StandardRedesign/img/icons/icon-important.png) no-repeat center center;
        background-size: 2px;
        position: absolute;
        top: 3px;
        left: -15px;
    }

    .msg-widget-wrapper .msg-container .short-txt {
        color: var(--P0);
    }

body .introjs-tooltip {
    border-radius: 0;
    min-width: 300px;
}

body .introjs-helperNumberLayer {
    border: 0;
    background: #eb0255;
    font-size: 16px;
    color: var(--BG);
    text-shadow: none;
}

body .introjs-tooltiptext {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: var(--K1);
    font-weight: 400;
}

body .introjs-bullets ul li a.active {
    background: var(--P1);
}

body .introjs-button {
    width: 60px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    border: 0;
    border-radius: 0;
    text-shadow: none;
    padding: 10px 10px;
    font-family: 'Roboto', sans-serif;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

body .introjs-skipbutton {
    float: left;
    background: #d1d1d1;
    color: var(--K1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    body .introjs-skipbutton:hover {
        background: #6b6b6b;
        color: var(--BG);
    }

body .introjs-prevbutton,
body .introjs-nextbutton {
    background: var(--P1);
    color: var(--BG);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    body .introjs-prevbutton:hover,
    body .introjs-nextbutton:hover {
        background: #11759a;
        color: var(--BG);
    }

body .introjs-prevbutton {
    margin-right: 5px;
}

.tips-trigger {
    width: 20px;
    height: 20px;
    background: var(--BG);
    color: #666666;
    display: block;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    font-weight: 600;
    padding-top: 2px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    border-radius: 100px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .tips-trigger:hover {
        background: var(--P1);
        color: var(--BG);
    }

.relative {
    position: relative;
}

.half {
    position: relative;
    float: left;
    width: 50%;
}

.half-right {
    position: relative;
    float: right;
    width: 50%;
}

.custom-exchange {
    zoom: 1;
    display: flex;
    position: relative;
    padding-top: 70px;
}

    .custom-exchange:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .custom-exchange .border-left {
        border-left: 1px solid #e4e4e4;
    }

    .custom-exchange .half {
        margin-bottom: 60px;
    }

    .custom-exchange h1 {
        font-family: "Roboto-Bold";
        color: var(--K2);
        font-size: 32px;
        text-align: center;
        padding: 0px 15px 30px 15px;
    }

    .custom-exchange .button-center {
        position: absolute;
        bottom: -45px;
        left: calc(50% - 125px);
        display: block;
        width: 250px;
        margin: auto;
        margin-top: 30px;
    }

    .custom-exchange .currency-wrapper {
        width: 150px;
        margin: auto;
        padding-top: 0px;
        margin-bottom: 10px;
    }

        .custom-exchange .currency-wrapper img {
            top: 2px;
            left: 15px;
            width: 40px;
            height: 40px;
        }

        .custom-exchange .currency-wrapper p {
            font-size: 36px;
        }

    .custom-exchange p {
        text-align: center;
        font-size: 16px;
        font-family: "Roboto-Regular";
        color: var(--K2);
    }

    .custom-exchange .custom-currency-details {
        zoom: 1;
        box-sizing: border-box;
        margin-top: 50px;
    }

        .custom-exchange .custom-currency-details:after {
            display: block;
            visibility: hidden;
            height: 0;
            clear: both;
            content: ".";
        }

    .custom-exchange .currency-detail {
        font-family: "Roboto-Light";
        padding-top: 25px;
        position: relative;
        font-size: 36px;
        color: var(--P0);
    }

        .custom-exchange .currency-detail span {
            font-size: 16px;
            width: 100%;
            color: var(--K2);
            position: absolute;
            top: 5px;
            left: 0px;
        }

    .custom-exchange .custom-exchange-ad {
        font-size: 18px;
        padding: 45px 65px;
        line-height: 150%;
    }




.select_searchBox {
    margin-left: 2em !important;
    width: 60% !important;
}

/* ==================================================
    =Sticky footer
===================================================== */


/* ==================================================
    =Media Queries
===================================================== */

@media only screen and (max-height: 600px) {
    .login-main {
        min-height: 100vh;
    }

    body {
        position: relative;
    }

    .modal-container {
        position: absolute;
        height: 100%;
    }

    .popup-box {
        transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        -moz-transform: translate(-50%, 0);
        -o-transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        top: 60px;
    }
}

@media only screen and (max-width: 1382px) {
    .account-small-slider {
        padding-left: 40px;
        padding-right: 40px;
    }

    .accounts-widget .slider-button-prev {
        left: 5px;
        margin-left: 0;
    }

    .accounts-widget .slider-button-next {
        right: 5px;
        margin-right: 0;
    }
}

@media only screen and (max-width: 1300px) {
    .account-row .slider-button-prev {
        left: 10px;
        margin-left: 0px;
    }

    .account-row .slider-button-next {
        right: 10px;
        margin-right: 0px;
    }
}

@media only screen and (max-width: 1250px) {
    #page-header .main-nav li a {
        font-size: 12px;
    }

    #page-header .main-nav li i {
        display: none;
    }
}

@media only screen and (min-width: 1200px) and (max-height: 800px) {
    .login-content {
        bottom: 25px;
    }

    .login-main {
        padding-top: 160px;
    }



    .prelogin-product .product-list {
        height: calc(100vh - 310px);
        min-height: 290px;
    }

    .product-single .info-inner {
        height: calc(100vh - 390px);
        min-height: 250px;
    }
}

@media only screen and (min-width: 1200px) and (max-height: 660px) {
    .login-main {
        padding-top: 160px;
    }

    .login-content {
        position: relative;
    }

    .prelogin-full {
        top: 0;
        padding-top: 0px;
        position: relative;
    }



    .popup-box .prelogin-full {
        padding-bottom: 0;
    }

    .prelogin-full .inner {
        min-height: 385px;
    }

    .page-prelogin-atm .login-main {
        padding-top: 160px;
    }
}

.faq-icon-prelogin {
    margin-right: 10px;
}

/* ==================================================
    =High def devices
===================================================== */

/* ==================================================
    =1200px
===================================================== */
@media only screen and (max-width: 1200px) {
    /* ================================================== Widget grid */
    .col-ms-12 {
        width: 100%;
    }

    .col-ms-11 {
        width: 91.66666667%;
    }

    .col-ms-10 {
        width: 83.33333333%;
    }

    .col-ms-9 {
        width: 75%;
    }

    .col-ms-8 {
        width: 66.66666667%;
    }

    .col-ms-7 {
        width: 58.33333333%;
    }

    .col-ms-6 {
        width: 50%;
    }

    .col-ms-5 {
        /*     width: 41.66666667%;*/
    }

    .col-ms-4 {
        /*   width: 33.33333333%;*/
    }

    .col-ms-3 {
        /*     width: 25%;*/
    }

    .col-ms-2 {
        width: 16.66666667%;
    }

    .col-ms-1 {
        width: 8.33333333%;
    }

    .col-ms-hidden {
        /* display: none;*/
    }

    .custom-table .btn-retry span {
        display: none;
    }

    .custom-table .btn-retry i {
        width: 15px;
        background-size: 14px;
        margin-right: 0;
    }

    .col-ls-2 {
        width: 8.333333333%;
    }

    /* ================================================== Login */
    #login-header {
        top: 20px;
    }

        #login-header .main-nav {
            top: 0;
        }

        #login-header .main-nav {
            width: 700px;
        }


    .login-main {
        padding-top: 160px;
    }

    .login-content {
        position: relative;
        bottom: 0;
    }

        .login-content .col-left {
            padding-left: 20px;
            padding-right: 20px;
            width: 50%;
        }

    .login-box {
        width: 100%;
    }

    .login-content .col-right {
        width: 50%;
        padding-top: 0;
        padding-left: 20px;
    }

        .login-content .col-right h2 {
            font-size: 46px;
            line-height: 50px;
        }

    /* ================================================== Header */
    /* ================================================== Dashboard */
    #account-slider .swiper-button-prev,
    .account-slider .swiper-button-prev {
        margin-left: -470px;
    }

    #account-slider .swiper-button-next,
    .account-slider .swiper-button-next {
        margin-right: -470px;
    }

    .slick-slide .account-box .acc-img {
        width: 41px;
        height: 41px;
    }

    .slick-center .account-box .acc-nr {
        font-size: 19px !important;
        line-height: 14px;
        height: 16px;
    }

    .slick-center .account-box .acc-name {
        font-size: 19px;
        margin-bottom: 40px;
        height: 16px;
    }

    .slick-center .account-box-amount {
        font-size: 30px !important;
    }

    .slick-center .account-box .acc-balance-txt {
        font-size: 14px;
        text-transform: none;
        font-weight: normal;
        color: #FFFFFF;
    }

    .mailbox-widget .msg-widget-wrapper .msg-container .msg-content {
        float: right;
        width: 76%;
    }

    .mailbox-widget .templates-widget-wrapper .templates-container .msg-content {
        float: right;
        width: 76%;
    }

    /* ================================================== Transactions list */
    .account-small-slider {
        padding-left: 100px;
        padding-right: 100px;
    }

    .account-row .slider-button-prev {
        left: 3%;
        margin-left: 0;
    }

    .account-row .slider-button-next {
        right: 3%;
        margin-right: 0;
    }

    /* ================================================== Payment between accounts */
    .account-row .swiper-button-prev {
        margin-left: -470px;
    }

    .account-row .swiper-button-next {
        margin-right: -470px;
    }

    .content-white.left-padding {
        padding-left: 40px;
    }

        .content-white.left-padding h2,
        .content-white.left-padding h3 {
            width: 100%;
            position: relative;
            left: 0px;
        }

        .content-white.left-padding h2 {
            margin-bottom: 30px;
        }

        .content-white.left-padding h3 {
            margin-top: 20px;
            margin-bottom: 30px;
        }

    /* ================================================== Prelogin ATM Branch */
    .prelogin-full {
        top: 0;
        padding-top: 0px;
        padding-bottom: 30px;
        position: relative;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

        .prelogin-full.-prelogin-autoheight {
            -webkit-transform: translateY(0%);
            -moz-transform: translateY(0%);
            -ms-transform: translateY(0%);
            transform: translateY(0%);
        }

            .prelogin-full.-prelogin-autoheight .inner {
                max-height: none;
            }

        .prelogin-full .inner {
            min-height: 385px;
        }

    .page-prelogin-atm .login-main {
        padding-top: 160px;
    }

    #page-header-down {
        display: none;
    }

    #page-header .menu-btn {
        display: block;
        float: right;
        margin-top: 31px;
    }

    #page-header .logout-bar {
        display: none;
    }

    #page-header .main-nav {
        margin-right: 158px;
    }

    #search-ribbon {
        display: none;
    }

    /* ================================================== Payment */
    .account-row .title-1 {
        width: 100%;
        padding-left: 85px;
    }

    /* ================================================== Prelogin Product Catalogue */
    .product-box h3 {
        font-size: 26px;
        line-height: 40px;
    }

    .product-slider .product-inner {
        padding-left: 33%;
    }

    .popup-box .prelogin-full {
        padding-bottom: 0;
    }

    .popup-3 {
        width: 96%;
    }

    .mob-nav-hold {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .branches-list-scrolled {
        height: calc(100% - 450px);
    }
}

/* ==================================================
    =980px
===================================================== */
@media only screen and (max-width: 980px) {
    body {
        background: #354756;
    }

    #main {
        padding-top: 0px;
    }

    /* -------------------------------------------------------------------------- Login page */
    .menu-btn {
        display: block;
        cursor: pointer;
    }

        .menu-btn li {
            width: 21px;
            height: 2px;
            background: #fff;
            margin-bottom: 7px;
        }

        .menu-btn .second {
            position: relative;
        }

        .menu-btn.with-notify .second {
            width: 21px;
        }

            .menu-btn.with-notify .second:after {
                content: '';
                width: 8px;
                height: 8px;
                -webkit-border-radius: 100%;
                -moz-border-radius: 100%;
                -ms-border-radius: 100%;
                border-radius: 100%;
                position: absolute;
                right: -10px;
                top: -3px;
                background: #eb0255;
            }

    .mobile-menu {
        display: block;
        position: absolute;
        width: 260px;
        height: auto;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
    }

        .mobile-menu .main-nav {
            /* Main menu */
        }

            .mobile-menu .main-nav li {
                margin: 20px 15px;
            }

                .mobile-menu .main-nav li a {
                    display: inline-block;
                    width: 100%;
                    font-size: 16px;
                    line-height: 20px;
                    font-weight: 700;
                    color: #fff;
                    text-align: left;
                    text-transform: uppercase;
                    -webkit-transition: color 0.3s ease;
                    -moz-transition: color 0.3s ease;
                    -o-transition: color 0.3s ease;
                    transition: color 0.3s ease;
                    position: relative;
                }

                .mobile-menu .main-nav li i {
                    display: block;
                    float: left;
                    width: 20px;
                    height: 20px;
                    background-repeat: no-repeat;
                    background-size: 20px;
                    margin-right: 15px;
                }

                .mobile-menu .main-nav li a.active {
                    color: #148cb8;
                }

            .mobile-menu .main-nav .icon-login {
                background-position: center -31px;
            }

            .mobile-menu .main-nav .icon-contact {
                background-position: center -30px;
            }

            .mobile-menu .main-nav .icon-exchange {
                background-position: center -30px;
            }

            .mobile-menu .main-nav .icon-pin {
                background-position: center -30px;
            }

            .mobile-menu .main-nav .icon-catalogue {
                background-position: center -30px;
            }

            .mobile-menu .main-nav .icon-eye {
                background-position: center -32px;
            }

            .mobile-menu .main-nav .icon-question {
                background-position: center -30px;
            }

            .mobile-menu .main-nav a.active .icon-dashboard-3 {
                background-image: url(/webapp/Themes/StandardRedesign/img/icons-2x/icon-dashboard-2.png);
            }

            .mobile-menu .main-nav a.active .icon-safe-3 {
                background-image: url(/webapp/Themes/StandardRedesign/img/icons-2x/icon-safe-2.png);
            }

            .mobile-menu .main-nav a.active .icon-card-4 {
                background-image: url(/webapp/Themes/StandardRedesign/img/icons-2x/icon-card-2.png);
            }

            .mobile-menu .main-nav a.active .icon-money-3 {
                background-image: url(/webapp/Themes/StandardRedesign/img/icons-2x/icon-money-2.png);
            }

            .mobile-menu .main-nav a.active .icon-exchange-3 {
                background-image: url(/webapp/Themes/StandardRedesign/img/icons-2x/icon-exchange-2.png);
            }

            .mobile-menu .main-nav a.active .icon-contact-3 {
                background-image: url(/webapp/Themes/StandardRedesign/img/icons-2x/icon-contact-3.png);
            }

            .mobile-menu .main-nav .submenu {
                display: none;
                padding-left: 20px;
            }

                .mobile-menu .main-nav .submenu li {
                    margin: 10px 15px;
                }

                    .mobile-menu .main-nav .submenu li a {
                        font-size: 14px;
                    }

    #login-header {
        top: 0;
    }

        #login-header .main-nav {
            display: none;
        }

        #login-header .menu-btn {
            position: absolute;
            top: 15px;
            right: 20px;
        }

        #login-header .site-logo a {
            margin-left: 20px;
        }

    .accounts-widget {
        width: 100% !important;
    }

    .menu-open #wrapper {
        transform: scale(0.85) translate3d(-260px, 0, 0);
        -moz-transform: scale(0.85) translate3d(-260px, 0, 0);
        -ms-transform: scale(0.85) translate3d(-260px, 0, 0);
        -o-transform: scale(0.85) translate3d(-260px, 0, 0);
        -webkit-transform: scale(0.85) translate3d(-260px, 0, 0);
    }

    .fixed-height #wrapper {
        height: 100vh;
        overflow: hidden;
    }

    .prelogin-full.full-break .col-left,
    .prelogin-full.full-break .col-right,
    .prelogin-full.sign-up-steps .col-left,
    .prelogin-full.sign-up-steps .col-right {
        width: 100%;
        float: none;
    }

    .prelogin-full.full-break .col-right,
    .prelogin-full.sign-up-steps .col-right {
        position: static;
        padding-left: 20px;
    }

    .prelogin-full.full-break .inner,
    .prelogin-full.sign-up-steps .inner {
        height: auto;
    }

    .prelogin-full.sign-up-steps .scrollable-content {
        height: auto;
    }

    .login-steps {
        margin-top: -20px;
    }

    .prelogin-full.sign-up-steps .col-head {
        top: 5px;
    }

    .login-main {
        padding-top: 140px;
    }

    /* ================================================== Header */

    #page-header .main-nav {
        margin-right: 158px;
    }

    #page-header .main-nav,
    #page-header .logout-bar {
        display: none;
    }

    #page-header-down {
        display: none;
    }

    #search-ribbon {
        display: none;
    }

    #page-header .menu-btn {
        display: block;
        float: right;
        margin-top: 31px;
    }

        #page-header .menu-btn li {
            background: #fff;
        }

    .actions-wrap .action-box i {
        margin-bottom: 0px;
    }

    .mobile-menu .profile-bar {
        zoom: 1;
        float: left;
        padding-left: 6px;
        margin-bottom: 20px;
    }

        .mobile-menu .profile-bar:after {
            display: block;
            visibility: hidden;
            height: 0;
            clear: both;
            content: ".";
        }

        .mobile-menu .profile-bar .profile-option {
            width: 93%;
            padding-top: 10px;
        }

        .mobile-menu .profile-bar .profile-img {
            float: left;
            position: relative;
        }

        .mobile-menu .profile-bar .img-box {
            width: 40px;
            height: 40px;
            overflow: hidden;
            -webkit-border-radius: 100%;
            -moz-border-radius: 100%;
            -ms-border-radius: 100%;
            border-radius: 100%;
        }

            .mobile-menu .profile-bar .img-box img {
                width: 100%;
                height: auto;
            }

        .mobile-menu .profile-bar .profile-img span {
            display: block;
            width: 26px;
            height: 26px;
            font-family: 'open-sans', sans-serif;
            font-size: 12px;
            text-align: center;
            line-height: 20px;
            font-weight: 700;
            color: #fff;
            background: #eb0255;
            border: 3px solid #354756;
            -webkit-border-radius: 100%;
            -moz-border-radius: 100%;
            -ms-border-radius: 100%;
            border-radius: 100%;
            position: absolute;
            top: -4px;
            right: -12px;
        }

        .mobile-menu .profile-bar a {
            display: inline-block;
            width: 22px;
            height: 22px;
            float: left;
            background-repeat: no-repeat;
            background-position: center center;
            margin-top: 10px;
            margin-left: 20px;
        }

        .mobile-menu .profile-bar .icon-settings-3 {
            background-size: 20px;
        }

        .mobile-menu .profile-bar .icon-out-3 {
            background-size: 22px;
        }

        .mobile-menu .profile-bar .profile-icons {
            float: right;
            margin-right: 25px;
        }

        .mobile-menu .profile-bar .select-1 div.fancy-select div.trigger {
            color: #fff;
        }

            .mobile-menu .profile-bar .select-1 div.fancy-select div.trigger:after {
                border-color: #fff transparent transparent transparent;
            }

        .mobile-menu .profile-bar .select-1 div.fancy-select select:focus + div.trigger.open {
            color: #fff;
        }

        .mobile-menu .profile-bar .select-1 div.fancy-select ul.options {
            border: 1px solid #2F333A;
            background: #2F333A;
        }

            .mobile-menu .profile-bar .select-1 div.fancy-select ul.options li.selected,
            .mobile-menu .profile-bar .select-1 div.fancy-select ul.options li.selected:hover {
                background: #494f5a;
                color: #fff;
            }

            .mobile-menu .profile-bar .select-1 div.fancy-select ul.options li {
                color: #2F333A;
                color: #fff;
            }

                .mobile-menu .profile-bar .select-1 div.fancy-select ul.options li:hover {
                    background: #535A67;
                    color: #fff;
                }

    /* ================================================== Dashboard */
    .account-list .col-1 {
        width: 50%;
        padding-top: 9px;
    }

    .account-list .col-2 {
        width: 50%;
    }

    .account-list .col-1 h2 {
        font-size: 16px;
        line-height: 26px;
    }

    .account-list .col-1 h2,
    .account-list .col-1 p {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .account-list .col-2 .amount {
        font-size: 14px;
    }

    .account-list .col-2 .icon-wrap {
        margin-left: 10px;
    }

    .account-list .select-3 div.fancy-select div.trigger {
        padding-left: 5px;
        padding-right: 20px;
    }

        .account-list .select-3 div.fancy-select div.trigger:after {
            right: 0;
        }

    /* ================================================== Prelogin FAQ */
    .accordian-wrapper .distance {
        float: none;
        margin-top: 5px;
    }

    /* ================================================== Payments */
    .content-white.left-padding {
        padding-left: 20px;
    }

    .account-row {
        padding: 0;
    }

    .account-small-slider {
        padding: 35px 0 0;
    }

        .account-small-slider .slide {
            padding: 0;
        }

        .account-small-slider .account-box {
            opacity: 1;
            padding-top: 25px;
            -webkit-border-radius: 0;
            -moz-border-radius: 0;
            -ms-border-radius: 0;
            border-radius: 0;
            padding-bottom: 40px;
        }

            .account-small-slider .account-box .acc-name {
                font-size: 26px;
            }

            .account-small-slider .account-box .main-balance .balance {
                font-size: 24px;
            }

            .account-small-slider .account-box .acc-nr {
                margin-bottom: 10px;
            }

        .account-small-slider .slick-dots {
            display: block;
        }

    .single-slide .account-small-slider .slide {
        width: 100%;
    }

    .account-small-slider .slick-dots {
        display: block !important;
        text-align: center;
        position: absolute;
        bottom: 0;
        width: 100%;
    }

        .account-small-slider .slick-dots li {
            display: inline-block;
            margin: 0 2px;
        }

            .account-small-slider .slick-dots li button {
                width: 9px;
                height: 9px;
                background: transparent;
                border: 2px solid #fff;
                opacity: 1;
                padding: 0;
                text-indent: -9999px;
                overflow: hidden;
                -webkit-border-radius: 6px;
                -moz-border-radius: 6px;
                -ms-border-radius: 6px;
                border-radius: 6px;
            }

        .account-small-slider .slick-dots .slick-active button {
            background: #fff;
        }

    .account-row .slider-button-prev,
    .account-row .slider-button-next {
        display: none;
    }

    .account-row .account-single .account-box {
        padding-bottom: 40px;
    }

        .account-row .account-single .account-box .acc-name,
        .account-row .account-single .account-box .main-balance .balance {
            font-size: 26px;
            line-height: 30px;
        }

    .account-row .slider-tabs {
        position: relative;
        top: 0px;
    }

    .widget-slat .col-left,
    .widget-slat .col-right {
        float: none;
        width: 100%;
        margin-right: 0;
    }

    .widget-slat .col-left {
        margin-bottom: 30px;
    }

    .payment-widget h2 {
        width: 70%;
    }

    .payment-widget .steps {
        left: auto;
        right: 15px;
    }

    /* ================================================== Payment between accounts */
    .account-row .swiper-button-prev {
        margin-left: 0px;
        left: 10px;
    }

    .account-row .swiper-button-next {
        margin-right: 0px;
        right: 10px;
    }

    .account-row h3 {
        z-index: 1;
        top: 10px;
        text-align: left;
        padding-left: 16px;
    }

    .account-row .title-2 {
        padding-left: 20px;
    }

    .account-row .main-balance p {
        font-size: 26px;
        margin-top: 0;
    }

    #accountsPicker .list-options-side {
        display: none;
    }

    .content-white {
        padding: 25px 20px;
    }

    /* ================================================== Inbox */
    .widget-inbox .col-left {
        width: 100%;
    }

    .widget-inbox .col-right {
        width: 100%;
        margin-left: 0;
    }

    .message-options li {
        margin: 10px 0;
    }

    /* ================================================== Product Catalogue */
    .product-slider .product-inner {
        padding-left: 13%;
    }

    .product-wrapper .product-box {
        width: 49%;
        margin-right: 2%;
    }

    .product-wrapper .product-list .product-box:nth-child(3n + 3) {
        margin-right: 2%;
    }

    .product-wrapper .product-list .product-box:nth-child(even) {
        margin-right: 0;
    }

    .product-single .info-inner {
        height: auto;
        min-height: 0;
    }

    .popup-3 {
        width: 100%;
        height: 100%;
        overflow: auto;
        border-radius: 0;
    }

    /* ================================================== Selfcare my profile */
    .selfcare-widget .position-top {
        position: static;
        margin-bottom: 30px;
    }
}
/* ==================================================
    =Media Queries
===================================================== */
@media only screen and (max-width: 900px) {
    .prelogin-full .contact-data-wrapper .half {
        float: none;
        width: 100%;
    }

    .prelogin-full .contact-data-wrapper .map-wrapper {
        position: relative;
        margin-bottom: 20px;
    }
}

/* ==================================================
    widget
===================================================== */

/* ==================================================
    =720px
===================================================== */
@media only screen and (max-width: 720px) {
    /* ================================================== Widget grid */
    .col-ss-12 {
        width: 100%;
    }

    .col-ss-11 {
        width: 91.66666667%;
    }

    .col-ss-10 {
        width: 83.33333333%;
    }

    .col-ss-9 {
        width: 75%;
    }

    .col-ss-8 {
        width: 66.66666667%;
    }

    .col-ss-7 {
        width: 58.33333333%;
    }
    /*
    .col-ss-6 {
        width: 50%;
    }*/


    .col-ss-6-exchange {
        width: 50% !important;
    }

    .col-ss-5 {
        width: 41.66666667%;
    }

    .col-ss-4 {
        width: 33.33333333%;
    }

    .col-ss-3 {
        width: 25%;
    }

    .col-ss-2 {
        width: 16.66666667%;
    }

    .col-ss-1 {
        width: 8.33333333%;
    }

    .col-ss-hidden {
        display: none;
    }



    /* -------------------------------------------------------------------------- Login page */
    .login-main {
        padding-top: 100px;
    }

    .login-content {
        padding: 0 20px;
    }

        .login-content .col-left,
        .login-content .col-right {
            width: 100%;
            padding: 0;
        }

        .login-content .col-right {
            margin-bottom: 30px;
        }

            .login-content .col-right h2 {
                font-size: 26px;
                line-height: 30px;
            }

    /* -------------------------------------------------------------------------- Dashboard */
    .slider-tabs {
        top: 410px;
    }


    .widget-grid .widget-h-1 .widget-inner {
        height: auto;
    }

    .widget-grid .widget-map .widget-inner,
    .widget-grid .widget-map .wap-wrapper {
        height: 400px;
    }

    #profiles-holder {
        display: none;
    }

    .list-options-side {
        top: 70px !important;
        right: 24px !important;
    }

    #page-header .main-nav,
    #page-header .logout-bar {
        display: none;
    }

    #account-slider .account-box,
    .account-slider .account-box {
        width: 291px !important;
        height: 146px;
    }

        #account-slider .account-box.cards-account-box,
        .account-slider .account-box.cards-account-box {
            height: auto;
        }

    .slick-center .account-box .acc-img {
        width: 48px;
        height: 48px;
    }

    #accountsPicker .list-options-side {
        display: none;
    }

    .widget-grid {
        width: 85%;
        margin: 0 auto;
    }

    .widget-content {
        background: unset !important;
    }

    .mobile-apps-widget .widget-content {
        width: calc(100% - 48px);
        margin: 0 auto;
    }

    .mob-nav-hold {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

        .mob-nav-hold .mob-menu-logo {
            width: 122px;
        }

    #popup-content-side .s-p-24 {
        padding: 0;
    }

    #popup-content-side .review-box-hold {
        padding: 0;
    }

    #popup-content-side .content-inner-box {
        padding: 0;
    }

    /*.slick-dots {
        display: none;
    }*/
    /* ================================================== Prelogin ATM Branch */
    .page-prelogin-atm .login-main {
        padding-top: 90px;
    }

    .prelogin-full .inner {
        height: auto;
    }

    .prelogin-full h2 {
        font-size: 20px;
    }

    .prelogin-full .col-left {
        width: 100%;
        float: none;
    }

    .prelogin-full .col-right {
        position: relative;
        width: 100%;
        top: 0;
        left: 0;
        height: 300px;
    }

        .prelogin-full .col-right.prelogin-map {
            height: 300px;
        }

    /* ================================================== Payments */
    .account-row .account-single .account-box .account-main,
    .account-row .account-single .account-box .main-balance {
        width: 100%;
    }

        .account-row .account-single .account-box .main-balance p {
            text-align: left;
            padding-left: 80px;
        }

    /* ================================================== Prelogin Product Catalogue */
    .prelogin-full .col-right {
        height: auto;
    }

    .prelogin-full .product-list {
        height: auto;
    }

    .product-slider .product-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .product-slider .slider-button-prev,
    .product-slider .slider-button-next {
        display: none;
    }

    .product-slider .slick-dots {
        top: auto;
        bottom: 0;
    }

    .product-slider h3 {
        font-size: 26px;
    }

    .product-single .product-info li {
        width: 100%;
    }

        .product-single .product-info li:nth-child(odd) {
            margin-right: 0;
        }

    .account-small-slider .single-slide .small-slider .slide {
        width: 550px;
        margin-left: auto;
        margin-right: auto;
    }

    .account-small-slider .single-slide .slider-button-prev,
    .account-small-slider .single-slide .slider-button-next {
        display: none;
    }

    /* ================================================== Prelogin Sign up */
    .sign-up-data-check .half,
    .sign-up-data-check .half:nth-child(2) {
        width: 100%;
        padding: 0;
    }

    #map-canvas-signup {
        margin-top: 20px;
    }

    /* ================================================== Cards */
    .custom-table.card-limit .checkbox-wrap-2.fl-r {
        float: left !important;
    }

    /* ================================================== Calendar */
    .calendar .table-head {
        display: none;
    }

    .calendar .table-body {
        border-top: 1px solid #d0d0d0;
    }

    .calendar .td {
        width: 100%;
        height: auto;
        min-height: 40px;
    }

        .calendar .td a {
            padding: 10px;
        }

        .calendar .td p {
            position: static;
            margin-bottom: 0;
            float: left;
        }

            .calendar .td p span {
                display: inline-block;
                margin-left: 10px;
            }

        .calendar .td .event-wrapper:last-child {
            margin-bottom: 0;
        }

    .transaction-tracker-wrapper {
        position: static;
        bottom: 0;
        left: 0;
        float: right;
    }

    .time-lapse-trigger {
        width: 100%;
        margin: 20px auto 25px;
    }

    /* ================================================== Bill presentment */
    .custom-table .action-wrap-1 .btn-1,
    .custom-table .action-wrap-1 .btn-2 {
        display: inline-block;
        width: 100%;
        margin-right: 0%;
        margin-bottom: 10px;
        float: none;
    }

        .custom-table .action-wrap-1 .btn-1:last-child,
        .custom-table .action-wrap-1 .btn-2:last-child {
            margin-bottom: 0;
        }

    .table-corner-button {
        position: static;
        margin: 10px 0;
    }

    /* ================================================== Tips and tricks */


    .widget.widget-tips-and-tricks .tips {
        position: relative;
        bottom: 0;
    }

    .widget.widget-tips-and-tricks:before {
        border-width: 0 65px 65px 0;
    }

    .widget.widget-tips-and-tricks:after {
        content: "";
        width: 25px;
        height: 26px;
        position: absolute;
        top: 8px;
        right: 16px;
        background: url(/webapp/Themes/StandardRedesign/img/icons/lightbulb-icon.png) no-repeat center center;
        background-size: 25px;
    }

    /* ================================================== Accounts */

    .show-actions-wrapper {
        display: none;
    }

    .hide-actions-wrapper {
        display: block !important;
    }

    .account-widget-tabs {
        display: none;
    }

    .col-top-account {
        height: 200px;
    }

    .hide-actions-wrapper {
        padding-top: 70px;
    }

    .empty-result-wrapper {
        display: block !important;
    }

        .empty-result-wrapper p {
            text-align: center;
            margin-top: 16px;
        }
}

/* ==================================================
    =600px
===================================================== */
@media only screen and (max-width: 600px) {
    /* -------------------------------------------------------------------------- Login page */
    .mobile-menu {
        width: 240px;
    }

    .page-cover .desktop-img {
        display: none;
    }

    .page-cover .mobile-img {
        display: block;
    }

    #login-header .site-logo a {
        width: 150px;
        height: 40px;
    }

    #ExchangeRateLists_GetLatest_FormId_UpdateContainer {
        height: 410px;
    }

    .authorization-link-icon {
        display: block !important;
    }

    /* ================================================== Dashboard */
    #account-slider .account-box,
    .account-slider .account-box {
        width: 300px;
        padding: 15px;
    }

    #account-slider .transaction-txt,
    #account-slider .small-balance,
    .account-slider .transaction-txt,
    .account-slider .small-balance {
        padding-right: 75px;
    }

    .account-box .account-main {
        padding-top: 30px;
        padding-left: 0;
    }

    .account-box .acc-img {
        width: 40px;
        height: 40px;
    }

    .account-box .main-balance p {
        font-size: 26px;
    }

    .accounts-widget .slider-button-prev,
    .accounts-widget .slider-button-next {
        display: none;
    }

    #account-slider,
    .account-slider {
        margin-bottom: 0;
        margin-top: -50px;
    }

        #account-slider .slick-dots,
        .account-slider .slick-dots {
            display: block !important;
            text-align: center;
            margin-top: 20px;
        }

            #account-slider .slick-dots li,
            .account-slider .slick-dots li {
                display: inline-block;
                margin: 0 4px;
            }

                #account-slider .slick-dots li button,
                .account-slider .slick-dots li button {
                    width: 9px;
                    height: 9px;
                    background: transparent;
                    border: 2px solid #fff;
                    opacity: 1;
                    padding: 0;
                    text-indent: -9999px;
                    overflow: hidden;
                    -webkit-border-radius: 6px;
                    -moz-border-radius: 6px;
                    -ms-border-radius: 6px;
                    border-radius: 6px;
                }

            #account-slider .slick-dots .slick-active button,
            .account-slider .slick-dots .slick-active button {
                background: #fff;
            }

    .account-list .col-1 .drag {
        top: 9px;
    }

    .account-list .col-2 .icon-wrap {
        display: none;
    }

    .widget-grid-options .grid-title {
        margin-bottom: 10px;
    }

    .widget-grid-options .grid-option {
        clear: both;
        margin-bottom: 10px;
    }

    .slick-dots li {
        /*display: none !important;*/
    }

    .slick-center .account-box .acc-nr {
        font-size: 14px !important;
        /*   line-height: 14px;
        height: 16px;*/
    }

    .slick-center .account-box .acc-name {
        font-size: 12px;
    }

    .slick-center .account-box-amount {
        font-size: 26px !important;
    }

    .actions-wrap {
        zoom: 1;
        margin-top: 0px;
    }

        .actions-wrap .action-box a {
            display: block;
            font-size: 12px;
            font-style: normal;
            font-weight: normal;
            text-transform: none !important;
            color: #074861;
            text-transform: uppercase;
            text-align: center;
        }

    .flag-col {
        margin-left: 0px;
    }

    .mailbox-widget .msg-widget-wrapper .templates-container .msg-content {
        width: 70%;
    }

    #rearange-option {
        display: none;
    }


    /* .col-ls-2 {
        width: 11%;
    }*/

    /* ================================================== Transactions list */
    .account-row .slider-button-prev,
    .account-row .slider-button-next {
        display: none;
    }

    .account-row {
        padding-top: 0;
    }

        .account-row .account-box .acc-img {
            width: 40px;
            height: 40px;
        }

        .account-row .account-box .account-main {
            padding-top: 0;
        }

        .account-row .account-box .acc-name {
            font-size: 18px;
        }

        .account-row .account-box .main-balance .balance {
            font-size: 18px;
        }

    .slick-center .account-box .acc-balance-txt {
        font-size: 12px;
        text-transform: none;
        font-weight: normal;
        color: #FFFFFF;
    }

    #accountsPicker .list-options-side {
        display: none;
    }

    /* ================================================== Account */
    .custom-list-1 li {
        padding: 25px 0 5px 0;
    }

    .custom-list-1 .left-content,
    .custom-list-1 .right-content {
        width: 100%;
        text-align: left;
    }

    .widget-inbox .table-row .col .msg-title {
        padding-right: 0;
        font-size: 14px;
        line-height: 20px;
        white-space: pre-wrap;
        padding-top: 8px;
    }

    .widget-inbox .table-row .col .msg-date {
        width: 100%;
        position: static;
    }

        .widget-inbox .table-row .col .msg-date:after {
            display: none;
        }

    .widget-select-account .acc-name {
        font-size: 14px !important;
    }

    .widget-select-account .small, .widget-select-account .acc-select-small {
        font-size: 12px !important;
    }

    .widget-select-account .acc-img {
        left: -10px;
    }

    .widget-select-account .acc-info {
        padding-left: 50px;
    }

    /* ================================================== Payments */
    .account-row .account-single .account-box .acc-nr {
        margin-top: 0;
    }

    .account-row .account-single .account-box .acc-nr,
    .account-row .account-single .account-box .acc-name {
        text-align: left;
    }

    .account-row .account-single .account-box .account-main {
        padding-left: 50px;
        padding-top: 0;
        margin-bottom: 10px;
    }

    .account-row .account-single .account-box .main-balance p {
        padding-left: 50px;
    }

    .account-row .account-single .account-box .acc-name,
    .account-row .account-single .account-box .main-balance .balance {
        font-size: 22px;
        line-height: 26px;
    }

    .custom-form.uk-grid .group {
        width: 100%;
    }

    .plain-list .key {
        width: 100%;
    }

    .plain-list .value {
        width: 100%;
    }

    .account-row .title-1 {
        padding-left: 12px;
    }

    .account-row.row-title {
        padding-top: 10px;
    }

    .payment-widget h2 {
        width: 100%;
        margin-bottom: 20px;
    }

    .payment-widget .steps {
        position: static;
        margin-bottom: 30px;
    }

    .payment-list .btn-1 {
        width: 100%;
        min-width: 0;
    }

    .group-inner-authorization {
        margin-bottom: 10px !important;
    }

    .account-div .amount-currency-holder .amount {
        font-size: 14px !important;
        font-family: 'roboto-black';
        color: #fff;
        margin-right: 8px;
    }

    .slick-center .account-box .acc-name {
        height: 20px !important;
        display: block;
        font-size: 14px;
        margin-bottom: 0px;
    }

    .grid-options .widget-select-menu {
        width: 400%;
        position: absolute;
        top: -10px;
        left: -300%;
        background: #fff;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        -ms-border-radius: 2px;
        border-radius: 2px;
        -webkit-box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.1);
        box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.1);
        padding-top: 50px;
        padding-bottom: 10px;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    /* ================================================== Inbox */
    .side-modal-popup {
        width: 100%;
        padding: 25px 5px 25px 20px;
        border-radius: 0;
    }

        .side-modal-popup .bottom-actions {
            padding-right: 20px;
        }

        .side-modal-popup.active {
            left: 0;
            transform: translateX(0px);
            -moz-transform: translateX(0px);
            -ms-transform: translateX(0px);
            -o-transform: translateX(0px);
            -webkit-transform: translateX(0px);
        }

    /* ================================================== Cards */
    .plain-list .checkbox-wrap-2 .checkbox-2.styledCheckbox {
        float: left;
        margin-bottom: 10px;
        margin-top: 0;
    }

    /* ================================================== Popups */
    .popup-1 .popup-header h3,
    .popup-2 .popup-header h3 {
        font-size: 24px;
    }

    .popup-7 .dash:after {
        right: 50%;
        margin-right: -3px;
        top: 50px;
    }

    /* ================================================== Prelogin Product Catalogue */
    .login-main {
        padding-bottom: 90px;
    }

    .prelogin-full .prelogin-product .product-box {
        width: 100%;
    }

        .prelogin-full .prelogin-product .product-box:nth-child(odd) {
            margin-right: 0;
        }

    .product-wrapper .product-box {
        width: 100%;
        margin-right: 0%;
    }

    .product-wrapper .product-list .product-box:nth-child(3n + 3) {
        margin-right: 0%;
    }

    .product-single .product-actions .btn-1 {
        width: 100%;
        margin-bottom: 10px;
    }

        .product-single .product-actions .btn-1:first-child {
            margin-right: 0;
        }

    .prelogin-full .col-head {
        padding-left: 0;
        padding-right: 20px;
    }

    /* ================================================== prelogin steps */
    .statement-half,
    .statement-half:last-child {
        width: 100%;
        padding: 0;
        border: none;
    }

    /* ==================================================
    =Sticky footer
===================================================== */
    #wrapper {
        padding-bottom: 0;
    }

    #page-footer {
        position: relative;
    }

    /* ================================================== self care applications */
    .document-actions .description,
    .document-actions .btn-wrapper {
        width: 100%;
    }

    .document-actions .description {
        margin-bottom: 10px;
    }

    .document-actions .btn-wrapper .btn-1 {
        width: 100%;
        margin: 0 0 10px 0;
    }

    /* ================================================== Tips and tricks */
    .tips-and-tricks-modal {
        width: 95%;
        left: 0;
        margin: 0 auto;
        position: relative;
        top: 250px;
    }

        .tips-and-tricks-modal .modal-content-wrapper {
            height: auto;
            margin-bottom: 40px;
            padding: 0 25px;
        }

        .tips-and-tricks-modal .modal-content {
            top: 50%;
            -webkit-transform: translateY(0%);
            -moz-transform: translateY(0%);
            -ms-transform: translateY(0%);
            transform: translateY(0%);
        }

        .tips-and-tricks-modal .modal-header {
            padding: 15px 50px 0;
        }

        .tips-and-tricks-modal:before {
            border-width: 0 65px 65px 0;
        }

        .tips-and-tricks-modal:after {
            content: "";
            width: 25px;
            height: 26px;
            position: absolute;
            top: 8px;
            right: 6px;
            background: url(/webapp/Themes/StandardRedesign/img/icons/lightbulb-icon.png) no-repeat center center;
            background-size: 25px;
        }

    /* ==================================================
    =Popups
===================================================== */
    .popup-box {
        max-width: 540px;
        width: 96%;
        top: 50px;
        left: 2%;
        transform: translate(0%, 0%);
    }

    .modal-container {
        position: absolute;
        height: 100%;
    }

    body.popup-open {
        position: relative;
    }

    .popup-3 {
        height: auto;
        overflow: visible;
    }

    /* ==================================================
    widget
===================================================== */
    .widget-calendar .ui-datepicker {
        padding: 30px 0px 30px 0px;
    }

    .empty-result-image {
        width: 300px !important;
    }

    .empty-result-wrapper p {
        text-align: center;
    }
}

/* ==================================================
    =450px
===================================================== */
@media only screen and (max-width: 450px) {
    /* -------------------------------------------------------------------------- Login page */
    .login-footer {
        width: 280px;
        min-width: 280px;
    }

    .social li {
        margin-right: 25px;
    }

    /* -------------------------------------------------------------------------- Dashboards */
    #account-slider .account-box,
    .account-slider .account-box {
        width: 90vw;
    }

    .account-box.account-bg-1 {
        background: transparent;
        box-shadow: none;
        -webkit-box-shadow: none;
    }

    .account-list .col-1 {
        width: 100%;
    }

    .account-list .col-2 {
        width: 100%;
    }

        .account-list .col-2 .amount {
            font-size: 22px;
        }

    .flag-col {
        margin-left: 0px !important;
    }

    .widget-grid .widget {
        padding: 0;
    }

    .custom-table .tag-col {
        padding-left: 50px;
    }

    .custom-table .text-3 {
        font-size: 14px;
    }

        .custom-table .text-3 span {
            font-size: 14px;
        }

    .custom-table.table-2 .tag {
        top: 15px;
    }

    .widget-tabs li a {
        padding: 10px;
        min-width: 0;
    }

    .widget-transactions .table-btn.btn-retry {
        display: none;
    }

    .widget-advertising h2 {
        font-size: 32px;
        line-height: 30px;
    }

    #page-footer .lang-nav {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }

        #page-footer .lang-nav li {
            display: inline-block;
            float: none;
            margin: 0 20px;
        }

    #page-footer .social {
        width: 100%;
        text-align: center;
    }

        #page-footer .social li {
            display: inline-block;
            float: none;
            margin: 0 20px;
        }


    #page-footer .copy {
        width: 100%;
        position: absolute;
        bottom: 0px;
        left: 0;
        text-align: center;
    }

    .col-ms-hidden {
        display: none;
    }

    .col-ls-5 {
        width: 60%;
    }

    .col-ls-5-owned-devices {
        width: 50% !important;
    }

    .col-ls-2 {
        width: 20%;
    }

    /* ================================================== Payment between accounts */
    .account-row .account-box .account-main {
        padding-left: 0;
    }

    .account-row .account-box .select-2 {
        width: 66px;
        margin-left: 10px;
    }

        .account-row .account-box .select-2 div.fancy-select div.trigger {
            font-size: 12px;
            padding: 6px 22px 4px 8px;
        }

            .account-row .account-box .select-2 div.fancy-select div.trigger:after {
                top: 15px;
            }

    /* ================================================== Prelogin ATM Branch */
    .map-list li {
        padding: 10px 0;
    }

    .map-list .item-main {
        padding: 0px 30px 0px 36px;
    }

        .map-list .item-main i {
            width: 30px;
            height: 30px;
            background-size: 17px;
            margin-top: 0px;
            top: 0;
        }

    .map-list .name {
        font-size: 14px;
    }

    .map-list .cat-name {
        font-size: 12px;
    }

    .map-list .item-info li {
        padding: 5px 0px 5px 36px;
    }

    .map-list .item-info i {
        width: 30px;
        height: 15px;
        margin-top: 0;
        top: 4px;
        left: 3px;
        background-size: 14px;
    }

    .map-list .info-txt-1 {
        font-size: 12px;
    }

    .map-list .info-txt-2 {
        font-size: 14px;
        line-height: 18px;
    }

    /* ================================================== Prelogin FAQ */
    /*.accordian-title {
        padding-left: 60px;
        font-size: 13px;
    }

        .accordian-title .faq-help-icon {
            position: static;
            display: block;
            margin-bottom: 10px;
        }

        .accordian-title:after {
            top: 10px;
        }

    .accordian-wrapper .hidden {
        padding-left: 10px;
    }*/

    .accordian-wrapper .distance {
        float: none;
        margin-top: 5px;
    }

    .contact-data-wrapper .data p {
        font-size: 13px;
    }

        .contact-data-wrapper .data p span {
            font-size: 12px;
        }

    /* ================================================== Popups */
    .popup-box {
        width: 96%;
        left: 2%;
        top: 60px;
        transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
    }

        .popup-box h3 {
            padding: 20px;
        }

        .popup-box .popup-links li {
            padding: 20px 0;
        }

    .popup-1 .label-1 {
        margin-top: 0;
    }

    /* ================================================== Prelogin Product Catalogue */
    .product-info li span {
        display: block;
        width: 100%;
    }

    .popup-3 {
        width: 100%;
        top: 0;
        left: 0;
    }

    /* ================================================== self-care notifications */
    .notification-wraper .sub-notification {
        position: relative;
        margin-bottom: 20px;
    }

    /* ================================================== Tips and tricks */
    .widget.widget-tips-and-tricks:before {
        right: 0;
    }

    .widget.widget-tips-and-tricks:after {
        right: 6px;
    }
}

.swiper-container .balance.active,
.account-gridster .balance.active {
    display: block;
}

.slick-dots {
    list-style: none;
    padding-left: 0;
    text-align: center;
    margin-bottom: 0;
    /*position: absolute;*/
}

#LIVE20 {
    height: 0px
}

.slick-dots li {
    display: inline-block;
}

.process-close {
    float: right;
    font-size: 12px;
    margin-right: 20px;
    margin-top: -20px;
    font-weight: bold;
    /*  text-transform: uppercase;*/
    color: #2d4050;
    line-height: 48px;
    background: url(/webapp/Themes/StandardRedesign/img/icons/icon-close-2.png) 100% 18px no-repeat;
    background-size: 10px;
    padding-right: 16px;
}

.slick-dots button {
    width: 10px;
    height: 10px;
    border: none;
    text-indent: -9999px;
    overflow: hidden;
    padding: 0;
    margin: 0 3px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: background 0.3s ease;
    -moz-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
    transition: background 0.3s ease;
    border: 3px solid #FFF;
    background: #dedede;
}

.slick-dots .slick-active button {
    border: 3px solid #F28700;
    background: #F28700;
}

.swiper-container .balance,
.account-gridster .balance {
    display: none;
}

.plain-list.generic-review {
    margin-bottom: 0px !important;
}

.Location-01-WF {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/Location-01-WF.png);
}

.Chat-01-WF {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/Chat-01-WF.png);
}

.PDF-Metro {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/pdf.png);
}

.Excel-Metro {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/Excel.png);
}

.Phone-WF {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/Phone-WF.png);
}

.Time-WF {
    background-image: url(/webapp/Themes/StandardRedesign/css/img/icons/Time-WF.png);
}

.Mail-WF {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/Mail-WF.png);
}

.House-09 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/House-09.png);
}

.Facebook-Metro {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/Facebook-Metro.png);
}

.Linkedin-Metro {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/LinkedIn-Metro-3.png);
}

.Twitter-Bird {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/Twitter-Bird.png);
}

.Help-icon {
    background-image: url(/webapp/Themes/StandardRedesign/css/img/icons/Help-icon.png);
}

.web-button.image-button {
    display: inline-block;
    float: right;
    width: 39px;
    height: 39px;
    background-color: #148cb8;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    border-radius: 100%;
    -webkit-transition: background 0.3s ease;
    -moz-transition: background 0.3s ease;
    -ms-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
    transition: background 0.3s ease;
}

.main-content.popup-content {
    width: 100% !important;
    /* margin-top: -150px;*/
}

    .main-content.popup-content .widget {
        border: none !important;
    }

.main-content.content-account-details {
    min-height: 200px !important;
}

.main-content.content-card-details {
    min-height: 300px !important;
}

.widget-transaction-list .table-row {
    cursor: pointer;
}

.exchange-list .skr {
    padding-left: 10px;
}

    .exchange-list .skr .info-txt-1 {
        margin-left: 10px;
        font-family: 'Roboto', sans-serif;
        font-size: 14px;
        color: #919191;
        /*    text-transform: uppercase;*/
        margin-bottom: 0;
    }

/*-- autocomplete --*/
.ui-menu {
    border: 1px solid #ebebeb !important;
    -webkit-box-shadow: inset 0px -21px 25px -7px rgba(230, 230, 230, 0.75);
    -moz-box-shadow: inset 0px -21px 25px -7px rgba(230, 230, 230, 0.75);
    box-shadow: inset 0px -21px 25px -7px rgba(230, 230, 230, 0.75);
    /*-webkit-border-radius: 10px;
  moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;*/
    overflow: hidden;
}

.ui-autocomplete.ui-menu .ui-menu-item {
    background: transparent !important;
    border: none !important;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    color: #464637;
    font-weight: 500;
    padding: 7px 15px !important;
}

    .ui-autocomplete.ui-menu .ui-menu-item:hover {
        background: #EBF8FD !important;
        border: none !important;
        color: #10a7e0;
        padding: 7px 15px !important;
    }

.custom-combobox {
    position: relative;
    display: inline-block;
}

.custom-combobox-toggle {
    position: absolute;
    top: 0;
    bottom: 0;
    margin-left: -1px;
    padding: 0;
}

.custom-combobox-input {
    margin: 0;
    padding: 5px 10px;
}


.combobox-item {
    font-size: 18px !important;
    color: #fff !important;
    background: #239bc8 !important;
    -webkit-transition: background 0.3s ease !important;
    -moz-transition: background 0.3s ease !important;
    -ms-transition: background 0.3s ease !important;
    -o-transition: background 0.3s ease !important;
    transition: background 0.3s ease !important;
    border: none;
}

    .combobox-item:hover {
        background: #2baada !important;
    }

.combobox-item {
    color: #fff !important;
}

/* ==================================================
    =TABLES filter
===================================================== */


.overlay-dark {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

body.-overlay-active .overlay-dark {
    opacity: 1;
    visibility: visible;
}

.transaction-nav {
    position: fixed;
    max-width: 540px;
    height: 100vh;
    top: 0;
    right: 0;
    background: #fff;
    z-index: 100;
    overflow: auto;
    transform: translateX(100%);
    transition: all 0.4s ease;
    padding: 0 15px 0 35px;
}

    .transaction-nav.active {
        transform: translateX(0);
    }

    .transaction-nav .inner {
        padding-top: 25px;
        padding-bottom: 40px;
        padding-right: 10px;
    }

    .transaction-nav form {
        width: 100%;
        max-width: 100%;
    }

        .transaction-nav form .group {
            max-width: 100%;
        }

    .transaction-nav .btn-wrapper {
        padding-top: 30px;
    }

    .transaction-nav h3 {
        /*font-size: 24px;*/
        color: #ed1b3c;
    }

    .transaction-nav .close-filter {
        font-family: 'Roboto Condensed', sans-serif;
        /*    text-transform: uppercase;*/
        font-size: 14px;
        color: #555;
    }

        .transaction-nav .close-filter .icon {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: url(/webapp/Themes/StandardRedesign/img/icons/close-filter.png) 0 0 no-repeat;
            background-size: 8px 8px;
            overflow: hidden;
            text-indent: -500px;
            top: -1px;
            position: relative;
            margin-left: 2px;
        }

    .transaction-nav .inner-container {
        margin-top: 40px;
    }

    .transaction-nav .mCSB_scrollTools,
    .transaction-nav .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
        width: 7px;
    }

    .transaction-nav .mCSB_scrollTools {
        opacity: 1 !important;
    }

        .transaction-nav .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
        .transaction-nav .mCSB_scrollTools_onDrag .mCSB_dragger {
            background: #f57b00;
            -webkit-border-radius: 100px;
            -moz-border-radius: 100px;
            -ms-border-radius: 100px;
            border-radius: 100px;
            opacity: 1 !important;
        }

        .transaction-nav .mCSB_scrollTools .mCSB_draggerRail {
            background: #fff;
        }

    .transaction-nav .mCSB_inside > .mCSB_container {
        margin-right: 15px;
    }

    .transaction-nav .form-template {
        margin-top: 15px;
    }

    .transaction-nav .slat-title {
        color: #555555;
        font-size: 14px;
    }

body.-filter-open {
    overflow: hidden;
}

.account-small-slider .slide {
    display: none;
}

.account-small-slider.slick-initialized .slide {
    display: block !important;
}

#prelogin-product-details {
    /*-webkit-transform: translateY(-0px);
    -moz-transform: translateY(-0px);
    -ms-transform: translateY(-px);
    -o-transform: translateY(-0px);
    transform: translateY(-0px);*/
}

.prelogin-full.sign-up-steps {
    -webkit-transform: translateY(-0px);
    -moz-transform: translateY(-0px);
    -ms-transform: translateY(-px);
    -o-transform: translateY(-0px);
    transform: translateY(-0px);
}

.socialfooter {
    float: right;
}

    .socialfooter li {
        display: inline;
        list-style-type: none;
        margin-right: 36px;
        float: left;
    }

        .socialfooter li a {
            display: inline-block;
            height: 25px;
            text-indent: -9999px;
            overflow: hidden;
            background-repeat: no-repeat;
        }

    .socialfooter .icon-linkedin-2 {
        width: 15px;
        background-size: 15px;
    }

    .socialfooter .icon-facebook-2 {
        width: 7px;
        background-size: 7px;
    }

    .socialfooter .icon-twitter-2 {
        width: 17px;
        background-size: 17px;
        background-position: center 2px;
    }

.dd-options {
    overflow-y: scroll;
    max-height: 250px;
}


.contacts-slider {
    width: 650px;
    margin: 0 auto;
}

    .contacts-slider img {
        width: 200px;
        height: 200px;
    }

.contact-picker-wrapper img {
    height: 46px;
    width: 46px;
}
    /*.contact-picker-wrapper img.circle-img.selected {
    border: solid 6px rgb(32, 154, 199);
}*/

    .contact-picker-wrapper img.circle-img {
        -ms-border-radius: 50%;
        border-radius: 50%;
    }

.contact-picker-wrapper .contact-img {
    cursor: pointer;
}

.contact-picker-wrapper {
    margin-bottom: 20px;
}

.error-icon {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/error-icon-small.png);
    background-size: 18px;
}

.arrow-down-n {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/arrow-bottom-4.png);
    background-size: 18px;
}

.input-icon {
    display: inline-block;
    float: right;
    width: 39px;
    height: 39px;
    background-color: #148cb8;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    border-radius: 100%;
    -webkit-transition: background 0.3s ease;
    -moz-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
    transition: background 0.3s ease;
}

.custom-form .input-icon-wrap .input-icon:hover {
    background-color: #179ecf;
}

.custom-form .input-icon-wrap .input-icon.icon-book-1 {
    background-size: 18px;
}

.bottom-actions {
    position: fixed;
    width: 94%;
    bottom: 20px;
    padding: 25px 40px 0px 10px;
}

.no-margin {
    margin: 0;
}

.no-border {
    border: 0;
}

.group .plain-list {
    margin-bottom: 0px;
}

#map-view {
    min-height: 500px;
}



/*Self Care  - default accounts management */
.widget-select-account, .widget-select-group {
    padding: 0;
    border-radius: 5px;
    width: 94%;
    max-width: 1170px;
    margin: 0 auto;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-top: 10px;
}

    .widget-select-account .account-select, .widget-select-account .group-select, .widget-select-group .account-select, .widget-select-group .group-select {
        position: relative;
    }

        .widget-select-account .account-select .item, .widget-select-account .group-select .item, .widget-select-group .account-select .item, .widget-select-group .group-select .item {
            padding: 10px 20px 10px 0;
        }

    .widget-select-account .account-selected, .widget-select-account .group-selected, .widget-select-group .account-selected, .widget-select-group .group-selected {
        padding: 10px 20px;
    }

    .widget-select-account .acc-img, .widget-select-group .acc-img {
        left: 20px;
    }

    .widget-select-account .group-selected::before, .widget-select-account .account-selected::before, .widget-select-group .group-selected::before, .widget-select-group .account-selected::before {
        right: 10px;
    }

/*Choose widgets height fix*/
#sortable-container {
    height: 100%;
}

}

/* Custom scrollbar */
.mCustomScrollBox .mCSB_scrollTools {
}

.mCustomScrollBox .mCSB_horizontal.mCSB_inside > .mCSB_container {
    margin-bottom: 10px;
}

.mCustomScrollBox .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    height: 10px;
    background: #49505a;
    bottom: 1px;
}

.mCustomScrollBox .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    height: 10px;
    top: 1px;
    background: #ebeced;
}

.mCustomScrollBox .mCSB_scrollTools.mCSB_1_scrollbar.mCS-light.mCSB_scrollTools_horizontal {
    bottom: 1px;
}

.mCustomScrollBox .mCSB_inside > .mCSB_container {
    margin-right: 15px;
}

.mCustomScrollBox .mCSB_horizontal.mCSB_inside > .mCSB_container {
    margin-bottom: 10px;
}

.mCustomScrollBox .mCSB_scrollTools.mCSB_scrollTools_vertical .mCSB_draggerRail {
    width: 7px;
    background: transparent;
    bottom: 1px;
}

.mCustomScrollBox .mCSB_scrollTools.mCSB_scrollTools_vertical .mCSB_dragger .mCSB_dragger_bar {
    width: 7px;
    top: 0px;
    background: var(--P1);
}

.mCustomScrollBox .mCSB_scrollTools.mCSB_1_scrollbar.mCS-light.mCSB_scrollTools_horizontal {
    bottom: 1px;
}

.mCSB_inside > .mCSB_container {
    margin-right: 30px;
}

.widget-buttons .btn-1 {
    margin-bottom: 0;
}

#popup-content-side .configure-exchange-widget {
    height: 68px;
}



#page-header .site-logo a {
    width: 186px;
    height: 48px;
}


.popup-24 {
    display: block;
    background: #FFFFFF;
    width: 100% !important;
}



#page-header .main-nav li {
    margin-right: 16px;
}

.profile-bar {
    display: flex;
    align-items: center;
}

    .profile-bar a {
        background-position: left;
    }

.custom-exchange-widget p {
    font-family: "Roboto", sans-serif;
}

.custom-exchange-widget .currency-detail {
    font-family: "Roboto", sans-serif;
}

.title-1 span {
    letter-spacing: 0;
}


.unread {
    float: left;
    position: relative;
}

.msg-read {
    background: #209ac7 url(/webapp/Themes/StandardRedesign/img/icons/icon-opened-msg.png) no-repeat center center;
    background-size: 20px;
}

.msg-unread {
    background: #eb0255 url(/webapp/Themes/StandardRedesign/img/icons/icon-mail-3.png) no-repeat center center;
    background-size: 20px;
}

.list-options {
    position: absolute;
    right: 3px;
    top: 3px;
    zoom: 1;
    -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.4);
    overflow: hidden;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
}

    .list-options:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .list-options li {
        float: left;
        display: inline-block;
        width: 45px;
        height: 28px;
        background-color: #494f5a;
        text-indent: -999px;
        background-repeat: no-repeat;
        cursor: pointer;
    }

        .list-options li.active {
            background-color: #fff;
        }

    .list-options .option-slider {
        background-image: url(/webapp/Themes/StandardRedesign/img/icons/slider-1.png);
        background-position: center -23px;
    }

        .list-options .option-slider.active {
            background-position: center 7px;
        }

    .list-options .option-list {
        background-image: url(/webapp/Themes/StandardRedesign/img/icons/list-1.png);
        background-position: center -24px;
    }

        .list-options .option-list.active {
            background-position: center 7px;
        }

/*.account-list {
  width: 100%; }
  .account-list > li {
    opacity: 0.4;
    width: 100%;
    left: 0;
    margin-bottom: 10px; }
  .account-list .list-item.active {
    z-index: 10; }
  .account-list .list-item.dragging {
    z-index: 15; }
  .account-list .inner {
    display: block;
    zoom: 1;
    width: 100%;
    max-width: 1000px;
    background-color: #494f5a;
    background-position: left center;
    background-repeat: no-repeat;
    padding: 5px 0;
    margin: 0 auto;
    position: relative;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    -webkit-transition: background 0.24s ease;
    -moz-transition: background 0.24s ease;
    -ms-transition: background 0.24s ease;
    -o-transition: background 0.24s ease;
    transition: background 0.24s ease;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.5); }
    .account-list .inner:after {
      display: block;
      visibility: hidden;
      height: 0;
      clear: both;
      content: "."; }
  .account-list .col {
    float: left; }
  .account-list .col-1 {
    width: 55%;
    padding-left: 52px; }
  .account-list .drag {
    position: absolute;
    top: 11px;
    left: 20px;
    display: inline-block;
    cursor: pointer;
    padding: 15px 0; }
  .account-list .drag li {
    width: 16px;
    height: 1px;
    background: #fff;
    margin-bottom: 5px;
    -webkit-transition: background 0.24s ease;
    -moz-transition: background 0.24s ease;
    -ms-transition: background 0.24s ease;
    -o-transition: background 0.24s ease;
    transition: background 0.24s ease; }
  .account-list .col-1 h2 {
    font-size: 25px;
    color: #fff;
    font-weight: 300;
    line-height: 39px;
    margin-bottom: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    top: -4px;
    -webkit-transition: color 0.24s ease;
    -moz-transition: color 0.24s ease;
    -ms-transition: color 0.24s ease;
    -o-transition: color 0.24s ease;
    transition: color 0.24s ease; }
  .account-list .col-1 p {
    font-size: 12px;
    color: #c4c4c4;
    letter-spacing: 0.5px;
    line-height: 12px;
    text-transform: uppercase;
    margin-bottom: 0;
    position: relative;
    top: -2px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap; }
  .account-list .col-2 {
    width: 45%;
    text-align: right;
    margin-top: 4px;
    padding-right: 10px;
    zoom: 1; }
    .account-list .col-2:after {
      display: block;
      visibility: hidden;
      height: 0;
      clear: both;
      content: "."; }
  .account-list .col-2 .amount {
    float: right;
    font-size: 30px;
    font-weight: 500;
    line-height: 48px;
    color: #fff;
    margin-bottom: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    -webkit-transition: color 0.24s ease;
    -moz-transition: color 0.24s ease;
    -ms-transition: color 0.24s ease;
    -o-transition: color 0.24s ease;
    transition: color 0.24s ease; }
  .account-list .selected .inner {
      background: #148cb8 url(../../img/bg/acc-bg-1.png) center bottom no-repeat;
       opacity: 1;

  }
  .account-list .selected .drag li {
    background: #494f5a; }
  .account-list .selected .col-1 h2 {
    color: #494f5a; }
  .account-list .selected .col-2 .amount {
    color: #494f5a; }
  .account-list .selected .select-3 div.fancy-select div.trigger,
  .account-list .selected .select-3 div.fancy-select select:focus + div.trigger.open {
    color: #494f5a; }
  .account-list .selected .select-3 div.fancy-select div.trigger:after {
    border-color: #494f5a transparent transparent transparent; }
  .account-list .selected .col-2 .icon-wrap .icon-money-3 {
    background-image: url(../../img/icons/icon-money.png); }
  .account-list .col-2 .select-3 {
    float: right; }
  .account-list .col-2 .icon-wrap {
    height: 53px;
    float: right;
    border-left: 1px solid #a0a2a5; }
  .account-list .col-2 .icon-wrap i {
    display: inline-block;
    width: 26px;
    height: 53px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 26px;
    margin-left: 20px;
    margin-right: 15px; }*/

.twitter-button {
    width: 49px !important;
    height: 20px !important;
    margin-top: 4px;
}

.none-display {
    display: none !important;
}

.slider-1.ui-widget-content {
    height: 3px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    border: none;
    background: #dadada;
}

    .slider-1.ui-widget-content .ui-widget-header {
        background: #209ac7;
    }

    .slider-1.ui-widget-content .ui-slider-handle {
        width: 21px;
        height: 21px;
        -webkit-border-radius: 11px;
        -moz-border-radius: 11px;
        -ms-border-radius: 11px;
        border-radius: 11px;
        background: #209ac7;
        border: 3px solid #209ac7;
        cursor: pointer;
        top: -9px;
        margin-left: -10px;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
    }

        .slider-1.ui-widget-content .ui-slider-handle:hover {
            background: #209ac7;
        }

        .slider-1.ui-widget-content .ui-slider-handle:focus {
            outline: none;
        }

.slider-wrapper {
    margin-bottom: 20px;
    margin-top: 30px;
}

.slider-range {
    zoom: 1;
}

    .slider-range:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .slider-range span {
        font-size: 12px;
        color: #525252;
        font-weight: 700;
        /*   text-transform: uppercase;*/
    }

    .slider-range .min {
        float: left;
    }

    .slider-range .max {
        float: right;
    }


.slider-circle {
    /*top: -6px;*/
    margin-left: 400px;
    margin-top: -10px;
    border-radius: 50%;
    position: absolute;
    width: 15px;
    height: 15px;
    z-index: 1;
    background: green;
}



    .slider-circle.gray {
        background: linear-gradient(to bottom, #a9a9a9 0%, #e6e6e6 100%) !important;
    }

    .slider-circle.red {
        background: linear-gradient(to bottom, #209ac7 0%, #209ac7 100%);
    }

.bg-color-2 {
    background-color: #eb0255;
}

/*
 * Timepicker stylesheet
 * Highly inspired from datepicker
 * FG - Nov 2010 - Web3R 
 *
 * version 0.0.3 : Fixed some settings, more dynamic
 * version 0.0.4 : Removed width:100% on tables
 * version 0.1.1 : set width 0 on tables to fix an ie6 bug
 */

.ui-timepicker-inline {
    display: inline;
    background: white;
}

#ui-timepicker-div {
    padding: 0.2em;
}

.ui-timepicker-table {
    display: inline-table;
    width: 0;
    background: white;
}

    .ui-timepicker-table table {
        margin: 0.15em 0 0 0;
        border-collapse: collapse;
    }

.ui-timepicker-hours, .ui-timepicker-minutes {
    padding: 0.2em;
}

.ui-timepicker-table .ui-timepicker-title {
    line-height: 1.8em;
    text-align: center;
    color: #148cb8
}

.ui-timepicker-table td {
    padding: 0.1em;
    width: 2.2em;
}

.ui-timepicker-table th.periods {
    padding: 0.1em;
    width: 2.2em;
}

/* span for disabled cells */
.ui-timepicker-table td span {
    display: block;
    padding: 0.2em 0.3em 0.2em 0.5em;
    width: 1.2em;
    text-align: right;
    text-decoration: none;
}
/* anchors for clickable cells */
.ui-timepicker-table td a {
    display: block;
    padding: 0.2em 0.3em 0.2em 0.5em;
    width: 100%;
    cursor: pointer;
    text-align: right;
    text-decoration: none;
}


/* buttons and button pane styling */
.ui-timepicker .ui-timepicker-buttonpane {
    background-image: none;
    margin: .7em 0 0 0;
    padding: 0 .2em;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
}

    .ui-timepicker .ui-timepicker-buttonpane button {
        margin: .5em .2em .4em;
        cursor: pointer;
        padding: .2em .6em .3em .6em;
        width: auto;
        overflow: visible;
    }
/* The close button */
.ui-timepicker .ui-timepicker-close {
    float: right
}

/* the now button */
.ui-timepicker .ui-timepicker-now {
    float: left;
}

/* the deselect button */
.ui-timepicker .ui-timepicker-deselect {
    float: left;
}

.text-ovetflow {
    text-overflow: ellipsis;
    overflow-wrap: inherit;
    overflow: hidden;
    line-height: unset !important;
}

.account-selected-choices {
    background-color: #209ac7;
    border-radius: 10px;
}



.popup-inner .widget-tabs {
    margin-bottom: 30px;
    padding-top: 0px !important;
}

    .popup-inner .widget-tabs li.active,
    .popup-inner .widget-tabs li:hover {
        color: #148cb8 !important;
    }

    .popup-inner .widget-tabs li.active,
    .popup-inner .widget-tabs li a:hover {
        color: #148cb8 !important;
    }

        .popup-inner .widget-tabs li.active a,
        .popup-inner .widget-tabs li:hover a {
            color: #148cb8 !important;
        }

.full-width {
    width: 100%;
}

.details-transfer {
    background-color: #eb0255;
    border-radius: 5px;
}

    .details-transfer:hover {
        background-color: #fd3c81;
    }

.icon-calendar-1 {
    background: url(/webapp/Themes/StandardRedesign/img/icons/icon-calendar-1.png) 0 0 no-repeat;
    background-size: 20px 20px;
}

.icon-calendar-2 {
    background: url(/webapp/Themes/StandardRedesign/img/icons/icon-calendar-2.png) 0 0 no-repeat;
}

.icon-calendar-3 {
    background: url(/webapp/Themes/StandardRedesign/img/icons/icon-calendar-3.png) 0 0 no-repeat;
    background-size: 20px;
}



.dropdown-image {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url('/webapp/Themes/StandardRedesign/img/icons/arrow-down-white.png');
    background-repeat: no-repeat;
    background-size: 6.5px 6px;
    background-position: 96% 48%;
}

.dropdown-image-selfcare {
    background-position: 99% 48% !important;
}

#side-modal-payment-recivers-profiles .reciver-info {
    border-top: 1px solid #d6d6d6;
    border-bottom: 1px solid #d6d6d6;
    padding: 10px 5px;
    background-color: #fff;
    transition: all ease-in-out 0.6s;
}

    #side-modal-payment-recivers-profiles .reciver-info:hover {
        background-color: #f2f2f2;
    }

#side-modal-payment-recivers-profiles .hidden {
    display: none;
    transition: all ease-in-out 1s;
}

#side-modal-payment-recivers-profiles .reciver-info:hover .hidden {
    display: block;
}

.currency-wrapper-config {
    height: 80px;
    padding-top: 25px;
}

.selfcare-dropdown {
    float: right;
    /*width: 100%;
    margin-top: 0px;*/
    margin-bottom: 20px;
    width: 66%;
    margin-top: -80px;
}

}





.popup-header-h3 {
    font-size: 30px;
    color: #2d4050;
    text-align: center;
    font-weight: 300;
    position: relative;
    margin-bottom: 20px;
}

    .popup-header-h3:after {
        content: '';
        width: 70px;
        height: 5px;
        background: #209ac7;
        position: absolute;
        top: 0;
        left: 50%;
        margin-left: -35px;
    }

.error-message-text {
    color: #eb0255 !important;
    font-size: 13px;
    margin-bottom: 10px !important;
}

#popup-error-screen strong {
    color: #eb0255 !important;
}

.warning-new-pass {
    border: 2px solid #eb0255;
    color: #eb0255;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 10px 10px 10px;
    margin: 20px;
    line-height: 17px;
    text-align: center;
}

.hourglassmark {
    width: 82px;
    height: 62px;
    display: inline-block;
    background: url(/webapp/Themes/StandardRedesign/img/icons/hourglassmark.png) no-repeat center center;
    background-size: 82px;
}

.profile-bar-side {
    zoom: 1;
    margin-top: 16px;
    padding-left: 27px;
}

    .profile-bar-side:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .profile-bar-side .profile-option {
        float: left;
        width: 110px;
        padding-top: 10px;
    }

    .profile-bar-side .profile-img {
        float: left;
        position: relative;
        margin-left: 8px;
    }

    .profile-bar-side .img-box {
        width: 40px;
        height: 40px;
        overflow: hidden;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        -ms-border-radius: 100%;
        border-radius: 100%;
    }

        .profile-bar-side .img-box img {
            width: 100%;
            height: auto;
        }

    .profile-bar-side a {
        display: inline-block;
        width: 22px;
        height: 22px;
        float: left;
        background-repeat: no-repeat;
        background-position: center center;
        margin-top: 10px;
        margin-left: 30px;
    }


.profile-bar-side {
    margin: 16px 0px;
    padding: 0px 10px;
}

    .profile-bar-side a {
        background-position: 0px 2px;
        transition: all ease 0.3s;
    }

        .profile-bar-side a:hover {
            background-position: 0px -20px;
        }

.accounts-widget-side {
    background: linear-gradient(rgba(53, 71, 86, 0.8), rgba(53, 71, 86, 0.8)), url(/webapp/Themes/StandardRedesign/img/bg/bg-1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    padding-top: 12px;
    position: relative;
    -webkit-transition: height 0.5s ease;
    -moz-transition: height 0.5s ease;
    -o-transition: height 0.5s ease;
    transition: height 0.5s ease;
    margin-bottom: 25px;
}

    .accounts-widget-side .account-tab {
        position: absolute;
        top: 80px;
        left: 0;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }

.account-tab-side .active {
    opacity: 1;
    visibility: visible;
}

.account-tab-side .active {
    opacity: 1;
    visibility: visible;
}

#account-slider-side {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding-top: 5px;
    margin-bottom: 25px;
    position: relative;
}

.accounts-widget-side .slider-button-prev-side,
.accounts-widget-side .slider-button-next-side {
    position: absolute;
    top: 40px;
    width: 50px;
    height: 50px;
    top: 200px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    cursor: pointer;
    opacity: 0.35;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    z-index: 50;
}

.slider-tabs-side {
    zoom: 1;
    width: 100%;
    text-align: center;
    z-index: 10;
    margin-bottom: 0px;
    position: absolute;
    bottom: 0px;
}

.accounts-widget-side .tab-2-side {
    max-width: 1000px;
    width: 80%;
    padding-bottom: 24px;
    left: 50%;
    top: 100px;
    transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.account-list-side {
    width: 100%;
}

    .account-list-side > li {
        width: 100%;
        left: 0;
        margin-bottom: 10px;
        cursor: pointer;
    }

    .account-list-side .inner-side {
        display: block;
        zoom: 1;
        width: 100%;
        max-width: 1000px;
        background-color: #494f5a;
        background-position: left center;
        background-repeat: no-repeat;
        padding: 5px 0;
        margin: 0 auto;
        position: relative;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        border-radius: 8px;
        -webkit-transition: background 0.24s ease;
        -moz-transition: background 0.24s ease;
        -o-transition: background 0.24s ease;
        transition: background 0.24s ease;
        box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.5);
        -webkit-box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.5);
    }

    .account-list-side .col-1-side h2 {
        font-size: 25px;
        color: #fff;
        font-weight: 300;
        line-height: 39px;
        margin-bottom: 0;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        position: relative;
        top: -4px;
        -webkit-transition: color 0.24s ease;
        -moz-transition: color 0.24s ease;
        -o-transition: color 0.24s ease;
        transition: color 0.24s ease;
    }

    .account-list-side .col-1-side p {
        font-size: 12px;
        color: #2d4050;
        letter-spacing: 0.5px;
        line-height: 12px;
        /*   text-transform: uppercase;*/
        margin-bottom: 0;
        position: relative;
        top: -2px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        font-weight: bold;
    }

.account-list .selected .inner-side {
    opacity: 1;
}

.account-list .selected .drag li {
    background: #494f5a;
}

/*.account-list .selected .col-1 h2 {
    color: #494f5a;
}

.account-list .selected .col-2 .amount {
    color: #494f5a;
}*/

.account-list .selected .select-3 div.fancy-select div.trigger,
.account-list .selected .select-3 div.fancy-select select:focus + div.trigger.open {
    color: #494f5a;
}

    .account-list .selected .select-3 div.fancy-select div.trigger:after {
        border-color: #494f5a transparent transparent transparent;
    }

.account-list .selected .col-2 .icon-wrap .icon-money-3 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-money-1.png);
}

.account-list-side .col-2 .icon-wrap-side {
    float: right;
    height: 44px;
    border-left: 1px solid #fff;
}

    .account-list-side .col-2 .icon-wrap-side i {
        display: inline-block;
        width: 26px;
        height: 46px;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 26px;
        margin-left: 15px;
        margin-right: 3px;
    }


#asseco-toolbar {
    bottom: 45px !important;
}

.slick-list {
    padding-top: 20px;
}

.slick-dots {
    z-index: 1;
}

.pfm-transactions-list .dropdown-1 .widget-select-group .content, .widget-transactions-pfm .dropdown-1 .widget-select-group .content, .pfm-financial-calendar .dropdown-1 .widget-select-group .content, .pfm-financial-treemap .dropdown-1 .widget-select-group .content, .pfm-financial-donut .dropdown-1 .widget-select-group .content, .pfm-financial-bar .dropdown-1 .widget-select-group .content {
    padding: 0px 20px 0px 20px;
}

.group {
    zoom: 1;
}

.popup-24 .amount input, .popup-24 .total-amount input {
    padding: 7px;
    border: 1px solid #b6b6b6;
    text-align: right;
    color: #209ac7;
    margin-top: 13px;
    border-radius: 5px;
    width: 100%;
}

.amount .group {
    width: 100%;
}

.group .group-inner {
    margin-bottom: 30px;
}


.popup-24 .remove {
    padding: 4px 8px;
}

.dropdown-1 .widget-select-group .group-icon {
    top: 5px;
}

.pfm-transactions-list .dropdown-1 .widget-select-group .group-select, .widget-transactions-pfm .dropdown-1 .widget-select-group .group-select, .pfm-financial-calendar .dropdown-1 .widget-select-group .group-select, .pfm-financial-treemap .dropdown-1 .widget-select-group .group-select, .pfm-financial-donut .dropdown-1 .widget-select-group .group-select, .pfm-financial-bar .dropdown-1 .widget-select-group .group-select {
    height: 250px;
    position: absolute;
}

.details-wrap,
.pfm-financial-treemap .details-wrap,
.pfm-financial-donut .details-wrap,
.pfm-financial-bar .details-wrap {
    display: none;
}

.popup-narrow {
    width: 500px;
}

.popup-24 .category, .popup-24 .add-new {
    width: 53%;
}

.select-1 .dd-selected-text {
    margin-right: 30px;
    text-transform: capitalize;
}

#main {
    margin-left: 0;
}

.pfm-categorization-rules .widget-options .options-list {
    top: 28px;
    box-shadow: 0 5px 13px 5px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 5px 13px 5px rgba(0, 0, 0, 0.2);
}

#side-modal-edit-goal p, #side-modal-create-goal p {
    margin-bottom: 0;
}

.checkbox-wrap-2 .checkbox-label-3 {
    float: left;
    margin-left: 0;
}

.checkbox-2.styledCheckbox {
    float: right;
}

.mCustomScrollBox .mCSB_inside > .mCSB_container {
    margin-right: 0;
}

.main-content.popup-content.popup-content-margin {
    margin-top: 0;
}

.hiddenBenefB {
    display: none;
}

.product-box .product-content {
    top: 145px;
}

.product-box:hover .product-content {
    transform: translateY(-145px);
    -moz-transform: translateY(-145px);
    -ms-transform: translateY(-145px);
    -webkit-transform: translateY(-145px);
    -o-transform: translateY(-145px);
}

.product-box .product-content h3 {
    height: 85px;
}

.process-close-becomeaclient {
    right: -5px;
    top: -80px;
    z-index: 1;
    position: absolute;
}

.pfm-financial-donut .col-right {
    z-index: 0;
}

.pfm-financial-calendar #calendar, .pfm-financial-treemap #calendar, .pfm-financial-donut #calendar, .pfm-financial-bar #calendar {
    display: table;
}

.popup-3 {
    height: auto;
}

.side-modal-popup .content-inner {
    /*height: calc(100vh - 200px);*/
}

.showmenu {
    display: inline-block !important;
}

.tips-trigger-new {
    display: inline-block;
    width: 22px;
    height: 22px;
    float: left;
    background-repeat: no-repeat;
    background-position: center center;
    margin-top: 10px;
    margin-left: 12px;
    background-image: url('/webapp/Themes/StandardRedesign/img/icons/help-icon-white.png');
    background-size: 20px 20px;
}

}

.popup-box {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    width:
}

.popup-24 .popup-header {
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
}

#page-header .main-nav .submenu li a {
    /*  text-transform: uppercase;*/
}

form[id="form_PFMBudgetCreateFormID"] .select-1 .dd-options {
    position: relative;
}

.diferent {
    background-color: #eb0255 !important;
}

/* Custom tables ----------------------------------------------------------------------------------------------- */
.custom-table-payment .table-row {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .custom-table-payment .table-row:hover {
        background: #F0FBFF;
    }

    .custom-table-payment .table-row.table-head:hover {
        background: #fff;
    }

    .custom-table-payment .table-row.row-1 {
        border-bottom: 1px solid #ebeced;
        display: flex;
        align-items: center;
    }

.custom-table-payment .col-text {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 0;
}

.custom-table-payment .col {
    padding: 8px 15px;
    position: relative;
}

.custom-table-payment .action-wrap-1 {
    zoom: 1;
}

    .custom-table-payment .action-wrap-1:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .custom-table-payment .action-wrap-1 .btn-1,
    .custom-table-payment .action-wrap-1 .btn-2 {
        display: inline-block;
        width: 31.3%;
        margin-right: 3%;
        float: left;
    }

        .custom-table-payment .action-wrap-1 .btn-1:last-child,
        .custom-table-payment .action-wrap-1 .btn-2:last-child {
            margin-right: 0;
        }

.custom-table-payment .row-1 .col.no-border:before {
    display: none;
}

.disabled-upload {
    color: rgb(134, 134, 134) !important;
    border-color: rgb(134, 134, 134) !important;
}

    .disabled-upload:hover {
        color: rgb(134, 134, 134) !important;
        border-color: rgb(134, 134, 134) !important;
        background-color: var(--K4) !important;
        cursor: default !important;
    }

.custom-table-payment .row-1 .col:before {
    content: '';
    width: 1px;
    height: 18px;
    background: #cfd0d2;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -9px;
}

.custom-table-payment .pos-left {
    float: left;
}

.custom-table-payment .row-1 .col:first-child:before {
    display: none;
}

.custom-table-payment .col .center {
    text-align: center;
}

.custom-table-payment .text-cl-1 {
    color: #9c9c9c;
}

.custom-table-payment .text-cl-2 {
    color: #6c6c6c;
}

.custom-table-payment .text-cl-3 {
}

.custom-table-payment .text-cl-4 {
    color: #fc0001;
}

.custom-table-payment .text-cl-5 {
    color: #63c86c;
}

.custom-table-payment .text-lh-46 {
    line-height: 46px !important;
}

.custom-table-payment .text-1 {
    font-size: 14px;
    /*   text-transform: uppercase;*/
    line-height: 34px;
}

.custom-table-payment .text-2 {
    font-size: 14px;
    line-height: 17px;
    height: 34px;
    position: relative;
    white-space: normal;
    overflow: hidden;
}

    .custom-table-payment .text-2 span {
        display: inline-block;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
    }

.custom-table-payment .text-3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    color: #148cb8;
}

.custom-table-payment .text-1-header {
    font-size: 14px;
    /*  text-transform: uppercase;*/
    line-height: 34px;
    color: #148cb8;
    font-weight: 600;
}

.custom-table-payment .text-2-header {
    font-size: 14px;
    line-height: 17px;
    height: 34px;
    position: relative;
    white-space: normal;
    overflow: hidden;
    color: #148cb8;
    font-weight: 600;
    /*  text-transform: uppercase;*/
}

    .custom-table-payment .text-2-header span {
        display: inline-block;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        color: #148cb8;
        /*  text-transform: uppercase;*/
    }

.custom-table-payment .text-3-header {
    font-size: 16px;
    font-weight: 600;
    line-height: 34px;
    color: #148cb8;
    /*   text-transform: uppercase;*/
}


.custom-table-payment .text-4 {
    font-size: 16px;
    font-weight: 700;
    /*  text-transform: uppercase;*/
    line-height: 34px;
}

.custom-table-payment .text-5 {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 34px;
}

.custom-table-payment .text-6 {
    font-size: 14px;
    line-height: 34px;
}

.custom-table-payment .text-7 {
    font-size: 14px;
    line-height: 16px;
    height: 34px;
    position: relative;
    white-space: normal;
    overflow: hidden;
}

    .custom-table-payment .text-7 span {
        display: inline-block;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
    }

.custom-table-payment .tag-col {
    position: relative;
    /*! padding-left: 55px; */
}

.custom-table-payment .tag {
    width: 30px;
    height: 30px;
    float: left;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    /* text-transform: uppercase;*/
    line-height: 30px;
    text-align: center;
    position: absolute;
    top: 10px;
    left: 10px;
}

    .custom-table-payment .tag.tag-2 {
        font-family: 'Roboto', sans-serif;
        font-weight: 500;
    }

    .custom-table-payment .tag:after {
        content: '';
        width: 15px;
        height: 15px;
        position: absolute;
        top: -5px;
        left: -5px;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        -ms-border-radius: 100%;
        border-radius: 100%;
    }

    .custom-table-payment .tag.up:after {
        background: #f6f7f5 url(/webapp/Themes/StandardRedesign/css/img/icons/arrow-top-1.png) center center no-repeat;
    }

    .custom-table-payment .tag.down:after {
        background: #f6f7f5 url(/webapp/Themes/StandardRedesign/css/img/icons/arrow-bottom-2.png) center center no-repeat;
    }

    .custom-table-payment .tag.tagcolor-1 {
        background-color: #b0d583;
    }

    .custom-table-payment .tag.tagcolor-2 {
        background-color: #e17979;
    }

    .custom-table-payment .tag.tagcolor-3 {
        background-color: #9878ce;
    }

    .custom-table-payment .tag.tagcolor-4 {
        background-color: #54c3f2;
    }

    .custom-table-payment .tag.tagcolor-5 {
        background-color: #fdb750;
    }

    .custom-table-payment .tag.tagcolor-6 {
        background-color: #eb0557;
    }

    .custom-table-payment .tag.tagcolor-7 {
        background-color: #239bc8;
    }

.custom-table-payment .flag-col {
    position: relative;
    padding-left: 65px;
}

.custom-table-payment .flag-box {
    display: inline-block;
    width: 38px;
    height: 38px;
    float: left;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    border-radius: 100%;
    overflow: hidden;
    position: absolute;
    top: 5px;
    left: 10px;
}

    .custom-table-payment .flag-box img {
        width: 100%;
        height: auto;
    }

.custom-table-payment .table-btn {
    background: #41454e;
    padding: 0 10px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    -webkit-transition: background 0.3s ease;
    -moz-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
    transition: background 0.3s ease;
}

    .custom-table-payment .table-btn:hover {
        background: #515661;
    }

.custom-table-payment .col-btn-right {
    zoom: 1;
}

    .custom-table-payment .col-btn-right:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .custom-table-payment .col-btn-right p > span {
        float: left;
    }

    .custom-table-payment .col-btn-right .btn-retry {
        display: inline-block;
        float: right;
        color: #fff;
        font-size: 14px;
    }

.custom-table-payment .btn-retry i {
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-right: 5px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 16px;
    position: relative;
    top: 5px;
}

.custom-table-payment .order {
    cursor: pointer;
}

.custom-table-payment .order-icon {
    display: inline-block;
    width: 8px;
    height: 13px;
    background-image: url(/webapp/Themes/StandardRedesign/css/img/icons/arrows-sprite-1.png);
    background-repeat: no-repeat;
    background-position: 0 -13px;
    background-size: 8px;
    margin-left: 10px;
    position: relative;
    top: 2px;
}

.custom-table-payment .order.down .order-icon {
    background-position: 0 -29px;
}

.custom-table-payment .order.up .order-icon {
    background-position: 0 5px;
}

.custom-table-payment.table-2 .col {
    padding-top: 8px;
    padding-bottom: 8px;
}

.custom-table-payment.table-2 .tag {
    top: 14px;
}

.custom-table-payment.border-top {
    border-top: 1px solid #ebeced;
}

    .custom-table-payment.border-top .table-head {
        padding-top: 0;
    }

.custom-table-payment .table-head.no-padding {
    padding-top: 0;
}

.custom-table-payment .col.no-border:after {
    display: none;
}

.custom-table-payment .col.high-padding {
    padding: 13px 15px 18px;
}

.custom-table-payment.m-bottom {
    margin-bottom: 20px;
}


.col-header {
    padding: 0 15px;
    position: relative;
}

    .col-header::before {
        content: '';
        width: 1px;
        height: 18px;
        background: #cfd0d2;
        position: absolute;
        left: 0;
        top: 50%;
        margin-top: -9px;
    }

    .col-header:first-child:before {
        display: none;
    }
/* .col-header::after {
        content: '';
        display: block;
        width: 36px;
        height: 5px;
        background: #148cb8;
        position: absolute;
        bottom: 0px;
        left: 15px;
        -webkit-transition: height 0.3s ease;
        -moz-transition: height 0.3s ease;
        -o-transition: height 0.3s ease;
        transition: height 0.3s ease;
    }
    .col-header:last-child::after {
        content: '';
        display: block;
        width: 36px;
        height: 5px;
        background: #148cb8;
        position: absolute;
        bottom: 0px;
        right: 15px;
        left: unset;
        -webkit-transition: height 0.3s ease;
        -moz-transition: height 0.3s ease;
        -o-transition: height 0.3s ease;
        transition: height 0.3s ease;
    } */


.table-row.row-1.grid.custom-table-payment {
    border-bottom: #148cb8 1px solid;
    background-color: #f3f3f3;
    color: #FFF !important;
}

@media only screen and (max-width: 1270px) {
    #page-header .main-nav li a {
        font-size: 12px;
    }

    #page-header .main-nav li i {
        display: none;
    }
}

@media only screen and (max-width: 1200px) {
    .custom-table .row-1 .col:nth-child(4):before {
        display: none;
    }

    #main {
        padding-top: 75px;
    }


    .profile-bar-side a {
        display: none;
    }

    .profile-bar-side-no-display {
        display: none;
    }

    #page-header-left.mobile .inbox-count {
        padding: 7px 0px 0px 23px;
    }

        #page-header-left.mobile .inbox-count span {
            left: 35px;
        }
}

#page-header .container-menu {
    display: flex;
    align-items: center;
    height: 100%;
}

@media only screen and (max-width: 980px) {
    #main {
        padding-top: 50px;
    }

    .popup-3 {
        height: 100%;
    }

    .slider-circle {
        top: 25px;
        border-radius: 50%;
        position: absolute;
        width: 15px;
        height: 15px;
        z-index: 1;
        background: green;
    }

    .unread-notifications {
        top: 19px;
        right: 117px;
    }

    .menu-btn.with-notify:hover .second:after {
        background-color: #148cb8;
    }

    /*.popup-3 {
        height: 552px;
        max-width: 600px;
        width: 100%;
    }*/

    .main-content.popup-content {
        margin-top: 0;
    }

    .process-close-becomeaclient {
        right: 0;
        top: -10px;
        z-index: 1;
        position: relative;
    }

    .payment-widget .steps {
        position: static;
        margin-bottom: 30px;
    }

    .account-small-slider {
        padding: 25px 0 20px 0;
    }

        .account-small-slider .slick-dots {
            bottom: 25px;
        }

    .account-row h3 {
        z-index: 1;
        top: 5px;
    }

    .menu-btn li {
        width: 30px;
    }

    .main-nav .open-mobile .submenu {
        display: block !important;
    }
}


@media only screen and (max-width: 720px) {
    #main-side {
        margin: 50px 0 0 0;
    }

    .profile-img-group {
        width: 120px;
        height: 120px;
        position: relative;
        margin: 100px auto 40px auto;
    }

    .popup-24 {
        /*height: 100%;*/
    }

    .popup-box.popup-wide {
        height: auto;
        max-width: 720px;
        width: 96% !important;
        top: 0;
    }



    .popup-24 .category, .popup-24 .add-new {
        width: 100%;
    }

    /*.popup-1 .popup-header, .popup-2 .popup-header {
            height: auto;
        }*/

    .pfm-categorization-rules .widget-options .options-list {
        top: -10px;
    }

    .steps li {
        margin-top: 10px;
    }

    .popup-narrow {
        width: 100%;
    }

    .popup-box {
        max-width: 900px;
        width: 100%;
        top: 0;
        left: 0;
        transform: translate(0%, 0%);
    }

    .col-header:nth-child(2):before {
        display: none;
    }

    .col:nth-child(2):before {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .selfcare-dropdown {
        float: right;
        width: 100%;
        margin-top: 0px;
        margin-bottom: 20px;
    }

    #account-slider .slick-dots {
        display: block !important;
        text-align: center;
        margin-top: 20px;
        text-align: center;
        position: relative !important;
        bottom: 0;
        width: 100%;
    }

    .popup-box {
        max-width: 900px;
        width: 100%;
        top: 0;
        left: 0;
        transform: translate(0%, 0%);
    }
}

@media screen and (max-width: 500px) {
    .balance-amount {
        font-size: 30px !important;
    }

    .account-box .main-balance p span {
        font-size: 20px !important;
    }

    .selfcare-dropdown {
        float: right;
        width: 100%;
        margin-top: 0px;
        margin-bottom: 20px;
    }
    /*.account-box .main-balance p {
    font-size: 30px;
    }
    .account-box .main-balance p span {
        font-size: 20px;
    }*/
}

@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
    #pfm-click-mobile-link {
        display: block !important;
    }
}

@media only screen and (max-width: 600px) {
    .widget-inner-exchange {
        height: 380px !important;
    }
}

.news .search-messages-1 {
    border: 1px solid #209ac7 !important;
    margin-left: auto;
}

.search-messages-icon-1 {
    margin-top: -29px !important;
}

.search-templates-1 {
    margin-left: auto;
}

.search-templates-icon-1 {
    margin-top: -29px !important;
}

.uploadedDocuments {
    display: flex;
}

.uploadedDocuments-item {
    display: flex;
    align-items: center;
}

    .uploadedDocuments-item .icon-holder {
        width: 10% !important;
        margin: 15px !important;
    }

        .uploadedDocuments-item .icon-holder i {
            position: relative !important;
            display: inline-block !important;
        }

        .uploadedDocuments-item .icon-holder.remove-attachment {
            margin-left: auto !important;
            cursor: pointer;
        }

.input-data-icon-holder {
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sorting-options {
    display: flex;
    flex-direction: row;
    margin-right: 5px;
    margin-left: 5px;
}

@media only screen and (max-width: 500px) {
    .sorting-options {
        display: flex;
        flex-direction: column;
    }

        .sorting-options .select-2 {
            margin: 5px;
        }
}

.sorting-options .dd-select {
    margin-right: 5px;
    margin-left: 5px;
    height: 32px !important;
    border: 1px solid var(--P0) !important;
    color: #000 !important;
    font-family: 'roboto-regilar';
    font-size: 16px !important;
    line-height: 19px !important;
    background-color: #fff !important;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    width: 180px !important;
}

.sorting-options .dd-selected {
    padding: 6px !important;
    border: 0px !important;
}

.sorting-options .dd-selected-text {
    font-family: 'roboto-regilar';
    color: #000;
    background-color: #fff;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    font-weight: 400 !important;
}

.sorting-options .dd-options {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    color: var(--P0);
}

    .sorting-options .dd-options:hover {
        background-color: var(--P0);
        color: #fff;
        box-shadow: 0 0 10px 100px var(--P0) inset;
    }

.sorting-options .select-2 .dd-pointer {
    margin-top: -1px !important;
}

.sorting-options .select-2 .dd-pointer-down {
    border: solid 5px transparent;
    border-top: solid 5px var(--P0) !important;
}

.sorting-options .select-2 .dd-pointer-up {
    border: solid 5px transparent !important;
    border-bottom: solid 5px var(--P0) !important;
    margin-top: -8px;
}

.widget-content-search-hold.sort-hold {
    justify-content: flex-end;
}

.sorting-span {
    line-height: 16px;
    font-size: 16px;
    text-align: center;
    vertical-align: middle;
    font-family: 'roboto-regular';
    font-weight: 400;
    color: #868686;
    cursor: default;
}

.sorting-options .select-2 {
    margin-left: 5px;
    background: #fff;
}

.reload-captcha {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: #209ac7;
    font-style: italic;
    cursor: pointer;
}

.margin-left-5{
    margin-left: 5px;
}

.rendered-switch{
    width: 100%;
}

.page-content-notification-fix{
    margin-top: 0px !important;
}

.triangle-top-white {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    margin-left: 40%;
    border-color: transparent transparent #fff transparent;
    filter: drop-shadow(0 -1px 0px rgba(0, 0, 0, 0.5));
}

.checkbox-warning {
    padding: 10px 20px;
    box-shadow: 3px 1px 10px 1px;
    text-align: -webkit-center;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 15px;
}

    .checkbox-warning p {
        margin-bottom: 0px;
    }

.warning-new-pass.info {
    color: var(--OK) !important;
    border-color: var(--OK) !important;
}

:root {
    /* B&W colors */
    --K1: #000000;
    --K2: #868686;
    --K3: #DEDEDE;
    --K4: #F7F7F7;
    --BG: #FFFFFF;
    /* Main colors */
    --P0: #1f3566;
    --P1: #1f3566;
    --P2: #f7fafa;
    --P3: #4f68c1;
    --S1: #F28700;
    --S2: #885BC1;
    --OK: #5BC199;
    --ERROR: #E2001A;
    --bgS1: #FFF4E5;
    --bgS2: #F2ECF8;
    --bgOK: #ECF8F3;
    --bgOK2: #61942E;
    --bgERROR: #FFE5E8;
    /* Extra colors */
    --SU: #EBF8FD;
    --onSU: #1f3566;
    --onP1: #FFFFFF;
    --onERROR: #FFFFFF;
    /* Data visualisation colors */
    --G1: #10A7E0;
    --G2: #F28700;
    --G3: #E2001A;
    --G4: #00AA4F;
    --lightP1: #8f96b1;
    /* Card background colors */
    --cardCredit: #2F4396;
    --cardDebit: #526FE3;
    --cardTenant: #B6C6F7;
}


/*Account picker*/

.semi-s4-12 {
    font-family: roboto-regular;
    font-style: normal;
    font-weight: 600 !important;
    font-size: 12px !important;
    line-height: 14px !important;
    text-align: right !important;
}

.regular-r3-12-label {
    font-family: roboto-regular;
    font-style: normal;
    font-weight: normal !important;
    font-size: 12px !important;
    line-height: 14px !important;
    text-align: right !important;
}

.regular-r3-12-label-left {
    font-family: roboto-regular;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 14px !important;
    text-align: left !important;
}

.regular-r3-12-checkbox {
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 14px !important;
    text-align: left !important;
}

.regular-r3-12-account {
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 14px !important;
    text-align: right !important;
    text-align: left !important;
    top: 4px !important;
    color: var(--BG) !important;
}

.light-background-bg {
    color: var(--BG) !important;
}

.flag-col {
    margin-left: 24px;
}

.light-primary-p1 {
    color: var(--P1) !important;
}

/*Status chart widget*/

.multi-graph {
    width: 300px;
    height: 150px;
    position: relative;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
}

    .multi-graph:before {
        content: '';
        width: 300px;
        height: 150px;
        border: 70px solid rgba(0, 0, 0, 0.15);
        border-bottom: none;
        position: absolute;
        box-sizing: border-box;
        transform-origin: 50% 0%;
        border-radius: 300px 300px 0 0;
        left: 0;
        top: 0;
    }

    .multi-graph .graph {
        width: 300px;
        height: 150px;
        border: 70px solid var(--fill);
        border-top: none;
        position: absolute;
        transform-origin: 50% 0% 0;
        border-radius: 0 0 300px 300px;
        left: 0;
        top: 100%;
        z-index: 5;
        animation: 1s fillGraphAnimation ease-in;
        transform: rotate(calc(1deg * ( var(--percentage) * 1.8 )));
        box-sizing: border-box;
        cursor: pointer;
    }

        /*.multi-graph .graph:after {
            content: attr(data-name) ': ' attr(data-formatted-value);
            counter-reset: varible var(--value);
            background: var(--fill);
            box-sizing: border-box;
            border-radius: 2px;
            color: #fff;
            font-weight: 200;
            font-size: 12px;
            height: 40px;*/
        /*  width: 250px;*/
        /*padding: 6px 7px;
            top: 0px;
            position: absolute;
            left: 0;
            transform: rotate(calc(-1deg * var(--percentage) * 1.8)) translate(-30px, 0px);
            transition: 0.2s ease-in;
            transform-origin: 0 50% 0;
            opacity: 0;
        }*/

        .multi-graph .graph:hover {
            opacity: 0.8;
        }

/*.multi-graph .graph:hover:after {
                opacity: 1;
                left: 30px;
            }*/

.graph-item-holder .graph-item-description-holder {
    position: absolute;
    display: none;
    flex-direction: column;
    align-items: center;
    bottom: 0;
    font-family: 'roboto-medium';
    color: var(--P1);
    font-size: 14px;
    left: 0;
    right: 0;
}

.graph-item-holder:hover .graph-item-description-holder {
    display: flex !important;
}

.graph-holder {
    margin-top: 35px
}

.graph-legend-holder {
    margin-top: 35px
}

@keyframes fillAnimation {
    0% {
        transform: rotate(-45deg);
    }

    50% {
        transform: rotate(135deg);
    }
}

@keyframes fillGraphAnimation {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }
}

/*Updated old*/


.accounts-widget .slider-button-prev {
    left: 58%;
    z-index: 1;
}

.accounts-widget .slider-button-next {
    right: 58%;
    z-index: 1;
}

.accounts-widget .slider-button-prev, .accounts-widget .slider-button-next {
    border-radius: 100%;
    opacity: 1;
}

.slick-slide .ui-selectmenu-text {
    height: 28px;
}

.slick-center .account-box .account-main {
    position: relative;
    padding: 0;
}

.slick-slide .account-box .main-balance p {
    line-height: 30px;
    font-size: 17px;
}


.slick-slide .ui-selectmenu-text {
    padding: 5px 14px 10px 8px !important;
    font-weight: 500;
}

.slick-center .ui-selectmenu-text {
    padding: 10px 14px 10px 8px;
    font-weight: 500;
}

.slick-slide .ui-selectmenu-button {
    width: 60px !important;
    border: 1px solid var(--BG);
    background-color: transparent;
}

.cards-account-box .ui-selectmenu-button {
    width: 60px !important;
    border: 1px solid var(--BG);
    background-color: transparent;
}

.slick-slide .account-box .acc-balance-txt {
    font-size: 8px;
}

.slick-center .account-box .acc-balance-txt {
    font-size: 12px;
}

/*.accounts-widget .trigger li {
    display: inline;
}*/

.slick-slide .account-box .account-btn {
    width: 40px;
    height: 40px;
    background-color: transparent;
}

.slick-center .account-box .account-btn {
    width: 58px;
    height: 58px;
    background-color: transparent;
}

.slick-center .account-box-amount {
    font-size: 26px !important;
}

/*singe-slide*/

.single-slide .slide .account-box {
    width: 378px !important;
    min-height: 190px !important;
    margin: 0 auto !important;
}

.single-slide .account-box .account-main {
    position: relative;
    padding: 0;
}

.single-slide .account-box .acc-nr {
    font-size: 8px;
}

.single-slide .account-box .acc-name {
    /* height: 40px !important;*/
    display: block;
    font-size: 14px;
    margin-bottom: 0px;
}

.percent-50 {
    width: 50% !important;
}

#error-message {
    color: red;
}

.single-slide .account-box .main-balance p {
    /* line-height: 40px !important;*/
}

.single-slide .ui-selectmenu-text {
    padding: 10px 14px 10px 8px;
    font-weight: 500;
}

.single-slide .account-box .acc-balance-txt {
    font-size: 12px;
    text-transform: none;
    font-weight: normal;
    color: var(--BG);
}

.single-slide .account-box .account-btn {
    width: 58px;
    height: 58px;
    background-color: transparent;
}

.single-slide .account-box-amount {
    font-size: 26px !important;
}

.single-slide .account-box .acc-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    border-radius: 100%;
    overflow: hidden;
}


/*Exchange widget*/

.heavy-h2-16 {
    font-family: roboto-bold;
    font-style: normal;
    font-weight: 900;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 16px;
}

.heavy-h2-16-title {
    font-family: roboto-black;
    font-weight: 900 !important;
    font-size: 16px !important;
    line-height: 19px;
    text-align: left;
    /*  margin-bottom: 32px !important;*/
}

.light-primary-p0 {
    color: var(--P0);
}

.light-primary-p0-background {
    background-color: var(--P0);
}

.light-primary-p2-background {
    background-color: var(--P2);
    /*  pointer-events: none;*/
}

.light-foreground-k4 {
    background-color: var(--K4) !important;
    border-radius: 8px;
}

.light-extra-onSu {
    color: var(--onSU) !important;
}

.light-extra-su-background {
    background-color: var(--SU) !important;
}

.month {
    /*  to be added*/
    /* position: absolute;*/
    width: 48px;
    height: 10px;
    left: 16px;
    top: 10px;
    font-family: roboto-regular;
    font-style: normal;
    font-weight: 600;
    font-size: 8.384px;
    line-height: 10px;
}

.semi-s4-12-bt {
    font-family: roboto-regular;
    font-style: normal;
    font-size: 12px;
    line-height: 14px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

/*Added styles for exsisting elements*/
.heavy-h2-16 span {
    text-transform: lowercase;
    display: inline-block;
}

    .heavy-h2-16 span::first-line {
        text-transform: none;
    }

/*Updated old*/

.widget-grid-options .grid-title {
    background-color: var(--BG);
}

.grid-options {
    background-color: var(--BG);
}

.widget-grid .widget-inner {
    border: none;
}

#wrapper {
    position: relative;
    min-height: 100vh;
    background: var(--BG);
    padding-bottom: 60px;
}

    #wrapper.prelogin-wrapper {
        padding-bottom: 0;
    }

#page-footer {
    position: absolute;
    bottom: 0;
    width: calc(100% - 94px);
    display: flex;
    background: var(--P0);
    color: white;
    align-items: center;
    padding: 8px 24px;
    left: 94px;
}

#page-footer-prelogin {
    position: relative;
    bottom: 0;
    width: 100%;
    display: flex;
    background: var(--P0);
    color: white;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
}

#login-credentials .popup-content {
    margin-top: 200px;
}

.custom-table .table-row.row-1 {
    border: none;
}

.flag-box {
    line-height: 34px;
}

    .flag-box img {
        margin-top: 10px;
    }

.custom-table .flag-box {
    border-radius: 2px;
}

.exchange-widget .btn-1 {
    float: none;
    font-weight: 600;
    display: inline-block;
}

/*Transactions widget*/

.light-foreground-k1 {
    color: var(--K1) !important;
}

.light-foreground-k2 {
    color: var(--K2) !important;
}

.light-foreground-k2-border {
    border-top: 1px dashed var(--K2);
}

.light-foreground-k2-checkbox {
    color: var(--K2) !important;
}

.semi-s2-16 {
    font-family: roboto-light;
    font-style: normal;
    font-weight: 500;
    font-size: 16px !important;
    line-height: 19px;
    text-align: center;
}

.semi-s3-14 {
    font-style: normal;
    font-weight: 500 !important;
    font-size: 14px !important;
    line-height: 16px !important;
    text-transform: uppercase;
}

.semi-s3-14-bt {
    font-family: roboto-light;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
}

.semi-s3-14-bt-14 {
    font-family: roboto-light;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
}

.semi-s3-14-account {
    font-style: normal;
    font-weight: 500 !important;
    font-size: 14px !important;
    line-height: 16px !important;
    text-transform: uppercase;
    margin-top: 9px;
}

.semi-s3-14-standardcase {
    font-style: normal;
    font-weight: 500 !important;
    font-size: 14px !important;
    line-height: 16px !important;
}

.regular-r1-16-txt {
    font-family: roboto-medium;
    font-style: normal;
    font-weight: normal;
    font-size: 16px !important;
    line-height: 19px;
}

.regular-r2-14-tip {
    font-family: roboto-regular;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
}

.regular-r3-12-bt {
    font-family: roboto-black;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    text-transform: uppercase;
}

#sortable-container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 24px;
}

.content-inner-box #sortable-container {
    row-gap: unset;
}

.full-width-container {
    width: 100%;
    height: max-content;
}

/*Mailbox widget*/

.mailbox-widget .btn-1 {
    float: none;
    font-weight: 600;
    display: inline-block;
}

.mailbox-widget .semi-s4-12-bt {
    font-family: roboto-regular;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;
    align-items: center;
    text-transform: uppercase;
}

.msg-widget-wrapper .msg-status .unread-msgs {
    border-right: 1px solid transparent;
}

.msg-widget-wrapper .msg-container .msg {
    border-bottom: 1px solid transparent;
}

.mailbox-widget .msg-counter {
    display: block !important;
}

.messages-border {
    border-bottom: 1px dashed var(--K2);
    display: inline-block;
    width: calc(100% - 48px);
    margin: 0 auto 8px;
}

#search-input {
    width: 200px !important;
    height: 29px !important;
}

.left-float {
    float: left;
}

.profile-description {
    margin-right: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: auto;
}

    .profile-description .profile-working-context:last-child {
        margin-top: 4px;
    }

.profile-working-context {
    text-align: left !important;
    margin: 0;
}

.tmpl-container {
    width: 704px;
    margin: 0 auto;
}

.profile-dropdown { /*  Ovo je klasa koju uvodimo kao parent koji okruzuje profile unutar dropdowna. 
    U startu je skrivena pa se pokazuje na klik profile div-a. 
    Dok ces skinuti funkcionalnost da se na klik profila skriveni profili pokazuju. 
    Ovako imamo jedan div koji se pokazuje a onako za svaki moras davati funkciju sto je smor. 

        30.06.2023 UPDATE
        Cela klasa i element su skinuti sa hedera jer smo napravili odabir profila kroz side in modal
                    */
    /*display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    width: 100%;
    max-width: 267px;
    background: #fafafa;
    border-radius: 0 0 8px 8px;*/
}

.logout-bar.btn-small-ico-label {
    width: 94px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 4px;
}

    .logout-bar.btn-small-ico-label:hover {
        background-color: var(--P2);
    }

.btn-small-ico-label {
    width: 94px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 4px;
}

    .btn-small-ico-label a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        width: 100%;
        height: max-content;
        cursor: pointer;
        text-align: center;
    }

        .btn-small-ico-label a .btn-small-icon {
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-small-ico-label a .btn-small-label {
            font-size: 12px;
            line-height: 16px;
            font-family: 'roboto-regular';
            color: var(--P0);
        }

        .btn-small-ico-label a .btn-small-icon.btn-small-icon-hold {
            height: 32px;
            width: 32px;
        }

            .btn-small-ico-label a .btn-small-icon.btn-small-icon-hold img {
                object-fit: cover;
                height: 100%;
                width: 100%;
                object-position: center;
                border-radius: 100%;
            }

.profile-arrow {
    width: 32px;
    height: 32px;
    display: inline-block;
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-arrow-down.png);
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    cursor: pointer;
}

.inbox-span-flex {
    display: flex;
    align-items: center;
    column-gap: 0px;
    font-size: 12px;
    color: var(--P0);
}

#page-header-down {
    height: 88%;
    background: var(--BG);
    position: fixed;
    top: 80px;
    left: 0;
    z-index: 100;
}

#page-header-right {
    width: 177px;
    height: calc(100% - 80px);
    float: right;
    background: var(--BG);
    top: 80px;
    z-index: 100;
    left: 94px;
    background-color: var(--P2) !important;
    position: fixed;
    padding-bottom: 30px;
}

.header-down-sub-menu li {
    width: 100%;
}

.menu-list-itm a {
    word-break: break-all;
}

ul.header-down-sub-menu li.menu-list-item:hover {
    background-color: var(--BG) !important;
    color: var(--P1);
}

    ul.header-down-sub-menu li.menu-list-item:hover a {
        color: var(--P1);
    }

#search-ribbon {
    width: 367px;
    height: 35px;
    margin-right: 24px;
}

    #search-ribbon.side-search-ribbon {
        display: block !important;
        margin: 0;
    }

#current-notification {
    margin-top: 75px;
}

.side-search-ribbon-hold {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
}

.input-search-ribbon {
    width: 100%;
    height: 100%;
    border: 0px solid var(--BG);
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-search-1.png);
    background-repeat: no-repeat;
    background-position: 16px 50%;
    padding: 8px 16px;
    text-indent: 38px;
    border: 1px solid transparent;
}

    .input-search-ribbon:focus {
        border-color: var(--P1);
        background-size: auto;
    }

.widget-content-search-hold {
    display: flex;
    align-items: center;
    padding: 8px 24px;
    column-gap: 8px;
    margin-top: 16px;
}

    .widget-content-search-hold.search-w-reset {
        flex-wrap: wrap;
    }

.widget-content-sort-hold {
    display: flex;
    justify-content: right;
    align-items: baseline;
}

.input-search {
    width: 100%;
    border: none;
    border-radius: 8px;
    background: white;
    padding: 8px 24px 8px 38px;
    font-size: 16px;
    line-height: 19px;
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-search-1.png) !important;
    background-size: 14px !important;
    background-position: 16px 50% !important;
    background-repeat: no-repeat !important;
    font-family: roboto-regular;
}

    .input-search.grey-input {
        background: var(--K4);
    }

.widget-inner .widget-options {
    z-index: 10;
}

.widget-content-search-hold .widget-options {
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(1);
}

.search-w-reset .input-search {
    width: calc(100% - 40px);
}

.reset-filter-hold {
    display: flex;
    margin-left: auto;
}

    .reset-filter-hold .empty-btn {
        padding-right: 0;
    }

        .reset-filter-hold .empty-btn:hover {
            background: none !important;
        }

.width-85 {
    margin: 0 auto;
    width: 85%;
}

.trigger {
    cursor: pointer;
}

.menu-li-dashboard:hover .icon-dashboard-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-dashboard-1.png);
}

.menu-li-icon-card-1:hover .icon-card-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-card-5.png);
}

.menu-li-icon-catalogue-3:hover .icon-catalogue-3 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-catalogue-1.png);
}

.menu-li-icon-contact-1:hover .icon-contact-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-contact-3.png);
}

.menu-li-icon-exchange-1:hover .icon-exchange-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-exchange-4.png);
}

.menu-li-icon-inbox:hover .icon-inbox {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-inbox-1.png);
}

.menu-li-icon-language:hover .icon-language {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-language-2.png);
}

.menu-li-icon-money-1:hover .icon-money-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-money-5.png);
}

.menu-li-icon-safe-1:hover .icon-safe-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-safe-4.png);
}

.menu-li-icon-selfcare:hover .icon-selfcare {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-selfcare-2.png);
}

.menu-li-dashboard:hover a {
    color: var(--P0) !important;
}

.menu-li-dashboard:hover p {
    color: var(--P0) !important;
}

.menu-li-icon-card-1:hover a {
    color: var(--P0) !important;
}

.menu-li-icon-card-1:hover p {
    color: var(--P0) !important;
}

.menu-li-icon-catalogue-3:hover a {
    color: var(--P0) !important;
}

.menu-li-icon-catalogue-3:hover p {
    color: var(--P0) !important;
}

.menu-li-icon-contact-1:hover a {
    color: var(--P0) !important;
}

.menu-li-icon-contact-1:hover p {
    color: var(--P0) !important;
}

.menu-li-icon-exchange-1:hover a {
    color: var(--P0) !important;
}

.menu-li-icon-exchange-1:hover p {
    color: var(--P0) !important;
}

.menu-li-icon-inbox:hover a {
    color: var(--P0) !important;
}

.menu-li-icon-inbox:hover p {
    color: var(--P0) !important;
}

.menu-li-icon-language:hover a {
    color: var(--P0) !important;
}

.menu-li-icon-language:hover p {
    color: var(--P0) !important;
}

.menu-li-icon-money-1:hover a {
    color: var(--P0) !important;
}

.menu-li-icon-money-1:hover p {
    color: var(--P0) !important;
}

.menu-li-icon-safe-1:hover a {
    color: var(--P0) !important;
}

.menu-li-icon-safe-1:hover p {
    color: var(--P0) !important;
}

.menu-li-icon-selfcare:hover a {
    color: var(--P0) !important;
}

.menu-li-icon-selfcare:hover p {
    color: var(--P0) !important;
}

.party {
    cursor: pointer;
    background: var(--BG) !important;
}

.selected-party {
    background: var(--P2) !important;
}

#sub-menu-title .side-menu-margin {
    height: 64px;
    display: flex;
    align-items: center;
}

#sub-menu-title.menu-list-item:hover {
    background-color: var(--P2) !important;
    color: var(--P0) !important;
    cursor: default;
}

    #sub-menu-title.menu-list-item:hover .side-menu-margin {
        background-color: var(--P2) !important;
        color: var(--P0) !important;
        cursor: default;
    }

.side-menu-margin {
    display: inline-block;
    text-align: left;
    width: 100%;
    padding: 16px 24px;
}

.side-modal.active {
    z-index: 999;
}

.icon-menu-1 {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-menu-1.png);
    background-size: 24px;
    background-repeat: no-repeat;
    width: 32px;
    height: 32px;
    position: absolute;
    left: calc(100% - 367.5px/2 + 103.25px);
    top: calc(25% - 35px/2);
}

.menu-label {
    text-align: center !important;
}

/*Mailbox*/

.message-list {
    width: 100%;
    height: 71px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    padding: 8px 16px 8px 0;
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'roboto-medium';
    column-gap: 16px;
}

.checkbox-4 {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--K2);
    box-sizing: border-box;
    border-radius: 2px;
}

    .checkbox-4.styledCheckbox {
        display: inline-block;
        width: 18px;
        height: 18px;
        background-image: url(/webapp/Themes/StandardRedesign/img/icons/checkbox-4.png);
        background-repeat: no-repeat;
        background-position: 0px -22px !important;
        background-size: 18px;
        cursor: pointer;
    }

        .checkbox-4.styledCheckbox.checked {
            background-position: -1px -2px !important;
            border-color: var(--P1);
        }

.checkbox-1.styledCheckbox.disabled {
    opacity: 0.5;
}

.template-tabs {
    height: 88px;
    width: 704px;
    padding-bottom: 24px !important;
    padding-top: 32px !important;
    margin: 0 auto;
}

    .template-tabs a {
        display: inline-block;
        margin-top: 8px;
        margin-left: 16px;
        margin-right: 16px;
        font-size: 14px;
        line-height: 16px;
    }

.template-tab {
    height: 32px;
    border-radius: 4px;
    display: inline-block;
}

.template-tabs .selected {
    border: 1px solid #00A3E0;
}

.template-delete {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-template-delete.png);
    background-repeat: no-repeat;
    width: 32px;
    height: 32px;
    display: none !important;
}

    .template-delete.active {
        display: block !important;
    }

.template-list:hover .template-delete {
    display: block !important;
}

.template-edit {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-template-edit.png);
    background-repeat: no-repeat;
    width: 32px;
    height: 32px;
    display: none !important;
}

    .template-edit.active {
        display: block !important;
    }

.template-list:hover .template-edit {
    display: block !important;
}

.template-continue {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-template-continue.png);
    background-repeat: no-repeat;
    width: 32px;
    height: 32px;
    display: none !important;
}

    .template-continue.active {
        display: block !important;
    }

.template-list:hover .template-continue {
    display: block !important;
}

.template-check-item {
    margin-top: 30px;
    margin-bottom: 0px;
}

    .template-check-item p {
        margin-bottom: 0px;
    }

.template-options {
    margin-top: 25px;
}

    .template-options div {
        display: inline-block;
        float: right;
        margin-left: 15px;
    }

.template-details-cell {
    margin-top: 10px;
}

.template-list .template-button {
    display: none !important;
}

.template-list:hover .template-button {
    display: block !important;
}

.mailbox-options {
    margin-top: 19px;
}

    .mailbox-options div {
        display: inline-block;
        float: right;
        margin-left: 15px;
    }

.message-attachment {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-mail-attachment.png);
    background-repeat: no-repeat;
    width: 32px;
    height: 32px;
}

.message-important {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-mail-important.png);
    background-repeat: no-repeat;
    width: 32px;
    height: 32px;
}

.message-archive {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-mail-archive.png);
    background-repeat: no-repeat;
    background-position: 0% 50%;
    width: 32px;
    height: 32px;
    display: none !important;
}

    .message-archive.active {
        display: block !important;
    }

.message-mark-as-read {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-mail-mark-as-read.png);
    background-repeat: no-repeat;
    width: 32px;
    height: 32px;
    display: none !important;
}

    .message-mark-as-read.active {
        display: block !important;
    }

.mailbox-check-item {
    margin-top: 16.5px;
    margin-bottom: 0px;
}

    .mailbox-check-item p {
        margin-bottom: 0px;
    }

.mailbox-date-label {
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px !important;
    margin-bottom: 4px;
    margin-top: 8px;
}

.mailbox-title-label {
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px !important;
    margin-bottom: 0px;
}

.mailbox-title-label {
    font-style: normal;
    font-weight: 500;
    font-size: 16px !important;
    line-height: 19px;
}

.message-list:hover .message-archive {
    display: block !important;
}

.message-list:hover .message-mark-as-read {
    display: block !important;
}

.message-list:hover .attachment {
    display: none !important;
}

.message-list:hover .important {
    display: none !important;
}

.custom-table .readed-message-icon-holder {
    top: 9px;
    position: relative;
}

.custom-table .unreaded-message-icon-holder {
    position: relative;
    top: 8px;
}

.mailbox-message-list.icon-holder {
    width: 32px;
    height: 32px;
    position: relative;
    float: right;
    margin-top: 5px;
}

    .mailbox-message-list.icon-holder.hidden-icon {
        display: none;
    }

.table-row:hover .mailbox-message-list.icon-holder.hidden-icon {
    display: block !important;
}

.mailbox-message-list.icon-holder .urgent-icon {
    position: absolute;
    left: 21.88%;
    right: 21.88%;
    top: 21.88%;
    bottom: 21.88%;
}

.mailbox-message-list.icon-holder .attachement-icon {
    position: absolute;
    width: 20.03px;
    height: 22px;
    left: 6px;
    top: 5px;
}

.mailbox-message-list.icon-holder .archive-icon {
    position: absolute;
    left: 9.38%;
    right: 9.38%;
    top: 18.75%;
    bottom: 18.75%;
}

.mailbox-message-list.icon-holder .mark-as-read-icon {
    position: absolute;
    width: 25px;
    height: 27.38px;
    left: 4px;
    top: 1px;
}

.light-foreground-k4 .row-1:hover {
    background-color: var(--BG) !important;
}

.heavy-h1-26 {
    font-family: roboto-regular;
    font-style: normal;
    font-weight: 900;
    font-size: 26px;
    line-height: 30px;
    text-align: right;
}

.heavy-h1-26-roboto {
    font-family: roboto-regular;
    font-style: normal;
    font-weight: 900;
    font-size: 26px;
    line-height: 30px;
    text-align: right;
}

.heavy-h1-26-left {
    font-family: roboto-regular;
    text-transform: none;
    font-style: normal;
    font-weight: 900 !important;
    font-size: 26px !important;
    line-height: 30px;
    text-align: left;
}

.heavy-h1-26-title {
    font-family: roboto-regular;
    text-transform: none;
    font-weight: 800 !important;
    font-size: 26px !important;
    line-height: 30px !important;
    text-align: left;
    margin-bottom: 32px !important;
}

.icon-move-bar {
    width: 24px;
    height: 20px;
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/move-bar-icon.png);
    background-size: 26px;
    background-repeat: no-repeat;
}

.links-list-3 img {
    width: 32px;
    height: 32px;
    float: left;
    margin-right: 16px;
}

h3.heavy-h2-16.light-primary-p0 {
    margin-bottom: 24px !important;
}

p.semi-s3-14.light-foreground-k1 {
    margin-bottom: 4px;
}

.swipe-msg-box {
    display: flex;
    align-items: center;
    column-gap: 24px;
    padding-left: 24px;
}

.message-status {
    display: flex;
    align-items: center;
    padding: 16px 24px 8px;
}

    .message-status .icon-holder {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 8px;
    }

    .message-status .message-status-time {
        font-family: 'roboto-regular';
        font-size: 12px;
        color: var(--K2);
    }

.message-body-content-hold {
    display: flex;
    padding: 16px 24px;
}

    .message-body-content-hold .message-body-content {
        font-size: 16px;
        line-height: 1.4;
        font-family: roboto-regular;
        color: var(--K2);
        width: 100%
    }

.attachment-name {
    padding-top: 7px;
}

.filter-icon {
    width: 27px;
    height: 23px;
    float: right;
    margin-right: 24px;
    margin-left: 24px;
    margin-top: 4px;
    display: inline-block;
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-filter.png);
    background-size: 27px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    cursor: pointer;
}

.options-icon {
    width: 27px;
    height: 23px;
    float: right;
    margin-right: 24px;
    margin-left: 24px;
    margin-top: 4px;
    display: inline-block;
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-more.png);
    background-size: 27px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    cursor: pointer;
}

.filter-list-icon {
    width: 27px;
    height: 23px;
    float: right;
    margin-right: 16px;
    margin-left: 16px;
    margin-top: 4px;
    display: inline-block;
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-filter.png);
    background-size: 27px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    cursor: pointer;
}

.options-list-icon {
    width: 27px;
    height: 23px;
    float: right;
    margin-right: 16px;
    margin-left: 16px;
    margin-top: 4px;
    display: inline-block;
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-more.png);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    cursor: pointer;
}

.templates-search {
    width: 704px;
    margin-left: 24px;
    height: 35px;
    margin-bottom: 0px;
    background-color: var(--BG);
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-search-1.png);
    background-repeat: no-repeat;
    background-position: 16px 50%;
    display: inline-block;
    border-radius: 8px;
}

    .templates-search:focus {
        background-size: 0px;
    }

.mailbox-search {
    height: 35px;
    margin-bottom: 0px;
    background-color: var(--BG);
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-search-1.png);
    background-repeat: no-repeat;
    background-position: 16px 50%;
}

    .mailbox-search:focus {
        background-size: 0px;
    }


.mailbox-container {
    padding-top: 0px !important;
}

.payment-col-top {
    width: 752px;
    margin: 0 auto;
    padding-top: 24px;
}


#account-col-content {
    display: flex;
    column-gap: 24px;
    align-items: flex-start;
}

.card-visuals-hold {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0 16px;
}

.card-visuals {
    /* height: 240px;
    width: 384px;*/
    border-radius: 5px
}

.button-wrapper {
    width: 170px;
    height: 48px;
}

.msg-red-dot {
    width: 6px;
    height: 6px;
    background: red;
    position: absolute;
    top: 0;
    right: 31px;
    border-radius: 8px;
}

.navigation {
    margin-left: 24px;
}

.title-3 {
    margin-left: 24px;
    margin-top: 25px;
}

    .title-3 h2 {
        margin-bottom: 4px;
    }

    .title-3 p {
        margin-left: 45px;
        display: inline;
    }

    .title-3 i {
        display: inline-block;
        float: none;
        width: 26px;
        height: 18px;
        margin-right: 19px;
    }

.title-4 {
    margin-left: 24px;
    margin-top: 25px;
}

    .title-4 h2 {
        margin-bottom: 4px;
        width: 63%;
    }

    .title-4 p {
        margin-left: 0px;
        display: inline;
    }

.col-left-50 {
    float: left;
    width: 50%;
}

.col-right-50 {
    float: right;
    width: 50%;
}

.icon-action-label {
    margin-left: 50px;
    padding-top: 8px;
}

.account-col-left {
    width: 100%;
}

.account-col-content {
    width: 100%;
}

.account-content-hold {
    width: 100%;
}

.account-col-center {
    float: left;
    height: auto;
    width: 100%;
    margin-right: 24px;
}

    .account-col-center h2 {
        margin-bottom: 8px;
        margin-left: 24px;
    }

.account-col-right {
    width: 100%;
}

.account-widget-slat {
    display: flex;
}

#account-col-content .account-widget-slat {
    background: var(--K4);
    padding: 16px 0;
    border-radius: 8px;
}


.hide-actions-wrapper {
    display: none;
    float: left;
}

.more-icon {
    width: 94px;
    height: 32px;
    float: right;
    display: inline-block;
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-more.png);
    background-size: 32px;
    background-repeat: no-repeat;
    background-position: 50% 0%;
    cursor: pointer;
    text-align: center;
    color: var(--P0);
    vertical-align: text-bottom;
}

.bill-icon {
    width: 94px;
    height: 32px;
    float: right;
    display: inline-block;
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-bill.png);
    background-size: 32px;
    background-repeat: no-repeat;
    background-position: 50% 0%;
    cursor: pointer;
    text-align: center;
    color: var(--P0);
    vertical-align: text-bottom;
}

.list-icon-4 {
    width: 94px;
    height: 32px;
    float: right;
    display: inline-block;
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/list-icon-4.png);
    background-size: 32px;
    background-repeat: no-repeat;
    background-position: 50% 0%;
    cursor: pointer;
    text-align: center;
    color: var(--P0);
    vertical-align: text-bottom;
}

.icon-internal-transfer {
    width: 94px;
    height: 32px;
    float: right;
    display: inline-block;
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-internal-transfer.png);
    background-size: 32px;
    background-repeat: no-repeat;
    background-position: 50% 0%;
    cursor: pointer;
    text-align: center;
    color: var(--P0);
    vertical-align: text-bottom;
}

.icon-contact-2 {
    width: 94px;
    height: 32px;
    float: right;
    display: inline-block;
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-contact-2.png);
    background-size: 29px;
    background-repeat: no-repeat;
    background-position: 50% 0%;
    cursor: pointer;
    text-align: center;
    color: var(--P0);
    vertical-align: text-bottom;
}

.roboto-light {
    font-family: roboto-light;
}

.roboto-medium {
    font-family: roboto-medium;
}

.card-image-wrapper {
    width: 20%;
    float: left;
}

.card-details-wrapper {
    width: 80%;
    float: right;
}

.empty-result-message {
    width: 100%;
    margin-top: 116px;
}

    .empty-result-message p {
        width: 100%;
        text-align: center;
        margin-top: 16px;
    }

.empty-result-image {
    width: 376px;
    height: 45px;
    background-image: url(/webapp/Themes/StandardRedesign/img/bg/illustration.png);
    background-repeat: no-repeat;
    margin: 0 auto;
}

.empty-result-wrapper {
    display: none;
}

.statement-item {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-statement.png);
    background-repeat: no-repeat;
    background-position: 48% 48%;
    background-size: 30px 30px;
    margin-top: 7px
}

.tag-col:hover .statement-item {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-bill.png);
    background-repeat: no-repeat;
    background-position: 48% 48%;
    background-size: 30px 30px;
    margin-top: 7px
}


.icon-visa {
    width: 40px;
    height: 32px;
    margin-top: 28px;
    margin-right: 16px;
    float: right;
    display: inline-block;
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-visa.png);
    background-size: 40px;
    background-repeat: no-repeat;
    background-position: 50% 0%;
    text-align: center;
    color: var(--P0);
    vertical-align: text-bottom;
}


.roboto-regular {
    font-family: roboto-regular !important;
}

.roboto-bold {
    font-family: roboto-bold !important;
}

.date-wrap input {
    cursor: pointer;
}

.icon-date-picker {
    width: 100%;
    display: inline-block;
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-date-picker.png);
    background-size: 22px;
    background-repeat: no-repeat;
    background-position: 99% 0%;
    cursor: pointer;
}

.date-wrap.icon-date-picker {
    display: flex;
    column-gap: 16px;
    background-image: none;
}

.group-inner {
    margin-bottom: 32px;
}

.group .group-inner.horizontal-btns {
    margin-bottom: 24px
}

    .group .group-inner.horizontal-btns button:first-child {
        margin-bottom: 8px;
    }

.account-action p {
    text-align: center !important;
}

.cursor-pointer {
    cursor: pointer;
}

.currency-select-holder {
    width: 56px;
    height: 30px;
    border: 1px solid var(--P1);
    box-sizing: border-box;
    border-radius: 4px;
    margin-right: 16px;
}

.currency-select {
    padding: 0 4px;
    border: none;
    height: 100%;
    width: 100%;
    border-radius: 4px;
    appearance: none;
    background-color: transparent;
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/currency_carret_down.png);
    background-size: 8px;
    background-position-x: calc(100% - 4px);
    background-position-y: 50%;
    background-repeat: no-repeat;
}

.select-currency-value {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 4px;
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;
    font-family: roboto-medium;
}

.select-currency-triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    border-color: var(--P1) transparent transparent transparent;
    right: 7px;
    margin-bottom: 2px;
    margin-left: 5px;
}

.content-inner-box .currency-select-holder {
    margin-right: 0;
}

.account-div .currency-select-holder, .card-div .currency-select-holder {
    width: 56px;
    height: 30px;
    border: 1px solid var(--BG);
    box-sizing: border-box;
    border-radius: 4px;
    margin-right: 16px;
}

.card-div .currency-select-holder {
    width: 56px;
    height: 30px;
    border: 1px solid var(--BG);
    box-sizing: border-box;
    border-radius: 4px;
    margin-right: 0;
}

.account-div .select-currency-value, .card-div .select-currency-value {
    display: inline-block;
    flex-direction: row;
    align-items: center;
    padding: 8px 4px;
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;
    font-family: roboto-medium;
    color: var(--BG);
}

.account-div .select-currency-triangle, .card-div .select-currency-triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    border-color: var(--BG) transparent transparent transparent;
    right: 7px;
    margin-bottom: 2px;
    margin-left: 5px;
}

.currency-select-holder span {
    display: inline-block;
}

.account-picker-image {
    width: 48px;
    height: 48px;
    border-radius: 100%;
}

.location-contact-data {
    display: grid;
    grid-gap: 5px;
    margin: 2% 0 0 10%;
}

.prelogin-exchange-amount-currency {
    display: flex;
    align-items: flex-end;
    padding: 8px 0px 30px;
    column-gap: 16px;
}

.prelogin-exchange-amount-currency-input {
    width: 100%
}

.currency-select:focus-visible {
    outline-color: var(--P1);
}

.dashed-border {
    border-top: 1px dashed var(--K2);
}

.text-transform-none {
    text-transform: none !important;
}

.text-transform-capitalize {
    text-transform: capitalize !important;
}

.font-size-18 {
    font-size: 18px !important;
}

.input-label-ico-auth {
    padding-left: 0px !important;
}

.side-form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

    .side-form-group .input-label-ico.full-click-div {
        width: 100% !important;
    }

        .side-form-group .input-label-ico.full-click-div:first-child {
            width: calc(100% - 56px) !important;
        }

        .side-form-group .input-label-ico.full-click-div.new-field-div {
            width: calc(100% - 56px) !important;
        }

        .side-form-group .input-label-ico.full-click-div.visible-div {
            width: calc(100% - 56px) !important;
            padding-top: 0 !important;
            margin-top: -16px;
        }

    .side-form-group .one-creditor-icon-action {
        position: absolute;
        top: 16px;
        padding: 0;
        right: 24px;
        height: 32px;
    }

        .side-form-group .one-creditor-icon-action.action-for-new-field {
            top: 56px;
        }

            .side-form-group .one-creditor-icon-action.action-for-new-field:nth-child(n+1) {
                top: 42px;
            }


.forgot-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-left: 16px;
    margin-top: 14px;
    position: relative;
}

    .forgot-button .tooltip {
        visibility: hidden;
        background-color: var(--K2);
        color: var(--BG);
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;
        /* Position the tooltip */
        position: absolute;
        z-index: 1;
        width: 120px;
        top: 100%;
        left: 50%;
        margin-left: -60px;
        font-size: 14px;
        opacity: 0;
        transition: opacity 0.5s;
    }

        .forgot-button .tooltip::after {
            content: " ";
            position: absolute;
            bottom: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: transparent transparent var(--K2) transparent;
        }

    .forgot-button:hover .tooltip {
        visibility: visible;
        opacity: 1;
    }

.facilities .select-1 .dd-options {
    background: var(--P2);
}

.facilities .select-1 .dd-option {
    background: var(--P2);
    color: var(--K1);
}

    .facilities .select-1 .dd-option:hover .dd-option-text {
        color: var(--P1);
    }

.authorization-link-icon {
    display: none;
    padding-top: 25px;
    float: right;
}

/*main.css*/
.mb-24 {
    margin-bottom: 24px;
}

.mb-16 {
    margin-bottom: 16px !important;
}

.mb-8 {
    margin-bottom: 8px !important;
}

.mb-0 {
    margin-bottom: 0px !important;
}

.mr-24 {
    margin-right: 24px !important;
}

.min-height-300 {
    min-height: 300px;
}

.min-height-400 {
    min-height: 400px;
}

.breadcrumbs-holder {
    display: none;
}

.label-section {
    display: inline-block;
    width: 100%;
    padding: 16px 24px;
    font-family: 'roboto-black';
    color: var(--K1);
}

    .label-section h2 {
        font-family: 'roboto-black';
        font-size: 26px;
        color: var(--K1);
        margin: 0;
        margin-bottom: 4px;
        text-transform: none;
    }

    .label-section h4 {
        font-family: 'roboto-black';
        font-size: 16px;
        color: var(--P0);
        margin: 0;
    }

    .label-section.label-section-small h4 {
        font-family: 'roboto-medium';
        font-size: 16px;
        color: var(--P0);
        margin: 0;
    }

    .label-section span {
        font-family: 'roboto-regular';
        font-size: 14px;
        color: var(--K2);
        margin: 0;
    }

    .label-section.label-section-small {
        margin-bottom: 0px;
    }

    .label-section.accounts-label h4 {
        font-family: 'roboto-medium';
        font-size: 16px;
        color: var(--K1);
    }

    .label-section.has-process-steps {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .label-section.label-section-w-total {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 12px;
        position: relative;
    }

        .label-section.label-section-w-total .total-amount {
            font-family: 'roboto-medium';
            font-size: 14px;
            color: var(--P0);
            margin: 0;
            background: var(--SU);
            padding: 4px 8px;
        }

        .label-section.label-section-w-total::after {
            content: '';
            position: absolute;
            width: calc(100% - 48px);
            left: 24px;
            bottom: 0;
            height: 1px;
            background: var(--K3);
        }

.sub-field-group {
    padding-left: 10%;
}

.process-steps {
    display: flex;
    align-items: center;
    column-gap: 32px;
    position: relative;
}

    .process-steps:before {
        display: inline-block;
        content: '';
        width: 100%;
        border-bottom: 1px dashed var(--K3);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .process-steps .one-step {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 32px;
        width: 32px;
        background: var(--K3);
        border-radius: 50%;
        font-size: 12px;
        font-family: 'roboto-black';
        color: var(--BG);
        position: relative;
        z-index: 1;
    }

        .process-steps .one-step:before {
            display: inline-block;
            content: '';
            height: 22px;
            width: 22px;
            border-radius: 50%;
            border: 2px solid var(--BG);
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: -1;
        }

        .process-steps .one-step.active {
            background: var(--onSU);
        }

.label-section-w-action {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    margin-bottom: 16px;
    column-gap: 16px;
}

    .label-section-w-action .label-section {
        padding: 0;
        margin: 0;
        width: auto;
        margin-right: auto;
    }

    .label-section-w-action .default-btn {
        width: fit-content;
    }

.tabs-holder {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

    .tabs-holder .tab {
        display: inline-block;
        padding: 16px 16px 14px;
        text-transform: uppercase;
        color: var(--K2);
        border-bottom: 2px solid transparent;
        width: 100%;
    }

        .tabs-holder .tab.active {
            color: var(--P1);
            border-bottom-color: var(--P1);
        }

.input-label-ico {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 8px 24px 30px;
    align-items: center;
    column-gap: 16px;
}

.login-input-hold .input-label-ico {
    display: flex;
    width: 100%;
    padding: 8px 0px 24px;
    align-items: center;
    column-gap: 16px;
}

.input-label-ico .input-holder {
    width: 100%;
    margin: 0;
}

.input-label-ico.two-icons .input-holder {
    width: calc(100% - 96px);
    margin: 0;
}

.input-label-ico .input-holder .input-label-ico-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 16px;
}

    .input-label-ico .input-holder .input-label-ico-inner .input-holder {
        width: calc(100% - 48px);
    }

.input-label-ico .icon-holder {
    width: 32px;
    height: 32px;
    margin: 0;
}

.input-label-ico label {
    font-family: 'roboto-regular';
    font-size: 14px;
    line-height: 18px;
    color: var(--K2);
    margin: 0;
}

.input-label-ico .empty-label {
    display: flex;
    height: 10px;
    width: 100%;
}

.input-label-ico input {
    font-family: 'roboto-regular';
    font-size: 16px;
    line-height: 19px;
    color: var(--K1);
    margin: 4px 0 0 0;
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--K3);
    background: transparent;
    -webkit-appearance: none;
    padding: 0 0 4px 0;
}

    .input-label-ico input:focus {
        border-bottom-color: var(--P1);
    }

.input-label-ico.read-only input, .input-label-ico-inner.read-only input {
    border-bottom: none;
}

.input-label-ico input[readonly] {
    border-bottom: 1px solid var(--K3);
}

.icon-holder .img-flag {
    width: 100%;
    height: 100%;
}

input[disabled="disabled"] {
    border-bottom-color: transparent !important;
}

.input-label {
    display: inline-block;
    width: 100%;
    padding: 8px 24px 30px;
}

    .input-label input {
        font-family: 'roboto-regular';
        font-size: 16px;
        line-height: 19px;
        color: var(--K1);
        margin: 0;
        width: 100%;
        border: none;
        border-bottom: 1px solid var(--K3);
        background: transparent;
        -webkit-appearance: none;
        padding: 0 4px;
    }

    .input-label.read-only input {
        border-bottom: none;
    }

.input-label-amount-currency {
    display: flex;
    width: 100%;
    padding: 0px 24px 30px;
    align-items: flex-end;
}

.side-modal-popup .input-label-amount-currency {
    display: flex;
    width: 100%;
    align-items: flex-end;
    justify-content: space-between;
}

.input-label-amount-currency .input-holder {
    width: 100%;
    margin: 0;
}

.input-label-amount-currency .currency-holder {
    width: 100%;
    margin: 0;
}

.input-label-amount-currency label {
    font-family: 'roboto-regular';
    font-size: 14px;
    line-height: 18px;
    color: var(--K2);
    margin: 0;
}

.input-label-amount-currency input {
    font-family: 'roboto-regular';
    font-size: 16px;
    line-height: 19px;
    color: var(--K1);
    margin: 0;
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--K3);
    background: transparent;
    -webkit-appearance: none;
    padding: 0 4px;
    /*   Dodato*/
    text-align: right;
}

    .input-label-amount-currency input:focus {
        border-bottom-color: var(--P1);
    }

.btns-hold {
    padding: 8px 24px 16px;
}

.btns-hold-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.btns-hold-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-1 {
    display: inline-block;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    border: none;
    font-family: roboto-medium, sans-serif;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    padding: 16px 10px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .btn-1:focus {
        outline: none;
    }

    .btn-1.big-btn {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        border-radius: 0;
        padding: 18px 10px;
    }

    .btn-1.small-btn {
        padding: 10px 15px;
    }

    .btn-1.xs-btn {
        padding: 8px 10px;
    }

    .btn-1.color-1 {
        background-color: var(--P1);
        color: var(--BG);
        box-shadow: 4px 4px 8px 0px #00000026;
    }

        .btn-1.color-1:hover {
            background-color: var(--P0);
        }

        .btn-1.color-1:active {
            background: transparent;
            color: var(--P1);
            box-shadow: none;
        }

    .btn-1.color-2 {
        background-color: var(--P2);
        color: var(--P1);
    }

        .btn-1.color-2:hover {
            background-color: var(--P0);
            color: var(--BG);
        }

    .btn-1.color-3 {
        background-color: transparent;
        color: var(--P1);
    }

        .btn-1.color-3:hover {
            background-color: var(--P2);
            color: var(--P0);
        }

    .btn-1.color-4 {
        background: transparent;
        color: var(--ERROR);
    }

        .btn-1.color-4:hover {
            background: var(--P2);
            color: var(--ERROR);
        }

        .btn-1.color-4 .icon-money-1 {
            display: inline-block;
            width: 26px;
            height: 20px;
            background-size: 26px;
            background-repeat: no-repeat;
            position: relative;
            top: 3px;
            margin-right: 12px;
            -webkit-transition: background 0.3s ease;
            -moz-transition: background 0.3s ease;
            -o-transition: background 0.3s ease;
            transition: background 0.3s ease;
        }

        .btn-1.color-4:hover .icon-money-1 {
            background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-money-2.png);
        }

    .btn-1.color-5 {
        background-color: var(--BG);
        color: var(--P1);
        transition: all ease 0.3s;
    }

        .btn-1.color-5:hover {
            opacity: 0.5;
        }

.default-btn {
    display: inline-block;
    font-size: 14px;
    font-family: 'roboto-medium';
    text-transform: uppercase;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all ease 0.3s;
    border: none;
    border-radius: 8px;
    width: 100%;
    white-space: nowrap;
    max-width: 360px;
}

    .default-btn.primary-btn {
        color: var(--BG);
        background: var(--P1);
        box-shadow: 4px 4px 8px 0px #00000026;
    }

        .default-btn.primary-btn:hover {
            background: var(--P0);
        }

        .default-btn.primary-btn:active {
            background: transparent;
            color: var(--P1);
            box-shadow: none;
        }

        .default-btn.primary-btn.disabled {
            color: var(--K2);
            background: var(--K4);
            box-shadow: 4px 4px 8px 0px #00000026;
        }

            .default-btn.primary-btn.disabled:hover {
                color: var(--K2);
                background: var(--K4);
                box-shadow: 4px 4px 8px 0px #00000026;
            }

    .default-btn.secondary-btn {
        background: var(--P2);
        color: var(--P1);
    }

        .default-btn.secondary-btn:hover {
            background: var(--P0);
            color: var(--BG);
        }

        .default-btn.secondary-btn.disabled {
            color: var(--K2);
            background: var(--K4);
        }

        .default-btn.secondary-btn:active {
            background: transparent;
            color: var(--P1);
        }

    .default-btn.empty-btn {
        background: transparent;
        color: var(--P1);
    }

        .default-btn.empty-btn.red-btn {
            color: var(--ERROR);
        }

            .default-btn.empty-btn.red-btn:hover {
                color: var(--ERROR);
            }

        .default-btn.empty-btn:hover {
            background: var(--P2);
            color: var(--P0);
        }

        .default-btn.empty-btn:active {
            background: transparent;
            color: var(--P1);
        }

input.default-btn.empty-btn {
    width: 100%;
    border: none;
}

.default-btn.big-btn {
    display: inline-block;
    font-size: 14px;
    font-family: 'roboto-medium';
    color: var(--BG);
    background: var(--P1);
    text-transform: uppercase;
    padding: 16px;
    width: 320px;
    text-align: center;
}

.default-btn.btn-with-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 16px;
    width: 100%;
    padding: 8px 16px;
    transition: all ease 0.3s;
}

    .default-btn.btn-with-icon .icon-holder {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .default-btn.btn-with-icon span {
        font-size: 14px;
        line-height: 17px;
        color: var(--P1);
        text-transform: uppercase;
        font-family: roboto-medium;
    }

    .default-btn.btn-with-icon:hover span {
        color: var(--P0);
    }



.group-inner-authorization {
    text-align: center;
}

.otp-login-groups .input-label-ico {
    padding: 16px 24px;
}

.otp-login-groups .default-btn.empty-btn {
    margin-top: 8px;
}

.otp-login-groups {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.blue-info-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #00A3E0;
    border-radius: 8px;
    padding: 16px 24px;
    background: var(--P2);
    color: var(--P1);
    font-size: 14px;
    margin-bottom: 30px;
}

    .blue-info-box.alert-info {
        border: 1px solid var(--S1);
        background: var(--bgS1);
        color: var(--S1);
    }

    .blue-info-box.error-info {
        border: 1px solid var(--ERROR);
        background: var(--bgERROR);
        color: var(--ERROR);
    }

    .blue-info-box .icon-holder {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .blue-info-box.with-icon {
        justify-content: flex-start;
        column-gap: 16px;
    }

        .blue-info-box.with-icon .text-holder {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-right: 48px;
            row-gap: 4px;
        }

.split-the-bill-box .blue-info-box {
    flex-direction: column;
    row-gap: 4px;
    border: 2px solid;
    margin-bottom: 24px;
}

.blue-info-box .paid-amount {
    font-size: 26px;
    line-height: normal;
    font-family: 'Roboto-black';
    margin: 0;
    color: var(--K1);
}

.blue-info-box.create-standing-order-box {
    cursor: pointer;
}

    .blue-info-box.create-standing-order-box .text-holder {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        row-gap: 4px;
    }

    .blue-info-box.create-standing-order-box .blue-box-main-label {
        font-size: 16px;
        font-family: roboto-medium;
        text-transform: uppercase;
    }

.steps-input-hold {
    margin-bottom: 24px;
}

.full-width-btns {
    display: flex;
    column-gap: 16px;
    width: 100%;
}

    .full-width-btns .default-btn {
        width: 100%;
    }

        .full-width-btns .default-btn:last-child {
            /*margin-left: 16px;*/
        }

.side-modal-bottom-actions.flex-column {
    flex-direction: column;
    justify-content: center;
}

.side-modal-bottom-actions {
    padding: 8px 24px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 16px;
}

    .side-modal-bottom-actions .btn-with-icon {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        column-gap: 16px;
        width: 100%;
        padding: 8px 16px;
        transition: all ease 0.3s;
    }

        .side-modal-bottom-actions .btn-with-icon.reverse {
            flex-direction: row-reverse;
        }

        .side-modal-bottom-actions .btn-with-icon .icon-holder {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .side-modal-bottom-actions .btn-with-icon span {
            font-size: 14px;
            line-height: 17px;
            color: var(--P1);
            text-transform: uppercase;
            font-family: roboto-medium;
        }

        .side-modal-bottom-actions .btn-with-icon:hover span {
            color: var(--K1);
        }

.side-modal-bottom-actions-pseudo {
    width: 100%;
}

.btns-from-form-1 {
    width: 100%;
    row-gap: 16px;
    display: flex;
    flex-direction: column;
}

.btns-from-form-2 {
    display: flex;
    column-gap: 16px;
    width: 100%;
}

.delete-drafts-review .btns-from-form-1 {
    margin-top: 24px;
}

.cancel-transfers-content .btns-from-form-1 {
    padding: 0 24px;
}

.switch-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.list-switch {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    transition: all ease 0.3s;
    column-gap: 16px;
}

    .list-switch:hover {
        background-color: var(--P2);
    }

.switch-name {
    font-size: 14px;
    font-family: roboto-regular;
    margin-right: auto;
    color: var(--K1);
}

.checkbox-2.styledCheckbox {
    display: inline-block;
    width: 34px;
    height: 14px;
    background: rgba(134,134,134,0.5);
    background-repeat: no-repeat;
    background-position: 14px 13px !important;
    background-size: 36px;
    cursor: pointer;
    position: relative;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    -ms-border-radius: 18px;
    border-radius: 18px;
    -webkit-transition: background 0.3s ease;
    -moz-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
    transition: background 0.3s ease;
}

.checkbox-2.styledCheckbox {
    float: none;
}

    .checkbox-2.styledCheckbox.checked {
        color: var(--P2);
        background: var(--lightP1);
    }

.checkbox-2-1.styledCheckbox {
    display: inline-block;
    background-color: transparent;
    background-repeat: no-repeat;
    cursor: pointer;
    position: relative;
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/ic_arrrow_down.png);
    border: none !important;
    width: 32px;
    height: 32px;
    background-position: center !important;
    background-size: 100% !important;
}

.checkbox-2-1.styledCheckbox {
    float: none;
}

    .checkbox-2-1.styledCheckbox.checked {
        -ms-transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

.switch-wrapper .hidden {
    display: none;
    zoom: 1;
    margin-bottom: 24px;
}

    .switch-wrapper .hidden.checked {
        display: block;
    }

    .switch-wrapper .hidden:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

.switch-name.switch-group-name {
    text-transform: none;
    font-family: roboto-medium;
    font-size: 16px;
}

.switch-group-name-hold {
    display: flex;
    flex-direction: column;
    margin-right: auto;
    row-gap: 4px;
}

.switch-group-name-desc-hold {
    font-size: 14px;
    color: var(--K2);
}

.group-inner.radio-wrap {
    margin: 0 !important;
    padding: 16px 24px;
}

    .group-inner.radio-wrap .radio-1 {
        margin-right: 16px;
    }

.input-holder-radio-parent {
    padding: 0 !important;
}

.sub-notification.fake-input {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 16px 24px;
}

    .sub-notification.fake-input .description {
        width: 100%;
        font-size: 14px;
        color: var(--K2);
        margin-bottom: 4px;
    }

    .sub-notification.fake-input .notification-condition {
        width: 100%;
    }

.notification-condition input {
    width: 100%;
    text-align: right;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--K3);
    line-height: 20px;
    font-size: 16px;
}

    .notification-condition input:focus {
        border-bottom-color: var(--P1);
    }

.input-label-ico .list-switch {
    padding-left: 0px;
}

.slide-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 9999;
}

    .slide-modal .slide-div {
        position: absolute;
        top: 0;
        right: -100%;
        height: 100%;
        background: var(--BG);
        padding: 0;
    }

        .slide-modal .slide-div .slide-header {
            display: flex;
            padding: 16px 24px;
            justify-content: flex-end;
            align-items: center;
        }

            .slide-modal .slide-div .slide-header .logo-holder {
                margin-right: auto;
            }

            .slide-modal .slide-div .slide-header .icon-holder {
                margin: 0;
                height: 32px;
            }

.title-large {
    padding: 16px 24px;
    display: inline-block;
    width: 100%;
}

    .title-large h3 {
        font-size: 26px;
        color: var(--K1);
        font-family: 'roboto-black';
        margin: 0;
    }

    .title-large.centered h3 {
        text-align: center;
    }

.side-modal-widget-description {
    margin: 0;
    padding: 16px 24px;
    font-size: 16px;
    font-family: roboto-regular;
}

.list-item-default-icon-no-a-tag {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    transition: all 0.3s ease;
}

    .list-item-default-icon-no-a-tag .icon-holder {
        margin-right: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .list-item-default-icon-no-a-tag span {
        font-size: 14px;
        font-family: roboto-medium;
        line-height: 16px;
        margin-right: auto;
        text-transform: uppercase;
        color: var(--P0);
    }

.content-inner-box .list-item-default-icon-no-a-tag span {
    font-family: roboto-regular;
    color: var(--K1);
}

.white-back-hover:hover {
    background: var(--BG) !important;
}

.list-item-default-icon-a {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .list-item-default-icon-a:hover {
        background: var(--P2);
    }

.list-item-default-icon .icon-holder {
    margin: 0;
    margin-right: 16px;
    height: 32px;
}

    .list-item-default-icon .icon-holder.secondary {
        margin-right: 0;
        margin-left: auto;
    }

.list-item .icon-holder.secondary {
    margin-right: 0;
    margin-left: auto;
}

.list-item .image-holder {
    margin-right: 7px;
}

.list-item-default-icon .text-holder.flexed {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
    align-items: flex-start;
}

.list-item-default-icon .text-holder span {
    text-transform: uppercase;
    font-size: 14px;
    font-family: roboto-medium;
    line-height: 18px;
    color: var(--K1);
}

    .list-item-default-icon .text-holder span.lowercase {
        text-transform: lowercase !important;
    }

.list-item-default-icon .text-holder .list-default-icon-bottom-desc {
    text-transform: none;
    font-size: 12px;
    font-family: 'roboto-regular';
    line-height: 14px;
    color: var(--K2);
}

.list-item-default-icon .beneficiary-list-item-default-icon-a {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.beneficiary-list-item-default-icon-a:hover {
    background: var(--P2);
}

.beneficiary-list-item-default-icon .icon-holder {
    margin: 0;
    margin-right: 16px;
    height: 32px;
}

.beneficiary-list-item-default-icon .text-holder {
    row-gap: 4px;
}

    .beneficiary-list-item-default-icon .text-holder .main-label {
        text-transform: none;
        font-size: 16px;
        font-family: 'roboto-medium';
        line-height: 18px;
        color: var(--K1);
    }

    .beneficiary-list-item-default-icon .text-holder .bottom-label {
        text-transform: uppercase;
        font-size: 14px;
        font-family: 'roboto-medium';
        line-height: 18px;
        color: var(--K2);
    }

.list-item-for-split-the-bill {
    display: flex;
    align-items: flex-start;
    padding: 16px 24px 0;
}

    .list-item-for-split-the-bill .text-holder {
        display: flex;
        flex-direction: column;
        row-gap: 4px;
    }

        .list-item-for-split-the-bill .text-holder .main-label {
            text-transform: none;
            font-size: 16px;
            font-family: 'roboto-regular';
            line-height: 18px;
            color: var(--K1);
        }

        .list-item-for-split-the-bill .text-holder .bottom-label {
            text-transform: none;
            font-size: 14px;
            font-family: 'roboto-regular';
            line-height: 18px;
            color: var(--K2);
        }

.split-the-bill-box .amount-input-hold {
    display: flex;
    align-items: flex-start;
    column-gap: 16px;
    padding-right: 16px;
}

    .split-the-bill-box .amount-input-hold .amount-currency-span {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 11px 4px;
        width: 56px;
        font-family: roboto-medium;
        font-size: 12px;
        line-height: normal;
    }

    .split-the-bill-box .amount-input-hold .input-label-ico {
        padding-top: 4px;
        padding-right: 0;
    }

    .split-the-bill-box .amount-input-hold label {
        display: none;
    }

    .split-the-bill-box .amount-input-hold input {
        text-align: right;
    }

    .split-the-bill-box .amount-input-hold .input-label-amount-currency {
        padding-right: 0;
    }


.one-creditor-details {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    transition: all ease 0.3s;
}

    .one-creditor-details:hover {
        background: var(--P2);
    }

    .one-creditor-details .icon-holder {
        margin: 0;
        margin-right: 16px;
        height: 32px;
    }

        .one-creditor-details .icon-holder.secondary {
            margin-right: 0;
        }

    .one-creditor-details .text-holder {
        row-gap: 4px;
        display: flex;
        flex-direction: column;
        margin-right: auto;
    }

    .one-creditor-details .one-creditor-details-name {
        text-transform: none;
        font-size: 14px;
        font-family: 'roboto-regular';
        line-height: 18px;
        color: var(--K1);
    }

    .one-creditor-details .one-creditor-details-status {
        text-transform: uppercase;
        font-size: 14px;
        font-family: 'roboto-regular';
        line-height: 18px;
        color: var(--S1);
    }

    .one-creditor-details .one-creditor-details-amount {
        text-transform: uppercase;
        font-size: 16px;
        font-family: 'roboto-medium';
        line-height: 18px;
        color: var(--K1);
    }

.split-the-bill-box .account-div {
    margin-bottom: 24px;
}

.split-the-bill-box .transaction-list-item {
    margin-bottom: 24px;
    cursor: default;
}

    .split-the-bill-box .transaction-list-item .text-holder {
        max-width: calc(100% - 240px);
    }

        .split-the-bill-box .transaction-list-item .text-holder .transaction-list-item-desc {
            white-space: nowrap;
            max-width: calc(100% - 14px);
            overflow: hidden;
            text-overflow: ellipsis;
        }

.one-creditor-wrap {
    display: flex;
    margin-bottom: 24px;
    flex-wrap: wrap;
    width: 100%;
}

    .one-creditor-wrap .label-section {
        width: 100%;
    }

    .one-creditor-wrap .input-label-ico {
        flex: 1;
        padding-right: 16px;
    }

.one-creditor-icon-action {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 22px 24px 0 0;
    cursor: pointer;
    height: 54px;
}

#FriendsAddGroup {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-direction: column;
}

    #FriendsAddGroup .group {
        width: 100%;
    }

    #FriendsAddGroup .group-inner {
        margin: 0;
    }

        #FriendsAddGroup .group-inner .label-1 {
            display: none;
        }

    #FriendsAddGroup .input-icon-wrap {
        padding: 16px 24px;
        display: inline-block;
        width: 100%;
        text-align: center;
        font-family: 'roboto-medium';
        text-transform: uppercase;
        color: var(--P1);
        font-size: 14px;
    }

.grey-box #TransferSpecificationGroup {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-direction: column;
}

    .grey-box #TransferSpecificationGroup .group {
        width: 100%;
    }

    .grey-box #TransferSpecificationGroup .group-inner {
        margin: 0;
    }

        .grey-box #TransferSpecificationGroup .group-inner .label-1 {
            display: none;
        }

    .grey-box #TransferSpecificationGroup .input-icon-wrap {
        padding: 16px 24px;
        display: inline-block;
        width: 100%;
        text-align: center;
        font-family: 'roboto-medium';
        text-transform: uppercase;
        color: var(--P1);
        font-size: 14px;
    }

.language-list-item {
    display: block;
}

.popup-content-hold .input-icon-wrap {
    padding: 16px 24px;
    display: inline-block;
    width: 100%;
    text-align: center;
    font-family: 'roboto-medium';
    text-transform: uppercase;
    color: var(--P1);
    font-size: 14px
}

.language-list-item-a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 24px;
    transition: all ease 0.3s;
}

    .language-list-item-a:hover {
        background: var(--P2);
    }

.language-list-item .icon-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

.language-list-item-label {
    text-transform: none;
    font-size: 16px;
    font-family: 'roboto-medium';
    line-height: 18px;
    color: var(--K1);
}


.list-item-exchange-switch {
    display: flex;
    padding: 16px 24px;
    align-items: center;
    transition: all ease 0.3s;
    width: 100%;
}

    .list-item-exchange-switch:hover {
        background-color: var(--P2);
    }

    .list-item-exchange-switch .icon-holder {
        display: flex;
        align-items: center;
        width: 40px;
        height: 24px;
        margin-right: 16px;
    }

    .list-item-exchange-switch img {
        width: 100%;
    }

    .list-item-exchange-switch .text-holder {
        display: flex;
        flex-direction: column;
        row-gap: 4px;
        margin-right: auto;
    }

.list-item-exchange-switch-top-label {
    font-size: 14px;
    font-family: 'roboto-medium';
    color: var(--K1);
}

.list-item-exchange-switch-bottom-label {
    font-size: 12px;
    font-family: 'roboto-regular';
    color: var(--K2);
    text-transform: none;
}

.slide-div .search-holder {
    padding: 16px;
}

    .slide-div .search-holder.with-filter {
        display: flex;
        align-items: center;
    }

        .slide-div .search-holder.with-filter .icon-holder {
            height: 32px;
            width: 32px;
        }

.account-div {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--P1);
    border-radius: 4px;
    box-shadow: 4px 4px 8px 0px #00000026;
}

    .account-div .icon-text-hold {
        display: flex;
        margin-right: auto;
    }

        .account-div .icon-text-hold .icon-holder {
            margin-right: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .account-div .icon-text-hold .text-holder {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            row-gap: 4px;
        }

            .account-div .icon-text-hold .text-holder span {
                font-size: 14px;
                font-family: 'roboto-medium';
                line-height: 16px;
                color: var(--BG);
                text-transform: uppercase;
            }

            .account-div .icon-text-hold .text-holder .account-num {
                font-size: 14px;
                font-family: 'roboto-regular';
                line-height: 16px;
                text-transform: uppercase;
                color: var(--BG);
            }

    .account-div .amount-currency-holder {
        display: flex;
        align-items: center;
    }

        .account-div .amount-currency-holder .amount {
            font-size: 26px;
            font-family: 'roboto-black';
            color: var(--BG);
            margin-right: 8px;
        }

        .account-div .amount-currency-holder .select {
            margin-right: 16px;
        }

.card-div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    background-color: var(--P1);
    background-image: url('/webapp/Themes/StandardRedesign/img/icons/wave.png');
    background-position: bottom center;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 4px;
    box-shadow: 4px 4px 8px 0px #00000026;
    cursor: pointer;
}

    .card-div .icon-text-hold {
        display: flex;
        align-items: flex-start;
        margin-bottom: 16px;
    }

        .card-div .icon-text-hold .icon-holder {
            margin-right: auto;
        }

        .card-div .icon-text-hold .text-holder {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            row-gap: 4px;
        }

            .card-div .icon-text-hold .text-holder span {
                font-size: 14px;
                font-family: 'roboto-medium';
                line-height: 16px;
                color: var(--BG);
                text-align: right;
            }

            .card-div .icon-text-hold .text-holder .account-num {
                font-size: 14px;
                font-family: 'roboto-regular';
                line-height: 16px;
                text-transform: uppercase;
                color: var(--BG);
                text-align: right;
            }

    .card-div .available-balance {
        width: 100%;
        text-align: right;
        margin-bottom: 4px;
    }

        .card-div .available-balance span {
            font-family: 'roboto-regular';
            font-size: 12px;
            color: var(--BG);
            text-transform: none;
            text-align: right;
        }

    .card-div .amount-currency-holder {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
    }

        .card-div .amount-currency-holder .amount {
            font-size: 26px;
            font-family: 'roboto-black';
            color: var(--BG);
            margin-right: 8px;
        }

    .card-div.loan {
        background-color: var(--S2);
    }

    .card-div.savings {
        background-color: var(--OK);
    }

.cards-holder .card-div {
    margin-bottom: 48px;
}

.side-modal-popup .cards-holder {
    padding: 24px 24px 0;
}

.payment-list {
    row-gap: 24px;
}

    .payment-list .payment-list-item {
        /*margin-bottom: 24px;*/
    }

#CreditorGroup .uk-width-9-10 {
    float: left;
}

    #CreditorGroup .uk-width-9-10 .input-label-ico {
        width: 100% !important;
    }

#CreditorGroup .uk-width-1-10 {
    float: right;
    padding-top: 24px;
}

    #CreditorGroup .uk-width-1-10 .group-inner {
        margin-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        #CreditorGroup .uk-width-1-10 .group-inner .label-1 {
            display: none;
        }

#EmailGroupReview .uk-width-9-10 {
    float: left;
}

    #EmailGroupReview .uk-width-9-10 .input-label-ico {
        width: 100% !important;
    }

#EmailGroupReview .uk-width-1-10 {
    float: right;
    padding-top: 24px;
}

    #EmailGroupReview .uk-width-1-10 .group-inner {
        margin-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        #EmailGroupReview .uk-width-1-10 .group-inner .label-1 {
            display: none;
        }

.payment-list-item {
    display: flex;
    width: 100%;
    align-items: flex-start;
    padding: 16px;
}

    .payment-list-item .icon-holder {
        height: 64px;
        width: 64px;
        margin-right: 16px;
        margin-top: auto;
        margin-bottom: auto;
    }

    .payment-list-item .text-holder {
        display: flex;
        flex-direction: column;
        row-gap: 8px;
        width: 100%;
    }

        .payment-list-item .text-holder .payment-list-item-label {
            font-size: 16px;
            font-family: 'roboto-medium';
            color: var(--P1);
            text-transform: none;
        }

        .payment-list-item .text-holder .payment-list-item-main {
            font-size: 18px;
            font-family: 'roboto-medium';
            color: var(--K1);
        }

        .payment-list-item .text-holder .payment-list-item-desc {
            font-size: 16px;
            font-family: 'roboto-regular';
            color: var(--P0);
        }

        .payment-list-item .text-holder .payment-list-item-main span {
            font-size: 18px;
            font-family: 'roboto-medium';
            color: var(--K1);
        }

        .payment-list-item .text-holder .payment-list-item-desc span {
            font-size: 16px;
            font-family: 'roboto-regular';
            color: var(--P0);
        }

.payment-verification {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 40px;
}

    .payment-verification h3 {
        font-family: 'roboto-black';
        font-size: 26px;
        color: var(--K1);
        margin: 0;
        margin-bottom: 24px;
    }

    .payment-verification .payment-img-holder {
        margin-bottom: 24px;
    }

    .payment-verification .transaction-id {
        font-family: 'roboto-regular';
        font-size: 14px;
        color: var(--P0);
        margin: 0;
        margin-bottom: 8px;
        text-transform: uppercase;
    }

    .payment-verification .transaction-id-num {
        font-family: 'roboto-black';
        font-size: 16px;
        color: var(--K1);
        margin: 0;
        margin-bottom: 24px;
        text-transform: uppercase;
    }

    .payment-verification .transaction-desc {
        font-family: 'roboto-regular';
        font-size: 14px;
        line-height: 18px;
        color: var(--K1);
        margin: 0;
    }

        .payment-verification .transaction-desc a {
            color: var(--P0);
        }

.list-item-switch {
    display: flex;
    align-items: center;
    padding: 16px 24px;
}

    .list-item-switch .text-holder {
        font-family: 'roboto-medium';
        font-size: 14px;
        line-height: 18px;
        color: var(--K1);
        margin: 0;
        margin-right: auto;
    }



.radio-group-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 4px;
}

.list-holder-horizontal {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 24px;
}

    .list-holder-horizontal .list-item-default-icon-a {
        width: 33%;
        display: flex;
        align-items: center;
        padding: 16px 24px;
        cursor: pointer;
        transition: all ease 0.3s;
    }

    .list-holder-horizontal .list-item-default-icon {
        width: 33%;
        display: flex;
        align-items: center;
        padding: 16px 24px;
        cursor: pointer;
        transition: all ease 0.3s;
    }

        .list-holder-horizontal .list-item-default-icon:hover {
            background: var(--P2);
        }

    .list-holder-horizontal .list-item-default-icon-a .list-item-default-icon {
        width: 100%;
        padding: 0;
    }

.separator-date {
    display: block;
    padding: 16px 24px 8px;
    border-bottom: 1px solid var(--K3);
}

    .separator-date span {
        font-family: 'roboto-medium';
        font-size: 14px;
        line-height: 18px;
        color: var(--P0);
        margin-bottom: 4px;
    }

.exchange-table-head {
    display: flex;
    align-items: center;
    padding: 16px 24px 0;
    font-size: 14px;
    text-transform: uppercase;
    font-family: roboto-medium;
    color: var(--K2);
    column-gap: 48px;
}

.currency-table-title {
    margin-right: auto;
    padding: 16px 0;
}

.exchange-table-title {
    width: 80px;
    overflow: hidden;
    white-space: nowrap;
    text-align: right;
}

.exchange-widget-values {
    display: flex;
    align-items: center;
    column-gap: 48px;
}

.exchange-amount-value {
    font-size: 16px;
    font-family: roboto-medium;
    width: 80px;
    text-align: right;
    color: var(--K1);
}

.currency-list-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 24px;
}

    .currency-list-item:hover {
        background: var(--BG);
    }

    .currency-list-item .icon-holder {
        margin-right: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
    }

    .currency-list-item .currency-class {
        font-family: 'roboto-medium';
        font-size: 14px;
        color: var(--K2);
        margin-right: auto;
    }

    .currency-list-item .currency-converted-amount.currency-amount {
        font-family: 'roboto-medium';
        font-size: 14px;
        color: var(--K1);
        margin-right: auto;
    }

.list-items-hold {
    width: 100%;
}

.transaction-list-item .transaction-list-item-a {
    display: flex;
    align-items: center;
}

.transaction-list-item,
.transfer-list-item {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    transition: all ease 0.2s;
    cursor: pointer;
}

    .transaction-list-item:hover,
    .transfer-list-item:hover {
        background: var(--BG);
    }

    .transaction-list-item .date-holder,
    .transfer-list-item .date-holder {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-right: 16px;
        width: 32px;
    }

        .transaction-list-item .date-holder span,
        .transfer-list-item .date-holder span {
            font-family: 'roboto-regular';
            font-size: 12px;
            color: var(--K2);
            text-transform: uppercase;
        }

        .transaction-list-item .date-holder .date-num,
        .transfer-list-item .date-holder .date-num {
            font-family: 'roboto-medium';
            font-size: 16px;
            color: var(--K1);
        }

    .transaction-list-item .icon-holder,
    .transfer-list-item .icon-holder {
        margin-right: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .transaction-list-item .icon-holder.secondary {
            margin-right: 0;
        }

    .transaction-list-item .text-holder,
    .transfer-list-item .text-holder {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-right: auto;
        row-gap: 4px;
        width: -webkit-fill-available;
    }

        .transaction-list-item .text-holder .transaction-list-item-title,
        .transfer-list-item .text-holder .transfer-list-item-title {
            font-family: 'roboto-regular';
            font-size: 16px;
            color: var(--K1);
        }

        .transaction-list-item .text-holder .transaction-list-item-account,
        .transfer-list-item .text-holder .transfer-list-item-account {
            font-family: 'roboto-regular';
            font-size: 14px;
            color: var(--K2);
            text-transform: uppercase;
        }

        .transaction-list-item .text-holder .transaction-list-item-desc,
        .transfer-list-item .text-holder .transfer-list-item-desc {
            font-family: 'roboto-regular';
            font-size: 14px;
            color: var(--K2);
        }

        .transaction-list-item .text-holder .transaction-list-item-date,
        .transfer-list-item .text-holder .transfer-list-item-date {
            font-family: 'roboto-regular';
            font-size: 14px;
            color: var(--K2);
        }

        .transaction-list-item .text-holder .transaction-list-item-msg {
            font-family: 'roboto-regular';
            font-size: 14px;
            color: var(--K1);
        }

        .transaction-list-item .text-holder .transaction-list-item-amount,
        .transfer-list-item .transfer-list-item-amount {
            font-family: 'roboto-medium';
            font-size: 16px;
            color: var(--K1);
        }

    .transaction-list-item .amount-holder,
    .transfer-list-item .amount-holder {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        row-gap: 4px;
        margin-right: 16px;
    }

        .transaction-list-item .amount-holder .main-amount,
        .transfer-list-item .amount-holder .main-amount {
            font-family: 'roboto-medium';
            font-size: 16px;
            color: var(--K1);
            white-space: nowrap;
        }

        .transaction-list-item .amount-holder span {
            font-family: 'roboto-regular';
            font-size: 14px;
            color: var(--K2);
        }

    .transaction-list-item .status-span,
    .transfer-list-item .status-span {
        text-transform: uppercase;
        font-family: 'roboto-medium';
        display: inline-block;
        padding: 4px 8px;
        font-size: 12px;
        border: 1px solid;
        border-radius: 4px;
    }

        .transaction-list-item .status-span.active,
        .transaction-list-item .status-span.b,
        .transfer-list-item .status-span.matured,
        .transfer-list-item .status-span.active {
            color: var(--OK);
            background: var(--bgOK);
            border-color: var(--OK);
        }

        .transaction-list-item .status-span.accepted,
        .transfer-list-item .status-span.accepted,
        .transfer-list-item .status-span.executed,
        .transfer-list-item .status-span.paid {
            color: var(--OK);
            background: var(--bgOK);
            border-color: var(--OK);
        }

        .transaction-list-item .status-span.rejected,
        .transaction-list-item .status-span.v,
        .transfer-list-item .status-span.rejected,
        .transfer-list-item .status-span.not-paid,
        .transfer-list-item .status-span.blocked {
            color: var(--ERROR);
            background: var(--bgERROR);
            border-color: var(--ERROR);
        }

        .transaction-list-item .status-span.pending,
        .transaction-list-item .status-span.p,
        .transfer-list-item .status-span.unmatured,
        .transfer-list-item .status-span.pending {
            color: var(--S1);
            background: var(--bgS1);
            border-color: var(--S1);
        }

        .transaction-list-item .status-span.canceled,
        .transfer-list-item .status-span.canceled {
            color: var(--ERROR);
            background: var(--bgERROR);
            border-color: var(--ERROR);
        }

        .transaction-list-item .status-span.suspended,
        .transfer-list-item .status-span.suspended {
            color: var(--ERROR);
            background: var(--bgERROR);
            border-color: var(--ERROR);
        }

        .transaction-list-item .transaction-list-item-a .status-span.completed,
        .transfer-list-item .status-span.expired {
            color: var(--K2);
            background: var(--K4);
            border-color: var(--K2);
        }

    .transaction-list-item .transaction-list-item-a .status-span.expired {
        color: var(--K2);
        background: var(--K4);
        border-color: var(--K2);
    }

    .transaction-list-item.list-item-with-gap {
        column-gap: 16px !important;
    }

        .transaction-list-item.list-item-with-gap .icon-holder {
            margin-right: 0 !important;
        }

.latest-transactions-widget .transaction-list-item {
    cursor: default;
}

.transaction-list-item .transfer-list-item-action-icons,
.transfer-list-item .transfer-list-item-action-icons {
    display: flex;
    align-items: center;
    column-gap: 16px;
    cursor: pointer !important;
}

.transfer-list-item .transfer-list-item-name {
    font-family: 'roboto-medium';
    font-size: 14px;
    color: var(--K1);
}

.transfer-list-item .transfer-list-item-transfer-kind {
    font-size: 14px;
    color: var(--K1);
}

.transfer-list-item .transfer-check-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-right: 16px;
}

.transfer-list-item.with-two-text-holders .amount-holder {
    min-width: 115px;
}

.input-holder-date {
    padding: 8px 24px 30px;
}

.transfer-list-total-amount {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 16px 24px;
    column-gap: 16px;
}

    .transfer-list-total-amount .main-amount {
        font-family: 'roboto-medium';
    }

.bills-list {
    display: block;
    padding-top: 16px;
}

.input-holder-date label {
    font-family: 'roboto-regular';
    font-size: 14px;
    line-height: 18px;
    color: var(--K2);
    margin: 0;
}

#search-template-wrapper:focus-within {
    background-image: unset !important;
}

#search-message-wrapper:focus-within {
    background-image: unset !important;
}

.plain-list P {
    text-overflow: ellipsis;
    overflow: hidden;
}

.col-top-account h2 {
    text-overflow: ellipsis;
    overflow: hidden;
}

/*.account-slider .slick-slide {
    width: 305px !important;
}

.account-slider .slick-center {
    width: 426px !important;
}*/
.hint-pictures.hint-pictures-flex {
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
}

.hint-pictures li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 16px;
    padding: 16px 24px;
    cursor: pointer;
    transition: all ease 0.3s;
}

    .hint-pictures li:hover {
        background: var(--P2);
    }

    .hint-pictures li.active {
        background: var(--P2);
    }

    .hint-pictures li img {
        width: 32px;
        height: 32px;
    }

.list-item-default-icon-without-hover {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    transition: all 0.3s ease;
}

    .list-item-default-icon-without-hover .icon-holder {
        margin: 0;
        margin-right: 16px;
        height: 32px;
    }

    .list-item-default-icon-without-hover .text-holder span {
        text-transform: uppercase;
    }



.label-section-selfcare {
    display: inline-block;
    width: 100%;
    padding: 16px 0px;
    font-family: 'roboto-black';
    color: var(--K1);
}

    .label-section-selfcare h2 {
        font-family: 'roboto-black';
        font-size: 26px;
        color: var(--K1);
        margin: 0;
        margin-bottom: 4px;
    }

    .label-section-selfcare h4 {
        font-family: 'roboto-black';
        font-size: 16px;
        color: var(--P0);
        margin: 0;
        text-transform: lowercase;
    }

        .label-section-selfcare h4:first-letter {
            text-transform: uppercase;
        }

    .label-section-selfcare span {
        font-family: 'roboto-regular';
        font-size: 12px;
        color: var(--K2);
        margin: 0;
    }

    .label-section-selfcare.label-section-selfcare-small {
        margin-bottom: 0px;
    }

/* Account picker strelice */

.accounts-widget .slider-button-prev, .accounts-widget .slider-button-next {
    position: absolute;
    top: calc(50% + 15px);
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 50%;
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accounts-widget .slider-button-prev {
    left: 20px;
    margin-left: unset;
    background: white;
}

.accounts-widget .slider-button-next {
    right: 20px;
    margin-right: unset;
    background: white;
}

.accounts-widget .slider-button-prev:hover path {
    fill: var(--P1);
}

.accounts-widget .slider-button-next:hover path {
    fill: var(--P1);
}

​
/* Ispravka CSS-a za account picker sto skakuce */
.slick-slider .slick-list {
    max-height: 190px !important;
}

/********************** ANDREJ'S CSS CODES   **********************************************************************************************************************/

/************************  General stylization  ************************/

* {
    scroll-behavior: smooth;
}

#main-side {
    background-color: var(--BG);
    margin: 0 auto;
}

#page-content {
    margin-top: 80px;
}
/*********************** Login page ***********************/

#login-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    padding: 16px 24px;
    background: var(--P1);
}

    #login-header::after {
        content: '';
        position: absolute;
        bottom: -40px;
        left: 0;
        right: 0;
        height: 40px;
        width: 100vw;
        background: url(/webapp/Themes/StandardRedesign/img/bg/bg_waves.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    #login-header .site-branding {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: auto;
    }

    #login-header .site-logo {
        margin: 0;
        height: 34px;
    }

        #login-header .site-logo a {
            display: inline-block;
            width: 180px;
            height: 34px;
            text-indent: -9999px;
            overflow: hidden;
            margin: 0;
            cursor: pointer;
        }

.menu-btn {
    display: none;
}

#login-header .main-nav {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    column-gap: 24px;
}

    #login-header .main-nav .menu-item {
        width: 94px;
    }

        #login-header .main-nav .menu-item a {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 0 !important;
        }

            #login-header .main-nav .menu-item a .menu-icon-holder {
                margin: 0;
            }

            #login-header .main-nav .menu-item a span {
                font-size: 12px;
                font-family: 'roboto-regular';
                line-height: 16px;
                margin-right: unset;
                color: white;
                text-align: center;
                text-transform: none;
            }


    #login-header .main-nav .login-menu-item {
        margin-left: 72px;
    }

.mobile-menu {
    display: none;
}

.page-cover {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

    .page-cover img,
    .page-cover video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center right;
    }

    .page-cover video {
        width: 100vw;
        height: 100%;
        object-fit: cover;
    }



    .page-cover .inner {
        position: absolute;
        top: 50%;
        left: 12%;
        transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        padding-right: 20px;
    }



.mobile-detected .page-cover video,
.tablet-detected .page-cover video {
    display: none;
}



.mobile-detected .page-cover video,
.tablet-detected .page-cover video {
    display: none;
}

.login-content {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    zoom: 1;
}

    .login-content #form_upLoginForm {
        height: 100%;
        width: 100%;
    }



.prelogin-marketing-loginbox-flex {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100vw;
    height: 100vh;
}

.prelogin-marketing-hold {
    display: flex;
    flex-grow: 1;
    width: calc(100% - 429px);
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    padding: 24px 40px;
}

#login-content {
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 24px;
    background: rgb(7 72 97 / 60%);
}

#fake-login-content {
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 24px;
    background: rgb(7 72 97 / 60%);
}

.login-box {
    width: 381px;
    background: var(--BG);
    padding: 16px 24px;
    box-shadow: 4px 4px 8px 0px rgb(0 0 0 / 15%);
    border-radius: 8px;
    margin-bottom: 24px;
}

.prelogin-marketing-hold .prelogin-slider .inner {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 24px;
}

.prelogin-marketing-hold .prelogin-slider h2 {
    font-size: 48px;
    font-family: roboto-black;
    color: white;
}

.prelogin-marketing-hold .prelogin-slider h2 {
    margin: 0;
    font-size: 48px;
    font-family: roboto-black;
    color: white;
}

.prelogin-marketing-hold .prelogin-slider p {
    margin: 0;
    font-size: 18px;
    font-family: roboto-regular;
    color: white;
}

.login-box .login-error {
    padding: 10px;
    border: 2px solid var(--ERROR);
    font-size: 14px;
    color: var(--ERROR);
    padding-left: 50px;
    background: url(/webapp/Themes/StandardRedesign/img/icons/icon-alert.png) 10px center no-repeat;
    background-size: 24px;
}



.login-box .section-label {
    margin-bottom: 16px;
}

.login-box .input-1 {
    color: var(--K1);
}

.login-box .forgot-pass {
    font-size: 13px;
    color: var(--P1);
    font-style: italic;
}

    .login-box .forgot-pass a {
        color: var(--P1);
    }

.login-box .login-input-hold {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.login-box .login-input-hold, .login-box .group-submit, .login-box .forgot-pass, .login-box .paraf {
    padding: 0 24px;
}

    .login-box .group-submit.group-submit-no-padding {
        padding: 0;
    }

    .login-box .login-input-hold .group-inner {
        width: 100%;
    }

.login-input-hold.otp-input .input-1 {
    text-align: center;
    /*padding: 16px 24px;
    margin-top: 8px;*/
}

.login-input-hold.otp-input .label-1 {
    display: none;
}

.login-box .group-inner.checkbox-wrap {
    display: flex;
    align-items: center;
    column-gap: 16px;
    padding: 0 24px;
}

.login-box .group.qr-input-hold .group-inner {
    text-align: center;
    margin-bottom: 0;
}

    .login-box .group.qr-input-hold .group-inner label {
        display: none;
    }

.login-box .hint {
    font-size: 14px;
    color: var(--K2);
    width: auto;
    background: transparent;
    text-align: left;
    display: flex;
    column-gap: 16px;
    align-items: center;
    padding: 16px 24px;
    height: auto;
    width: 100%;
}

.login-box .group.qr-input-hold .list-item .list-item-main-label {
    font-size: 14px;
    font-family: roboto-regular;
}

.login-box .steps-input-hold .list-item .list-item-main-label {
    font-size: 14px;
    font-family: roboto-regular;
}

.login-box .hint img {
    /*float: left;*/
    width: 46px;
    height: 46px;
    /*position: relative;
            top: -16px;
            margin-right: 10px;*/
}

.login-box .group-submit .btn-1:first-child {
    margin-bottom: 10px;
}

.login-box .group-submit .btns-group-flex {
    display: flex;
    flex-direction: row-reverse;
    column-gap: 16px;
    margin-bottom: 16px;
}

    .login-box .group-submit .btns-group-flex button {
        margin: 0 !important;
    }

.title-1 {
    /*font-family: 'geomanist', sans-serif;*/
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
}

    .title-1 span {
        position: relative;
    }

        .title-1 span:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 36px;
            height: 3px;
        }

    .title-1.color-1 {
        color: var(--BG);
    }

        .title-1.color-1 span:after {
            background: var(--BG);
        }

    .title-1.color-2 {
        color: var(--P1);
    }

        .title-1.color-2 span:after {
            background: var(--P1);
        }

    .title-1.color-3 {
        color: var(--BG);
    }

        .title-1.color-3 span:after {
            background: var(--G3);
        }

.title-2 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
}

    .title-2 span {
        position: relative;
    }

        .title-2 span:after {
            content: '';
            position: absolute;
            bottom: -7px;
            left: 0;
            width: 30px;
            height: 3px;
        }

    .title-2.color-1 {
        color: var(--P1);
    }

        .title-2.color-1 span:after {
            background: var(--P1);
        }

    .title-2.color-2 {
        color: var(--BG);
    }

        .title-2.color-2 span:after {
            background: var(--BG);
        }

    .title-2.color-3 {
        color: var(--K1);
    }

        .title-2.color-3 span:after {
            background: var(--K1);
        }

    .title-2.title-full {
        border-bottom-width: 1px;
        border-bottom-style: solid;
        padding-bottom: 8px;
    }

        .title-2.title-full.color-3 {
            border-color: var(--P1);
        }

.login-footer {
    margin-top: 24px;
}

    .login-footer:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }


.social {
    zoom: 1;
    display: flex;
    align-items: center;
    column-gap: 24px;
}



    .social li {
        margin-right: 0;
    }

        .social li a {
            display: flex;
            align-items: center;
            justify-content: center;
        }


/* -------------------------------------------------------------------------- prelogin Header END *****************************************************************************/

/************************  Navigation styles  *************************/
#page-header-left .main-nav li:hover {
    background-color: var(--P2);
}

#page-header-left .mCSB_inside > .mCSB_container {
    margin-right: 0;
    height: calc(100vh - 80px);
    overflow-y: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

    #page-header-left .mCSB_inside > .mCSB_container::-webkit-scrollbar {
        display: none;
    }

#page-header-left .main-nav {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.menu-item {
    display: inline-block;
    width: 100%;
}

    .menu-item a {
        display: flex;
        padding: 16px 24px;
        flex-direction: row;
        align-items: center;
        width: 100%;
    }

    .menu-item.has-dash-border:before {
        content: '';
        display: inline-block;
        height: 1px;
        width: 100%;
        border-top: 1px dashed var(--BG);
        padding: 8px 0;
    }

    .menu-item.second-level-menu-main-item {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 16px 24px;
    }

        .menu-item.second-level-menu-main-item span {
            font-size: 14px;
            font-family: roboto-medium;
            line-height: 16px;
            margin-right: auto;
            text-transform: uppercase;
            color: var(--K2);
        }

    .menu-item.second-level-menu-item span {
        font-size: 14px;
        font-family: 'roboto-regular';
        line-height: 18px;
        margin-right: auto;
        text-transform: none;
        color: var(--P0);
    }

    .menu-item.second-level-menu-item .menu-icon-holder {
        height: 18px;
    }




    .menu-item a span {
        font-size: 12px;
        font-family: 'roboto-regular';
        line-height: 16px;
        margin-right: auto;
    }

    .menu-item.active-mobile-menu-item {
        background: var(--P2);
    }

        .menu-item.active-mobile-menu-item a span {
            color: var(--P0);
        }

#mobile-menu .menu-item .menu-icon-holder svg,
#mobile-menu .menu-item .menu-icon-holder img {
    filter: brightness(1) contrast(1) saturate(3) grayscale(1);
}

#mobile-menu .menu-item.active-mobile-menu-item .menu-icon-holder svg,
#mobile-menu .menu-item.active-mobile-menu-item .menu-icon-holder img {
    filter: none !important;
}

/*.menu-item.active-mobile-menu-item .menu-icon-holder path[stroke="#868686"] {
        stroke: #00A3E0;
    }

    .menu-item.active-mobile-menu-item .menu-icon-holder path[fill="#868686"] {
        fill: #00A3E0;
    }

    .menu-item.active-mobile-menu-item .menu-icon-holder rect[stroke="#868686"] {
        stroke: #00A3E0;
    }

    .menu-item.active-mobile-menu-item .menu-icon-holder rect[fill="#868686"] {
        fill: #00A3E0;
    }

    .menu-item.active-mobile-menu-item .menu-icon-holder line {
        stroke: #00A3E0;
    }*/
.menu-list-item {
    /* padding-top: 16px; */ /* Obrisati */
    display: inline-block;
    width: 100%;
}

    .menu-list-item a {
        padding: 16px 24px;
        width: 100%;
        text-align: left;
        display: flex;
        align-items: center;
    }

    .menu-list-item span {
        padding-left: 5px;
    }


.mCSB_inside > .mCSB_container {
    margin-right: 0;
}

.menu-list-header-label {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px 24px;
}

    .menu-list-header-label .second-menu-label-icon {
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 16px;
    }

    .menu-list-header-label span {
        font-family: 'roboto-medium';
        font-size: 14px;
        line-height: initial;
        text-transform: uppercase;
    }

.second-menu-close-btn {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px 24px;
}

    .second-menu-close-btn span {
        font-family: 'roboto-medium';
        font-size: 14px;
        line-height: initial;
        text-transform: uppercase;
    }

.lang-close-button {
    position: fixed;
    bottom: 20px;
    width: 100%;
    padding: 20px;
    text-align: center;
}

.menu-icon-holder {
    position: relative;
    height: 32px;
    width: 32px;
}

.unread-notifications {
    position: absolute;
    bottom: -3px;
    right: -8px;
    padding: 3px;
    min-width: 23px;
    height: 20px;
    display: flex;
    width: 22px;
    height: auto;
    font-weight: 600;
    color: var(--BG) !important;
    background: var(--ERROR);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.dashed-divider {
    display: inline-block;
    height: 1px;
    width: calc(100% - 16px);
    margin: 8px;
    border-top: 1px dashed var(--BG);
}

.line-divider {
    display: inline-block;
    height: 1px;
    width: calc(100% - 16px);
    margin: 8px;
    border-top: 1px dashed var(--P0);
}
/************************  Navigation styles END  *************************/

/************************  Dashboard styles  *************************/
.accounts-slider-header {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 0;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.4);
    padding: 0 8px;
}

.slider-tabs {
    margin-right: auto;
}

    .slider-tabs:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .slider-tabs li {
        position: relative;
    }

        .slider-tabs li a {
            display: inline-block;
            font-family: roboto-medium;
            font-size: 14px;
            text-transform: uppercase;
            padding: 16px;
            margin: 0 !important;
            width: max-content;
            transition: all ease 0.3s;
        }

        .slider-tabs li:after {
            content: '';
            display: block;
            width: 100%;
            height: 0px;
            position: absolute;
            bottom: 0;
            left: 0;
            background: var(--P1);
            -webkit-transition: height 0.3s ease;
            -moz-transition: height 0.3s ease;
            -o-transition: height 0.3s ease;
            transition: height 0.3s ease;
        }



        .slider-tabs li.active a {
            color: var(--BG);
        }

        .slider-tabs li:hover a {
            color: var(--P1) !important;
        }

        .slider-tabs li.active:hover a {
            color: var(--BG) !important;
        }

        .slider-tabs li.active:after {
            height: 3px;
        }

/* Accounts-widget ----------------------------------------------------------------------------------------------- */

.accounts-widget {
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 16px 16px 0;
    position: relative;
    -webkit-transition: height 0.5s ease;
    -moz-transition: height 0.5s ease;
    -o-transition: height 0.5s ease;
    transition: height 0.5s ease;
    background: var(--P0);
    border-radius: 0px 0px 16px 16px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 0;
    max-width: 1170px;
}

    .accounts-widget #account-list {
        padding-top: 16px;
    }

    .accounts-widget .bg-overlay {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        opacity: 0.1;
    }

    .accounts-widget .overlay-1 {
        background-image: url(/webapp/Themes/StandardRedesign/img/bg/bg-1.jpg);
    }



.option-search {
    margin-right: 24px !important;
}

.list-options-side {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

    .list-options-side:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .list-options-side li {
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 0px;
    }

        .list-options-side li.active rect[stroke="#fff"] {
            stroke: var(--P1);
        }

        .list-options-side li.active rect[fill="#fff"] {
            fill: var(--P1);
        }

        .list-options-side li:hover rect[stroke="#fff"] {
            stroke: var(--P1);
        }

        .list-options-side li:hover rect[fill="#fff"] {
            fill: var(--P1);
        }

        .list-options-side li.active path[stroke="#fff"] {
            stroke: var(--P1);
        }

        .list-options-side li.active path[fill="#fff"] {
            fill: var(--P1);
        }

        .list-options-side li:hover path[stroke="#fff"] {
            stroke: var(--P1);
        }

        .list-options-side li:hover path[fill="#fff"] {
            fill: var(--P1);
        }

        .list-options-side li.active line[stroke="#fff"] {
            stroke: var(--P1);
        }

        .list-options-side li:hover line[stroke="#fff"] {
            stroke: var(--P1);
        }

#search-bar-acc-number {
    color: var(--BG);
}

.account-slider .slick-slide {
    position: relative;
}

    .account-slider .slick-slide:after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        display: block;
    }

    .account-slider .slick-slide.slick-center:after {
        display: none;
    }

.account-slider {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    margin-bottom: 25px;
}

    .account-slider .swiper-container {
        overflow: visible;
    }

    .account-slider .slide {
        padding: 0 12px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
    }

    .account-slider .slick-track {
        display: flex;
        align-items: center;
        height: 214px !important;
        overflow: hidden;
        transition: all ease 0.6s;
    }

    .account-slider .slick-list {
        overflow: hidden;
        overflow-y: visible;
        max-width: 960px;
        margin: 0 auto;
    }

.widget-options.widget-options-account {
    padding: 2px 8px;
    display: none;
}

.one-card-slide .widget-options.widget-options-account {
    padding: 0;
}

.slick-center .widget-options.widget-options-account {
    display: block;
}

.card-company-logo-date-hold {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 4px;
    color: white;
}

    .card-company-logo-date-hold .card-company-expdate p {
        margin-bottom: 0;
    }

.account-slider .account-box {
    width: 378px;
    margin: 0 auto;
    opacity: 0.4;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    box-shadow: 0 5px 28px 8px transparent;
    -webkit-box-shadow: 0 5px 28px 8px transparent;
}

    .account-slider .account-box.cards-account-box {
        margin-top: 0 !important;
        width: 327px !important;
        overflow: hidden;
        transform: scale(0.8);
        height: auto;
        width: 257px !important;
        height: 131px;
        min-height: auto !important;
        margin-top: 30px !important;
    }

    .account-slider .account-box.cards-account-box {
        background: linear-gradient(56.26deg, #000000 -2.89%, rgba(7, 72, 97, 0.9) 36.18%, rgba(7, 72, 97, 0) 98.08%, rgba(7, 72, 97, 0) 98.08%),url(/webapp/Themes/StandardRedesign/img/photos/card-visuals.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

        .account-slider .account-box.cards-account-box.visa-electron, .account-slider .account-box.cards-account-box.visa-standard {
            background: linear-gradient(56.26deg, #000000 -2.89%, rgba(7, 72, 97, 0.9) 36.18%, rgba(7, 72, 97, 0) 98.08%, rgba(7, 72, 97, 0) 98.08%),url(/webapp/Themes/StandardRedesign/img/photos/card-visuals-visa.png);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
        }

        .account-slider .account-box.cards-account-box.master-standard {
            background: linear-gradient(56.26deg, #000000 -2.89%, rgba(7, 72, 97, 0.9) 36.18%, rgba(7, 72, 97, 0) 98.08%, rgba(7, 72, 97, 0) 98.08%),url(/webapp/Themes/StandardRedesign/img/photos/card-visuals.png);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
        }

.account-slider .slick-center .account-box {
    opacity: 1;
    padding: 16px;
    width: 378px !important;
    min-height: 190px !important;
    margin: 0 auto !important;
    transform: none;
}

.account-slider .slick-center.one-card-slide .account-box {
    min-height: 202px !important;
}

.account-slider .slick-dots {
    display: none !important;
}

.account-slider .swiper-pagination-1 {
    display: none;
    position: absolute;
    bottom: 17px;
    width: 100%;
    text-align: center;
    z-index: 50;
}

.account-slider .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: transparent;
    border: 2px solid var(--BG);
    opacity: 1;
    margin: 0 4px;
}

.account-slider .swiper-pagination-bullet-active {
    background: var(--BG);
}

.account-slider .owl-pagination {
    text-align: center;
}

.accounts-widget .slider-button-prev:hover,
.accounts-widget .slider-button-next:hover {
    opacity: 1;
}

.card-status-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

    .card-status-overlay.valid {
        display: none !important;
    }

.card-status-hold {
    display: flex;
    align-items: center;
    padding: 9px 8px;
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 28px;
    background: white;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'roboto-medium';
    color: var(--K1);
    line-height: 13px;
}

.card-status-icon-hold {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -12px;
    height: 32px;
    width: 32px;
    border-radius: 50%;
}

    .card-status-icon-hold.orange {
        background: var(--S1);
    }

    .card-status-icon-hold.purple {
        background: var(--S2);
    }

    .card-status-icon-hold.red {
        background: var(--ERROR);
    }

.account-box.account-bg-1 {
    background: var(--P1) url(/webapp/Themes/StandardRedesign/img/bg/acc-bg-1.png) center bottom no-repeat;
    background-size: 100%;
}

.account-box.account-bg-2 {
    background: var(--OK) url(/webapp/Themes/StandardRedesign/img/bg/acc-bg-1.png) center bottom no-repeat;
    background-size: 100%;
}

.account-box.account-bg-3 {
    background: var(--S2) url(/webapp/Themes/StandardRedesign/img/bg/acc-bg-1.png) center bottom no-repeat;
    background-size: 100%;
}

.account-box.account-bg-4 {
    background: var(--P0) url(/webapp/Themes/StandardRedesign/img/bg/acc-bg-1.png) center bottom no-repeat;
    background-size: 100%;
}

.account-div.account-div-loan {
    background: var(--S2);
}

.account-div.account-div-savings {
    background: var(--OK);
}

.account-div.account-div-card {
    background: var(--P0);
}

.account-box {
    display: flex;
    flex-direction: column;
    padding-top: 16px;
    padding-right: 16px;
    padding-left: 16px;
    padding-bottom: 16px;
    position: relative;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
}

.slick-slide .account-box {
    width: 257px !important;
    height: auto;
    min-height: auto !important;
    margin-top: 30px !important;
    overflow: hidden;
}

.account-box .account-main {
    display: flex;
    align-items: flex-start;
    margin-bottom: auto;
    justify-content: space-between;
}

.account-box .acc-img {
    width: 48px;
    height: 48px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    border-radius: 100%;
    overflow: hidden;
    margin-right: auto;
}

.account-box .card-account-main-hold {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.account-box.cards-account-box .account-main {
    flex-direction: column;
    margin-right: auto;
}

.account-box.cards-account-box .card-bank-logo {
    display: flex;
    margin-bottom: 16px;
}

.card-title-holder {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}

.slick-center .account-box .acc-img {
    width: 60px;
    height: 60px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    border-radius: 100%;
    overflow: hidden;
    margin-right: auto;
}

.account-box .acc-img img {
    width: 100%;
    height: 100%;
}

.slick-center .default-acc-img .acc-img {
    width: 60px;
    height: 60px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    border-radius: 100%;
    overflow: hidden;
    margin-right: auto;
}

.account-box .default-acc-img img {
    width: 100%;
    height: 100%;
}

.account-box .acc-nr {
    font-family: 'roboto-regular', sans-serif;
    font-size: 12px;
    line-height: 16px;
    color: var(--BG);
    margin-bottom: 0px;
    text-align: right;
}

.slick-slider .account-box .acc-nr {
    font-size: 9px;
    line-height: 11px;
}

.slick-slider .slick-center .account-box .acc-nr {
    font-size: 12px;
    line-height: 16px;
}

.account-box .acc-name {
    font-size: 14px;
    line-height: 16px;
    color: var(--BG);
    text-align: right;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-transform: uppercase;
    font-family: 'roboto-medium';
    margin-bottom: 4px;
}

.slick-slider .account-box .acc-name {
    font-size: 10px;
    line-height: 12px;
    color: var(--BG);
    text-align: right;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-transform: uppercase;
    font-family: 'roboto-medium';
    margin-bottom: 4px;
}

.slick-slider .account-box.cards-account-box .acc-name {
    text-align: left;
    font-family: roboto-black;
    line-height: 14px;
    font-size: 12px;
}

.account-box.cards-account-box .acc-nr, .account-box.cards-account-box .acc-card-brand {
    text-align: left;
    font-family: roboto-medium;
    margin-bottom: 4px;
    color: var(--BG);
    font-size: 12px;
    line-height: 14px;
    text-transform: none;
}

.slick-center .account-box .acc-name {
    font-size: 14px;
    line-height: 16px;
}

.account-box .main-balance {
    zoom: 1;
    display: flex;
    flex-direction: row-reverse;
}

    .account-box .main-balance:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .account-box .main-balance p {
        font-size: 26px;
        line-height: 30px;
        color: var(--BG);
        margin-bottom: 0;
        font-family: roboto-black;
    }

.account-box .select-2 {
    width: 60px;
    float: right;
    position: relative;
    margin-left: 10px;
    display: flex;
}

.account-box .acc-balance-txt {
    font-family: 'roboto-regular', sans-serif;
    font-size: 12px;
    line-height: 16px;
    color: var(--BG);
    text-align: right;
    margin-bottom: 4px;
}

.account-box .small-balance {
    font-size: 18px;
    color: var(--BG);
    text-align: left;
    font-weight: 600;
    margin-bottom: 5px;
}

    .account-box .small-balance span {
        font-size: 17px;
    }



.account-box .btn-1 {
    line-height: 28px;
}



.accounts-widget.single-slide .account-slider .account-box {
    opacity: 1;
}

.widget-options {
    cursor: pointer;
}

.rearange-on .widget-options {
    display: none;
}

.widget-options .trigger {
    cursor: pointer;
    width: auto;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 2px;
}

    .widget-options .trigger.color-2 li {
        background: var(--P0);
    }

    .widget-options .trigger li {
        width: 4px;
        height: 4px;
        background: var(--BG);
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        -ms-border-radius: 100%;
        border-radius: 100%;
        margin-bottom: 2px;
    }

    .widget-options .trigger.color-1 li {
        background: var(--P1);
    }

.widget-options .options-list {
    position: absolute;
    top: 18px;
    right: 16px;
    display: none;
    background: var(--BG);
    box-shadow: 4px 4px 8px 0px rgb(0 0 0 / 15%);
    -webkit-box-shadow: 4px 4px 8px 0px rgb(0 0 0 / 15%);
    padding: 0;
    z-index: 999999999;
    border-radius: 8px;
}

    .widget-options .options-list a {
        display: inline-block;
        font-family: 'roboto-medium';
        color: var(--K1);
        width: 100%;
        font-size: 14px;
        line-height: 16px;
        text-transform: uppercase;
        white-space: nowrap;
        padding: 16px 24px;
        -webkit-transition: color 0.24s ease;
        -moz-transition: color 0.24s ease;
        -o-transition: color 0.24s ease;
        transition: color 0.24s ease;
    }

        .widget-options .options-list a:hover {
            color: var(--P0);
        }

    .widget-options .options-list.color-1 {
        background: var(--P1);
    }

        .widget-options .options-list.color-1 a:hover {
            color: var(--P0);
        }

.widget-options-visible {
    position: absolute;
    top: 10px;
    right: 5px;
    padding: 0 4px;
}

    .widget-options-visible .trigger {
        list-style: circle;
    }


.account-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.15);
}

    .account-list .list-item {
        display: flex;
        padding: 8px 16px;
        opacity: 0.4;
        border-radius: 4px;
        cursor: pointer;
    }

        .account-list .list-item[style="display: block;"] .inner {
            display: flex !important;
            align-items: center;
        }

        .account-list .list-item.selected {
            opacity: 1;
        }

    .account-list .inner {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .account-list .list-item.list-item-for-cards {
        background: var(--BG);
    }

    .account-list .list-bg-1 {
        background-color: var(--P1);
    }

    .account-list .list-bg-2 {
        background-color: var(--OK);
    }

    .account-list .list-bg-3 {
        background-color: var(--S2);
    }

    .account-list .list-bg-4 {
        background-color: var(--P0);
    }

    .account-list .inner:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .account-list img {
        height: 48px;
        width: 48px;
        border-radius: 50%;
        border: 1px solid var(--BG);
        margin-right: 16px;
    }

    .account-list .list-item-for-cards .icon-hold.brand-icon {
        height: auto;
        width: 40px;
        margin-right: 16px;
    }

.list-item-account-name-hold {
    display: flex;
    flex-direction: column;
    margin: 0;
    margin-top: 0;
    justify-content: center;
    margin-right: auto;
}

    .list-item-account-name-hold .acc-name {
        font-size: 14px;
        font-family: 'roboto-medium';
        line-height: 16px;
        color: var(--BG);
        text-transform: uppercase;
    }

    .list-item-account-name-hold .acc-num {
        font-size: 12px;
        font-family: 'roboto-regular';
        line-height: 16px;
        color: var(--BG);
    }

.list-item-for-cards .list-item-account-name-hold {
    row-gap: 4px;
}

    .list-item-for-cards .list-item-account-name-hold .acc-name {
        font-size: 16px;
        font-family: roboto-black;
        line-height: 19px;
        color: var(--K1);
        text-transform: uppercase;
    }

    .list-item-for-cards .list-item-account-name-hold .acc-card-brand {
        font-size: 14px;
        font-family: 'roboto-medium';
        line-height: 16px;
        color: var(--K1);
        text-transform: uppercase;
    }

    .list-item-for-cards .list-item-account-name-hold .acc-nr {
        font-size: 14px;
        font-family: 'roboto-regular';
        line-height: 16px;
        color: var(--K2);
        text-transform: uppercase;
    }

.account-list .list-item .amount {
    font-size: 26px;
    font-family: 'roboto-black';
    color: var(--BG);
    margin-right: 8px;
}

.account-list .list-item.list-item-for-cards .amount {
    color: var(--K1);
}

.ui-widget {
    font-family: roboto-regular;
}

.list-item.list-item-for-cards .select-2 .ui-selectmenu-button, .list-item.list-item-for-cards .select-2 .dd-selected {
    border-color: var(--P1);
}

    .list-item.list-item-for-cards .select-2 .ui-selectmenu-button span.ui-icon {
        border-color: var(--P1) transparent transparent transparent;
    }

    .list-item.list-item-for-cards .select-2 .ui-selectmenu-button span.ui-selectmenu-text {
        color: var(--K1);
    }

.account-list .list-item .select-2 {
    margin-right: 16px;
}

.account-list .list-item .fancy-select {
    display: flex;
}



.account-list .widget-options-list {
    margin-right: 16px;
}

.account-list .drag {
    display: flex;
    align-items: center;
    justify-content: center;
}



.account-list .col-1 h2 {
    font-size: 20px;
    color: var(--BG);
    font-weight: 300;
    line-height: 35px;
    margin-bottom: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    -webkit-transition: color 0.24s ease;
    -moz-transition: color 0.24s ease;
    -o-transition: color 0.24s ease;
    transition: color 0.24s ease;
}

.account-list .col-1 p {
    font-size: 12px;
    color: var(--K2);
    letter-spacing: 0.5px;
    line-height: 12px;
    text-transform: uppercase;
    margin-bottom: 0;
    position: relative;
    top: -2px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    /*font-weight: bold;*/
}

.account-list .col-2 {
    width: 45%;
    text-align: right;
    margin-top: 4px;
    padding-right: 10px;
    zoom: 1;
}

    .account-list .col-2:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .account-list .col-2 .amount {
        float: right;
        font-size: 30px;
        font-weight: 500;
        line-height: 48px;
        color: var(--BG);
        margin-bottom: 0;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        -webkit-transition: color 0.24s ease;
        -moz-transition: color 0.24s ease;
        -o-transition: color 0.24s ease;
        transition: color 0.24s ease;
    }

    .account-list .col-2 .trigger {
        width: 60px;
        margin: 4px 20px 0px 10px;
        background: var(--P0);
        border: none;
        color: var(--BG);
        border-radius: 0;
    }

        .account-list .col-2 .trigger:after {
            top: 16px;
            right: 7px;
            border-top-color: var(--BG);
        }

.account-list div.fancy-select ul.options.open {
    top: 40px;
    left: 10px;
    min-width: 60px;
    text-align: center;
    background: var(--P0);
    color: var(--BG);
}

.account-list div.fancy-select ul.options li {
    color: var(--BG);
    transition: all ease 0.3s;
}

    .account-list div.fancy-select ul.options li:hover {
        background: #374e61;
    }

    .account-list div.fancy-select ul.options li.selected {
        background: #374e61;
        color: rgba(255, 255, 255, 0.75);
    }

.account-list .selected .inner {
    opacity: 1;
}

.account-list .col-2 .select-3 {
    float: right;
}

.account-list .col-2 .icon-wrap {
    float: right;
    height: 44px;
    /*   border-left: 1px solid #a0a2a5;*/
}

    .account-list .col-2 .icon-wrap i {
        display: inline-block;
        width: 26px;
        height: 53px;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 26px;
        margin-left: 20px;
        margin-right: 15px;
    }

.more-list {
    min-width: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: var(--BG);
    line-height: 20px;
    text-transform: uppercase;
    text-align: center;
    -webkit-transition: background 0.3s ease;
    -moz-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
    transition: background 0.3s ease;
    text-align: center;
    position: relative;
}

    .more-list .show-txt {
        display: inline-block;
        color: var(--BG);
    }

    .more-list .hide-txt {
        display: none;
        color: var(--BG);
    }

    .more-list .arrow {
        display: inline-block;
        width: 10px;
        height: 7px;
        transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        background: url(/webapp/Themes/StandardRedesign/img/icons/arrow-bottom-1.png) 0 0 no-repeat;
        position: absolute;
        top: 22px;
        left: 50%;
        margin-left: -5px;
    }

    .more-list.active .show-txt {
        display: none;
    }

    .more-list.active .hide-txt {
        display: inline-block;
    }

    .more-list.active .arrow {
        transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
    }

.widget-title-with-options {
    display: flex;
    align-items: center;
    padding: 24px 24px 8px;
}

.widget-title-p {
    margin-bottom: 11px;
    padding-bottom: 4px;
    font-family: 'roboto-medium';
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    color: var(--P0);
    border-bottom: 1px solid var(--K3);
    width: 100%;
}

.widget-grid .widget-h-1 .widget-inner.quick-actions-inner {
    height: max-content;
}

.my-widget {
    background: white;
}

.tips-and-tricks-widget .widget-content-inner {
    overflow: auto;
}

.section-label {
    display: flex;
    padding: 16px 24px 8px;
    font-family: roboto-bold;
    font-size: 16px;
    line-height: 19px;
    margin: 0;
    margin-right: auto;
    color: var(--P0);
}


.flex-widget-header {
    display: flex;
    align-items: center;
    padding: 16px 24px 8px;
}

    .flex-widget-header .widget-options .trigger {
        height: unset;
    }

    .flex-widget-header .widget-header-title {
        font-family: roboto-bold;
        font-size: 16px;
        line-height: 32px;
        margin: 0;
        margin-right: auto;
        color: var(--P0);
        text-transform: none;
    }

.widget-content {
    background: var(--K4);
    border-radius: 8px;
    padding-bottom: 16px;
    display: flex;
    flex-direction: column;
}

.widget-content-inner {
    min-height: 300px;
    position: relative;
}

    .widget-content-inner.transactions-widget-content-inner {
        min-height: 500px !important;
    }

.transactions-widget-content-inner .empty-state-div,
.statements-box .empty-state-div {
    margin-top: 50px;
}

.widget-map .widget-content {
    padding-bottom: 0;
}

    .widget-map .widget-content .widget-content-inner {
        height: 100%;
    }

    .widget-map .widget-content .widget-tabs {
        padding: 16px 0 3px;
        justify-content: center;
        overflow: hidden;
    }

        .widget-map .widget-content .widget-tabs li {
            width: 100%;
            text-align: center;
        }

.widget-content:after {
    content: '';
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
}

.full-width-container.rearange-on .widget-content:after {
    display: block;
}

.empty-state-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.empty-state-span {
    font-size: 14px;
    color: var(--K2);
    font-family: 'roboto-regular';
    margin-top: 32px;
}

.app_customization_div { /*narrow popup za app customization*/
    padding: 25px !important;
}

.app_customization_button {
    width: 40% !important;
    cursor: pointer !important;
}


.col-ls-8 .widget-content, .col-ls-16 .widget-content {
    height: 490px;
}

.widget-buttons {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    column-gap: 16px;
}

.widget-button {
    padding: 16px 0;
    font-family: 'roboto-medium';
    text-transform: uppercase;
    font-size: 14px;
    color: var(--P1);
    width: 100%;
    text-align: center;
    cursor: pointer;
    transition: all ease 0.3s;
    background-color: transparent;
}

    .widget-button:hover {
        color: var(--K1);
    }

.custom-exchange-widget {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px 24px 0;
    row-gap: 40px;
    margin-top: 20px;
}

.currency-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 24px;
    flex-direction: column;
    row-gap: 16px;
}

    .currency-wrapper img {
        width: 60px;
    }

.custom-exchange-widget .currency-date {
    font-size: 14px;
    font-family: 'roboto-medium';
    color: var(--P1);
}

.custom-exchange-widget .custom-currency-details {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 16px;
}

.custom-exchange-widget .one-rate {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 16px;
    width: 100%;
}

    .custom-exchange-widget .one-rate .rate-heading {
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
        color: var(--K2);
    }

.custom-exchange-widget .currency-detail {
    font-size: 26px;
    font-family: 'roboto-black';
    line-height: 31px;
    color: var(--P0);
}

.widget-header .table-head {
    padding: 0;
}

.grid-options {
    display: flex;
    margin-left: 24px;
    column-gap: 16px;
}

    .grid-options .widget-select {
        padding: 0;
    }

    .grid-options .grid-option-a {
        height: 100%;
        width: 100%;
        display: inline-block;
        cursor: pointer;
    }

.grid-option.option-dropdown {
    position: relative;
}

.grid-options .widget-select-menu {
    width: 260px;
    position: absolute;
    top: 30px;
    right: 0;
    background: var(--BG);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 20px 10px rgb(0 0 0 / 10%);
    box-shadow: 0 0 20px 10px rgb(0 0 0 / 10%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 16px;
}

    .grid-options .widget-select-menu li {
        padding: 10px 0;
        font-size: 14px;
        color: #354756;
    }

    .grid-options .widget-select-menu .checkbox-1 {
        float: right;
        position: relative;
        top: -2px;
    }

.widget-grid .cnt {
    padding: 16px 24px 8px;
}

.widget-header .col-left h2 {
    margin-bottom: 0;
}

.widget-header .col-right .widget-options .trigger {
    flex-direction: column;
}

.widget-grid .widget {
    background: none;
    float: left;
    border: none;
    padding: 0;
    margin-bottom: 0;
    width: 100%;
    height: max-content !important;
}

.actions-wrap {
    zoom: 1;
    margin-top: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

    .actions-wrap .action-box {
        width: 25%;
        display: flex;
        border-radius: 4px;
    }

        .actions-wrap .action-box a {
            width: 100%;
            padding: 16px 24px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            -webkit-transition: background 0.3s ease;
            -moz-transition: background 0.3s ease;
            -o-transition: background 0.3s ease;
            transition: background 0.3s ease;
        }

            .actions-wrap .action-box a:hover {
                background-color: var(--P2);
            }

        .actions-wrap .action-box .action-text {
            font-size: 14px;
            text-transform: uppercase;
            font-family: 'roboto-medium';
            color: var(--K1);
        }

        .actions-wrap .action-box .action-box-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0;
            margin-right: 16px;
        }

.widget-tabs {
    display: flex;
    align-items: center;
    border-radius: 8px 8px 0 0;
    overflow-x: auto;
}

    .widget-tabs li.active a {
        color: var(--P1);
    }

    .widget-tabs li.active:hover a {
        color: var(--P1);
    }

    .widget-tabs li:hover a {
        color: var(--K2);
    }

    .widget-tabs.centered-tabs {
        justify-content: center;
    }

    .widget-tabs li {
        position: relative;
    }

        .widget-tabs li:after {
            content: '';
            display: block;
            width: 100%;
            height: 0px;
            background: var(--P1);
            position: absolute;
            bottom: 0px;
            left: 0;
            -webkit-transition: height 0.3s ease;
            -moz-transition: height 0.3s ease;
            -o-transition: height 0.3s ease;
            transition: height 0.3s ease;
        }

        .widget-tabs li a {
            display: inline-block;
            width: 100%;
            color: var(--K2);
            padding: 16px;
            font-family: roboto-medium;
            font-size: 14px;
            text-transform: uppercase;
            cursor: pointer;
            -webkit-transition: color 0.3s ease;
            -moz-transition: color 0.3s ease;
            -o-transition: color 0.3s ease;
            transition: color 0.3s ease;
            text-align: center;
            white-space: nowrap;
        }

        .widget-tabs li:hover a {
            color: var(--P1);
        }

.inbox-status-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0 8px;
}

.widget-tabs.stand-alone {
    padding: 0;
}

#template-for-groupping .widget-tabs {
    padding: 0;
    overflow-x: auto;
}

.currency-direction-tabs button {
    display: inline-block;
    width: 100%;
    color: var(--K2);
    padding: 16px;
    font-family: roboto-medium;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
    text-align: center;
    background: none;
    border-bottom: 2px solid transparent;
}

    .currency-direction-tabs button[clicked="true"] {
        color: var(--P1);
        border-color: var(--P1);
    }

    .currency-direction-tabs button:hover {
        color: var(--P1);
    }

    .currency-direction-tabs button[clicked="true"]:hover {
        color: var(--P1);
    }

.login-box .widget-tabs {
    padding: 0 0 24px;
    justify-content: center;
}

.inbox-status-wrap .inbox-one-status {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    flex-direction: column;
    text-align: center;
    width: 100%;
}

    .inbox-status-wrap .inbox-one-status span {
        text-transform: uppercase;
        font-size: 12px;
        font-family: 'roboto-medium';
        word-break: break-word;
    }

    .inbox-status-wrap .inbox-one-status.unread-msgs span {
        color: var(--P1);
    }

    .inbox-status-wrap .inbox-one-status.total-msgs span {
        color: var(--K1);
    }

    .inbox-status-wrap .inbox-one-status .msg-count {
        font-size: 26px;
        font-family: 'roboto-black';
        line-height: 31px;
    }


.copied-span {
    display: inline-block;
    position: absolute;
    color: var(--K2);
    bottom: -15px;
    right: 0;
    width: max-content;
    font-size: 12px;
    transform: translateY(-50%);
}

.list-item {
    display: flex;
    align-items: center;
    padding: 10px 24px;
    break-inside: avoid-column;
}

    .list-item .icon-holder {
        display: flex;
        align-items: center;
        margin-right: 16px;
    }

    .list-item .icon-holder-button {
        display: flex;
        align-items: center;
        margin-right: 16px;
        width: 32px;
        float: right;
    }


    .list-item .text-holder {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        width: 100%;
    }

    .list-item .list-item-top-label {
        font-size: 14px;
        font-family: roboto-regular;
        line-height: 18px;
        color: var(--K2);
        margin-bottom: 4px;
    }

    .list-item .list-item-main-label {
        font-size: 16px;
        font-family: roboto-regular;
        line-height: 19px;
        color: var(--K1);
    }

    .list-item .list-item-bottom-label {
        font-size: 14px;
        font-family: roboto-regular;
        line-height: 16px;
        color: var(--K2);
        word-break: break-word;
    }

    .list-item[data-read="True"] .list-item-main-label {
        font-family: roboto-regular;
    }

    .list-item.list-item-card .text-holder span {
        margin-bottom: 4px;
    }

        .list-item.list-item-card .text-holder span:last-child {
            margin-bottom: 0;
        }

    .list-item.msg-item {
        transition: all ease 0.3s;
    }

        .list-item.msg-item:hover {
            background: var(--BG);
        }

        .list-item.msg-item .list-item-top-label {
            font-size: 12px;
            line-height: 16px;
        }

        .list-item.msg-item .list-item-main-label {
            font-size: 16px;
            font-family: roboto-medium;
            line-height: 18px;
        }

.selectOpenOptionsFieldUnselected {
    border-width: 0;
}

.selectOpenOptionsFieldSelected {
    border: solid 2px var(--P1)
}

.side-modal .list-item.msg-item:hover {
    background: var(--P2);
}

.bill-issuer-list-item {
    cursor: pointer;
    transition: all ease 0.3s;
}

    .bill-issuer-list-item .text-holder {
        row-gap: 4px;
    }

    .bill-issuer-list-item:hover {
        background: var(--SU);
    }

.list-item-card-name {
    font-size: 16px;
    font-family: roboto-medium;
    line-height: 19px;
    color: var(--K1);
}

.list-item-card-number {
    font-size: 14px;
    font-family: 'roboto-regular';
    line-height: 18px;
    color: var(--K2);
}

.list-item-card-amount {
    font-size: 16px;
    font-family: 'roboto-black';
    line-height: 19px;
    color: var(--K1);
}

.list-item-card-desc {
    font-size: 14px;
    font-family: 'roboto-regular';
    line-height: 18px;
    color: var(--K2);
}

.tips-icon-holder {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.tips-slider-hold {
    padding: 16px 24px;
}

    .tips-slider-hold li {
        font-size: 16px;
        line-height: 1.6;
        font-family: roboto-regular;
        color: var(--K2);
    }

        .tips-slider-hold li h4 {
            font-size: 26px;
            line-height: 30px;
            font-family: 'roboto-black';
            color: var(--K1);
            margin-bottom: 32px;
        }

        .tips-slider-hold li span {
            font-size: 16px;
            line-height: 1.6;
            font-family: roboto-regular;
            color: var(--K2);
        }

.statements-box {
    padding: 16px 0;
}

/*Zakomentarisan loader testa radi*/
/*#content-loader {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 9999;
    background-image: url(../../img/bg/DE_logo.png);
    background-repeat: no-repeat;
    background-position: center;
}*/

.login-load .cssload-container {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: unset;
    left: unset;
    margin: 0;
    flex-direction: column;
    row-gap: 20px;
}

.loading-info-span {
    font-size: 14px;
    line-height: 18px;
    color: var(--K1);
    text-align: center;
}

.mobile-apps-widget .widget-content {
    background: radial-gradient(98.53% 98.97% at 1.47% 98.97%, #1C3F31 0%, rgba(77, 172, 135, 0.8) 51.56%, rgba(0, 41, 56, 0.2) 100%), url(/webapp/Themes/StandardRedesign/img/photos/mobile-app-widget-back.jpg) !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    position: relative;
}

.widget-second-back {
    display: none;
}

.mobile-apps-widget .widget-second-back {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/webapp/Themes/StandardRedesign/img/photos/mobile-app-widget-wave.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100%;
    z-index: 0;
}

.mobile-apps-widget .widget-content-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0 16px;
    z-index: 1;
}

.promo-widget-title {
    font-family: 'roboto-black';
    font-size: 26px;
    color: var(--BG);
    margin-top: 30px;
}

.widget-google-links {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.side-modal {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 120;
    overflow: hidden;
}

    .side-modal.rearange-modal {
        background: rgba(255, 255, 255, 0.75);
    }

.full-width-container.rearange-on {
    padding: 0 16px 16px;
    border: 2px dashed var(--P1);
    border-radius: 8px;
}

.hidden-rearange-header {
    display: none;
    align-items: center;
    justify-content: flex-start;
    padding: 16px;
    background: var(--P1);
    border-radius: 8px;
    position: fixed;
    bottom: 24px;
    left: auto;
    z-index: 10271;
    color: white;
    right: auto;
}

.full-width-container.rearange-on .hidden-rearange-header {
    display: flex;
}

.rearange-dashboard-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

.hidden-rearange-header span, .hidden-rearange-header a {
    font-size: 14px;
    font-family: roboto-medium;
    color: var(--BG);
    text-transform: uppercase;
}

.hidden-rearange-header span {
    margin-right: auto;
}

.hidden-rearange-header a {
    font-size: 14px;
    font-family: roboto-medium;
    color: var(--BG);
    text-transform: uppercase;
    transition: all ease 0.3s;
    padding: 16px;
    text-align: center;
    display: inline-block;
    margin-left: 16px;
    cursor: pointer;
}

.side-modal-popup .side-modal-title {
    display: inline-block;
    width: 100%;
    margin: 0;
    font-family: 'roboto-black';
    padding: 16px 24px;
    font-size: 26px;
    line-height: 30px;
}

.details-option a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 24px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .details-option a:hover {
        background-color: var(--P2);
    }

.details-option .details-option-icon {
    margin-right: 16px;
}

.details-option .details-option-span {
    text-transform: uppercase;
    display: inline-block;
    width: 100%;
    margin: 0;
    font-family: roboto-medium, sans-serif;
    font-size: 14px;
    line-height: 16px;
    color: var(--K1);
}

.side-modal-popup {
    position: absolute;
    top: 0;
    right: 0;
    left: unset;
    width: 100%;
    height: 100%;
    padding: 0 0 16px;
    background-color: var(--BG);
    transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    -webkit-transform: translateX(100%);
}

    .side-modal-popup.active {
        transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        -webkit-transform: translateX(0);
    }

.account-img {
    height: 48px;
    width: 48px;
    border-radius: 100%;
}

#acc-image {
    height: 48px;
    width: 48px;
    border-radius: 100%;
}

#second-popup-content-side {
    height: max-content;
    display: flex;
    flex-direction: column;
    max-height: 100%;
    overflow-y: auto;
    position: absolute;
    top: unset;
    right: 0;
    bottom: 0;
    left: unset;
    width: 100%;
    background-color: var(--BG);
    transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    -webkit-transform: translateY(100%);
}

    #second-popup-content-side.active {
        transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        -webkit-transform: translateY(0);
    }

.popup-content-hold {
    display: flex;
    width: 100%;
    height: 100vh;
    flex-direction: column;
}

.side-modal-inner .content-inner {
    flex: 1 1 auto;
    display: flex;
    flex-flow: column;
    overflow-y: auto;
}

.side-modal-inner #second-popup-content-side .content-inner {
    height: max-content;
}

.side-modal-inner .content-inner .content-inner-box {
    padding: 0 24px;
}

#second-popup-content-side .configure-exchange-widget {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    cursor: pointer;
    transition: all ease 0.3s;
}

    #second-popup-content-side .configure-exchange-widget .icon-holder {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 16px;
        height: fit-content;
        width: fit-content;
        max-width: 40px;
    }

    #second-popup-content-side .configure-exchange-widget .text-holder {
        display: flex;
        flex-direction: column;
        row-gap: 4px;
    }

    #second-popup-content-side .configure-exchange-widget .list-item-main-label {
        font-size: 14px;
        font-family: roboto-medium;
        line-height: 16px;
        color: var(--K1);
        text-transform: uppercase;
    }

    #second-popup-content-side .configure-exchange-widget .list-item-bottom-label {
        font-size: 12px;
        font-family: roboto-regular;
        line-height: 14px;
        color: var(--K2);
    }

    #second-popup-content-side .configure-exchange-widget:hover {
        background-color: var(--P2);
    }

.s-p-24 {
    padding: 0 24px;
}

.s-p-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.message-reply-hold .s-p-24 {
    height: 100%;
}

.party-div {
    display: flex;
    align-items: center;
    width: 100%;
    transition: all ease 0.3s;
    padding: 16px 24px;
    cursor: pointer;
}

    .party-div:hover {
        background: var(--P2);
    }

.party-photo-hold {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-right: 16px;
}

    .party-photo-hold img {
        object-fit: cover;
        height: 100%;
    }

.party-name-desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 4px;
    align-items: flex-start;
}

.party-name {
    font-size: 14px;
    font-family: 'roboto-medium';
    color: var(--K1);
    text-transform: uppercase;
    line-height: 16px;
}

.party-desc {
    font-size: 12px;
    color: var(--K2);
    font-family: 'roboto-regular';
}

.selected-party .party-desc {
    color: var(--K1);
}

.selected-party-settings-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.search-style-input.customer-search {
    padding: 16px 24px !important;
}

.review-box-hold {
    display: flex;
    padding: 24px;
    align-items: center;
    justify-content: center;
}

.review-box.blue-review-box {
    display: flex;
    width: 100%;
    flex-direction: column;
    padding: 24px;
    background: var(--P2);
    border-radius: 8px;
    box-shadow: 4px 4px 8px 0px #00000026;
    row-gap: 16px;
}

.review-list-item {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
}

.review-item-label {
    font-size: 14px;
    color: var(--P1);
    line-height: 18px;
}

.review-item-main-label {
    font-size: 16px;
    font-family: 'roboto-black';
    color: var(--K1);
    line-height: 20px;
}

.review-item-desc {
    font-size: 12px;
    color: var(--K1);
    line-height: 16px;
}

.list-item-default-icon .text-holder .review-list-item-top-label {
    font-size: 14px;
    color: var(--K1);
    line-height: 18px;
    font-family: 'roboto-regular';
}

.list-item-default-icon .text-holder .review-list-item-main-label {
    font-size: 16px;
    color: var(--K1);
    line-height: 18px;
    font-family: 'roboto-medium';
}

.review-box.blue-review-box .highlighted-text {
    color: #fff !important;
    background: var(--P1);
}

.review-box.blue-review-box .highlighted-text-amount span {
    color: #fff !important;
    background: var(--P1);
}

.sidebar-desc-text {
    line-height: 18px;
    display: block;
    padding: 16px 24px;
    color: var(--K2);
    font-size: 14px;
}

    .sidebar-desc-text.centered {
        text-align: center;
    }

    .sidebar-desc-text.flexed-desc-text {
        display: flex;
        flex-direction: column;
        row-gap: 16px;
    }

        .sidebar-desc-text.flexed-desc-text.centered {
            align-items: center;
            text-align: center;
        }

.card-status-picture-hold {
    padding: 40px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-activation-label {
    font-size: 14px;
    line-height: 18px;
    color: var(--K2);
    padding: 0 24px;
}

.card-activation-inputs {
    padding: 16px 24px;
}

    .card-activation-inputs .input-label-ico {
        padding: 0 !important
    }

.sidebar-card-visuals-hold {
    padding: 40px 0;
    text-align: center;
}

    .sidebar-card-visuals-hold .card-visuals {
        box-shadow: 4px 4px 8px 0px #00000026;
    }

.sidebar-visual-hold {
    text-align: center;
}

#popup-content-side .actions {
    margin-bottom: unset;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#second-popup-content-side .actions {
    margin-bottom: unset;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.widget-actions .drag-handle.ui-sortable-handle i {
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    width: auto;
    background: none !important;
}

.my-widget .drag-handle.ui-sortable-handle {
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    width: auto;
    background: none !important;
    cursor: pointer;
}

.widget.widget-tips-and-tricks:before, .widget.widget-tips-and-tricks:after {
    display: none;
}

.no-show {
    display: none !important;
}

.cursor-pointer {
    cursor: pointer !important;
}

.menu-icon-holder.secondary {
    display: none;
}

.has-child-option .menu-icon-holder.secondary {
    display: flex;
    margin: 0;
}

.pt0 {
    padding-top: 0 !important;
}

.pb0 {
    padding-top: 0 !important;
}

.pside0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.mt0 {
    margin-top: 0 !important;
}

.mt24 {
    margin-top: 24px !important;
}

.breadcrumbs {
    padding-left: 16px;
}

.breadcrumbs-item {
    display: inline-block;
    padding: 8px;
    padding-right: 32px;
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-arrow-right.png);
    background-size: 4px;
    background-repeat: no-repeat;
    background-position: 90% 50%;
    font-size: 12px;
    line-height: 16px;
    color: var(--K2);
}

    .breadcrumbs-item.active {
        background-image: none;
        padding-right: 8px;
        font-family: roboto-medium;
        color: var(--P0);
    }

.title-large-wdesc-wactions {
    display: flex;
    align-items: center;
    padding: 16px 0;
    margin-bottom: 16px;
}

.title-large-text-hold {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: center;
    row-gap: 4px;
    margin-right: auto;
    padding: 0 24px;
}

    .title-large-text-hold .main-title {
        font-size: 26px;
        font-family: 'roboto-black';
        margin: 0;
        line-height: 31px;
    }

    .title-large-text-hold .main-title-desc {
        font-size: 14px;
        font-family: 'roboto-regular';
        color: var(--K2);
        line-height: 18px;
        margin: 0;
    }

        .title-large-text-hold .main-title-desc.card-brand-above-title {
            font-family: roboto-medium;
            color: var(--P0);
            text-transform: none;
        }

.transaction-details-brief {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 24px;
}

.month-holder {
    text-align: center;
    width: 102px;
}

.transaction-details-brief .icon-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.transaction-details-brief .transaction-brief-desc {
    font-size: 12px;
    text-transform: none;
    font-family: 'roboto-regular';
    color: var(--P0);
    margin-bottom: 24px;
    text-align: center;
}

.transaction-details-brief .transaction-brief-title {
    font-size: 12px;
    text-transform: uppercase;
    font-family: 'roboto-regular';
    color: var(--K2);
    margin-bottom: 4px;
}

.transaction-details-brief .transaction-brief-amount {
    font-size: 26px;
    font-family: 'roboto-black';
    color: var(--K1);
    margin-bottom: 4px;
}

.transaction-details-brief .transaction-brief-status {
    padding: 4px 8px;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 4px;
    border: 1px solid;
}

    .transaction-details-brief .transaction-brief-status.p,
    .transaction-details-brief .transaction-brief-status.pending,
    .transaction-details-brief .transaction-brief-status.authorization-pending {
        background: var(--bgS1);
        color: var(--S1);
        border-color: var(--S1);
    }

    .transaction-details-brief .transaction-brief-status.v,
    .transaction-details-brief .transaction-brief-status.e,
    .transaction-details-brief .transaction-brief-status.canceled,
    .transaction-details-brief .transaction-brief-status.rejected,
    .transaction-details-brief .transaction-brief-status.suspended,
    .transaction-details-brief .transaction-brief-status.canceled {
        background: var(--bgERROR);
        color: var(--ERROR);
        border-color: var(--ERROR);
    }

    .transaction-details-brief .transaction-brief-status.active,
    .transaction-details-brief .transaction-brief-status.accepted,
    .transaction-details-brief .transaction-brief-status.executed,
    .transaction-details-brief .transaction-brief-status.b {
        color: var(--OK);
        background: var(--bgOK);
        border-color: var(--OK);
    }

    .transaction-details-brief .transaction-brief-status.expired {
        color: var(--K2);
        background: var(--K4);
        border-color: var(--K2);
    }

.grey-box {
    padding: 16px;
    position: relative;
}

    .grey-box.grey-box-flex {
        display: flex;
        flex-direction: column;
        row-gap: 24px;
    }

    .grey-box .grey-box-col {
        width: 100%;
    }

.prelogin-full {
    width: 100%;
    position: relative;
    zoom: 1;
    background: white;
    height: 100%;
    min-height: calc(100vh - 30px);
    padding-bottom: 24px;
    /*overflow-x: hidden;*/
}

    .prelogin-full:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .prelogin-full .inner {
        width: 100%;
        height: auto;
        max-height: 100%;
        max-width: 1140px;
        margin: 0 auto;
        background: var(--BG);
        zoom: 1;
        position: relative;
    }

    .prelogin-full .prelogin-exchange-inner {
        max-width: 100%;
    }

    .prelogin-full .inner .group-inner {
        margin-bottom: 0;
    }

    .prelogin-full .inner .input-label-ico .icon-holder {
        margin-left: 16px;
    }



    .prelogin-full .scrollable-content {
        overflow: hidden;
        height: 100%;
    }



    .prelogin-full .input-search {
        position: relative;
    }

        .prelogin-full .input-search .input-1 {
            -webkit-box-shadow: 0 2px 0 0 var(--P1);
            box-shadow: 0 2px 0 0 var(--P1);
        }

    .prelogin-full .search-btn {
        position: absolute;
        top: 0px;
        right: 0px;
        width: 20px;
        height: 100%;
        background: url(/webapp/Themes/StandardRedesign/img/icons/icon-search.png) center center no-repeat;
        background-size: 17px;
        border: none;
        margin-right: 0;
    }

.prelogin-exchange-inner .col-half {
    width: 100%;
}



.prelogin-full .col-content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visability 0.5s ease;
    -moz-transition: opacity 0.5s ease, visability 0.5s ease;
    -ms-transition: opacity 0.5s ease, visability 0.5s ease;
    -webkit-transition: opacity 0.5s ease, visability 0.5s ease;
    -o-transition: opacity 0.5s ease, visability 0.5s ease;
}

    .prelogin-full .col-content.active {
        opacity: 1;
        visibility: visible;
    }

.prelogin-full .col-head {
    width: 100%;
    height: 48px;
    padding: 0 20px 0 300px;
    position: absolute;
}

    .prelogin-full .col-head .close {
        float: right;
        font-size: 12px;
        font-weight: bold;
        text-transform: uppercase;
        color: #2d4050;
        line-height: 48px;
        background: url(/webapp/Themes/StandardRedesign/img/icons/icon-close-2.png) 100% 18px no-repeat;
        background-size: 10px;
        padding-right: 16px;
    }

.prelogin-full .select-1 .dd-option,
.prelogin-full .select-1 .dd-selected {
    color: var(--BG);
    text-decoration: none;
}

.prelogin-full.full-break .col-right {
    top: 40px;
}

.align-items-right {
    align-items: flex-end !important;
}

.prelogin-full .map-list,
.prelogin-full .mCustomScrollBox:focus,
.prelogin-full .mCSB_container:focus {
    outline: none !important;
}

.prelogin-full .mCSB_inside > .mCSB_container {
    margin-right: 0px;
}

.prelogin-exchange-inner .currency-list-item .text-holder {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
    align-items: flex-start;
    margin-right: auto;
}

    .prelogin-exchange-inner .currency-list-item .text-holder .currency-class {
        color: var(--K1);
    }

    .prelogin-exchange-inner .currency-list-item .text-holder .currency-desc {
        color: var(--K2);
        font-size: 12px;
    }

.prelogin-contact-inner .contact-data-wrapper {
    display: flex;
}

    .prelogin-contact-inner .contact-data-wrapper .grey-box-col {
        width: 100%;
    }

    .prelogin-contact-inner .contact-data-wrapper .data {
        width: 100%;
    }

        .prelogin-contact-inner .contact-data-wrapper .data .text-holder a {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

/* Prelogin Faq ----------------------------------------------------------------------------------------------- */
#faq-list-content {
    padding: 16px 0;
}


.accordian-wrapper .hidden {
    display: none;
}

    .accordian-wrapper .hidden .contact-data-wrapper .data i {
        top: 10px;
    }


.accordian-title-heading-hold {
    display: flex;
    flex-direction: column;
    margin-right: auto;
    max-width: calc(100% - 146px);
    row-gap: 4px;
}

.accordian-wrapper .distance {
    font-size: 14px;
    color: var(--K2);
    font-family: 'roboto-regular';
    text-align: right;
}

.accordian-wrapper .icon-holder {
    display: inline-block;
    width: 32px;
    height: 32px;
    margin: 0;
    background-size: 32px !important;
}

.accordian-wrapper .faq-atm-icon {
    background: url(/webapp/Themes/StandardRedesign/img/icons/ic_lbs_list_atm.svg) no-repeat center center;
}

.accordian-wrapper .faq-atm-bank-icon {
    background: url(/webapp/Themes/StandardRedesign/img/icons/ic_lbs_list_branch.svg) no-repeat center center;
}

.accordian-wrapper .faq-bank-icon {
    background: url(/webapp/Themes/StandardRedesign/img/icons/ic_lbs_list_branch.svg) no-repeat center center;
}

.accordian-wrapper.location-accordian-wrapper .accordian-title-heading {
    text-overflow: ellipsis;
    font-size: 16px;
    font-family: 'roboto-medium';
}

.location-accordian-wrapper .accordian-title-heading-desc {
    font-size: 14px;
    font-family: 'roboto-regular';
    color: var(--K2);
}

.accordian-title {
    font-family: roboto-medium;
    color: var(--K1);
    font-size: 16px;
    cursor: pointer;
    position: relative;
    margin: 0 auto 0 0;
}

    .accordian-title.location-accordian-title {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        column-gap: 24px;
        margin: 0;
        padding: 16px 24px;
    }

        .accordian-title.location-accordian-title.active {
            background: var(--P2);
        }

            .accordian-title.location-accordian-title.active .accordian-title-heading-desc, .accordian-title.location-accordian-title.active .distance {
                color: var(--K1);
            }

.accordian-wrapper.location-accordian-wrapper .hidden.active {
    background: var(--P2);
}

.accordian-wrapper .accordian-text {
    padding: 16px 24px;
}

    .accordian-wrapper .accordian-text p {
        font-size: 14px;
        line-height: 18px;
        color: var(--K2);
        margin: 0;
    }

.accordian-title-hold {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    cursor: pointer;
    transition: all ease 0.3s;
}

    .accordian-title-hold:hover {
        background: var(--BG);
    }

    .accordian-title-hold .icon-holder {
        display: flex;
        align-items: center;
        justify-content: center;
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }


    .accordian-title-hold.active .icon-holder {
        -ms-transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

.locations-content-flex {
    display: flex;
    align-items: flex-start;
    width: 100%;
    height: calc(100vh - 190px);
    flex-direction: column;
}

.branches-list {
    background: none;
    width: 100%;
    padding: 16px 0;
    height: 100%;
    border-radius: 8px;
    display: none;
}

.prelogin-map {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.locations-search-input-hold {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    margin-bottom: 16px !important;
}

.branches-list-scrolled {
    height: calc(100% - 320px);
    position: absolute;
    overflow: hidden;
    width: 363px;
}

.buttons-flex {
    display: flex;
    align-items: center;
    column-gap: 16px;
    padding: 8px 24px 16px;
}

    .buttons-flex .default-btn {
        width: 100%;
    }

.title-large.branch-details-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.branch-details-title-hold {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
}

    .branch-details-title-hold .branch-kind {
        font-size: 14px;
        text-transform: uppercase;
        color: var(--K2);
        font-family: 'roboto-medium';
    }

    .branch-details-title-hold .branch-address {
        font-size: 14px;
        color: var(--K2);
        font-family: roboto-regular;
    }

.branch-details-distance-hold {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    width: 64px;
    background: var(--P2);
    border-radius: 100%;
    flex-shrink: 0;
}

    .branch-details-distance-hold .distance {
        font-size: 12px;
        color: var(--P1);
        font-family: roboto-medium;
    }

.locations-content-flex .widget-tabs {
    padding: 0;
    width: 100%;
    z-index: 99;
}

    .locations-content-flex .widget-tabs li {
        list-style: none;
        width: 100%;
    }

.blue-working-hours {
    display: flex;
    flex-direction: column;
    background: var(--P2);
    border-radius: 8px;
    padding: 8px 0;
}

    .blue-working-hours .list-item {
        padding: 8px 32px;
    }

        .blue-working-hours .list-item .text-holder {
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

            .blue-working-hours .list-item .text-holder span {
                color: var(--K1);
                font-size: 14px;
                font-family: roboto-regular;
            }

            .blue-working-hours .list-item .text-holder .closed-working-hours {
                color: var(--ERROR);
                font-size: 12px;
                font-family: roboto-medium;
                text-transform: uppercase;
            }
/******************* Product catalogue *******************/
.products-hold-flex {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    column-gap: 24px;
}

.products-names-list.grey-box {
    width: 100%;
    padding: 24px 0;
}

.products-preview-list {
    width: 100%;
}

.products-empty-state {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    row-gap: 14px;
}

    .products-empty-state .text-holder {
        padding: 16px 24px;
    }

        .products-empty-state .text-holder span {
            color: var(--K2);
            font-size: 14px;
        }

.picture-empty-state {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    row-gap: 14px;
}

    .picture-empty-state .text-holder {
        padding: 16px 24px;
    }

        .picture-empty-state .text-holder span {
            color: var(--K2);
            font-size: 14px;
        }

.product-box {
    height: auto;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    width: 100%;
    max-width: 364px;
    box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    margin-bottom: 24px;
}

.product-box-content-hold {
    padding: 16px;
}


.product-box .title-1 span:after {
    bottom: -4px;
}



.product-box-image-hold {
    height: 180px;
    overflow: hidden;
}

    .product-box-image-hold img {
        object-fit: cover;
        object-position: center;
        height: 100%;
        width: 100%;
    }

.product-box .product-box-heading {
    font-size: 16px;
    color: #00A3E0;
    margin-bottom: 8px;
    font-family: 'roboto-black';
}

.product-box .product-box-desc {
    font-size: 14px;
    color: var(--K1);
    height: 35px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

#one-product-hold {
    max-width: 752px;
    margin: 0 auto;
}

    #one-product-hold .title-large-wdesc-wactions {
        padding: 16px;
        align-items: center;
    }

    #one-product-hold .one-product-content-hold {
        display: flex;
        flex-direction: column;
        row-gap: 16px;
    }

    #one-product-hold .one-product-desc-hold {
        display: flex;
        flex-direction: column;
        row-gap: 24px;
    }

    #one-product-hold .one-product-image {
        width: 100%;
        max-width: 340px;
        max-height: 340px;
        border-radius: 8px;
        overflow: hidden;
    }

        #one-product-hold .one-product-image img {
            object-fit: cover;
            height: 100%;
            object-position: center;
            width: 100%;
        }

    #one-product-hold .one-product-desc {
        width: 100%;
    }

        #one-product-hold .one-product-desc p {
            padding: 16px 24px;
            margin-bottom: 0;
            font-size: 16px;
            line-height: 19px;
            color: var(--K2);
        }

    #one-product-hold .one-product-specs-flex {
        display: flex;
        flex-direction: column;
        row-gap: 24px;
        column-gap: 24px;
    }

    #one-product-hold .one-product-specs-hold, .one-product-actions-hold {
        width: 100%;
    }

.devices.grey-box, .inbox-messages.grey-box {
    padding: 16px 0;
}

.select-all-transfers-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 24px 8px 18px;
}

.select-all-transfers-actions-wrap {
    display: none;
    align-items: center;
    column-gap: 16px;
}

.select-all-msgs-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 24px;
}

.select-all-msgs-actions-wrap {
    align-items: center;
    column-gap: 16px;
}

.inbox-msg-list-item {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    column-gap: 16px;
    transition: all ease 0.3s;
}

    .inbox-msg-list-item:hover {
        background: var(--BG);
    }

.inbox-msg-check-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
}

.inbox-msg-list-item-flex {
    display: flex;
    align-items: center;
    column-gap: 16px;
    width: -webkit-fill-available;
}

    .inbox-msg-list-item-flex .icon-holder {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 32px;
        width: 32px;
    }

    .inbox-msg-list-item-flex .text-holder {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        row-gap: 4px;
        margin-right: auto;
        width: 100%;
    }

.inbox-msg-list-item-top-label {
    font-size: 12px;
    color: var(--K2);
    font-family: 'roboto-regular';
    line-height: 16px;
}

.inbox-msg-list-item-main-label {
    font-size: 16px;
    font-family: 'roboto-medium';
    color: var(--K1);
}

.inbox-msg-list-item-action-icons {
    display: flex;
    align-items: center;
    column-gap: 16px;
}

.cancel-edit-inbox-btn {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    display: none;
    color: var(--P1);
    font-family: roboto-medium;
}

    .cancel-edit-inbox-btn .icon-holder {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 4px;
        padding-bottom: 2px;
    }

.device-list-item {
    display: flex;
    align-items: center;
    column-gap: 16px;
    padding: 16px 24px;
    transition: all ease 0.3s;
}

    .device-list-item:hover {
        background: var(--BG);
    }

    .device-list-item .device-check-item {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 32px;
        width: 32px;
    }

    .device-list-item .device-item-holder {
        display: flex;
        align-items: center;
        flex: 1 1 auto;
    }

        .device-list-item .device-item-holder .icon-holder {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 16px;
        }

        .device-list-item .device-item-holder .text-holder {
            display: flex;
            flex-direction: column;
            row-gap: 4px;
            margin-right: auto;
        }

            .device-list-item .device-item-holder .text-holder .list-item-top-label {
                font-size: 14px;
                font-family: 'roboto-regular';
                color: var(--K2);
            }

            .device-list-item .device-item-holder .text-holder .list-item-main-label {
                font-size: 16px;
                font-family: roboto-medium;
                color: var(--K1);
            }

    .device-list-item .device-status {
        padding: 4px 8px;
        border-radius: 4px;
        text-transform: uppercase;
        font-size: 12px;
    }

        .device-list-item .device-status.active {
            background: var(--bgOK);
            color: var(--OK);
        }

        .device-list-item .device-status.blocked {
            background: var(--bgERROR);
            color: var(--ERROR);
        }

#become-client-hold {
    min-height: calc(83vh - 3px);
}

    #become-client-hold .main-content, #become-client-hold .content-holder {
        padding: 0;
    }

    #become-client-hold .steps-and-form-flex {
        display: flex;
        align-items: flex-start;
        column-gap: 24px;
    }

    #become-client-hold .grey-box {
        padding: 16px 0;
    }

    #become-client-hold .grey-box {
        width: 66.6%;
    }

    #become-client-hold .steps-of-form-hold.grey-box {
        width: 33.3%;
    }

    #become-client-hold .grey-box.form-fields-hold {
        padding: 16px 24px;
    }

        #become-client-hold .grey-box.form-fields-hold.full-width {
            width: 100%;
        }

    #become-client-hold .steps-of-form-hold .list-item-default-icon-no-a-tag.active {
        background: #00A3E0;
    }

        #become-client-hold .steps-of-form-hold .list-item-default-icon-no-a-tag.active span {
            color: var(--BG);
        }

        #become-client-hold .steps-of-form-hold .list-item-default-icon-no-a-tag.active circle {
            stroke: var(--BG);
        }

        #become-client-hold .steps-of-form-hold .list-item-default-icon-no-a-tag.active path {
            fill: var(--BG);
        }

    #become-client-hold .btns-from-form-1 {
        padding: 8px 24px 24px;
    }

.steps-of-form-hold .one-step {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 16px;
    padding: 16px 24px;
    font-size: 14px;
}

    .steps-of-form-hold .one-step.active {
        background: #00A3E0;
    }

    .steps-of-form-hold .one-step .one-step-id {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 30px;
        width: 30px !important;
        border-radius: 50%;
        border: 2px solid rgb(0, 163, 224);
        color: var(--OK);
    }

    .steps-of-form-hold .one-step span {
        font-family: 'roboto-medium';
        color: var(--P0);
        width: calc(100% - 48px);
    }

    .steps-of-form-hold .one-step.active .one-step-id {
        color: var(--BG);
        border-color: var(--BG);
    }

    .steps-of-form-hold .one-step.active span {
        color: var(--BG);
    }

.one-statement {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
    row-gap: 8px;
    transition: all ease 0.3s;
}

    .one-statement:hover {
        background: var(--P2);
    }

    .one-statement .text-and-switch {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        column-gap: 16px;
        width: 100%;
    }

        .one-statement .text-and-switch .one-statement-name {
            margin-right: auto;
            font-size: 14px;
            font-family: roboto-medium;
            text-transform: none;
            margin-right: auto;
            color: var(--K1);
            word-break: break-word;
        }

    .one-statement .link {
        width: 100%;
        color: #00A3E0;
        font-size: 14px;
    }

.tenant-list-flex {
    display: flex;
    column-gap: 24px;
    flex-wrap: wrap;
    row-gap: 32px;
    padding: 16px 0;
}

.tenant-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: var(--BG);
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.2);
    border-radius: 16px;
    width: calc(33.3% - 16px);
    padding: 8px 16px;
    row-gap: 24px;
    transition: all ease 0.3s;
    border: 2px solid transparent;
}

    .tenant-box:hover {
        border-color: #00A3E0;
    }

    .tenant-box.connected-tenant-box:hover {
        border-color: var(--OK);
    }

    .tenant-box.connected-tenant-box {
        padding: 0;
    }

        .tenant-box.connected-tenant-box .connected-tenant-box-a {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding: 8px 16px;
            row-gap: 24px;
        }

.tenant-box-heading-hold {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    row-gap: 4px;
    width: 100%;
    padding: 8px 0;
}

.tenant-box-name {
    font-family: 'roboto-black';
    font-size: 16px;
    line-height: 19px;
    margin: 0;
    text-align: center;
    color: var(--K1);
}

.tenant-box-country {
    font-size: 14px;
    font-family: 'roboto-regular';
    color: var(--K2);
}

.tenant-box-logo-hold {
    max-width: 100%;
    padding: 0 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
}

    .tenant-box-logo-hold img {
        max-width: 100%;
        max-height: 100%;
    }

.sidebar-tenant-logo-hold {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    margin: 24px auto;
}

    .sidebar-tenant-logo-hold img {
        max-height: 56px;
    }

.content-inner #negotiation-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 140px;
    width: 100%;
    margin-bottom: 24px;
}

    .content-inner #negotiation-switch .blockUI.blockMsg.blockElement {
        position: relative !important;
        width: 100% !important;
        height: 100% !important;
        left: unset !important;
    }

    .content-inner #negotiation-switch .cssload-container {
        width: 140px;
        height: 140px;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: unset;
        margin-left: unset;
        transform: translate(-50%, -50%);
    }

        .content-inner #negotiation-switch .cssload-container .cssload-speeding-wheel {
            width: 140px;
            height: 140px;
            margin: 0 auto;
            border: 10px solid var(--P1);
            border-radius: 50%;
            border-left-color: transparent;
            border-right-color: var(--P1);
            animation: cssload-spin 1200ms infinite linear;
            -o-animation: cssload-spin 1200ms infinite linear;
            -ms-animation: cssload-spin 1200ms infinite linear;
            -webkit-animation: cssload-spin 1200ms infinite linear;
            -moz-animation: cssload-spin 1200ms infinite linear;
        }

.croppie-container {
    width: 200px;
    height: 164px;
}

.image-for-crop {
    max-width: 100%;
}

.save-crop-hold {
    flex-wrap: wrap;
    min-width: 300px;
    max-width: 340px;
    row-gap: 32px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    display: none;
    text-align: center;
}

.save-crop-btns {
    display: flex;
    flex-direction: row;
    column-gap: 16px;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.application-wrapper-btn {
    width: 50%;
    margin-left: auto;
    margin-top: 30px;
}

.filters-side-checkbox-wrap {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    padding: 16px 24px;
    column-gap: 16px;
}

.default-accounts-hold .input-label-ico label {
    font-family: roboto-medium;
    font-size: 16px;
    line-height: 19px;
    color: var(--K1);
    margin: 0;
}

.default-accounts-hold .input-label-ico input {
    font-family: 'roboto-regular';
    font-size: 14px;
    line-height: 18px;
    color: var(--K2);
    margin: 4px 0 0 0;
    width: 100%;
    border: none;
    border-bottom: none;
    background: transparent;
    -webkit-appearance: none;
    padding: 0 0 4px 0;
}

.menu-item.lang-menu-item svg,
.menu-item.lang-menu-item img {
    margin-right: unset;
    filter: brightness(5) saturate(0) contrast(5);
}

.side-modal-popup .warning-new-pass {
    position: absolute;
    bottom: 80px;
    left: 24px;
    margin: 0;
    right: 24px;
    padding: 16px 24px;
    color: var(--ERROR);
    border: 2px solid var(--ERROR);
    border-radius: 8px;
    background: white;
    z-index: 1;
}

.side-modal-popup .warning-new-pass-2 {
    bottom: 160px;
}


.side-modal-popup .warning-new-pass-3 {
    bottom: 240px;
}

.side-modal-popup .warning-new-pass .error-message-text {
    color: var(--ERROR) !important;
    font-size: 14px;
    margin: 0 !important;
}

#balances {
    padding: 0 24px;
}

.highcharts-container {
    height: 280px !important;
}

.highcharts-title {
    font-family: 'roboto-regular';
    font-size: 16px !important;
}

.time-lapse-trigger {
    width: 100%;
    margin: 0;
}

    .time-lapse-trigger .input-label-ico {
        padding: 16px 24px;
    }

.chart-time-lapse-trigger {
    width: 190px;
    margin: 10px auto 20px;
}

    .chart-time-lapse-trigger .input-label-ico {
        padding: 16px 24px;
    }

.pie-chart-title-value-hold {
    display: flex;
    align-items: center;
    column-gap: 16px;
    padding: 8px 24px;
    font-size: 14px;
}

    .pie-chart-title-value-hold span {
        margin-right: auto;
    }

        .pie-chart-title-value-hold span:last-child {
            margin-right: 0;
            color: var(--K2);
        }

.pie-chart-title-circle {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.chart-content {
    margin-top: 20px;
}

/*****************************      MEDIA QUERIES      ********************************/

@media only screen and (max-width: 768px) {
    #page-header .main-logo svg,
    #page-header .main-logo img{
        width: 130px;
    }

    #login-header .main-logo svg,
    #login-header .main-logo img {
        width: 130px;
    }
}

@media only screen and (max-width: 520px) {
    .account-div .icon-text-hold {
        display: flex;
        margin-right: auto;
        align-items: center;
    }

        .account-div .icon-text-hold .text-holder span {
            font-size: 12px;
        }

        .account-div .icon-text-hold .text-holder .account-num {
            font-size: 10px;
        }

        .account-div .icon-text-hold .icon-holder {
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
        }

            .account-div .icon-text-hold .icon-holder img {
                width: 100%;
            }

    #one-product-hold .one-product-image {
        max-width: unset;
        border-radius: 0;
        max-height: 240px;
    }
}

@media only screen and (max-width: 767px) {
    .no-mob {
        display: none !important;
    }

    #page-header {
        height: 64px;
        padding: 16px 24px;
    }

        #page-header .site-logo a {
            width: 122px;
            height: 32px;
        }

    #login-header .main-nav .menu-item {
        width: auto;
    }

    #page-content {
        margin-top: 64px;
    }

    .btn-small-ico-label.header-mob-btn {
        width: 32px;
        margin-left: 24px;
    }

        .btn-small-ico-label.header-mob-btn a .btn-small-icon {
            margin-bottom: 0;
        }

    .accounts-widget {
        height: 324px !important;
        background: none;
        padding: 16px 0;
    }

        .accounts-widget .overlay-1 {
            background-image: none;
        }

    .accounts-slider-header {
        display: flex;
        flex-direction: column;
        background: none;
    }

    .slider-tabs li a {
        color: var(--K2) !important;
    }

    .list-options-side li svg path,
    .list-options-side li img path {
        fill: var(--K3);
    }

    .account-slider .slick-center .account-box {
        width: 85vw !important;
    }

    .accounts-widget .slider-button-prev, .accounts-widget .slider-button-next {
        display: none !important;
    }

    .widget-grid {
        width: 100%;
    }

    .actions-wrap {
        flex-wrap: nowrap;
        overflow: auto;
        align-items: flex-start;
    }

        .actions-wrap .action-box {
            width: max-content;
        }

            .actions-wrap .action-box .action-text {
                flex-direction: column;
                align-items: center;
                justify-content: center;
                font-family: roboto-regular, sans-serif;
                font-size: 12px;
                text-transform: none;
            }

                .actions-wrap .action-box .action-text .action-box-icon {
                    margin: 0;
                    margin-bottom: 4px;
                }

    .transaction-list-item .amount-holder {
        margin-left: auto;
    }

    #accountsPicker .list-options-side {
        width: 100% !important;
    }

    #account-col-content {
        flex-flow: column;
    }

    .account-widget-slat .plain-list {
        background: none;
        padding-top: 0;
    }

    .main-content {
        padding: 0;
    }

    .title-large-wdesc-wactions {
        margin: 0;
        justify-content: center;
        align-items: flex-start;
    }

        .title-large-wdesc-wactions .btn-small-ico-label {
            width: 100%;
            height: max-content;
            margin-right: 0 !important;
        }

    .prelogin-marketing-loginbox-flex {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 100vw;
        height: auto;
        flex-direction: column-reverse;
        padding-top: 60px;
    }

    #login-content {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        padding: 0;
        background: white;
    }

    #fake-login-content {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        padding: 0;
        background: white;
    }

    .login-box {
        width: 100%;
        background: var(--BG);
        padding: 48px 16px 8px;
        box-shadow: none;
        border-radius: 0px;
    }

    .prelogin-marketing-hold {
        width: 100%;
        background: white;
        padding: 24px;
    }

        .prelogin-marketing-hold .prelogin-slider .inner {
        }

        .prelogin-marketing-hold .prelogin-slider h2 {
            font-family: roboto-black;
            font-size: 26px;
            color: var(--P1);
        }

        .prelogin-marketing-hold .prelogin-slider p {
            color: var(--K1);
            font-size: 14px;
        }

    .page-cover {
        position: relative;
        height: 280px;
        top: unset;
        bottom: unset;
        left: unset;
        right: unset;
    }

        .page-cover img, .page-cover video {
            object-position: center;
        }

    .prelogin-full.-prelogin-autoheight .inner {
        padding-top: 104px;
    }

    .prelogin-contact-inner .contact-data-wrapper {
        flex-wrap: wrap;
        padding: 0;
    }

    .products-hold-flex {
        flex-direction: column;
    }

    #one-product-hold {
        padding-top: 104px;
    }

    .products-names-list.grey-box {
        padding: 0;
    }

    .products-preview-list {
        display: none;
        position: absolute;
        top: 104px;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
    }

        .products-preview-list .product-list {
            padding: 16px 24px;
        }

    #page-footer-prelogin {
        flex-direction: column;
    }

    .label-section-w-action {
        margin-bottom: 0;
    }

    .inbox-content-holder, .standing-orders-content, .request-money-content, .bill-presentment-content-holder {
        height: calc(100vh - 64px);
        display: flex;
        flex-direction: column;
        padding-top: 24px;
    }

    .inbox-messages.grey-box {
        flex: 1 1 auto;
        overflow: auto;
        padding-bottom: 0;
    }

    .standing-orders-content .grey-box, .request-money-content .grey-box, .bill-presentment-content-holder .grey-box {
        flex: 1 1 auto;
        overflow: auto;
        padding-bottom: 0;
    }

    .input-search {
        background-color: var(--K4);
    }

    .inbox-msg-list-item-action-icons {
        align-items: flex-start;
        align-self: stretch;
    }

    .select-all-msgs-wrap {
        display: none;
    }

    .inbox-msg-list-item .inbox-msg-check-item {
        display: none;
    }

    .archive-mob-btn, .mark-as-read-mob-btn {
        display: none;
    }

    .msg-red-dot {
        top: 2px;
        right: 0px;
    }

    .documents-grey-box {
        padding: 16px 0;
    }

    #become-client-hold {
        padding: 104px 0px 30px;
    }

        #become-client-hold .grey-box.form-fields-hold {
            width: 100%;
            padding: 24px 0;
        }

    .tenant-box {
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        border: none;
        padding: 16px 24px;
        flex-direction: row;
        width: 100%;
        position: relative;
    }

    .tenant-list-flex {
        padding: 0;
        row-gap: 0;
    }

    .tenant-box.connected-tenant-box .connected-tenant-box-a {
        padding: 16px 24px;
        flex-direction: row;
        width: 100%;
    }

    .mob-tenant-logo-hold {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 32px;
        width: 32px;
        margin-right: 16px;
    }

    .tenant-box-heading-hold {
        padding: 0;
        align-items: flex-start;
        margin-right: auto;
    }

    .tenant-box-name {
        font-family: roboto-medium;
        text-align: left;
        color: var(--K1);
    }

    .grey-box.tenants-grey-box {
        padding: 0;
        row-gap: 0;
    }

    .tenant-connection-btn {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
    }

    .disconnect-tenant-mob-btn {
        background: none;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-logo {
        margin-left: auto;
    }

    #account-col-content .account-widget-slat {
        background: none;
    }

    #second-popup-content-side {
        border-radius: 8px 8px 0 0;
    }

    .blue-working-hours {
        width: calc(100% - 48px);
        margin: 0 auto;
    }

    .grey-box.grey-box-flex.grey-box-flex-row {
        padding: 0;
    }

    .one-creditor-wrap .input-label-ico {
        flex: unset;
        padding-right: 16px;
        width: calc(100% - 56px);
    }

    .widget-tabs.stand-alone {
        height: 57px;
    }

    .label-section.has-process-steps {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 12px;
    }
}

@media only screen and (min-width: 768px) {
    .content-holder {
        padding-top: 16px;
    }

    .breadcrumbs-holder {
        display: flex;
        flex-direction: row;
        padding: 0 16px;
        width: 100%;
    }

        .breadcrumbs-holder a {
            display: flex;
            align-items: center;
            padding: 8px;
            font-size: 12px;
            font-family: 'roboto-regular';
            color: var(--K2);
        }

            .breadcrumbs-holder a.active {
                display: flex;
                font-family: 'roboto-medium';
                color: var(--P0);
            }

            .breadcrumbs-holder a svg,
            .breadcrumbs-holder a img {
                margin-right: 16px;
            }

    .label-section {
        padding: 16px 24px 8px;
        margin-bottom: 24px;
    }

        .label-section h2 {
            color: var(--P0);
        }

    .tabs-holder {
        margin-left: 16px;
        justify-content: flex-start;
    }

        .tabs-holder .tab {
            width: max-content;
        }

    .grey-box {
        border-radius: 8px;
        background: #FAFAFA;
        padding: 24px;
    }

    .grey-boxes-wrap {
        display: flex;
        flex-direction: column;
        row-gap: 24px;
    }

    .slide-modal .slide-div {
        padding: 24px;
    }

        .slide-modal .slide-div .slide-header {
            padding: 0;
        }

    .side-modal-popup {
        width: 461px;
        padding: 0;
        transform: translateX(461px);
        -moz-transform: translateX(461px);
        -ms-transform: translateX(461px);
        -o-transform: translateX(461px);
        -webkit-transform: translateX(461px);
        -webkit-transition: transform 0.5s ease;
        -moz-transition: transform 0.5s ease;
        -o-transition: transform 0.5s ease;
        transition: transform 0.5s ease;
        border-radius: 8px 0 0 8px;
        overflow: hidden;
    }

    #second-popup-content-side {
        width: 461px;
        padding: 0;
    }

    .prelogin-marketing-hold .btn-1.default-btn.secondary-btn {
        width: auto;
        margin-left: auto;
    }

    .prelogin-marketing-hold {
        background: url(/webapp/Themes/StandardRedesign/img/bg/prelogin_wave.svg), linear-gradient(14deg, rgb(5 40 53 / 90%) 10%, rgba(7,72,97,0.4) 28%, rgba(7,72,97,0) 48%);
        background-repeat: no-repeat;
        background-position: bottom left;
        background-size: contain;
    }

    .prelogin-exchange-inner .grey-box.grey-box-flex {
        flex-direction: row;
        padding: 16px 0 16px;
        column-gap: 24px;
    }

    .prelogin-contact-inner .contact-data-wrapper {
        column-gap: 24px;
        padding: 16px 0;
    }

    .products-preview-list {
        /*max-height: calc(100vh - 260px);*/
    }

    #one-product-hold .one-product-desc-hold {
        display: flex;
        flex-direction: row;
        padding: 24px;
        border-radius: 8px;
        background: var(--P2);
        column-gap: 24px;
    }

    #one-product-hold .one-product-desc p {
        color: var(--K1);
    }

    #one-product-hold .one-product-specs-flex {
        display: flex;
        flex-direction: row;
        column-gap: 24px;
    }

    .products-preview-list .mCustomScrollBox, .products-preview-list .mCustomScrollBox .mCSB_container {
        overflow: visible;
    }

    #account-col-content.nocard .account-col-right {
        display: none;
    }

    #account-col-content.nocard .account-col-left .account-content-hold {
        column-count: 2;
    }

    #login-header .main-nav .menu-item a {
        row-gap: 4px;
        padding: 4px 0 !important;
        border: 1px solid transparent;
        border-radius: 8px;
        transition: all ease 0.2s;
    }

    #accountsPicker.cardsPicker .cards-account-picker .account-slider {
        padding-top: 20px;
    }

    .grey-box.grey-box-flex.grey-box-flex-row {
        flex-direction: row;
        column-gap: 24px;
        padding: 24px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
    .no-tablet {
        display: none !important;
    }

    #page-header {
        height: 96px;
    }

    #page-content {
        margin-top: 96px;
    }

    #popup-content-side .actions {
        padding-bottom: 0;
    }

    .login-box .hint {
        width: 50%;
        float: left;
    }

    .login-box .group-submit {
        width: 50%;
        float: right;
    }

    .login-box .login-input-hold {
        width: 50%;
        float: left;
        margin-bottom: 24px;
        margin-top: 24px;
    }

    #login-content {
        width: 100%;
        height: auto;
        padding: 140px 40px 24px;
        background: var(--P2);
    }

    #fake-login-content {
        width: 100%;
        height: auto;
        padding: 140px 40px 24px;
        background: var(--P2);
    }

    #login-content .forgot-pass {
        margin-bottom: 0;
    }

    .prelogin-marketing-hold {
        display: flex;
        width: 100%;
        flex-direction: column;
        height: 100%;
        justify-content: flex-end;
        min-height: 350px;
    }

        .prelogin-marketing-hold .prelogin-slider {
            padding: 24px;
        }

    .prelogin-marketing-loginbox-flex {
        flex-direction: column-reverse;
        min-height: 100vh !important;
        overflow: auto;
        height: auto;
    }

    .login-box {
        width: 100%;
    }

    .prelogin-full.-prelogin-autoheight .inner {
        padding: 144px 40px;
    }

    #become-client-hold {
        padding: 148px 40px 30px;
    }

    .main-content.content-full {
        padding: 16px 40px;
    }
}

@media only screen and (min-width: 720px) and (max-width: 1200px) {
    #sortable-container.widget-grid {
        padding: 0 40px;
    }

    .my-widget-width.widget-tips-and-tricks, .my-widget-width.widget-exchange, .my-widget-width.col-ls-8, .my-widget-width.widget-inbox {
        width: calc(50% - 12px);
    }
}

@media only screen and (min-width: 992px) {
}

@media only screen and (min-width: 1201px) {
    .no-web {
        display: none !important;
    }

    #login-header {
        padding: 10px 24px;
    }

    .prelogin-full .prelogin-exchange-inner, .prelogin-full .prelogin-contact-inner, .prelogin-full .prelogin-faq-inner, .prelogin-full .prelogin-products-inner {
        max-width: 752px;
    }

    .my-widget-width.widget-tips-and-tricks, .my-widget-width.widget-exchange.widget-one-third, .my-widget-width.col-ls-8, .my-widget-width.widget-inbox {
        width: calc(33.333% - 16px);
    }

    .my-widget-width.col-ls-16 {
        width: calc(66.6% - 8px);
    }

    .my-widget-width.widget-exchange.widget-two-thirds {
        width: calc(66.6% - 8px);
    }

    #main-side {
        margin-left: 94px;
    }

    #page-content {
        padding: 0 30px;
        /*max-width: 812px;*/
        margin: 80px auto 0;
    }

    .home-body-width #page-content {
        max-width: unset;
    }

    #page-header-left {
        /* width: 94px; */
        width: max-content;
        height: calc(100% - 80px);
        /*background: var(--BG);*/
        position: fixed;
        top: 80px;
        left: 0;
        z-index: 100;
        scroll-behavior: smooth;
    }
        /* Hide scrollbar for Chrome, Safari and Opera */
        #page-header-left::-webkit-scrollbar {
            display: none;
        }

    /* Hide scrollbar for IE, Edge and Firefox */
    #page-header-left {
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none; /* Firefox */
    }

    .menu-item {
        display: inline-block;
        width: 94px;
        cursor: pointer;
    }

        .menu-item a {
            display: flex;
            padding: 8px 0;
            flex-direction: column;
            align-items: center;
            width: 100%;
            cursor: pointer;
            -webkit-transition: color 0.3s ease;
            -moz-transition: color 0.3s ease;
            -o-transition: color 0.3s ease;
            transition: color 0.3s ease;
        }

        .menu-item:hover a {
            color: var(--P1);
        }

    .menu-icon-holder {
        margin-bottom: 4px;
    }

    .menu-item svg,
    .menu-item img {
        margin-right: unset;
        filter: brightness(5) saturate(0) contrast(5);
    }

    .main-nav .menu-item:hover svg,
    .main-nav .menu-item.active-menu-item svg,
    .main-nav .menu-item.active-menu svg,
    .main-nav .menu-item:hover img,
    .main-nav .menu-item.active-menu-item img,
    .main-nav .menu-item.active-menu img {
        filter: none !important;
    }


    .menu-item a span {
        font-size: 12px;
        font-family: 'roboto-regular';
        line-height: 16px;
        margin-right: unset;
        color: white;
        text-align: center;
    }

    .menu-item:hover a span {
        color: var(--P0);
    }

    .menu-item:active a span {
        color: var(--P0);
    }

    #login-header .main-nav .menu-item:hover span {
        /*color: var(--P0);*/
    }

    #login-header .main-nav .menu-item:hover a {
        border-color: var(--BG);
    }

    #login-header .menu-item:hover svg,
    #login-header .menu-item:hover img {
        filter: brightness(5) saturate(0) contrast(5) !important;
    }

    #login-header .menu-item.active-menu-item:hover svg,
    #login-header .menu-item.active-menu-item:hover img {
        filter: none !important;
    }

    #login-header .main-nav .menu-item.active-menu-item {
        background: transparent;
    }

        #login-header .main-nav .menu-item.active-menu-item a {
            background: var(--P2);
        }

    .menu-item.active-menu-item {
        background-color: var(--P2);
    }

        .menu-item.active-menu-item a span {
            color: var(--P0);
        }

    #login-header .menu-item.active-menu-item a span {
        color: var(--P0);
    }



    /*    .main-nav .menu-item:hover .menu-main-icon line {
        stroke: var(--P0);
    }

    .main-nav .menu-item:hover .menu-main-icon path[stroke="#fff"] {
        stroke: var(--P0);
    }

    .main-nav .menu-item:hover .menu-main-icon path[fill="#fff"] {
        fill: var(--P0);
    }

    .main-nav .menu-item:hover .menu-main-icon rect[stroke="#fff"] {
        stroke: var(--P0);
    }

    .main-nav .menu-item:hover .menu-main-icon rect[fill="#fff"] {
        fill: var(--P0);
    }

    .main-nav .menu-item:active .menu-main-icon path[stroke="#fff"] {
        stroke: var(--P0);
    }

    .main-nav .menu-item:active .menu-main-icon path[fill="#fff"] {
        fill: var(--P0);
    }

    .main-nav .menu-item:active .menu-main-icon rect[stroke="#fff"] {
        stroke: var(--P0);
    }

    .main-nav .menu-item:active .menu-main-icon rect[fill="#fff"] {
        fill: var(--P0);
    }

    .main-nav .menu-item:active .menu-main-icon line {
        stroke: var(--P0);
    }*/
    .menu-list-header-label {
        padding: 24px 24px;
    }

    .menu-item.active-menu {
        background-color: var(--P2);
    }

        .menu-item.active-menu a span {
            color: var(--P0);
        }

    /*.menu-item.active-menu .menu-main-icon rect[stroke="#fff"] {
            stroke: var(--P0);
        }

        .menu-item.active-menu .menu-main-icon rect[fill="#fff"] {
            fill: var(--P0);
        }

        .menu-item.active-menu .menu-main-icon path[stroke="#fff"] {
            stroke: var(--P0);
        }

        .menu-item.active-menu .menu-main-icon path[fill="#fff"] {
            fill: var(--P0);
        }

        .menu-item.active-menu .menu-main-icon line {
            stroke: var(--P0);
        }*/



    /*.menu-item.active-menu-item .menu-main-icon rect[stroke="#fff"] {
            stroke: var(--P0);
        }

        .menu-item.active-menu-item .menu-main-icon rect[fill="#fff"] {
            fill: var(--P0);
        }

        .menu-item.active-menu-item .menu-main-icon path[stroke="#fff"] {
            stroke: var(--P0);
        }

        .menu-item.active-menu-item .menu-main-icon path[fill="#fff"] {
            fill: var(--P0);
        }

        .menu-item.active-menu-item .menu-main-icon rect[stroke="white"] {
            stroke: var(--P0);
        }

        .menu-item.active-menu-item .menu-main-icon rect[fill="white"] {
            fill: var(--P0);
        }

        .menu-item.active-menu-item .menu-main-icon path[stroke="white"] {
            stroke: var(--P0);
        }

        .menu-item.active-menu-item .menu-main-icon path[fill="white"] {
            fill: var(--P0);
        }

        .menu-item.active-menu-item .menu-main-icon line {
            stroke: var(--P0);
        }*/

    .login-content .login-content #login-content {
        align-items: flex-start;
        padding-top: 160px;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    #login-content .login-footer {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        color: white;
    }

    .login-content .login-content #fake-login-content {
        align-items: flex-start;
        padding-top: 160px;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    #fake-login-content .login-footer {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        color: white;
    }

    .prelogin-login-copyrights {
        display: flex;
        flex-direction: column;
        margin-top: 40px;
        font-size: 12px;
        align-items: center;
        justify-content: center;
    }

    .login-content .prelogin-slider {
        padding: 24px 24px 0;
        max-width: 700px;
    }

    .prelogin-full {
        padding-top: 144px;
    }

    #login-content {
        max-height: 100vh;
        overflow: auto;
        overflow-x: hidden;
    }

    #fake-login-content {
        max-height: 100vh;
        overflow: auto;
        overflow-x: hidden;
    }

    #faq-list-content {
        padding: 16px 0;
        /*max-height: calc(100vh - 260px);*/
    }

    .prelogin-full .scrollable-content {
        max-height: 100%;
    }

    .locations-content-flex {
        height: calc(100vh - 315px);
        column-gap: 24px;
        flex-direction: row;
    }

    .branches-list {
        max-width: 364px;
        display: block !important;
        padding: 24px 0;
    }

    .slider-tabs {
        margin-right: auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        max-width: 80%;
        overflow: auto;
        scroll-behavior: smooth;
    }
}

@media screen and (min-width: 769px) {
    .branches-list {
        background: var(--K4);
    }
}

@media only screen and (min-width: 769px) and (max-width: 1200px) {
    .side-modal-popup {
        width: 421px;
        transform: translateX(421px);
        -moz-transform: translateX(421px);
        -ms-transform: translateX(421px);
        -o-transform: translateX(421px);
        -webkit-transform: translateX(421px);
    }
}

@media only screen and (max-width: 1200px) {
    #profiles-holder {
        display: none;
    }

    .slider-tabs {
        flex-wrap: nowrap;
        display: flex;
        align-items: center;
        overflow: auto;
        scroll-behavior: smooth;
        width: 100%;
    }

    #accountsPicker .list-options-side {
        display: flex !important;
        width: max-content;
    }

    .menu-item a span {
        font-size: 14px;
        font-family: 'roboto-medium';
        line-height: 16px;
        margin-right: auto;
        text-transform: uppercase;
        color: var(--K2);
    }

    .menu-icon-holder {
        margin-right: 16px;
    }

    .dashed-divider {
        border-top: 1px dashed var(--K2);
        width: calc(100% - 48px);
        margin: 8px 24px;
    }

    #page-footer {
        width: 100%;
        left: 0;
    }

        #page-footer .app-version, #page-footer-prelogin .app-version {
            /*margin-right: auto;*/
        }

    .prelogin-full.-prelogin-autoheight {
        /*max-height: 100vh;
        overflow: scroll;
        overflow-x: hidden;*/
    }

    .login-content {
        padding: 0;
        overflow: auto;
        overflow-x: hidden;
    }

    .locations-content-flex {
        height: fit-content;
        min-height: calc(100vh - 190px);
    }

    .prelogin-map {
        height: 70vh;
    }
}

@media (min-width: 1400px) {
    #login-header::after {
        background-size: 101%;
    }
}

@media (min-width: 1570px) {
    #sortable-container {
        padding-left: 24px;
    }
}

.map-widget .accordian-title-heading-hold {
    max-width: calc(100% - 50px);
}

.map-widget .widget-content-inner {
    margin-top: 10px;
    margin-bottom: 10px;
}

.cas-info {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.casPopUpIcon {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-cas-transfer.png);
    background-size: contain;
    height: 54px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
}

.cas-on-login {
    margin-bottom: 20%;
}

.cas-on-login-info {
    padding-bottom: 15%;
}

.cas-icon svg,
.cas-icon img {
    height: 35px;
    width: 95px;
    margin-left: 0px;
}

.cas-menu-item .list-switch {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-cas-transfer.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.cas-menu-item .action-box-icon {
    display: none !important;
}

.casRegistrationIcon {
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/icon-cas-transfer.png);
    background-size: contain;
    height: 52px;
    background-color: transparent;
    background-repeat: no-repeat;
}

    .casRegistrationIcon.heading-icon {
        margin-bottom: 24px;
    }

.cas-registration-text {
    font-size: 14px;
    color: var(--K2);
    line-height: 18px;
    margin: 0;
    padding: 0 24px;
}

.account-div.no-accounts-container {
    display: flex;
    justify-content: center;
    color: var(--BG);
}

#confirmation-screen {
    padding: 5%;
    margin-top: 50px;
}

    #confirmation-screen .popup-header h3 {
        margin-bottom: 50px;
        text-align: center;
    }

    #confirmation-screen .popup-inner .popup-buttons {
        margin-left: 0;
    }

.contacts-main {
    width: 50%;
    height: 900px;
    margin-left: 25%;
    margin-top: 51px;
    top: 200px;
    height: auto;
}

@media screen and (max-width: 1400px) {
    .contacts-main {
        width: 70%;
        margin-left: 15%;
    }
}

@media only screen and (max-width: 980px) {
    .contacts-main {
        width: 100% !important;
        margin-left: 0 !important;
    }
}

.map-switch-div .widget-content-search-hold {
    bottom: 15px;
    position: absolute;
    width: 100%;
    z-index: 1;
}


.terms .icon-holder {
    height: 34px;
    width: 34px;
    margin-right: 16px;
}

.payment-steps {
    float: right;
}

.payment-title {
    margin-bottom: -32px !important;
}

.profile-image-box {
    display: flex;
}

.profile-image-close {
    position: absolute;
    right: 32px;
}

.remove-image-title {
    margin-top: 15%;
    margin-bottom: 15%;
}

.prompt-btn {
    position: relative;
    top: 10%;
}

.propmpt-text {
}

.flex-row {
    flex-direction: row !important;
}
/*Offline page CSS*/

/*@font-face {
    font-family: 'roboto-regular';
    src: url('./fonts/Roboto-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'roboto-medium';
    src: url('./fonts/Roboto-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'roboto-black';
    src: url('./fonts/Roboto-Black.ttf') format('truetype');
}

* {
    box-sizing: border-box;
}

body {
    width: 100%;
    margin: 0 auto;
    font-family: 'roboto-regular';
    position: relative;
}

img {
    width: 100%;
}

a {
    text-decoration: none;
}*/

.offline-content-wrap p {
    margin: 0;
    font-size: 16px;
    color: #868686;
}

.offline-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 24px;
}

.offline-logo {
    max-width: 160px;
}

.offline-content-wrap {
    min-height: calc(100vh - 114px);
    display: flex;
    flex-direction: column;
    padding: 40px 24px;
    margin: 0 auto;
    align-items: center;
}

.offline-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 32px;
    margin-bottom: 32px;
}

.offline-btns-hold {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.offline-image-hold {
    height: max-content;
    position: relative;
    margin-bottom: 56px;
    max-width: 350px;
}

    .offline-image-hold img {
        filter: drop-shadow(-2px 5px 6px rgba(0, 0, 0, 0.2));
    }

.offline-text-hold h2 {
    font-size: 3em;
    line-height: .9;
    text-align: center;
    color: #074861;
    font-family: 'roboto-regular';
    font-weight: normal;
    margin: 0;
    text-transform: uppercase;
}

    .offline-text-hold h2:nth-child(2) {
        font-family: 'roboto-black';
        margin-bottom: 40px;
    }

.offline-my-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    font-family: 'roboto-medium';
    text-transform: uppercase;
    cursor: pointer;
    transition: all ease 0.3s;
    font-size: 14px;
    line-height: 18px;
}

    .offline-my-btn span {
        font-size: 14px;
        line-height: 18px;
    }

    .offline-my-btn.offline-colored-btn {
        color: white;
        background: #00A3E0;
        border-radius: 8px;
    }

    .offline-my-btn svg,
    .offline-my-btn img {
        margin-right: 8px;
    }

    .offline-my-btn.offline-colored-btn:hover {
        background: #074861;
    }

    .offline-my-btn.empty-btn:hover {
        color: #00A3E0;
    }

/*********** Media queries ***********/
@media (min-width: 600px) {
    .offline-content-wrap {
        padding: 80px 0;
        max-width: 510px;
    }

    .offline-actions {
        row-gap: 56px;
        margin-bottom: 56px;
    }

    .offline-content-wrap p {
        font-size: 18px;
        line-height: 27px;
        text-align: center;
    }

    .offline-btns-hold {
        flex-wrap: wrap;
        flex-direction: row;
        column-gap: 24px;
        justify-content: center;
        align-items: center;
    }

    .offline-my-btn {
        width: calc(50% - 12px);
    }
}

@media (min-width: 1025px) {
    .offline-header {
        padding-bottom: 0;
    }

    .offline-content-wrap {
        flex-direction: column-reverse;
        padding: 24px;
        max-width: 1150px;
        column-gap: 125px;
        justify-content: flex-end;
    }

    .offline-actions {
        width: 50%;
    }

    .offline-btns-hold {
        column-gap: 30px;
    }

    .offline-my-btn {
        width: calc(50% - 15px);
    }

    .offline-image-hold {
        max-width: 25%;
    }

        .offline-image-hold:after {
            height: 156px;
        }
}

/*Offline page CSS END*/

.select-2 .dd-select {
    font-family: 'roboto-regular';
    font-size: 16px;
    line-height: 19px;
    color: var(--K1);
    margin: 4px 0 0 0;
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--K3);
    background: transparent !important;
    -webkit-appearance: none;
    border-radius: 0px;
}

/*.select-2 .dd-selected-text {
    font-family: 'roboto-regular';
    font-size: 16px;
    line-height: 19px;
    color: var(--K1);
    font-weight: normal;
}*/

.select-2 .dd-selected,
.select-2 .dd-selected-text {
    font-family: 'roboto-regular';
    font-size: 16px;
    line-height: 19px;
    color: var(--K1);
    font-weight: normal;
    padding: 0;
}

.select-2 .dd-pointer.dd-pointer-down {
    border: solid 5px transparent;
    border-top: solid 5px var(--P0);
}

.select-2 .dd-option.dd-option-selected, .select-2 .dd-option:hover, .select-2 .dd-option {
    background: var(--BG);
}

.select-2 .dd-options {
    border: 1px solid var(--K3);
    border-top: none;
}

.select-2 .dd-option .dd-option-text {
    color: var(--K1);
    font-weight: normal;
}

.select-2 .dd-option:hover, .select-2 .dd-option:hover .dd-option-text {
    background: #FAFAFA;
    cursor: pointer;
}

    .select-2 .dd-option:hover .dd-option-text {
        color: var(--K1);
    }

.gmaps-combo-map-holder {
    min-height: 400px;
    position: relative;
}

    .gmaps-combo-map-holder .input-search, .gmaps-combo-map-holder .input-search::placeholder {
        color: #fff;
    }

.unclickable {
    cursor: default;
}

.label-section-confirm-state {
    padding-left: 0px !important;
}

.display-none {
    display: none !important;
}

.menu-dashed-divider {
    border-bottom: 1px #ffffff dashed;
    width: 94px;
}

.input-label-ico.full-click-div.menu-dashed-divider {
    border: none;
    width: auto;
}

.mailbox-tabs {
    width: 100%;
    height: 62px;
    margin-bottom: 8px;
    display: inline-flex;
}

.mailbox-type {
    height: 62px;
    padding: 0px 30px;
}

    .mailbox-type.left {
        height: 62px;
        float: left;
    }

    .mailbox-type.right {
        height: 62px;
        float: right;
    }

    .mailbox-type.active {
        border-bottom: 2px solid var(--K1);
    }

.mailbox-container {
    padding-top: 0px !important;
}

.mailbox-type a {
    text-align: center;
    display: block;
    margin-top: 32px;
}

.facilities-body .inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
}

.branches-list-with-filter {
    height: calc(100% - 320px);
}

.accounts-widget .list-options-side .option-slider {
    display: flex;
}

    .accounts-widget .list-options-side .option-slider.active {
        display: none;
    }

.accounts-widget .list-options-side .option-list {
    display: flex;
}

    .accounts-widget .list-options-side .option-list.active {
        display: none;
    }


.pki-instructions .item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px 24px 16px 24px;
}

.pki-instructions .item-name {
    font-size: 16px;
}

.pki-instructions .install-link, .pki-instructions .install-status {
    display: block;
    font-size: 14px;
    color: #868686;
}

.pki-instructions .point-1, .pki-instructions .point-2 {
    font-size: 14px;
}

.pki-instructions .ico {
    margin-right: 10px;
}

.pki-instructions .note {
    font-size: 14px;
    text-align: center;
    padding: 16px 24px 16px 24px;
    color: #3F5160;
}

.default-btn[disabled] {
    background-color: #F3F5F7;
    color: #3F5160
}

    .default-btn[disabled]:hover {
        background-color: #F3F5F7;
        color: #3F5160;
        cursor: not-allowed;
    }

.pki-instructions .item.ok .uncheck {
    display: none;
}

.pki-instructions .item.ok .check {
    display: inline;
}

.pki-instructions .item.ok .install-link {
    display: none;
}

.pki-instructions .item.ok .install-status {
    display: inline;
}

.install-guide.ok {
    display: none;
}


.pki-instructions .item.nok .uncheck {
    display: inline;
}

.pki-instructions .item.nok .check {
    display: none;
}

.pki-instructions .item.nok.windows {
    display: flex;
}

.pki-instructions .item.ok.windows {
    display: none;
}

.pki-instructions .item.nok .install-link {
    display: inline;
}

.pki-instructions .item.nok .install-status {
    display: none;
}

.pki-instructions .native-component .new-version-text {
    display: none;
    color: var(--ERROR);
    font-size: 13px;
}

.pki-instructions .native-component.new-version-avaliable .new-version-text {
    display: inline;
}

.pki-instructions .native-component.new-version-avaliable .install-link {
    display: block;
}

.pki-instructions .native-component.new-version-avaliable .install-status {
    display: none;
}

.widget-content-sort-hold {
    display: flex;
    align-items: center;
    padding: 8px 24px;
    column-gap: 8px;
    justify-content: flex-end;
}

[data-title] {
    position: relative;
}

    [data-title]:hover::before {
        content: attr(data-title);
        position: absolute;
        top: -48px;
        left: 0px;
        display: inline-block;
        padding: 9px 18px;
        border-radius: 6px;
        background: var(--P0);
        color: #fff;
        font-size: 12px;
        font-family: sans-serif;
        white-space: nowrap;
    }

    [data-title]:hover::after {
        content: '';
        position: absolute;
        top: -20px;
        left: 8px;
        display: inline-block;
        color: #fff;
        border: 8px solid transparent;
        border-bottom: 8px solid var(--P0);
        transform: rotate(180deg)
    }

.widget-content-sort-hold .widget-options {
    margin-top: 5px;
}

.draft-image {
    height: auto;
    max-height: 200px;
    width: auto;
}

.small-draft-image {
    width: 32px;
    height: 32px;
}

.details-header-hold {
    display: flex;
    justify-content: space-between;
}

.toogle-group {
    justify-content: space-between;
}


.ui-widget.ui-menu.ui-autocomplete {
    background: #fff !important;
    background-image: none !important;
    box-shadow: none;
}

body .ui-widget-content.ui-autocomplete .ui-state-active {
    font-size: 14px;
}

.ui-menu .ui-state-focus, .ui-menu .ui-state-active {
    margin: 0px;
}

.file-upload-button {
    max-width: 100%;
    width: 100%;
}

.upload-wrapper {
    flex-flow: wrap;
}

.uploadedDocuments {
    width: 100%;
    flex-flow: column;
}

.uploadedDocuments-item {
    display: flex;
    flex-flow: row;
    width: 100%;
}


    .uploadedDocuments-item .text-holder {
        flex-basis: 90%;
    }

    .uploadedDocuments-item .icon-holder {
        flex-basis: 5%;
    }

.download-fil
overflow: hidden;
text-overflow: ellipsis;
}

.no-side-padding {
    padding-left: 0px;
    padding-right: 0px;
}

.payment-list-item .input-label-ico {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding: 0px;
    align-items: center;
    column-gap: 16px;
    color: var(--P0);
}

    .payment-list-item .input-label-ico .key::after {
        content: ":"
    }

.no-account-picker-choices {
    min-height: 150px;
    align-content: center;
}

    .no-account-picker-choices h2 {
        color: #ffffff;
        text-align: center;
    }

.account-slider .account-bg-card {
    background: linear-gradient(56.26deg, #000000 -2.89%, rgba(7, 72, 97, 0.9) 36.18%, rgba(7, 72, 97, 0) 98.08%, rgba(7, 72, 97, 0) 98.08%),url(/webapp/Themes/StandardRedesign/img/photos/card-visuals.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 0px !important;
}

.slick-center .card-box {
    min-height: 200px !important;
}

.card-box {
    margin-top: 0px !important;
    left: 0%;
    right: 0%;
    background: rgba(0, 0, 0, 0.4);
    padding: 16px;
}

.slick-center .card-details-container {
    margin-bottom: 20px
}

.card-details-container {
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.15));
    border-radius: 8px;
    margin-bottom: 0px
}

.bank-logo {
    width: 100px;
    height: 32px;
    float: left
}

.card-brand-container {
    display: flex;
    flex-direction: column;
    align-items: end;
    padding: 0px;
    gap: 4px;
}

.card-brand {
    width: 40px;
    height: 24px; /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
}

.card-expiration {
    width: 40px;
    height: 14px; /* Regular/R3 - 12 Label */
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    text-align: center; /* Light/Background/BG */
    color: #FFFFFF; /* Modal_Shadow */
    text-shadow: 0px -1px 2px rgba(0, 0, 0, 0.2); /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 0;
}

.card-details {
    /* Owner, Card */ /* Auto layout */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 4px;
    width: 182px;
}

.slick-center .card-details span {
    font-size: 12px;
    line-height: 14px;
}

.card-details span {
    font-family: 'roboto-regular';
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    color: #FFFFFF;
}

    .card-details span.card-owner {
        font-weight: 900;
        font-size: 14px;
        padding-bottom: 2px;
    }

    .card-details span.products-name {
        text-transform: uppercase;
    }

.slick-center .card-number-container {
    width: 182px;
    height: 12px;
}

.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
    color: var(--K2);
}

.group-image-above-fields .payment-list-item {
    flex-flow: column;
    align-items: center;
}

    .group-image-above-fields .payment-list-item .icon-holder.group-icon {
        width: auto;
        height: auto;
    }

    .group-image-above-fields .payment-list-item .label-section {
        text-align: center;
    }

.ui-menu-item .breadcrumbs-holder {
    display: flex !important;
}

.cas-item-holder:hover {
    background: rgba(0, 0, 0, 0);
    cursor: auto;
}

.cas-item-holder .input-label-ico {
    padding-top: 0px;
    padding-bottom: 0px;
}

.cas-item-holder-short {
    width: 90%;
}

.section-title input {
    font-family: 'roboto-medium';
    font-size: 16px;
    color: var(--P0);
    margin: 0;
}

.input-label-ico textarea {
    font-family: 'roboto-regular';
    font-size: 16px;
    line-height: 19px;
    color: var(--K1);
    margin: 4px 0 0 0;
    width: 100%;
    background: transparent;
    -webkit-appearance: none;
}

.widget-content-inner .message-widget-container {
    min-height: unset !important;
}

.default-accounts-process .account-div {
    background: transparent;
    box-shadow: none;
}

    .default-accounts-process .account-div .icon-text-hold .icon-holder {
        display: none;
    }

    .default-accounts-process .account-div .icon-text-hold .text-holder span, .default-accounts-process .account-div .icon-text-hold .text-holder .account-num {
        color: var(--K2);
    }

    .default-accounts-process .account-div .amount-currency-holder .amount {
        display: none;
    }

    .default-accounts-process .account-div .amount-currency-holder .currency-picker-selector {
        display: none;
    }

.default-accounts-process .input-label-ico label {
    color: var(--P0);
}

.exchange-rates-configure-widget .input-label-ico.full-click-div,
.exchange-currency-configure-widget .input-label-ico.full-click-div {
    padding: 1px 14px;
}

.quick-actions-configure .input-label-ico.full-click-div {
    padding: 8px 6px;
}

.authorization-tabs {
    margin-bottom: 10px;
}

    .authorization-tabs li {
        width: 100%;
    }

.field-group-switch {
    display: inline-block;
    background-color: transparent;
    background-repeat: no-repeat;
    cursor: pointer;
    position: relative;
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-image: url(/webapp/Themes/StandardRedesign/img/icons/ic_arrrow_down.png);
    border: none !important;
    width: 32px;
    height: 32px;
    background-position: center !important;
    background-size: 100% !important;
    float: none;
}

    .field-group-switch.open {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

.order-checks .payment-content-full .list-holder-horizontal {
    justify-content: center;
}

.no-accounts-text {
    color: #fff;
    width: 100%;
    text-align: center;
}

.default-accounts-process .no-accounts-text {
    color: var(--P0);
}

.widget-options.active span.active {
    display: inline;
}

.widget-options.active span.inactive {
    display: none;
}

.widget-options.inactive span.active {
    display: none;
}

.widget-options.inactive span.inactive {
    display: inline;
}

.card-status-ovarlay {
    box-shadow: inset 0px 0px 0 5000px rgba(0,0,0,0.5) !important;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    display: flex;
}

.card-status-message {
    color: black;
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: white;
    width: calc(100% - 30px);
    padding: 8px;
    font-size: 16px;
    height: 32px;
    border-radius: 8px;
}

.card-status-icon {
    color: black;
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: white;
    width: 32px;
    height: 32px;
    font-size: 14px;
    border-radius: 8px;
}

.card-status-ovarlay-list {
    box-shadow: inset 0px 0px 0 5000px rgba(0, 0, 0, 0.5) !important;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    display: flex;
    width: 300px;
    height: 62px;
}

input::-ms-reveal,
input::-ms-clear {
    display: none;
}


.prelogin-slider .slide {
    margin-bottom: 35px;
}

.prelogin-slider .slick-dots {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}


.prelogin-slider .slick-list {
    padding: 0;
    margin: 0;
}

.btn-1.color-1 {
    background-color: var(--P1);
    color: var(--BG);
    box-shadow: 4px 4px 8px 0px #00000026;
}

    .btn-1.color-1:hover {
        background-color: var(--P2);
        color: var(--P1);
        box-shadow: 0px 0px 0px 1px;
    }

    .btn-1.color-1:active {
        background: transparent;
        color: var(--P1);
        box-shadow: none;
    }

.btn-1.color-2 {
    background-color: var(--P2);
    color: var(--P1);
}

    .btn-1.color-2:hover {
        background-color: var(--P0);
        color: var(--BG);
    }

.btn-1.color-3 {
    background-color: var(--K3);
    color: var(--P1);
}

    .btn-1.color-3:hover {
        background-color: var(--K4);
        color: var(--P1);
        box-shadow: 0px 0px 0px 1px;
    }

.btn-1.color-4 {
    background: var(--P2);
    color: var(--ERROR);
    border: 1px solid var(--ERROR);
}

    .btn-1.color-4:hover {
        color: var(--P2);
        background: var(--ERROR);
    }

.default-btn.empty-btn {
    background: var(--K4);
    color: var(--P1);
    box-shadow: 0px 0px 0px 1px;
}
.default-btn.empty-btn:hover {
    background: var(--P1);
    color: var(--K4);
    box-shadow: 0px 0px 0px 1px;
}

#login-header .site-logo a {
    display: inline-block;
    width: 220px;
    height: 80px;
    background: url(/webapp/Themes/RSBPS/img/bg/BPS_logo_white.png) 0 0 no-repeat;
    background-size: contain;
    text-indent: -9999px;
    overflow: hidden;
    margin: 0;
    cursor: pointer;
}

#page-header .site-logo a {
    display: block;
    height: 98px;
    background: url(/webapp/Themes/RSBPS/img/bg/BPS_logo.png) 0 0 no-repeat;
    background-size: 100%;
    text-indent: -9999px;
    overflow: hidden;
    margin: auto;
    background-position: center;
}

#login-header .site-logo {
    height: 72px;
}

#login-header::after {
    background: none !important;
}
#login-content .login-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    margin: auto 0 0 0;
}

#fake-login-content {
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 24px;
    background: rgb(31 53 102 / 60%);
}

.side-modal-popup .actions a {
    font-size: 14px;
    color: var(--P0);
    text-transform: uppercase;
    font-weight: 700;
}

.footer-logo {
    background: url(/webapp/Themes/RSBPS/img/bg/BPS_logo_white.png) 0 center no-repeat;
    width: 136px;
    height: 50px;
    background-size: contain;
}

    .footer-logo svg{
        display: none;
    }

    .acc-nr {
        font-family: 'roboto-regular', sans-serif;
        font-size: 12px;
        line-height: 16px;
        color: var(--BG);
        margin-bottom: 0px;
        text-align: right;
    }

.list-options-side li.active rect[stroke="#fff"],
.list-options-side li.active line[stroke="#fff"] {
    stroke: var(--bgOK2);
}

.list-options-side li.active path[fill="#fff"],
.list-options-side li.active path[fill="#fff"],
.list-options-side li:hover path[fill="#fff"] {
    fill: var(--bgOK2);
}

.list-options-side li:hover line[stroke="#fff"] {
    stroke: var(--bgOK2);
}

.list-options-side li:hover rect[stroke="#fff"] {
    stroke: var(--bgOK2);
}

.menu-item.active-menu .menu-main-icon path[stroke="#fff"] {
    stroke: var(--P0);
}

.menu-item.active-menu .menu-main-icon path[fill="#fff"],
.menu-main-icon path[fill="#fff"] {
    fill: var(--P0);
}

.faq-icon-prelogin {
    margin-right: 10px;
}

.slider-tabs li:after {
    background: VAR(--bgOK2);
}

.slider-tabs li:hover a {
    color: var(--bgOK2) !important;
}

.bg-card-credit{
    background-color: var(--cardCredit) !important;
}

.bg-card-debit {
    background-color: var(--cardDebit) !important;
}

.bg-card-tenant {
    background-color: var(--cardTenant) !important;
}

.quick-search-input {
    width: 411px;
    right: 26px;
    left: auto;
    top: 157px;
}

.popup-box {
    padding: 2%;
}

.default-btn.primary-btn:hover {
    background: var(--P3);
    color: var(--P1);
}
/*Widgets*/
.tips-icon-holder path[fill="#00A3E0"],
.tips-icon-holder path[stroke="#5BC199"],
.tips-icon-holder path[stroke="#00A3E0"] {
    stroke: var(--P0);
    fill: var(--P0);
}

.hidden-rearange-header {
    background: var(--P0);
}

.full-width-container.rearange-on {
    padding: 0 16px 16px;
    border: 2px dashed var(--P0);
    border-radius: 8px;
}

.widget-map .widget-content .widget-tabs {
    padding: 16px 0 3px;
    justify-content: center;
    overflow: hidden;
}

.widget-content-inner .widget-tabs {
    padding: 16px 24px;
}

.exchange-widget-configure {
    position: absolute;
    right: 0;
    padding: 10px;
}

.custom-exchange-widget .currency-detail {
    overflow: hidden;
}

.inbox-status-wrap .inbox-one-status.unread-msgs span {
    color: #D40E14;
}

.checkbox-2.styledCheckbox.checked {
    color: var(--P2);
}

.side-modal-popup .content-inner {
    height: calc(100vh - 200px);
}

    .exchange-widget-values .col {
        padding-top: 18px;
        padding-left: 30px;
    }


/**/

.transfer-upload-add {
    background-image: url(/webapp/Themes/RSBPS/img/icons/add-icon.png);
    background-size: 18px;
    margin-bottom: 10px;
}

.transfer-upload-delete {
    background-image: url(/webapp/Themes/RSBPS/img/icons/remove-icon.png);
    background-size: 18px;
}

/*autocomplete UI widget*/
body .ui-widget-content .ui-state-active,
body .ui-widget-header .ui-state-active,
body .ui-widget-content .ui-state-hover,
body .ui-widget-header .ui-state-hover {
    border-color: transparent;
    background: transparent;
    color: var(--P1);
}
/**/
.plain-list .key {
    float: left;
    font-size: 14px;
    color: var(--K2);
    margin: 0 auto 25px 25px;
}

.radio-button-filter {
    margin-left: 20px;
    margin-bottom: 20px;
}

.error-msg {
    color: red;
}

.instrument-amount-balance-transfer {
    font-weight: bolder;
    color: black;
}

.location-contact-data {
    display: grid;
    grid-gap: 5px;
    margin: 2% 0 0 10%;
}

.prelogin-exchange-inner .grey-box-flex {
    min-width: 900px;
}

.prelogin-exchange-inner .col-left {
    width: 30%;
}

.col-ls-12 {
    width: 50%;
}

.list-item-exchange-switch .float-right {
    float: right !important;
    margin-left: 50%;
}

#become-client-box {
    width: 330px;
    border-radius: 8px;
    padding: 26px 0 0 0;
    background: var(--P1);
}

    #become-client-box .default-btn.empty-btn {
        background: #fff;
        color: var(--P1);
    }

        #become-client-box .default-btn.empty-btn:hover {
            background: var(--P3);
            color: #fff;
        }

.becoome-client-title {
    font: 400 20px/1.2 "Roboto", sans-serif;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    margin-bottom: 26px;
    text-align: center;
}

.becoome-client-subtitle {
    font-size: 23px;
    line-height: 31px;
    padding: 0;
    border: none;
    font-weight: 100;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    margin-bottom: 18px;
    text-align: center;
}

.btn-1.color-2 { /*Pitati Sanju - Stilizacija dugmeta nije u standardu po Figmi*/
    border: var(--P0) 1px solid;
}

.get-for-date {
    margin-left: 22px;
    width: 90%;
}

.input-label-ico input[readonly] {
    border-bottom: 1px solid var(--K3);
}

.widget-slat h3 {
    position: unset;
    margin-top: 20px;
    margin-bottom: 20px;
}

.list-item-default-icon {
    padding: 0px 0px;
    width: 100%;
}

::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 10px 10px var(--P2);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--P0);
    border-radius: 10px;
}

.prelogin-slider-btn {
    margin-right: 0;
}
.become-client-hold {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
}
.become-client-hold .horizontal-btns {
    width: 100%;
}
/*********************** MEDIA QUERIES ***********************/
@media only screen and (max-width: 1200px) {
    #become-client-box {
        width: 80%;
        border-radius: 8px;
        padding: 26px 0 0 0;
        background: var(--P1);
        margin: 0 10% 0 10%;
        margin-top: 94px;
    }
}
@media only screen and (max-width: 767px) {
    .login-box {
        padding: 100px 16px 8px;
    }
    #become-client-box {
        width: 100%;
        margin: 0 auto;
        margin-top: 0;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
    #login-content {
        padding: 160px 40px 24px;
    }
}

@media screen and (min-width: 1200px) {
    #login-content {
        background: rgb(31 53 102 / 60%);
    }
}
}
.beneficiary-list-item-default-icon-a {
    display: flex !important;
    align-items: center;
    padding: 16px 24px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.configure-checkbox {
    right :0;
    left: auto;
}
.widget-tabs li a {
    text-wrap: pretty;
}
.blue-info-box span{
    padding-right:10px;
}
.wrap-text{
    white-space: pre-wrap !important;
}
.select-on-picker {
    width: 60px;
    height: 30px;
    border: 1px solid white;
    margin-right: 0px;
    margin-left: 10px;
}

.radio-1.styledRadio {
    background-image: url(/webapp/Themes/RSBPS/img/icons/radio-1.png);
}

.on-picker-triangle {
    border-color: #fff transparent transparent transparent !important;
}
.select-currency-value {
    display: inline-block;
    flex-direction: row;
    align-items: center;
    padding: 8px 4px;
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;
    font-family: roboto-medium;
    color: #fff;
}
.side-modal-popup .actions .close-box {
    background: url(/webapp/Themes/RSBPS/img/icons/icon-close-3.png) 100% no-repeat;
    background-position:center;
}
.single-slide .account-box .acc-img{
    position:relative;
}
.date-wrap{
    display:flex;
}
.location-link{
    font-weight:bold;
    font-size:larger;
}

.btn-1.color-3 {
    border: var(--P1) 1px solid;
}

.menu-item.active-menu-item .menu-main-icon path[stroke="#fff"] {
    stroke: var(--P0);
}
.widget-actions.widget-corner {
    position: absolute;
    right: 0;
    left: auto;
}
.prelogin-marketing-hold {
    background: url(/webapp/Themes/RSBPS/img/bg/prelogin-bg-overlay.svg), linear-gradient(14deg, rgb(5 40 53 / 90%) 10%, rgba(7,72,97,0.4) 28%, rgba(7,72,97,0) 48%);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: contain;
}
.accounts-widget .overlay-1 {
    background-image: url(/webapp/Themes/RSBPS/img/bg/img_bg-account-picker.png);
}
.accounts-widget .bg-overlay {
    opacity: 0.7;
}
.accounts-slider-header {
    background: rgba(0, 0, 0, 0.9);
}

.account-box.account-bg-1 {
    background: var(--P1) url(/webapp/Themes/RSBPS/img/bg/acc-bg-1.png) center bottom no-repeat;
}

.account-box.account-bg-2 {
    background: var(--OK) url(/webapp/Themes/RSBPS/img/bg/acc-bg-1.png) center bottom no-repeat;
}

.account-box.account-bg-3 {
    background: var(--S2) url(/webapp/Themes/RSBPS/img/bg/acc-bg-1.png) center bottom no-repeat;
}

.account-box.account-bg-4 {
    background: var(--P0) url(/webapp/Themes/RSBPS/img/bg/acc-bg-1.png) center bottom no-repeat;
}

/**/
#ImageUploadGroup,
.profile-image-action {
    margin-top: 15%;
}

.profile-img-group {
    width: 120px;
    height: 139px;
    position: relative;
    margin: 10px auto 40px auto;
}

.profile-image-header {
    display: flex;
    margin-bottom:20%;
}
.profile-image-close {
    right: 5%;
    position: absolute;
}
.profile-image-title {
    margin-bottom: 15%;
}


/* ACCOUNT PICKER FIELD */
.accounts-widget .list-options-side .option-slider {
    display: flex;
}

.accounts-widget .list-options-side .option-slider.active {
    display: none;
}

.accounts-widget .list-options-side .option-list {
    display: flex;
}

.accounts-widget .list-options-side .option-list.active {
    display:none;
}

.account-slider .slick-slide {
    position: relative;
}

    .account-slider .slick-slide:after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        display: block;
    }

    .account-slider .slick-slide.slick-center:after {
        display: none;
    }

.account-slider {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    margin-bottom: 25px;
}

    .account-slider .swiper-container {
        overflow: visible;
    }

    .account-slider .slide {
        padding: 0 12px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
    }

    .account-slider .slick-track {
        display: flex;
        align-items: center;
        height: 214px !important;
        overflow: hidden;
        transition: all ease 0.6s;
    }

    .account-slider .slick-list {
        overflow: hidden;
        overflow-y: visible;
        max-width: 960px;
        margin: 0 auto;
    }


    .account-slider .account-box {
        width: 378px;
        margin: 0 auto;
        opacity: 0.4;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
        box-shadow: 0 5px 28px 8px transparent;
        -webkit-box-shadow: 0 5px 28px 8px transparent;
    }

        .account-slider .account-box.cards-account-box {
            margin-top: 16px !important;
            width: 327px !important;
            overflow: hidden;
        }

        .account-slider .account-box.cards-account-box {
            background: linear-gradient(56.26deg, #000000 -2.89%, rgba(7, 72, 97, 0.9) 36.18%, rgba(7, 72, 97, 0) 98.08%, rgba(7, 72, 97, 0) 98.08%),url(/webapp/Themes/RSBPS/img/photos/card-visuals.png);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
        }

            .account-slider .account-box.cards-account-box.visa-electron, .account-slider .account-box.cards-account-box.visa-standard {
                background: linear-gradient(56.26deg, #000000 -2.89%, rgba(7, 72, 97, 0.9) 36.18%, rgba(7, 72, 97, 0) 98.08%, rgba(7, 72, 97, 0) 98.08%),url(/webapp/Themes/RSBPS/img/photos/card-visuals-visa.png);
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center;
            }

            .account-slider .account-box.cards-account-box.master-standard {
                background: linear-gradient(56.26deg, #000000 -2.89%, rgba(7, 72, 97, 0.9) 36.18%, rgba(7, 72, 97, 0) 98.08%, rgba(7, 72, 97, 0) 98.08%),url(/webapp/Themes/RSBPS/img/photos/card-visuals.png);
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center;
            }

#account-slider-side {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding-top: 5px;
    margin-bottom: 25px;
    position: relative;
}

@media screen and (max-width: 600px) {

    #account-slider .slick-dots {
        display: block !important;
        text-align: center;
        margin-top: 20px;
        text-align: center;
        position: relative !important;
        bottom: 0;
        width: 100%;
    }
}

.select-currency-triangle {
    border-width: 4px 0 4px 5px;
    border-color: transparent transparent transparent var(--P1);
}
.account-div .select-currency-triangle {
    border-width: 4px 0 4px 5px;
    border-color: transparent transparent transparent var(--BG);
}
.label-1,
.label-section h2,
.text-transform-capitalize,
.list-item-default-icon .text-holder .list-default-icon-bottom-desc,
.beneficiary-list-item-default-icon .text-holder .main-label,
.list-item-for-split-the-bill .text-holder .main-label,
.list-item-for-split-the-bill .text-holder .bottom-label,
.one-creditor-details .one-creditor-details-name,
.language-list-item-label,
.list-item-exchange-switch-bottom-label,
.card-div .available-balance span,
.payment-list-item .text-holder .payment-list-item-label,
.payment-list-item .text-holder .payment-list-item-desc span,
.menu-item.second-level-menu-item span,
.account-box.cards-account-box .acc-nr, .account-box.cards-account-box .acc-card-brand,
.flex-widget-header .widget-header-title,
.title-large-text-hold .main-title-desc.card-brand-above-title,
.transaction-details-brief .transaction-brief-desc,
.products-names-list .list-item-default-icon .text-holder span,
#become-client-hold .steps-of-form-hold .list-item-default-icon-no-a-tag span,
.one-statement .text-and-switch .one-statement-name,
.actions-wrap .action-box .action-text {
    text-transform: none !important;
}

@media only screen and (min-width: 768px) {
    .breadcrumbs-holder {
        display: none !important;
    }
}

.account-box.account-bg-2,
.list-item.account-bg-2 {
    background-color: VAR(--bgOK2) !important;
}

.account-box.account-bg-3,
.list-item.account-bg-3 {
    background-color: #D3AD4F !important;
}

.account-slider .account-slider .card-product-4999 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/4999.png) center bottom no-repeat !important;
    background-size: cover !important;
}

.account-slider .card-product-4998 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/4998.png) center bottom no-repeat !important;
    background-size: cover !important;
}

.account-slider .card-product-4997 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/4997.png) center bottom no-repeat !important;
    background-size: cover !important;
}

.account-slider .card-product-4996 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/4996.png) center bottom no-repeat !important;
    background-size: cover !important;
}

.account-slider .card-product-4994 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/4994.png) center bottom no-repeat !important;
    background-size: cover !important;
}

.account-slider .card-product-4993 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/4993.png) center bottom no-repeat !important;
    background-size: cover !important;
}

.account-slider .card-product-4992 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/4992.png) center bottom no-repeat !important;
    background-size: cover !important;
}

.account-slider .card-product-499026 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/499026.png) center bottom no-repeat !important;
    background-size: cover !important;
}

.account-slider .card-product-499025 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/499025.png) center bottom no-repeat !important;
    background-size: cover !important;
}

.account-slider .card-product-499024 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/499024.png) center bottom no-repeat !important;
    background-size: cover !important;
}

.account-slider .card-product-499023 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/499023.png) center bottom no-repeat !important;
    background-size: cover !important;
}

.account-slider .card-product-499022 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/499022.png) center bottom no-repeat !important;
    background-size: cover !important;
}

.account-slider .card-product-499021 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/499021.png) center bottom no-repeat !important;
    background-size: cover !important;
}

.account-slider .card-product-499020 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/499020.png) center bottom no-repeat !important;
    background-size: cover !important;
}

.account-slider .card-product-499019 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/499019.png) center bottom no-repeat !important;
    background-size: cover !important;
}

.account-slider .card-product-499018 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/499018.png) center bottom no-repeat !important;
    background-size: cover !important;
}

.account-slider .card-product-499017 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/499017.png) center bottom no-repeat !important;
    background-size: cover !important;
}

.account-slider .card-product-499016 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/499016.png) center bottom no-repeat !important;
    background-size: cover !important;
}

.account-slider .card-product-499015 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/499015.png) center bottom no-repeat !important;
    background-size: cover !important;
}

.account-slider .card-product-499014 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/499014.png) center bottom no-repeat !important;
    background-size: cover !important;
}

.account-slider .card-product-499013 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/499013.png) center bottom no-repeat !important;
    background-size: cover !important;
}

.account-slider .card-product-499012 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/499012.png) center bottom no-repeat !important;
    background-size: cover !important;
}

.account-slider .card-product-499010 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/499010.png) center bottom no-repeat !important;
    background-size: cover !important;
}

.account-slider .card-product-499009 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/499009.png) center bottom no-repeat !important;
    background-size: cover !important;
}

.account-slider .card-product-499008 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/499008.png) center bottom no-repeat !important;
    background-size: cover !important;
}

.account-slider .card-product-499007 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/499007.png) center bottom no-repeat !important;
    background-size: cover !important;
}

.account-slider .card-product-499006 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/499006.png) center bottom no-repeat !important;
    background-size: cover !important;
}

.account-slider .card-product-499005 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/499005.png) center bottom no-repeat !important;
    background-size: cover !important;
}

.account-slider .card-product-499004 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/499004.png) center bottom no-repeat !important;
    background-size: cover !important;
}

.account-slider .card-product-499003 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/499003.png) center bottom no-repeat !important;
    background-size: cover !important;
}

.account-slider .card-product-499002 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/499002.png) center bottom no-repeat !important;
    background-size: cover !important;
}

.account-slider .card-product-499001 {
    background: url(/webapp/Themes/RSBPS/img/bg/card-img/499001.png) center bottom no-repeat !important;
    background-size: cover !important;
}


.unread-msg-count {
    padding: 5px 2px 0px;
    display: inline-block;
    width: 100%;
    text-align: left;
    font-family: roboto-regular;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 5px;
}

.inbox-msg-list-item-main-label {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 400px;
    white-space: nowrap;
}

.urgent-icon circle {
    stroke: red
}

.urgent-icon path,
.urgent-icon-details circle {
    fill: red;
}

.message-widget-container {
    overflow: scroll;
}

.archive-mark-as-read-multiselect {
    display: flex;
    column-gap: 4px;
}

@media (max-width: 770px) {
    .archive-mark-as-read-multiselect {
        display: none;
    }
}

@media (min-width: 800px) {

    .inbox-msg-list-item .inbox-msg-check-item {
        display: flex !important;
    }

    .select-all-msgs-wrap {
        display: flex !important;
    }
}

.textfield-display {
    display: block;
}

.add-attachment {
    text-align: center;
    cursor: pointer;
    margin-top: 20px;
}

.attachementName,
.deleteAttachement,
#uploadedDocuments li .attachementName {
    margin-left: 20px;
    font-family: 'roboto-regular';
    font-size: 18px;
    line-height: 30px;
    color: #868686;
    margin-right: 20px;
    max-width: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hide-x-overflow {
    overflow-x: hidden;
}

#uploadedDocuments {
    padding-bottom: 50px;
}

.moxie-shim .moxie-shim-html5 {
    display: none !important;
}

.breadcrumbs {
    display: none !important;
}

.input-label-ico input[type=number] {
    text-align: right;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.ui-menu-item .breadcrumbs-holder {
    display: flex !important;
}

.slick-slide .balance-slat {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    margin-top: 10px;
}

.slick-slide .account-box .main-balance p {
    font-size: 15px;
}
.slick-slide .account-box .acc-balance-txt {
    font-size: 10px;
    text-align: left;
}

.slick-center .account-box-amount {
    font-size: 22px !important;
}

.slick-center .account-box .acc-balance-txt {
    font-size: 16px;
    text-align: left;
}
.message-container.msg-readed .list-item-main-label,
.message-container.msg-readed .inbox-msg-list-item-main-label {
    color: var(--K2) !important;
}

.slick-slider.account-slider{
    visibility:hidden;
}

.slick-slider.account-slider.slick-initialized {
    visibility: visible;
}
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none;
}
