/* 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('../../fonts/roboto-black.ttf') format('truetype');
}

@font-face {
    font-family: 'roboto-blackitalic';
    src: url('../../fonts/roboto-blackitalic.ttf') format('truetype');
}

@font-face {
    font-family: 'roboto-bold';
    src: url('../../fonts/roboto-bold.ttf') format('truetype');
}

@font-face {
    font-family: 'roboto-bolditalic';
    src: url('../../fonts/roboto-bolditalic.ttf') format('truetype');
}

@font-face {
    font-family: 'roboto-italic';
    src: url('../../fonts/roboto-italic.ttf') format('truetype');
}

@font-face {
    font-family: 'roboto-light';
    src: url('../../fonts/roboto-light.ttf') format('truetype');
}

@font-face {
    font-family: 'roboto-lightitalic';
    src: url('../../fonts/roboto-lightitalic.ttf') format('truetype');
}

@font-face {
    font-family: 'roboto-medium';
    src: url('../../fonts/roboto-medium.ttf') format('truetype');
}

@font-face {
    font-family: 'roboto-mediumitalic';
    src: url('../../fonts/roboto-mediumitalic.ttf') format('truetype');
}

@font-face {
    font-family: 'roboto-regular';
    src: url('../../fonts/roboto-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'roboto-thin';
    src: url('../../fonts/roboto-thin.ttf') format('truetype');
}

@font-face {
    font-family: 'roboto-thinitalic';
    src: url('../../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(../../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(../../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(../../img/icons/radio-1.png);
    background-size: 20px;
    cursor: pointer;
}

    .radio-1.styledRadio.disabled {
        background-image: url(../../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(../../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(../../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(../../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(../../img/icons/icon-alert-2.png);
    background-size: 24px;
}

.icon-attachment-1 {
    background-image: url(../../img/icons/attachment-icon.png);
    background-size: 20px;
}

.icon-attachment-2 {
    background-image: url(../../img/icons/icon-attachment-2.png);
    /*  background-size: 10px 22px;*/
}

.icon-archive {
    background-image: url(../../img/icons/icon-archive.png);
    /*  background-size: 10px 22px;*/
}

.icon-replay {
    background-image: url(../../img/icons/ic_transaction_external_transfer.png);
    /*  background-size: 10px 22px;*/
}

.icon-message {
    background-image: url(../../img/icons/icon-message.png);
    /*  background-size: 10px 22px;*/
}

.icon-atm-1 {
    background-image: url(../../img/icons/icon-atm-1.png);
    background-size: 18px;
}

.icon-arrow-right {
    background-image: url(../../img/icons/arrow-icon-right.png);
    background-size: 18px;
}

.icon-arrow-down {
    background-image: url(../../img/icons/arrow-down-icon.png);
    background-size: 18px;
}

.icon-book-1 {
    background-image: url(../../img/icons/icon-book-1.png);
    background-size: 18px;
}

.file-upload-add {
    background-image: url(../../img/icons/add-icon-white.png);
    background-size: 18px;
    margin-bottom: 10px;
}

.file-upload-delete {
    background-image: url(../../img/icons/remove-icon-white.png);
    background-size: 18px;
}

.transfer-upload-add {
    background-image: url(../../img/icons/add-icon-white.png);
    background-size: 18px;
    margin-bottom: 10px;
}

.transfer-upload-delete {
    background-image: url(../../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(../../img/icons/icon-branch.png);
    background-size: 18px;
}

.icon-branch-2 {
    background-image: url(../../img/icons/icon-branch-1.png);
    background-size: 18px;
}

.icon-card-1 {
    background-image: url(../../img/icons/icon-card-1.png);
    background-size: 26px;
}

.icon-card-2 {
    background-image: url(../../img/icons/icon-card-2.png);
    background-size: 26px;
}

.icon-card-3 {
    background-image: url(../../img/icons/icon-card-3.png);
    background-size: 36px;
}

.icon-card-4 {
    background-image: url(../../img/icons/icon-card-4.png);
    background-size: 26px;
}

.icon-catalogue {
    background-image: url(../../img/icons/icon-catalogue-1.png);
    background-size: 40px;
}

.icon-catalogue-2 {
    background-image: url(../../img/icons/icon-catalogue-2.png);
    background-size: 40px;
}

.icon-catalogue-3 {
    background-image: url(../../img/icons/icon-catalogue-3.png);
    background-size: 40px;
}

.icon-check-1 {
    background-image: url(../../img/icons/icon-check-3.png);
    background-size: 24px;
}

.icon-clock-1 {
    background-image: url(../../img/icons/icon-clock-1.png);
    background-size: 24px;
}

.icon-contact {
    background-image: url(../../img/icons/icon-contact.png);
    background-size: 40px;
}

.icon-contact-1 {
    background-image: url(../../img/icons/icon-contact-1.png);
    background-size: 26px;
}

.icon-language {
    background-image: url(../../img/icons/icon-language.png);
    background-size: 26px;
}

.icon-inbox {
    background-image: url(../../img/icons/icon-inbox.png);
    background-size: 26px;
}

.icon-selfcare {
    background-image: url(../../img/icons/icon-selfcare.png);
    background-size: 26px;
}

.icon-contact-2 {
    background-image: url(../../img/icons/icon-contact-2.png);
    background-size: 26px;
}

.icon-dashboard-1 {
    background-image: url(../../img/icons/icon-dashboard-1.png);
    background-size: 26px;
}

.icon-dashboard-2 {
    background-image: url(../../img/icons/icon-dashboard-2.png);
    background-size: 26px;
}

.icon-download-1 {
    background-image: url(../../img/icons/icon-download-1.png);
    background-size: 14px;
}

.icon-exit-1 {
    background-image: url(../../img/icons/exit-2.png);
    background-size: 20px;
}

.icon-exchange {
    background-image: url(../../img/icons/icon-exchange.png);
    background-size: 40px;
}

.icon-exchange-1 {
    background-image: url(../../img/icons/icon-exchange-1.png);
    background-size: 26px;
}

.icon-exchange-2 {
    background-image: url(../../img/icons/icon-exchange-2.png);
    background-size: 26px;
}

.icon-exchange-3 {
    background-image: url(../../img/icons/icon-exchange-3.png);
    background-size: 26px;
}

.icon-eye {
    background-image: url(../../img/icons/icon-eye.png);
    background-size: 40px;
}

.icon-facebook {
    background-image: url(../../img/icons/facebook.png);
    background-size: 9px;
}

.icon-facebook-2 {
    background-image: url(../../img/icons/facebook-2.png);
    background-size: 9px;
}

.icon-grid-1 {
    background-image: url(../../img/icons/icon-grid-1.png);
    background-size: 18px;
}

.icon-grid-2 {
    background-image: url(../../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(../../img/icons/icon-rearange-1.png);
    background-size: 23px !important;
    width: 25px !important;
    height: 25px !important;
}

.icon-help-1 {
    background-image: url(../../img/icons/help-icon-2.png);
    background-size: 20px;
}

.icon-linkedin {
    background-image: url(../../img/icons/linkedin.png);
    background-size: 19px;
}

.icon-linkedin-2 {
    background-image: url(../../img/icons/linkedin-2.png);
    background-size: 19px;
}

.icon-login {
    background-image: url(../../img/icons/icon-out-1.png);
    background-size: 40px;
}

.icon-prelogin-login {
    background-image: url(../../img/icons/icon-prelogin-login.png);
    background-size: 40px;
}

.icon-prelogin-contact {
    background-image: url(../../img/icons/icon-prelogin-contact.png);
    background-size: 40px;
}

.icon-prelogin-exchange {
    background-image: url(../../img/icons/icon-prelogin-exchange.png);
    background-size: 40px;
}

.icon-prelogin-pin {
    background-image: url(../../img/icons/icon-prelogin-pin.png);
    background-size: 40px;
}

.icon-mail-1 {
    background-image: url(../../img/icons/icon-mail-1.png);
    background-size: 24px;
}

.icon-mail-2 {
    background-image: url(../../img/icons/icon-mail-2.png);
    background-size: 26px;
}

.icon-mail-3 {
    background-image: url(../../img/icons/icon-mail-3.png);
    background-size: 20px;
}

.icon-mail-4 {
    background-image: url(../../img/icons/icon-mail-4.png);
    background-size: 20px;
}

.icon-money-1 {
    background-image: url(../../img/icons/icon-money-1.png);
    background-size: 26px;
}

.icon-money-2 {
    background-image: url(../../img/icons/icon-money-2.png);
    background-size: 26px;
}

.icon-money-3 {
    background-image: url(../../img/icons/icon-money-3.png);
    background-size: 26px;
}

.icon-money-4 {
    background-image: url(../../img/icons/icon-money-4.png);
    background-size: 26px;
}

.icon-move-1 {
    background-image: url(../../img/icons/icon-move-1.png);
    background-size: 14px;
}

.icon-move-2 {
    background-image: url(../../img/icons/icon-move-2.png);
    background-size: 14px;
}

.icon-out-1 {
    background-image: url(../../img/icons/icon-out-1.png);
    background-size: 22px;
}

.icon-out-2 {
    background-image: url(../../img/icons/icon-out-2.png);
    background-size: 22px;
}

.icon-pin {
    background-image: url(../../img/icons/icon-pin.png);
    background-size: 40px;
}

.icon-reset-1 {
    background-image: url(../../img/icons/icon-reset-1.png);
    background-size: 16px;
}

.icon-reset-2 {
    background-image: url(../../img/icons/icon-reset-2.png);
    background-size: 16px;
}

.icon-rss-1 {
    background-image: url(../../img/icons/icon-rss.png);
    background-size: 20px;
}

.icon-safe-1 {
    background-image: url(../../img/icons/icon-safe-1.png);
    background-size: 26px;
}

.icon-internaltransfer {
    background-image: url(../../img/icons/icon-internal-transfer.png);
    background-size: 26px;
}

.icon-paysomeone {
    background-image: url(../../img/icons/icon-contact-2.png);
    background-size: 26px;
}

.icon-pfm {
    background-image: url(../../img/icons/icon-pfm.png);
    background-size: 66px !important;
}

.icon-safe-2 {
    background-image: url(../../img/icons/icon-safe-2.png);
    background-size: 26px;
}

.icon-safe-3 {
    background-image: url(../../img/icons/icon-safe-3.png);
    background-size: 26px;
}

.icon-safe-4 {
    background-image: url(../../img/icons/icon-safe-4.png);
    background-size: 26px;
}

.icon-search {
    background-image: url(../../img/icons/icon-search.png);
    background-size: 8px;
}

.icon-service-1 {
    background-image: url(../../img/icons/icon-puzzle.png);
    background-size: 20px;
}

.icon-service-2 {
    background-image: url(../../img/icons/icon-service-2.png);
    background-size: 20px;
}

.icon-service-3 {
    background-image: url(../../img/icons/icon-service-3.png);
    background-size: 15px;
}

.icon-service-4 {
    background-image: url(../../img/icons/icon-service-4.png);
    background-size: 18px;
}

.icon-service-5 {
    background-image: url(../../img/icons/icon-service-5.png);
    background-size: 16px;
}

.icon-service-6 {
    background-image: url(../../img/icons/icon-service-6.png);
    background-size: 20px;
}

.icon-settings-1 {
    background-image: url(../../img/icons/icon-settings-1.png);
    background-size: 20px;
}

.icon-settings-2 {
    background-image: url(../../img/icons/icon-settings-2.png);
    background-size: 20px;
}

.icon-settings-3 {
    background-image: url(../../img/icons/icon-settings-3.png);
    background-size: 20px;
}

.icon-settings-4 {
    background-image: url(../../img/icons/settings-5.png);
    background-size: 20px;
}

.icon-question {
    background-image: url(../../img/icons/icon-contact-3.png);
    background-size: 40px;
}

.icon-tel-1 {
    background-image: url(../../img/icons/icon-tel-1.png);
    background-size: 24px;
}

.icon-youtube {
    background-image: url(../../img/icons/youtube-1.png);
    background-size: 15px;
}

.icon-twitter {
    background-image: url(../../img/icons/twitter.png);
    background-size: 22px;
}

.icon-twitter-2 {
    background-image: url(../../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(../../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(../../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(../../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(../../img/icons/icon-atm-1.png);
    }

    .infobox.bg-branch {
        background-image: url(../../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(../../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(../../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(../../img/bg/acc-bg-2.png) center top no-repeat;
    background-size: cover;
}

.account-row.account-bg-2 {
    background: var(--P0) url(../../img/bg/acc-bg-3.png) center top no-repeat;
    background-size: cover;
}

.account-row.account-bg-3 {
    background: var(--P0) url(../../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(../../img/icons/arrow-left-1.png) center center no-repeat;
    }

    .account-row .swiper-button-next {
        right: 50%;
        margin-right: -550px;
        background: var(--P0) url(../../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(../../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(../../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(../../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(../../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(../../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(../../img/icons/arrow-top-2.png) no-repeat right center;
    background-size: 11px;
}

.plain-list .tag.down {
    background: url(../../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(../../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(../../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("../../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("../../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(../../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("../../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("../../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("../../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("../../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("../../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(../../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(../../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(../../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(../../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(../../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(../../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(../../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(../../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(../../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(../../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(../../img/icons/icon-car.png) no-repeat;
        background-color: var(--P1);
        background-size: 22px;
        background-position: center;
    }

    .pfm-budget .icon-travel {
        background: url(../../img/icons/plane-icon-2.png) no-repeat;
        background-color: var(--P1);
        background-size: 22px;
        background-position: center;
    }

    .pfm-budget .icon-food {
        background: url(../../img/icons/icon-food.png) no-repeat;
        background-color: var(--P1);
        background-size: 16px;
        background-position: center;
    }

    .pfm-budget .icon-bills {
        background: url(../../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(../../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("../../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(../../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(../../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(../../img/icons/checkmark.png) no-repeat center center;
    background-size: 82px;
}

.hourglassmark {
    width: 82px;
    height: 62px;
    display: inline-block;
    background: url(../../img/icons/hourglassmark.png) no-repeat center center;
    background-size: 82px;
}

.errormark {
    width: 82px;
    height: 62px;
    display: inline-block;
    background: url(../../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(../../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(../../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(../../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(../../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(../../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(../../img/icons/arrow-bottom-4.png) no-repeat center center;
    background-size: 11px;
}

.tranaction-up {
    background: url(../../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(../../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(../../img/icons/ggl-pin-icon.png) no-repeat center center;
    background-size: 18px;
}

.phone-icon {
    width: 24px;
    height: 24px;
    background: url(../../img/icons/icon-tel-1.png) no-repeat center center;
    background-size: 24px;
}

.clock-icon {
    width: 24px;
    height: 24px;
    background: url(../../img/icons/icon-clock-1.png) no-repeat center center;
    background-size: 24px;
}

.mail-icon {
    width: 24px;
    height: 18px;
    background: url(../../img/icons/icon-mail-1.png) no-repeat center center;
    background-size: 24px;
}

.globe-icon {
    width: 24px;
    height: 24px;
    background: url(../../img/icons/globe-icon.png) no-repeat center center;
    background-size: 24px;
}

.facebook-icon {
    width: 12px;
    height: 26px;
    background: url(../../img/icons/facebook-icon.png) no-repeat center center;
    background-size: 12px;
}

.twitter-icon {
    width: 24px;
    height: 22px;
    background: url(../../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(../../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(../../img/bg/sms-authorize.png);
}

.popup-1 .authorize-token,
.popup-2 .authorize-token {
    background-image: url(../../img/bg/token-authorize.png);
}

.popup-1 .authorize-push,
.popup-2 .authorize-push {
    background-image: url(../../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(../../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(../../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(../../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(../../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(../../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(../../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(../../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(../../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(../../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("../../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(../../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(../../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(../../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(../../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(../../img/icons/icon-check-6.png) no-repeat center center;
    background-size: 61px;
}

.error-icon {
    width: 43px;
    height: 43px;
    display: inline-block;
    background: url(../../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(../../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(../../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(../../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(../../img/icons/arrow-left-1.png) center center no-repeat;
        background-size: 25px;
    }

    .product-slider .slider-button-next {
        right: 15px;
        background: var(--BG) url(../../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(../../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(../../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(../../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(../../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(../../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(../../img/icons/icon-mail-3.png) no-repeat center center;
        background-size: 20px;
    }

    .msg-widget-wrapper .msg-container .msg-red {
        background: var(--P1) url(../../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(../../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
===================================================== */
