﻿
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

@font-face {
    font-family: 'Museo Sans';
    src: url(../fonts/MuseoSans-300.otf);
    font-weight: 300;
}

@font-face {
    font-family: 'Museo Sans';
    src: url(../fonts/MuseoSans_500.otf);
    font-weight: 500;
}

@font-face {
    font-family: 'Museo Sans';
    src: url(../fonts/MuseoSans_700.otf);
    font-weight: 700;
}

@font-face {
    font-family: 'Museo Sans';
    src: url(../fonts/MuseoSans_900.otf);
    font-weight: 900;
}

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;
    font-weight: 300;
}

/* 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", sans-serif;*/
    color: #000000;
    -webkit-text-size-adjust: none;
}

/* ==================================================
    =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 {
    /*font: normal 62.5% "Roboto", sans-serif;*/
    font-weight: normal;
    /*font-size: 62.5%;*/
    color: #444;
    background-color: #fff;
    font-family: 'Museo Sans', sans-serif;
}

/* 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;
    }

dl {
    display: block;
}

    dl dt {
        font-weight: bold;
        margin: 5px auto auto auto;
    }

        dl dt::after {
            content: ': ';
        }

    dl dd {
        margin: auto auto 5px 3em;
    }

/* 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 10px 0 0;
    /*font: bold 14px/20px "Roboto", sans-serif;*/ / color: #fff;
    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;
}
/*condensed*/
h1 {
    font: 500 32px/1.3 'Museo Sans', sans-serif;
}

h2 {
    font: 500 24px/1.2 'Museo Sans', sans-serif;
}

h3 {
    font: 500 22px/1.2 'Museo Sans', sans-serif;
}

h4 {
    font: 500 20px/1.2 'Museo Sans', sans-serif;
}

h5 {
    font: 500 16px/1.2 'Museo Sans', sans-serif;
}

h6 {
    font: 500 14px/1.2 'Museo Sans', sans-serif;
}

a {
    text-decoration: none;
}

/* Styling */
strong {
    font-weight: 700;
}

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;
    }

/* ===============================================================================
    Icons
=============================================================================== */
.account-icon-1 {
    background-image: url(../img/icons/account-1.png);
}

.arrow-left-icon-1 {
    background-image: url(../img/icons/arrow-left-1.png);
}

.arrow-right-icon-1 {
    background-image: url(../img/icons/arrow-right-1.png);
}

.bank-icon-1 {
    background-image: url(../img/icons/bank-1.png);
}

.bank-icon-2 {
    background-image: url(../img/icons/bank-2.png);
}

.briefcase-icon-1 {
    background-image: url(../img/icons/briefcase-1.png);
}

.card-icon-1 {
    background-image: url(../img/icons/card-1.png);
}

.card-icon-2 {
    background-image: url(../img/icons/card-2.png);
}

.check-icon-1 {
    background-image: url(../img/icons/check-1.png);
}

.close-icon-1 {
    background-image: url(../img/icons/close-1.png);
}

.coins-icon-1 {
    background-image: url(../img/icons/coins-1.png);
}


.doc-icon-1 {
    background-image: url(../img/icons/document-1.png);
}

.exchange-icon-1 {
    background-image: url(../img/icons/exchange-1.png);
}

.facebook-icon-1 {
    background-image: url(../img/icons/facebook-1.png);
}

.flag-icon-1 {
    background-image: url(../img/icons/flag-1.png);
}

.help-icon-1 {
    background-image: url(../img/icons/help-1.png);
}

.home-icon-1 {
    background-image: url(../img/icons/home-1.png);
}

.info-icon-1 {
    background-image: url(../img/icons/info-1.png);
}

.key-icon-1 {
    background-image: url(../img/icons/key-1.png);
}

.linkedin-icon-1 {
    background-image: url(../img/icons/linkedin-1.png);
}

.mail-icon-1 {
    background-image: url(../img/icons/mail-1.png);
}

.mail-icon-2 {
    background-image: url(../img/icons/mail-2.png);
}

.money-icon-1 {
    background-image: url(../img/icons/money-1.png);
}

.open-icon-1 {
    background-image: url(../img/icons/open-1.png);
}

.print-icon-1 {
    background-image: url(../img/icons/print-1.png);
}

.plus-icon-1 {
    background-image: url(../img/icons/plus-1.png);
}

.power-icon-1 {
    background-image: url(../img/icons/power-1.png);
}

.save-icon-1 {
    background-image: url(../img/icons/save-1.png);
}

.twitter-icon-1 {
    background-image: url(../img/icons/twitter-1.png);
}

.user-icon-1 {
    background-image: url(../img/icons/user-1.png);
}

.user-icon-2 {
    background-image: url(../img/icons/user-2.png);
}

.user-icon-3 {
    background-image: url(../img/icons/user-3.png);
}

.wallet-icon-1 {
    background-image: url(../img/icons/wallet-1.png);
}

.web-icon-1 {
    background-image: url(../img/icons/web-1.png);
}

.xl-icon-1 {
    background-image: url(../img/icons/xl-1.png);
}

.youtube-icon-1 {
    background-image: url(../img/icons/youtube-1.png);
}

.merchant-services-icon-1 {
    background-image: url(../img/icons/merchant-services-icon-1.png);
}
.upload-icon {
    background-image: url(../img/icons/upload.png);
}


/* ===============================================================================
    Buttons
=============================================================================== */
.btn-1 {
    display: block;
    width: 100%;
    height: 40px;
    /*/*font-family: "Roboto Condensed", sans-serif;*/
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    padding: 12px 5px;
    cursor: pointer;
    border: none;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 8px;
    -webkit-transition: background 0.3s ease;
    -moz-transition: background 0.3s ease;
    -ms-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
    transition: background 0.3s ease;
}

    .btn-1:focus {
        outline: none;
    }

    .btn-1.color-1 {
        background: #2B388F;
        color: white;
        font-family: 'Museo Sans', sans-serif;
    }

.business .btn-1.color-1 {
    background: #eceef3;
    color: #000000;
}

.btn-1.color-1:hover {
    background: #85BEBA;
}

.btn-1.color-2 {
    background: #a5a5a5;
}

    .btn-1.color-2:hover {
        background: #989898;
    }

.btn-1.padding {
    padding-left: 20px;
    padding-right: 20px;
}

.btn-1 .xl-icon-1 {
    display: inline-block;
    float: left;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    margin-right: 10px;
}

.btn-1 .print-icon-1,
.btn-1 .save-icon-1 {
    display: inline-block;
    float: left;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    margin-right: 10px;
}

.btn-1.fixed {
    padding: 0 10px;
}

    .btn-1.fixed span {
        display: table-cell;
        height: 40px;
        line-height: 14px;
        text-align: center;
        vertical-align: middle;
    }

.btn-2 {
    display: block;
    width: 100%;
    height: 40px;
    /*font-family: "Roboto Condensed", sans-serif;*/
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    padding: 4px 10px 0;
    cursor: pointer;
    border: none;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    -webkit-transition: background 0.3s ease;
    -moz-transition: background 0.3s ease;
    -ms-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
    transition: background 0.3s ease;
}

    .btn-2:focus {
        outline: none;
    }

    .btn-2.color-1 {
        background: #2b388f;
    }

        .btn-2.color-1:hover {
            background: cc0e0e;
        }

    .btn-2.color-2 {
        background: #a5a5a5;
    }

        .btn-2.color-2:hover {
            background: #989898;
        }

    .btn-2:disabled,
    .btn-2:disabled:hover {
        color: #a5a5a5;
        background: #d2d2d2;
        cursor: none;
    }

.btn-1:disabled,
.btn-1:disabled:hover {
    color: #e9e9e9;
    background: #d2d2d2;
    cursor: none;
}
/*-------*/
.buttons-wrap-full {
    text-align: center;
}

    .buttons-wrap-full .btn-1 {
        display: inline-block;
        width: 23.3%;
        margin: 0 1%;
    }

        .buttons-wrap-full .btn-1:first-child {
            margin-left: 0;
        }

        .buttons-wrap-full .btn-1:last-child {
            margin-right: 0;
        }

/* ===============================================================================
    Form elements
=============================================================================== */
input:focus,
button:focus,
textarea:focus {
    outline: none;
}

.label-1 {
    display: block;
    font-size: 10px;
    color: #000000;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.input-1 {
    display: block;
    width: 100%;
    height: 40px;
    background: #fff;
    border: 1px solid #eaeaea;
    /*font-family: "Roboto", sans-serif;*/
    font-size: 14px;
    line-height: 40px;
    color: #333333;
    padding: 0 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
}


input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


.input-1.error {
    color: #d2142e;
    border-color: #d2142e;
}

.input-1.strong {
    font-weight: 700;
}

.input-1:disabled,
.textarea-1:disabled {
    background: #f6f6f6;
}

.textarea-1 {
    display: block;
    width: 100%;
    height: 40px;
    background: #fff;
    border: 1px solid #eaeaea;
    font-family: "Museo-Sans", sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #2b388f;
    padding: 0 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    resize: none;
    overflow: auto;
}

.textarea-2 {
    display: block;
    width: 100%;
    height: 160px;
    background: #fff;
    border: 1px solid #eaeaea;
    /*font-family: "Roboto", sans-serif;*/
    font-size: 14px;
    line-height: 20px;
    color: #2b388f;
    padding: 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    resize: none;
    overflow: auto;
}

.input-2 {
    display: block;
    width: 100%;
    height: 48px;
    background: #fff;
    border: 1px solid #eaeaea;
    font-size: 14px;
    line-height: 40px;
    color: #2b388f;
    padding: 0 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
}

.group-wrapper {
    zoom: 1;
}

    .group-wrapper:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .group-wrapper .group-inner {
        margin-bottom: 0;
    }

    .group-wrapper .group {
        position: relative;
        margin-bottom: 10px;
    }

    .group-wrapper .custom-width {
        float: left;
        margin-right: 10px;
    }

        .group-wrapper .custom-width:last-child {
            margin-right: 0;
        }

    .group-wrapper .full {
        float: left;
        width: 100%;
    }

    .group-wrapper .half {
        /*float:left;*/
        float: left;
        width: 47%;
    }


        .group-wrapper .half:nth-child(even) {
            /*float:right;*/
            float: right;
        }

        .group-wrapper .half:nth-child(3), .group-wrapper .half:nth-child(5), .group-wrapper .half:nth-child(7) {
            clear: both;
        }

        .group-wrapper .half.space {
            height: 40px;
        }

    .group-wrapper.m-bottom-1 {
        margin-bottom: 10px;
    }

    .group-wrapper .checkbox-wrap {
        margin-top: 10px;
        margin-bottom: 16px;
    }

        .group-wrapper .checkbox-wrap label {
            color: #212121;
        }

.error-icon {
    width: 15px;
    height: 100%;
    position: absolute;
    right: -30px;
}

    .error-icon span {
        display: inline-block;
        width: 15px;
        height: 15px;
        background: #d2142e;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        border-radius: 3px;
        color: #fff;
        text-align: center;
        line-height: 15px;
        position: absolute;
        top: 50%;
        margin-top: -7px;
    }

.white-space-top-30 {
    margin-top: 30px !important;
}

.group-inner {
    position: relative;
}

    .group-inner.-with-additional .input-1,
    .group-inner.-with-additional .input-2,
    .group-inner.-with-additional-2 .input-1,
    .group-inner.-with-additional-2 .input-2 {
        padding-right: 60px;
    }

    .group-inner.-with-additional-2 .field-additional {
        top: 12px;
    }

.field-additional {
    position: absolute;
    top: 16px;
    right: 20px;
}

    .field-additional p {
        /*font-family: "Roboto", sans-serif;*/
        color: #000;
        font-size: 14px;
        text-transform: uppercase;
        margin-bottom: 0;
        font-weight: 600;
    }

.field-additional-2 {
    text-align: center;
    height: 40px;
}

    .field-additional-2 p {
        /*font-family: "Roboto", sans-serif;*/
        color: #000;
        font-size: 14px;
        text-transform: uppercase;
        margin-bottom: 0;
        line-height: 40px;
    }

.field-additional-3 {
    height: 40px;
    padding-top: 3px;
}

    .field-additional-3 p {
        /*font-family: "Roboto", sans-serif;*/
        color: #a8a8a8;
        font-size: 14px;
        text-transform: uppercase;
        margin-bottom: 0;
    }

        .field-additional-3 p span {
            display: block;
            color: #2b388f;
        }

.form-title {
    text-transform: uppercase;
    font-weight: 600;
    /*font-family: "Roboto", sans-serif;*/
    font-size: 14px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Placeholders */
.input-1::-webkit-input-placeholder,
.input-2::-webkit-input-placeholder,
.textarea-1::-webkit-input-placeholder {
    text-transform: uppercase;
    color: #a8a8a8;
}

.input-1:focus::-webkit-input-placeholder,
.input-2:focus::-webkit-input-placeholder,
.textarea-1:focus::-webkit-input-placeholder {
    color: transparent;
}

.input-1::-moz-placeholder,
.input-2::-moz-placeholder,
.textarea-1::-moz-placeholder {
    text-transform: uppercase;
    color: #a8a8a8;
    opacity: 1;
}

.input-1:focus::-moz-placeholder,
.input-2:focus::-moz-placeholder,
.textarea-1:focus::-moz-placeholder {
    color: transparent;
}

.input-1:-ms-input-placeholder,
.input-2:-ms-input-placeholder,
.textarea-1:-ms-input-placeholder {
    text-transform: uppercase;
    color: #a8a8a8;
}

.input-1:focus:-ms-input-placeholder,
.input-2:focus:-ms-input-placeholder,
.textarea-1:focus:-ms-input-placeholder {
    color: transparent;
}

.error::-webkit-input-placeholder {
    text-transform: uppercase;
    color: #d2142e;
    opacity: 1;
}

.error::-moz-placeholder {
    text-transform: uppercase;
    color: #d2142e;
}

.error:-ms-input-placeholder {
    text-transform: uppercase;
    color: #d2142e;
}

.uppercase-placeholder .textarea-2::-webkit-input-placeholder {
    text-transform: uppercase;
}

.uppercase-placeholder .textarea-2::-moz-placeholder {
    text-transform: uppercase;
    opacity: 1;
}

.uppercase-placeholder .textarea-2:-ms-input-placeholder {
    text-transform: uppercase;
}

.input
.divider {
    clear: both;
    width: 100%;
    height: 1px;
    background: #eaeaea;
    margin-bottom: 20px;
}

.buttons-3 .btn-1 {
    float: left;
    width: 200px;
}

.buttons-3 .btn-1 {
    margin-right: 55px;
}

    .buttons-3 .btn-1:last-child {
        margin-right: 0;
    }

/*-----*/
.group {
    zoom: 1;
}

    .group:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

.group-inner {
    margin-bottom: 20px;
}

    .group-inner.select-3 {
        min-height: 40px;
    }

.divider {
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 20px;
}

.checkbox-wrap label {
    /*font-family: "Roboto", sans-serif;*/
    font-size: 14px;
    color: #808080;
    position: relative;
    top: 2px;
}

.radio-wrap {
    margin-top: 8px;
    margin-bottom: 8px;
}

    .radio-wrap label {
        /*font-family: "Roboto", sans-serif;*/
        font-size: 14px;
        color: #212121;
        position: relative;
        top: 2px;
    }

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}

/* 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: 5px;
    background: transparent;
    bottom: 1px;
}

.mCustomScrollBox .mCSB_scrollTools.mCSB_scrollTools_vertical .mCSB_dragger .mCSB_dragger_bar {
    width: 5px;
    top: 0px;
    background: #2b388f;
}

.mCustomScrollBox .mCSB_scrollTools.mCSB_1_scrollbar.mCS-light.mCSB_scrollTools_horizontal {
    bottom: 1px;
}

.bottom-10 {
    margin-bottom: 10px !important;
}

.bottom-15 {
    margin-bottom: 15px !important;
}

.bottom-20 {
    margin-bottom: 20px !important;
}

.bottom-30 {
    margin-bottom: 30px !important;
}

.bottom-40 {
    margin-bottom: 40px !important;
}

.bottom-50 {
    margin-bottom: 50px !important;
}

/* ===============================================================================
    User content
=============================================================================== */
.user-content h1, .user-content h2, .user-content h3, .user-content h4, .user-content h5, .user-content h6, .user-content p, .user-content a, .user-content li {
    color: #212121;
}

.user-content h1 {
    font-size: 30px;
}

.user-content h2 {
    font-size: 28px;
}

.user-content h3 {
    font-size: 26px;
}

.user-content h4 {
    font-size: 22px;
}

.user-content h5 {
    font-size: 18px;
}

.user-content h6 {
    font-size: 14px;
}

.user-content p, .user-content a, .user-content li {
    font-size: 14px;
    line-height: 16px;
}

/* ===============================================================================
    =Site css
    for importing base.scss on top of media query doc copy this : @import 'base';
=============================================================================== */
body {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

    body.loaded {
        opacity: 1;
    }

.container {
    width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}

.hidden-content {
    display: none;
}

/* ===============================================================================
    Header
=============================================================================== */
#page-header {
    height: 135px;
    background: #fff;
}

    #page-header .container {
        position: relative;
    }

        #page-header .container .site-branding {
            /*
      position: absolute;
      top: 115px;*/
            /*visibility: hidden;*/ /*old*/
            /*width: 130px;*/ /*old*/
        }

            #page-header .container .site-branding .site-logo a {
            }

.site-branding {
    float: left;
}

    .site-branding a {
        display: block;
        width: 250px; /*old 215px*/
        height: 69px;
        background: url(../img/bg/logo-1.png) 0 0 no-repeat;
        background-position: center;
        text-indent: -9999px;
        overflow: hidden;
        margin-top: 20px;
    }

.main-nav {
    width: 800px;
    float: left;
    zoom: 1;
    position: relative;
}

    .main-nav:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .main-nav > li {
        height: 85px;
        float: left;
        text-align: center;
        padding: 0 3px;
        padding-top: 30px;
        position: relative;
    }

        .main-nav > li:after {
            content: '';
            width: 100%;
            height: 0;
            position: absolute;
            top: 0px;
            left: 0;
            background: #2B388F;
            -webkit-transition: height 0.3s ease;
            -moz-transition: height 0.3s ease;
            -ms-transition: height 0.3s ease;
            -o-transition: height 0.3s ease;
            transition: height 0.3s ease;
        }

        .main-nav > li:hover:after,
        .main-nav > .active:after {
            height: 4px;
            border-radius: 0px 0px 4px 4px;
        }

        .main-nav > li > a {
            display: block;
            /*font-family: "Roboto Condensed", sans-serif;*/
            color: #000000;
            font-size: 14px;
            text-transform: capitalize;
        }

    .main-nav a i {
        display: block;
        height: 60px;
        background-position: center top;
        background-repeat: no-repeat;
    }

    .main-nav .has-menu > a {
        position: relative;
        z-index: 1;
    }

        .main-nav .has-menu > a:after {
            content: '';
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 7px 5.5px 0 5.5px;
            border-color: #2b388f transparent transparent transparent;
            position: absolute;
            top: 10px;
            left: 50%;
            margin-left: 30px;
        }

    .main-nav .submenu {
        width: 100%;
        position: absolute;
        top: 10px;
        left: 0;
        background: #fff;
        border-radius: 8px;
        -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
        padding-top: 92px;
        padding-bottom: 10px;
        opacity: 0;
        visibility: hidden;
    }

    .main-nav .has-menu:hover .submenu {
        opacity: 1;
        visibility: visible;
    }

    .main-nav .submenu a {
        display: block;
        width: 100%;
        font-size: 14px;
        line-height: 18px;
        /*font-family: "Roboto Condensed", sans-serif;*/
        color: #333333;
        position: relative;
        padding: 8px;
    }

    .main-nav .submenu .active a {
        font-weight: 700;
        color: #2b388f;
    }

    .main-nav .submenu a:after {
        content: '';
        width: 0;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0;
        background: #2b388f;
        -webkit-transition: width 0.4s ease;
        -moz-transition: width 0.4s ease;
        -ms-transition: width 0.4s ease;
        -o-transition: width 0.4s ease;
        transition: width 0.4s ease;
    }

    .main-nav .submenu a:hover,
    .main-nav .submenu .active a {
        color: #2b388f;
    }

        .main-nav .submenu a:hover:after,
        .main-nav .submenu .active a:after {
            width: 3px;
        }

    .main-nav .has-menu.item-color-1 > a { /*red*/
        color: #d2142e;
    }

        .main-nav .has-menu.item-color-1 > a:after {
            border-color: #2b388f transparent transparent transparent;
        }

    .main-nav .has-menu.item-color-1 .submenu .active a {
        color: #d2142e;
    }

    .main-nav .has-menu.item-color-1 .submenu a:after {
        background: #d2142e;
    }

.lang-nav {
    float: right;
    margin-top: 36px;
}

    .lang-nav li {
        margin-bottom: 8px;
    }

#page-header.main-header .main-nav.small {
    width: 250px;
    position: absolute;
    top: 0;
    right: 15px;
}

    #page-header.main-header .main-nav.small:before {
        content: '';
        width: 260px;
        height: 100px;
        border-radius: 0 0 10px 10px;
        -webkit-box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.2);
        box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.2);
        position: absolute;
        top: -15px;
        right: 0px;
    }

    #page-header.main-header .main-nav.small > li {
        padding-top: 20px;
    }

        #page-header.main-header .main-nav.small > li > a {
            width: 66px;
            text-transform: none;
            color: #a7a7a7;
        }

    #page-header.main-header .main-nav.small .has-menu > a:after {
        margin-left: 18px;
        border-color: #a5a5a5 transparent transparent transparent;
    }

    #page-header.main-header .main-nav.small a i {
        height: 30px;
    }

    #page-header.main-header .main-nav.small li.item-color-1 > a {
        color: #d2142e;
    }

    #page-header.main-header .main-nav.small li.item-color-1:after {
        background: #d2142e;
    }

    #page-header.main-header .main-nav.small li.item-color-1 > a:after {
        border-color: #d2142e transparent transparent transparent;
    }

    #page-header.main-header .main-nav.small li.item-color-1 .submenu a:hover {
        color: #d2142e;
    }

    #page-header.main-header .main-nav.small li.profile-nav .submenu a span {
        font-weight: 700;
        color: #d2142e;
    }

    #page-header.main-header .main-nav.small li.profile-nav > a span {
        display: inline-block;
        width: 17px;
        height: 17px;
        background: #2b388f;
        text-align: center;
        line-height: 17px;
        color: #fff;
        border-radius: 9px;
        margin-left: 5px;
    }

    #page-header.main-header .main-nav.small li:not(.item-color-1):hover > a {
        color: #2b388f;
    }

        #page-header.main-header .main-nav.small li:not(.item-color-1):hover > a:after {
            border-color: #2b388f transparent transparent transparent;
        }

    #page-header.main-header .main-nav.small li:not(.item-color-1):hover a i {
        background-position: center -60px;
    }

    #page-header.main-header .main-nav.small .submenu {
        padding-top: 78px;
    }




    #page-header.main-header .main-nav.small li.profile-nav {
        font-size: 14px;
        width: 72px;
    }


/* ===============================================================================
    Login
=============================================================================== */

#page-header.login-header {
    background-color: #FFFFFF;
}

    #page-header.login-header .main-nav {
        margin-left: 20px;
    }

        #page-header.login-header .main-nav > li {
            width: 20%;
        }

.login-wrap-1 {
    width: 380px;
    margin: 0 auto;
}

#main.login-main {
    min-height: calc(100vh - 115px);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-color: #ffffff;
}

    #main.login-main h2 {
        /*font-family: "Roboto Condensed", sans-serif;*/
        font-size: 24px;
        color: #2B388F;
        text-transform: uppercase;
        text-align: center;
        font-weight: 700;
        margin-bottom: 20px;
    }

    #main.login-main .copy {
        font-size: 14px;
        color: #2B388F;
        text-align: center;
    }

.login-box {
    background: #fff;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

    .login-box .cnt {
        padding: 0 20px;
    }

.tabs-1 {
    background: #F06924;
    overflow: hidden;
    margin-bottom: 30px;
}

    .tabs-1 li {
        float: left;
    }

        .tabs-1 li a, .tabs-1 li label {
            display: block;
            font-family: 'Museo Sans', sans-serif;
            font-size: 14px;
            color: #000000;
            line-height: 50px;
            text-align: center;
            text-transform: capitalize;
            position: relative;
        }

            .tabs-1 li a:after, .tabs-1 li label:after {
                content: '';
                width: 100%;
                height: 0;
                position: absolute;
                bottom: 0;
                left: 0;
                background: #F06924;
                -webkit-transition: height 0.4s ease;
                -moz-transition: height 0.4s ease;
                -ms-transition: height 0.4s ease;
                -o-transition: height 0.4s ease;
                transition: height 0.4s ease;
            }

        .tabs-1 li.active a, .tabs-1 li.active label {
            color: #FFFFFF;
        }

            .tabs-1 li.active a:after,
            .tabs-1 li a:hover:after,
            .tabs-1 li.active label:after,
            .tabs-1 li label:hover:after {
                height: 3px;
            }

.tab-nr-1 li {
    width: 100%;
}

.tab-nr-2 li {
    width: 50%;
}

.tab-nr-3 li {
    width: 33%;
}

.tab {
    display: none;
    background-color: #FFFFFF;
}

    .tab.active {
        display: block;
    }

#main.login-1 {
    padding-top: 30px;
}

    #main.login-1 .login-box {
        margin-bottom: 50px;
        background-color: #FFFFFF;
    }

.promo-slider {
    width: 550px;
    margin-left: auto;
    margin-right: auto;
}

    .promo-slider h3 {
        /*font-family: "Roboto Condensed", sans-serif;*/
        font-size: 18px;
        font-weight: 700;
        color: #2b388f;
        text-align: center;
    }

    .promo-slider p {
        font-size: 14px;
        color: #808080;
        line-height: 20px;
        text-align: center;
    }

        .promo-slider p a {
            color: #2b388f;
        }

.pagination-wrap {
    text-align: center;
    margin-bottom: 50px;
}

.slider-pagination {
    display: inline-block;
    position: relative;
}

    .slider-pagination .slider-prev,
    .slider-pagination .slider-next {
        width: 25px;
        height: 25px;
        background-color: transparent;
        background-repeat: no-repeat;
        background-position: center center;
        text-indent: -9999px;
        overflow: hidden;
        position: absolute;
        top: 0px;
    }

        .slider-pagination .slider-prev:focus,
        .slider-pagination .slider-next:focus {
            outline: none;
        }

    .slider-pagination .slider-prev {
        background-image: url(../img/icons/arrow-left-1.png);
        left: -25px;
    }

    .slider-pagination .slider-next {
        background-image: url(../img/icons/arrow-right-1.png);
        right: -25px;
    }

    .slider-pagination p {
        width: 50px;
        font-size: 14px;
        color: #808080;
        line-height: 25px;
        margin-bottom: 0;
    }

/* ===============================================================================
    Prelogin currency list
=============================================================================== */
.prelogin {
    padding-top: 30px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

    .prelogin h2 {
        /*font-family: "Roboto Condensed", sans-serif;*/
        font-size: 24px;
        color: #2B388F;
        text-transform: uppercase;
        text-align: center;
        font-weight: 500;
        margin-bottom: 20px;
    }

    .prelogin .security-logo {
        text-align: center;
        margin-bottom: 20px;
    }

    .prelogin .copy {
        font-size: 14px;
        color: #2B388F;
        text-align: center;
        margin-bottom: 0;
    }

.prelogin-wide {
    width: 735px;
    background: #fff;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    margin: 0 auto;
    padding: 22px 22px 0 22px;
    margin-bottom: 20px;
}

.currency-widget .filter {
    zoom: 1;
    margin-bottom: 20px;
}

    .currency-widget .filter:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .currency-widget .filter.col-left,
    .currency-widget .filter.col-right {
        float: left;
        width: 50%;
    }

.currency-widget .col-left .dxeButtonEdit {
    float: left;
    width: 140px;
    margin-right: 10px;
}

.currency-widget .col-left .btn-1 {
    float: left;
    width: auto;
    min-width: 100px;
}

.currency-widget .col-right p {
    font-size: 14px;
    /*font-family: "Roboto Condensed", sans-serif;*/
    color: #a5a5a5;
    text-align: right;
    margin-bottom: 4px;
}

    .currency-widget .col-right p span {
        /*font-family: "Roboto", sans-serif;*/
        color: #2B388F;
    }

.currency-widget h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2B388F;
    text-align: center;
    margin-bottom: 20px;
}

.currency-list th, .currency-list td {
    width: 100px;
    text-align: right;
    border-bottom: 1px solid #eaeaea;
    font-family: Arial, sans-serif;
}

.currency-list th {
    /*font-family: "Roboto Condensed", sans-serif;*/
    font-size: 14px;
    color: #a5a5a5;
    padding-bottom: 5px;
    vertical-align: bottom;
}

.currency-list td {
    font-size: 14px;
    line-height: 30px;
    color: #212121;
    padding: 4px 0px;
}

.currency-list .currency {
    display: inline-block;
    font-size: 18px;
    color: #2B388F;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 0;
    padding-left: 43px;
}

    .currency-list .currency img {
        position: absolute;
        top: 0;
        left: 0;
    }

/* ===============================================================================
    Prelogin news list
=============================================================================== */
.news-widget {
    padding-bottom: 22px;
}

    .news-widget .filter {
        margin-bottom: 20px;
    }

        .news-widget .filter .dxeButtonEdit {
            width: 180px;
            margin: 0 auto;
        }

    .news-widget .news-wrap {
        height: 480px;
    }

    .news-widget .news-list {
        height: 460px;
    }

        .news-widget .news-list li {
            border-bottom: 1px solid #eaeaea;
            padding: 16px 0;
            position: relative;
        }

            .news-widget .news-list li,
            .news-widget .news-list li a,
            .news-widget .news-list li p {
                -webkit-touch-callout: none;
                -webkit-user-select: none;
                -khtml-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                -webkit-text-size-adjust: none;
                -webkit-tap-highlight-color: transparent;
                user-select: none;
            }

                .news-widget .news-list li:after {
                    content: '';
                    width: 10px;
                    height: 15px;
                    position: absolute;
                    top: 50%;
                    right: 15px;
                    margin-top: -5px;
                    background: url(../img/icons/arrow-right-1.png) 0 0 no-repeat;
                    -webkit-transition: right 0.3s ease;
                    -moz-transition: right 0.3s ease;
                    -ms-transition: right 0.3s ease;
                    -o-transition: right 0.3s ease;
                    transition: right 0.3s ease;
                }

                .news-widget .news-list li:hover:after {
                    right: 10px;
                }

        .news-widget .news-list .news-title {
            font-size: 18px;
            font-weight: 600;
            color: #2b388f;
            margin-bottom: 3px;
        }

        .news-widget .news-list .news-date {
            font-size: 14px;
            color: #a5a5a5;
            margin-bottom: 0;
        }

/* ===============================================================================
    Prelogin news list
=============================================================================== */
.news-detail {
    padding-bottom: 22px;
}

    .news-detail .news-wrap {
        height: 380px;
    }

    .news-detail .back {
        display: inline-block;
        /*font-family: "Roboto Condensed", sans-serif;*/
        font-size: 14px;
        color: #2b388f;
        font-weight: 700;
        text-transform: uppercase;
        position: relative;
        padding-left: 20px;
        margin-bottom: 35px;
    }

        .news-detail .back:after {
            content: '';
            width: 10px;
            height: 15px;
            background: url(../img/icons/arrow-left-1.png) 0 0 no-repeat;
            position: absolute;
            top: 0;
            left: 0;
            -webkit-transition: left 0.3s ease;
            -moz-transition: left 0.3s ease;
            -ms-transition: left 0.3s ease;
            -o-transition: left 0.3s ease;
            transition: left 0.3s ease;
        }

        .news-detail .back:hover:after {
            left: -5px;
        }

    .news-detail .news-header {
        margin-bottom: 20px;
    }

    .news-detail .news-title {
        font-size: 24px;
        font-weight: 600;
        color: #2b388f;
        margin-bottom: 3px;
    }

    .news-detail .news-date {
        font-size: 14px;
        color: #a5a5a5;
        margin-bottom: 0;
    }

    .news-detail .user-content {
        padding-top: 30px;
    }

/* ===============================================================================
    Prelogin transaction check
=============================================================================== */
.prelogin-center {
    height: calc(100vh - 265px);
}

    .prelogin-center .inner {
        position: relative;
        top: 50%;
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        transform: translateY(-50%);
        transform: translateY(-50%);
    }

.transaction-prelogin .prelogin-center {
    min-height: 380px;
}

.prelogin-small {
    width: 375px;
    background: #fff;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    margin: 0 auto;
    padding: 22px 0 0 0px;
    margin-bottom: 20px;
}

    .prelogin-small .cnt {
        padding: 0 22px;
    }

/* ===============================================================================
    Prelogin transaction detail
=============================================================================== */
.transaction-prelogin-detail h2 {
    margin-bottom: 0;
}

.transaction-prelogin-detail .inner {
    position: relative;
    margin-top: 60px;
    margin-bottom: 50px;
}

    .transaction-prelogin-detail .inner .btn-1 {
        width: auto;
        position: absolute;
        left: 0;
        top: 0;
        padding-left: 20px;
        padding-right: 20px;
    }

.detail-box.prelogin-detail {
    border: none;
    background: #fff;
    -webkit-box-shadow: 0 0 15px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px 3px rgba(0, 0, 0, 0.1);
    padding: 36px 45px 24px 45px;
    margin-bottom: 12px;
}

    .detail-box.prelogin-detail.no-padding {
        padding: 20px 45px 8px 45px;
    }

/* ===============================================================================
    Prelogin change pin
=============================================================================== */
#main.prelogin-full {
    min-height: 100vh;
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
}

    #main.prelogin-full .logo-prelogin {
        text-align: center;
        margin-bottom: 40px;
    }

    #main.prelogin-full .container {
        padding-bottom: 15px;
    }

.prelogin-change-pin .prelogin-center {
    height: calc(100vh - 115px);
    min-height: 660px;
}

.prelogin-change-pin h2 {
    text-transform: none;
}

.prelogin-change-pin .info {
    font-size: 14px;
    color: #808080;
    text-align: center;
}

/* ===============================================================================
    Prelogin Select account
=============================================================================== */
.prelogin-select-account .prelogin-center {
    height: calc(100vh - 115px);
    min-height: 620px;
}

    .prelogin-select-account .prelogin-center .inner {
        top: 45%;
    }

.prelogin-select-account .prelogin-wide {
    width: 775px;
    padding: 40px 0;
}

.prelogin-select-account .col-left,
.prelogin-select-account .col-right {
    float: left;
    width: 50%;
    padding: 0 65px;
    text-align: center;
}

.prelogin-select-account .col-left {
    border-right: 1px solid #eaeaea;
}

.prelogin-select-account .col i {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 10px;
}

.prelogin-select-account .account-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 45px;
}

.prelogin-select-account .description {
    font-size: 14px;
    color: #212121;
    min-height: 70px;
}

/* ===============================================================================
    Dashboard
=============================================================================== */
.title-1 {
    font-family: 'Museo Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 40px;
    color: #2b388f;
}

#main {
    min-height: calc(100vh - 115px);
    background-color: rgb(255, 255, 255);
    padding-bottom: 20px;
}

#page-header.main-header .site-branding a {
    width: 175px;
    height: 56px;
    background-size: 170px;
    margin-top: 27px;
}

#page-header.main-header .main-nav {
    float: right;
    width: 960px;
}

    #page-header.main-header .main-nav > li > a {
        width: 93px;
    }

    #page-header.main-header .main-nav > li {
        position: relative;
    }

        #page-header.main-header .main-nav > li:hover {
            z-index: 2;
        }

    #page-header.main-header .main-nav .submenu {
        width: 170px;
        top: 25px;
        left: 50%;
        margin-left: -85px;
    }

#page-footer {
    height: 80px;
    padding-top: 28px;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
}

    #page-footer .social {
        float: left;
    }

    #page-footer .contact-info {
        float: right;
        margin-top: 6px;
    }

        #page-footer .contact-info li {
            float: left;
            font-size: 14px;
            color: #212121;
            position: relative;
        }

            #page-footer .contact-info li:not(:last-child) {
                margin-right: 20px;
            }

                #page-footer .contact-info li:not(:last-child):after {
                    content: '';
                    width: 5px;
                    height: 5px;
                    background: #2b388f;
                    position: absolute;
                    top: 6px;
                    right: -12px;
                    -webkit-border-radius: 3px;
                    -moz-border-radius: 3px;
                    -ms-border-radius: 3px;
                    border-radius: 3px;
                }

            #page-footer .contact-info li a {
                color: #212121;
            }

.social {
    overflow: hidden;
}

    .social li {
        float: left;
        margin-right: 25px;
    }

    .social a {
        display: inline-block;
        width: 30px;
        height: 30px;
        text-indent: -9999px;
        overflow: hidden;
        background-repeat: no-repeat;
    }

    .social .facebook-icon-1 {
        background-position: 10px 0px;
    }

    .social .twitter-icon-1 {
        background-position: 4px 3px;
    }

    .social .youtube-icon-1 {
        background-position: 7px 4px;
    }

    .social .linkedin-icon-1 {
        background-position: 4px 2px;
    }

/* Dashboard widgets*/
.account-modal {
    /*background: #2b388f;*/
    background-color: #FFFFFF; /*linear-gradient(transparent 48%, #2b388f 47%, #2b388f 53%, transparent 52%);*/
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.account-change {
    text-align: center;
    padding: 15px 0;
}

    .account-change .inner {
        display: inline-block;
    }

    .account-change p {
        /*font-family: "Roboto Condensed", sans-serif;*/
        font-size: 14px;
        line-height: 26px;
        color: #2B388F;
        text-transform: uppercase;
        display: inline-block;
        float: left;
        opacity: 1;
        margin-bottom: 0;
        -webkit-transition: opacity 0.3s ease;
        -moz-transition: opacity 0.3s ease;
        -ms-transition: opacity 0.3s ease;
        -o-transition: opacity 0.3s ease;
        transition: opacity 0.3s ease;
        cursor: pointer;
        font-weight: regular;
    }

    .account-change p.active {
        opacity: 1;
        color: #2B388F;
        font-weight: bold;
    }

.business .account-change p {
    color: #2B388F;
    opacity: 0.6;
}

    .business .account-change p.active {
        color: #2B388F;
        opacity: 1;
        font-weight: bold;
    }

.account-change .switch {
    float: left;
    display: inline-block;
    width: 48px;
    height: 26px;
    border: 3px solid #2B388F;
    border-radius: 13px;
    margin: 0 10px;
    cursor: pointer;
    position: relative;
}

    .account-change .switch:after {
        content: '';
        width: 16px;
        height: 16px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        border-radius: 8px;
        background: #2B388F;
        position: absolute;
        top: 2px;
        left: 2px;
        -webkit-transition: transform 0.3s ease;
        -moz-transition: transform 0.3s ease;
        -ms-transition: transform 0.3s ease;
        -o-transition: transform 0.3s ease;
        transition: transform 0.3s ease;
        transform: translateX(0);
        -ms-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -webkit-transform: translateX(0);
    }

    .account-change .switch.checked:after {
        transform: translateX(22px);
        -ms-transform: translateX(22px);
        -moz-transform: translateX(22px);
        -o-transform: translateX(22px);
        -webkit-transform: translateX(22px);
    }

.account-box {
    background: #FFFFFF;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    zoom: 1;
    padding: 20px;
    /*
  border-right: 2px solid #2b388f;
  border-left: 2px solid #2b388f;
      */
    margin-bottom: 20px;
}

    .account-box:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .account-box .col-left {
        width: 55%;
        float: left;
    }

    .account-box .col-right {
        width: 45%;
        float: left;
    }

    .account-box .col-right {
        float: left;
    }

        .account-box .col-right .inner {
            float: right;
        }

    .account-box .amount-txt {
        /*font-family: "Roboto Condensed", sans-serif;*/
        font-size: 14px;
        color: #999999;
        text-transform: uppercase;
        margin-right: 5px;
    }

    .account-box .amount {
        font-size: 48px;
        font-weight: 200;
        color: #333333;
        font-family: Arial, sans-serif;
    }

    .account-box .currency {
        font-size: 18px;
        color: #333333;
    }

    .account-box .account-actions {
        float: left;
        width: 100%;
        padding-top: 10px;
    }

        .account-box .account-actions .btn-1 {
            width: 22.5%;
            float: left;
            border-radius: 8px;
            background-color: #2b388f;
        }

            .account-box .account-actions .btn-1:hover {
                background-color: #2b388f;
            }

.business .account-box .account-actions .btn-1 {
    width: 22.5%;
    float: left;
    border-radius: 20px;
    background-color: #2b388f;
    color: #FFFFFF;
}

    .business .account-box .account-actions .btn-1:hover {
        background-color: #2b388f;
    }

.account-box .account-actions .btn-1:not(:last-child) {
    margin-right: 3.33%;
}

.account-box .acc-sel {
    float: left;
    width: 500px;
    margin-right: 10px;
}

.account-box .curr-sel {
    float: left;
    width: 100px;
}

.custom-select {
    width: 100% !important;
    position: relative;
}

    .custom-select .selected {
        width: 100% !important;
        height: 48px;
        border: 1px solid #eaeaea;
        background: #fff !important;
        cursor: pointer;
        padding: 6px 10px;
        position: relative;
    }

    .custom-select .option {
        font-size: 16px;
        color: #333333;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 0;
    }

    .custom-select .description {
        font-size: 14px;
        color: #999999;
        line-height: 16px;
        margin-bottom: 0;
        font-family: Arial, sans-serif;
    }

    .custom-select .selected:after {
        content: '';
        position: absolute;
        top: 20px;
        right: 16px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 6px 6.5px 0 6.5px;
        border-color: #2b388f transparent transparent transparent;
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }

    .custom-select.open .selected:after {
        border-width: 0 6.5px 6px 6.5px;
        border-color: transparent transparent #2b388f transparent;
    }

    .custom-select .options {
        display: none;
        width: 100%;
        max-height: 242px;
        overflow: auto;
        top: 48px;
        position: absolute;
        z-index: 10;
        -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
        box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
    }

        .custom-select .options li {
            padding: 6px 10px;
            background: #fff;
            -webkit-transition: background 0.5s ease;
            -moz-transition: background 0.5s ease;
            -ms-transition: background 0.5s ease;
            -o-transition: background 0.5s ease;
            transition: background 0.5s ease;
            cursor: pointer;
            border-bottom: 1px solid #f2f2f2;
        }

            .custom-select .options li.active,
            .custom-select .options li:hover {
                background: #f2f2f2;
            }

    .custom-select.open .options {
        display: block;
    }

    .custom-select.disabled .list-item.selected {
        background: #f6f6f6 !important;
    }

        .custom-select.disabled .list-item.selected p {
            color: #a8a8a8;
        }

        .custom-select.disabled .list-item.selected:after {
            border-color: #a5a5a5 transparent transparent transparent;
        }

    .custom-select.select-with-img .selected:after {
        top: 26px;
    }

    .custom-select.select-with-img .selected.list-item img {
        top: 17px;
    }

    .custom-select.select-with-img .list-item {
        height: 60px;
        position: relative;
        padding-top: 12px;
        padding-left: 65px;
    }

        .custom-select.select-with-img .list-item img {
            position: absolute;
            top: 10px;
            left: 12px;
        }

    .custom-select.select-with-img .options {
        top: 59px;
    }

    .custom-select.select-with-img .option {
        font-weight: normal;
    }

    .custom-select.select-with-img .description {
        text-transform: uppercase;
    }

.accounts-widget {
    background: #fff;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    padding: 15px 0px 20px 0;
    margin-bottom: 20px;
}

.widget .cnt {
    padding: 0 20px;
}

.widget-header {
    zoom: 1;
}

    .widget-header:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

.accounts-widget .widget-header .filter {
    float: right;
}

.accounts-widget .widget-header .title-1 {
    float: left;
}

.accounts-widget .widget-header .group {
    float: right;
    zoom: 1;
    margin-left: 20px;
}

    .accounts-widget .widget-header .group:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

.accounts-widget .widget-header .label-1 {
    float: left;
    margin-top: 14px;
    margin-right: 10px;
}

.accounts-widget .widget-header .group-inner {
    width: 150px;
    float: left;
}

.accounts-widget .widget-header .btn-1 {
    min-width: 100px;
}

.promo-small-widget {
    width: 33%;
    height: 340px;
    float: left;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    background: url(../img/bg/widget-bg-1.jpg) center top no-repeat;
    background-size: cover;
    margin-right: 2%;
    padding-top: 20px;
    overflow: hidden;
    text-align: center;
    position: relative;
}

    .promo-small-widget img {
        max-width: 70%;
        height: auto;
    }

    .promo-small-widget h2 {
        font-size: 30px;
        font-weight: 900;
        color: #2b388f;
        padding: 0 20px;
    }

    .promo-small-widget p {
        font-size: 14px;
        color: #2b2b2b;
        line-height: 20px;
        padding: 0 20px;
    }

    .promo-small-widget a {
        display: block;
        width: 100%;
        height: 50px;
        position: absolute;
        bottom: 0;
        left: 0;
        /*font-family: "Roboto Condensed", sans-serif;*/
        font-size: 18px;
        font-weight: 700;
        line-height: 50px;
        color: #fff;
        text-transform: uppercase;
        text-align: left;
        background: #056ab2;
        /* Old browsers */
        background: -moz-linear-gradient(left, #056ab2 0%, #0a99d8 100%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(left, #056ab2 0%, #0a99d8 100%);
        /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to right, #056ab2 0%, #0a99d8 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#056ab2', endColorstr='#0a99d8',GradientType=1 );
        /* IE6-9 */
    }

        .promo-small-widget a i {
            display: inline-block;
            width: 50px;
            height: 50px;
            background-position: center center;
            background-repeat: no-repeat;
        }

            .promo-small-widget a i:first-child {
                float: left;
                margin-right: 5px;
            }

    .promo-small-widget .plus-icon-1 {
        float: right;
    }

.promo-widget {
    width: 65%;
    height: 340px;
    float: left;
    zoom: 1;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

    .promo-widget:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .promo-widget .col-left,
    .promo-widget .col-right {
        float: left;
        width: 50%;
    }

    .promo-widget .col-left {
        height: 340px;
        overflow: hidden;
        position: relative;
    }

        .promo-widget .col-left img {
            position: absolute;
            min-width: 100%;
            min-height: 100%;
            opacity: 0;
            border-radius: 6px 0 0 6px;
            -webkit-transition: opacity 0.5s ease;
            -moz-transition: opacity 0.5s ease;
            -ms-transition: opacity 0.5s ease;
            -o-transition: opacity 0.5s ease;
            transition: opacity 0.5s ease;
        }

            .promo-widget .col-left img.active {
                opacity: 1;
            }

    .promo-widget .col-right {
        padding: 30px 30px 0 30px;
    }

    .promo-widget .pagination-wrap {
        width: 90px;
        margin-bottom: 10px;
    }

    .promo-widget .promo-slider {
        width: 100%;
    }

    .promo-widget .slide {
        opacity: 0 !important;
        -webkit-transition: opacity 0.3s ease;
        -moz-transition: opacity 0.3s ease;
        -ms-transition: opacity 0.3s ease;
        -o-transition: opacity 0.3s ease;
        transition: opacity 0.3s ease;
    }

    .promo-widget .slick-active {
        opacity: 1 !important;
    }

    .promo-widget .slide h3 {
        /*font-family: "Roboto", sans-serif;*/
        font-size: 30px;
        line-height: 32px;
        font-weight: 900;
        text-align: left;
    }

    .promo-widget .slide .date {
        text-align: left;
        color: #a5a5a5;
        margin-bottom: 10px;
    }

    .promo-widget .slide p {
        text-align: left;
        color: #2b2b2b;
        line-height: 20px;
    }

.account-list {
    margin-bottom: 20px;
}

    .account-list li {
        zoom: 1;
        padding: 10px 0;
        border-bottom: 1px solid #eaeaea;
        cursor: pointer;
        -webkit-transition: background 0.3s ease;
        -moz-transition: background 0.3s ease;
        -ms-transition: background 0.3s ease;
        -o-transition: background 0.3s ease;
        transition: background 0.3s ease;
    }

        .account-list li:after {
            display: block;
            visibility: hidden;
            height: 0;
            clear: both;
            content: ".";
        }

        .account-list li.active,
        .account-list li:hover {
            background: #f2f2f2;
        }

    .account-list .col-main,
    .account-list .col-value {
        float: left;
        padding: 0 10px;
        position: relative;
    }

        .account-list .col-main p,
        .account-list .col-value p {
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
            margin-bottom: 0;
        }

    .account-list li div:not(:last-child) {
        border-right: 1px solid #eaeaea;
    }

    .account-list .col-main {
        zoom: 1;
        padding-left: 0;
    }

        .account-list .col-main:after {
            display: block;
            visibility: hidden;
            height: 0;
            clear: both;
            content: ".";
        }

        .account-list .col-main i {
            width: 40px;
            height: 34px;
            float: left;
            background-repeat: no-repeat;
            background-position: center center;
            margin-right: 4px;
        }

        .account-list .col-main .account-icon-1 {
            background-size: 23px;
        }

        .account-list .col-main .card-icon-1 {
            background-size: 28px;
        }

        .account-list .col-main .money-icon-1 {
            background-size: 26px;
        }

        .account-list .col-main.col-size-1 {
            width: 25%;
        }

        .account-list .col-main.col-size-2 {
            width: 40%;
        }

        .account-list .col-main.col-size-3 {
            width: 55%;
        }

    .account-list .col-value {
        width: 15%;
        text-align: right;
    }

    .account-list .txt-main {
        font-size: 14px;
        color: #2b388f;
        font-weight: 600;
        text-transform: uppercase;
    }

    .account-list .txt-meta {
        font-size: 14px;
        color: #999999;
        text-transform: uppercase;
        font-family: Arial, sans-serif;
    }

    .account-list .key {
        /*font-family: "Roboto Condensed", sans-serif;*/
        font-size: 14px;
        letter-spacing: -0.5px;
        color: #898989;
    }

    .account-list .value {
        font-size: 14px;
        font-weight: 600;
        color: #2b388f;
        font-family: Arial, sans-serif;
    }

/* ===============================================================================
    Payments in HRK
=============================================================================== */
.account-modal.modal-tabs {
    padding-bottom: 0;
}

.main-tabs {
    zoom: 1;
}

    .main-tabs:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .main-tabs li {
        height: 40px;
        float: left;
        text-align: center;
        -webkit-transition: background 0.3s ease;
        -moz-transition: background 0.3s ease;
        -ms-transition: background 0.3s ease;
        -o-transition: background 0.3s ease;
        transition: background 0.3s ease;
    }

        .main-tabs li a {
            display: block;
            font-size: 14px;
            text-transform: uppercase;
            font-weight: 700;
            color: #fff;
            padding: 11px;
            -webkit-transition: color 0.3s ease;
            -moz-transition: color 0.3s ease;
            -ms-transition: color 0.3s ease;
            -o-transition: color 0.3s ease;
            transition: color 0.3s ease;
        }

        .main-tabs li span {
            display: inline-block;
            width: 24px;
            height: 24px;
            line-height: 23px;
            border-radius: 12px;
            color: #fff;
            background: #d2142e; /*red*/
            margin-left: 10px;
            text-align: center;
        }

        .main-tabs li.active,
        .main-tabs li:hover {
            background: #eaeaea;
        }

            .main-tabs li.active a,
            .main-tabs li:hover a {
                color: #2b388f;
            }

                .main-tabs li.active a span,
                .main-tabs li:hover a span {
                    color: #fff;
                }

    .main-tabs.font-s li a {
        font-size: 13px;
    }

    .main-tabs.tabs-2 {
        width: 480px;
        margin: 0 auto;
    }

        .main-tabs.tabs-2 li {
            display: inline-block;
            width: auto;
            min-width: 240px;
        }

    .main-tabs.tabs-3 {
        width: 600px;
        margin: 0 auto;
    }

        .main-tabs.tabs-3 li {
            display: inline-block;
            width: auto;
            min-width: 200px;
        }

    .main-tabs.tabs-3-full {
        width: 100%;
        margin: 0 auto;
    }

        .main-tabs.tabs-3-full li {
            display: inline-block;
            width: auto;
            width: 33.33%;
        }

    .main-tabs.tabs-4 li {
        width: calc(100% / 4);
    }

    .main-tabs.tabs-5 li {
        width: calc(100% / 5);
    }

    .main-tabs.tabs-6 li {
        width: calc(100% / 6);
    }

    .main-tabs.tabs-7 li {
        width: calc(100% / 7);
    }

.content-col-2 {
    zoom: 1;
    position: relative;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
}

    .content-col-2:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .content-col-2 .content-main {
        background: #fff;
        float: left;
        width: 790px;
        padding: 20px 50px 20px 30px;
        position: relative;
        z-index: 1;
        -webkit-box-shadow: 10px 0px 15px 1px rgba(214, 214, 214, 0.75);
        -moz-box-shadow: 10px 0px 15px 1px rgba(214, 214, 214, 0.75);
        box-shadow: 10px 0px 15px 1px rgba(214, 214, 214, 0.75);
    }

    .content-col-2 .content-side {
        width: 380px;
        background: #f6f6f6;
        position: absolute;
        height: 100%;
        top: 0;
        right: 0;
        padding: 20px 30px 20px 30px;
    }

.col-header {
    zoom: 1;
    margin-bottom: 15px;
}

    .col-header:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .col-header h2 {
        float: left;
        /*font-family: "Roboto Condensed", sans-serif;*/
        color: #F06924;
        font-size: 24px;
        font-weight: 900;
        margin-bottom: 0;
    }

    .col-header .checkbox-wrap {
        float: right;
    }

    .col-header.m-bottom {
        margin-bottom: 50px;
    }

    .col-header.padding-2 {
        padding: 15px 0 0 20px;
    }

    .col-header.no-title .col-left {
        float: left;
    }

        .col-header.no-title .col-left label {
            display: inline-block;
            float: left;
            /*font-family: "Roboto", sans-serif;*/
            font-size: 14px;
            color: #212121;
            line-height: 40px;
            margin-right: 8px;
        }

        .col-header.no-title .col-left .group {
            float: left;
            margin-right: 20px;
            margin-top: 0;
        }

        .col-header.no-title .col-left .group-inner {
            min-width: 320px;
        }

        .col-header.no-title .col-left .input-box {
            width: 255px;
            float: left;
        }

    .col-header .group.filter-group {
        zoom: 1;
        padding-right: 20px;
        border-right: 1px solid #eaeaea;
        margin-top: 0 !important;
    }

        .col-header .group.filter-group:after {
            display: block;
            visibility: hidden;
            height: 0;
            clear: both;
            content: ".";
        }

        .col-header .group.filter-group .group-inner {
            zoom: 1;
            float: left;
            margin-bottom: 0;
        }

            .col-header .group.filter-group .group-inner:after {
                display: block;
                visibility: hidden;
                height: 0;
                clear: both;
                content: ".";
            }

        .col-header .group.filter-group label {
            display: inline-block;
            float: left;
            /*font-family: "Roboto", sans-serif;*/
            font-size: 14px;
            color: #212121;
            line-height: 40px;
            margin-right: 8px;
            text-transform: uppercase;
        }

        .col-header .group.filter-group .input-box {
            width: 115px;
            float: left;
            margin-right: 20px;
        }

        .col-header .group.filter-group .select-3 {
            margin-right: 20px;
        }

        .col-header .group.filter-group .group-inner .btn-1 {
            min-width: 100px;
            margin-left: 0;
        }

        .col-header .group.filter-group.no-border {
            border-right: 0;
            padding-right: 0;
        }

            .col-header .group.filter-group.no-border .group-inner .btn-1 {
                margin-left: 20px;
            }

.txt-center {
    text-align: center !important;
}

.templates-list {
    border-top: 1px solid #eaeaea;
    height: calc(100% - 100px);
}

.template {
    border-bottom: 1px solid #eaeaea;
    position: relative;
}

    .template a {
        padding: 20px 30px 20px 10px;
        display: block;
        /*font-family: "Roboto", sans-serif;*/
        color: #000;
        font-size: 14px;
        margin-bottom: 0;
    }

    .template:after {
        content: "";
        width: 12px;
        height: 16px;
        display: block;
        background: url(../img/icons/arrow-right-2.png) no-repeat center center;
        position: absolute;
        right: 15px;
        top: 20px;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    .template:hover:after {
        right: 5px;
    }

/* ===============================================================================
    Foreign currency payment
=============================================================================== */
.form-list-1 li {
    font-size: 14px;
    line-height: 18px;
    color: #2b388f;
    text-transform: uppercase;
}

.form-txt-1 {
    font-size: 14px;
    color: #808080;
    margin-bottom: 8px;
}

    .form-txt-1 span {
        color: #2b388f;
    }

    .form-txt-1.single {
        margin-top: 11px;
        margin-bottom: 12px;
    }


/* ===============================================================================
    Prepared orders
=============================================================================== */
.content-col-full {
    width: 100%;
    background: #fff;
    float: left;
    padding: 20px 30px 20px 30px;
    position: relative;
    z-index: 1;
    -webkit-box-shadow: 0px 0px 15px 1px rgba(214, 214, 214, 0.75);
    -moz-box-shadow: 0px 0px 15px 1px rgba(214, 214, 214, 0.75);
    box-shadow: 0px 0px 15px 1px rgba(214, 214, 214, 0.75);
}

    .content-col-full.no-padding {
        padding: 0;
    }

        .content-col-full.no-padding .cnt {
            padding: 20px 30px;
        }

        .content-col-full.no-padding .cnt-2 {
            padding: 20px;
        }

    .content-col-full.p-top-60 {
        padding-top: 60px;
    }

    .content-col-full .col-header h2 {
        margin-top: 6px;
    }

    .content-col-full .col-header .col-right {
        float: right;
    }

    .content-col-full .col-header .btn-1 {
        float: left;
        width: auto;
        margin-left: 20px;
    }

    .content-col-full .col-header .buttons .btn-1 {
        margin-left: 0px;
    }

    .content-col-full .col-header .group {
        float: left;
        margin-top: 8px;
    }

    .content-col-full .col-header .col-right .btn-1:last-child {
        margin-right: 0;
    }

.buttons-wrap .btn-1 {
    float: left;
}

.buttons-wrap.buttons-4 {
    zoom: 1;
}

    .buttons-wrap.buttons-4:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .buttons-wrap.buttons-4 .btn-1 {
        width: 240px;
        margin-right: 50px;
    }

    .buttons-wrap.buttons-4 .btn-space {
        cursor: auto;
    }

    .buttons-wrap.buttons-4 .btn-1:last-child {
        margin-right: 0;
    }

.row-detail {
    padding: 40px 75px;
}

    .row-detail .detail-box p {
        text-align: left;
    }

    .row-detail .btn-1 {
        color: #fff;
    }

.row-total {
    padding: 20px 15px;
    zoom: 1;
}

    .row-total:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .row-total p {
        font-weight: 700;
        text-align: right;
        color: #212121;
        margin-bottom: 0;
    }

        .row-total p span {
            width: 200px;
            display: inline-block;
            color: #2b388f;
        }

    .row-total .left {
        float: left;
    }

        .row-total .left span {
            margin-left: 20px;
        }

    .row-total .right {
        float: right;
    }

/* ===============================================================================
    Pending Orders
=============================================================================== */
.content-tabs.top-tabs {
    border-bottom: 1px solid #eaeaea;
}

/* ===============================================================================
    Pending Orders
=============================================================================== */
.col-header .group.checkbox-wrap.full {
    width: 100%;
    margin-top: 20px;
}

/* ===============================================================================
    Account detail
=============================================================================== */
.detail-box {
    border: 1px solid #eaeaea;
    position: relative;
    padding: 40px 45px 20px 45px;
    margin-bottom: 30px;
}

    .detail-box h3 {
        width: 100%;
        font-size: 14px;
        color: #212121;
        text-align: center;
        text-transform: uppercase;
        font-weight: 700;
        position: absolute;
        top: -8px;
        left: 0;
    }

        .detail-box h3 span {
            display: inline-block;
            background: #fff;
            padding: 0 20px;
        }

    .detail-box > ul {
        zoom: 1;
    }

        .detail-box > ul:after {
            display: block;
            visibility: hidden;
            height: 0;
            clear: both;
            content: ".";
        }

        .detail-box > ul li:nth-child(odd) {
            margin-right: 4%;
        }

        .detail-box > ul li {
            float: left;
            width: 48%;
            zoom: 1;
            margin-bottom: 12px;
        }

            .detail-box > ul li:after {
                display: block;
                visibility: hidden;
                height: 0;
                clear: both;
                content: ".";
            }

    .detail-box p {
        margin-bottom: 0;
    }

    .detail-box .key {
        width: 50%;
        float: left;
        font-size: 12px;
        line-height: 19px;
        color: #808080;
        text-transform: uppercase;
    }

        .detail-box .key.highlight {
            color: #212121;
        }

    .detail-box .value {
        width: 50%;
        float: left;
        font-size: 14px;
        line-height: 19px;
        color: #2b388f;
    }

        .detail-box .value.highlight {
            text-decoration: underline;
            position: relative;
            top: -2px;
        }

        .detail-box .value img {
            float: left;
            position: relative;
            top: -4px;
            margin-right: 10px;
        }

    .detail-box .open-icon-1 {
        display: inline-block;
        width: 16px;
        height: 15px;
        margin-left: 8px;
        position: relative;
        top: 1px;
    }

    .detail-box ul.full li {
        width: 100%;
        float: none;
    }

    .detail-box ul.full .value {
        text-align: right;
    }

    .detail-box .detail-list {
        border-top: 1px solid #eaeaea;
        margin-bottom: 10px;
    }

        .detail-box .detail-list li {
            width: 100%;
            padding: 14px 0 10px 0;
            border-bottom: 1px solid #eaeaea;
            margin-right: 0;
            margin-bottom: 0;
        }

        .detail-box .detail-list .col {
            width: 48%;
            float: left;
        }

            .detail-box .detail-list .col:nth-child(odd) {
                margin-right: 4%;
            }

    .detail-box .group-value {
        float: left;
        width: 50%;
        position: relative;
        top: -10px;
    }

        .detail-box .group-value .group-inner {
            float: left;
            margin-bottom: 0;
        }

            .detail-box .group-value .group-inner:not(:last-child) {
                margin-right: 10px;
            }

    .detail-box .custom-width {
        float: left;
    }

    .detail-box .reverse-list .full {
        width: 100%;
    }

        .detail-box .reverse-list .full .key {
            width: 24%;
        }

        .detail-box .reverse-list .full .group-value {
            width: 76%;
        }

    .detail-box .reverse-list li:nth-child(odd) {
        margin-right: 0;
    }

    .detail-box .reverse-list li:nth-child(2n + 2) {
        margin-right: 4%;
    }

    .detail-box table.detail-table {
        margin-bottom: 20px;
    }

    .detail-box th, .detail-box td {
        /*font-family: "Roboto", sans-serif;*/
        font-size: 14px;
        color: #212121;
        text-align: center;
        border-bottom: 1px solid #eaeaea;
        padding: 14px 10px;
    }

    .detail-box th {
        font-weight: 700;
    }

.detal-box-wrap {
    zoom: 1;
}

    .detal-box-wrap:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .detal-box-wrap .detail-box.half:first-child {
        margin-right: 6%;
    }

.detail-box.half {
    float: left;
    width: 47%;
}

    .detail-box.half ul li {
        width: 100%;
    }

/* ===============================================================================
    Daily limit
=============================================================================== */
.detail-box.detail-select {
    zoom: 1;
}

    .detail-box.detail-select:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .detail-box.detail-select .group {
        width: 340px;
        float: left;
        margin-left: 330px;
        margin-bottom: 10px;
    }

    .detail-box.detail-select .btn-group {
        width: 340px;
        float: left;
        text-align: center;
    }

    .detail-box.detail-select .btn-1 {
        display: inline-block;
        width: auto;
        margin-top: 10px;
    }

    .detail-box.detail-select .buttons-wrap-full {
        float: left;
        width: 100%;
    }

        .detail-box.detail-select .buttons-wrap-full .btn-1 {
            width: 23.3%;
            margin: 0 1%;
        }

.pagination-container {
    zoom: 1;
}

    .pagination-container:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .pagination-container .pagination-counter {
        float: left;
        font-size: 14px;
        color: #a5a5a5;
        margin-top: 6px;
        margin-right: 65px;
        margin-bottom: 0;
    }

.pagination {
    zoom: 1;
}

    .pagination:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .pagination li {
        float: left;
        margin: 0 3px;
    }

        .pagination li a {
            display: block;
            width: 30px;
            height: 30px;
            font-size: 14px;
            line-height: 31px;
            text-align: center;
            color: #5a5a5a;
            border-radius: 15px;
            background: transparent;
        }

        .pagination li.active a {
            background-color: #2b388f;
            color: #FFF;
        }
    /*
  .business .pagination li.active a {
      background-color: lightgray;
      color: #FFF;
  }
  
  
  .business .pagination li a:hover {
    color: #fff;
    background-color: lightgray; }
      */
    .pagination .PagedList-ellipses:hover a {
        color: #a5a5a5;
        background: transparent;
    }

    .pagination .PagedList-skipToPrevious,
    .pagination .PagedList-skipToFirst,
    .pagination .PagedList-skipToNext,
    .pagination .PagedList-skipToLast {
        text-indent: -9999px;
        overflow: hidden;
    }

        .pagination .PagedList-skipToFirst a {
            background: url(../img/icons/arrow-left-5.png) 8px 7px no-repeat;
        }

            .pagination .PagedList-skipToFirst a:hover {
                background-position: 8px -33px;
            }

        .pagination .PagedList-skipToPrevious a {
            background: url(../img/icons/arrow-left-4.png) 8px 7px no-repeat;
        }

            .pagination .PagedList-skipToPrevious a:hover {
                background-position: 8px -33px;
            }

        .pagination .PagedList-skipToNext a {
            background: url(../img/icons/arrow-right-5.png) center 7px no-repeat;
        }

            .pagination .PagedList-skipToNext a:hover {
                background-position: center -33px;
            }

        .pagination .PagedList-skipToLast a {
            background: url(../img/icons/arrow-right-6.png) center 7px no-repeat;
        }

            .pagination .PagedList-skipToLast a:hover {
                background-position: center -33px;
            }

.full-col-left {
    float: left;
    width: 765px;
    padding: 20px 30px 20px 30px;
    border-right: 1px solid #eaeaea;
}

.full-col-right {
    float: left;
    width: 405px;
    padding: 20px 30px 10px 30px;
}

.currency-exchange-widget h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #212121;
}

.currency-exchange-widget table {
    margin-bottom: 0;
}

    .currency-exchange-widget table th {
        color: #212121;
        font-weight: 700;
    }

    .currency-exchange-widget table td {
        padding: 5px 0;
    }

/* Loader */
.loader-container {
    position: relative;
}

.loader-box {
    width: 100%;
    height: 100%;
    background: white;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
}

    .loader-box .loader {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -30px;
        margin-top: -30px;
    }

.loader,
.loader:after {
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

.loader {
    margin: 60px auto;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 7px solid rgba(3, 105, 181, 0.2);
    border-right: 7px solid rgba(3, 105, 181, 0.2);
    border-bottom: 7px solid rgba(3, 105, 181, 0.2);
    border-left: 7px solid #2b388f;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* ===============================================================================
    Loan detail
=============================================================================== */
.account-box.loan-box .col-left {
    width: 55%;
}

.account-box.loan-box .col-right {
    width: 45%;
}

.account-box.loan-box .acc-sel {
    width: 400px;
}

.account-box.loan-box .curr-sel {
    width: 180px;
}

.account-box.loan-box .checkbox-wrap {
    position: relative;
    padding-left: 30px;
    margin-top: 5px;
}

    .account-box.loan-box .checkbox-wrap .dxeBase {
        position: absolute;
        top: 7px;
        left: 0;
    }

.account-box.loan-box .amount-txt {
    display: block;
    float: left;
    text-align: right;
    margin-top: 16px;
    margin-right: 10px;
}

/* ===============================================================================
    Savings detail
=============================================================================== */
.account-box.savings-box .acc-sel {
    width: 547px;
}

.steps-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.steps {
    display: inline-block;
    text-align: center;
    position: relative;
}

    .steps:before {
        content: '';
        width: 96%;
        height: 4px;
        background: #a5a5a5;
        position: absolute;
        top: 50%;
        left: 2%;
        margin-top: -2px;
    }

    .steps li {
        display: inline-block;
        width: 20px;
        height: 20px;
        border-radius: 10px;
        /*font-family: "Roboto Condensed", sans-serif;*/
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        text-align: center;
        background: #a5a5a5;
        position: relative;
    }

        .steps li:not(:last-child) {
            margin-right: 4px;
        }

        .steps li.active {
            background: #2b388f;
        }

/* ===============================================================================
    Saving new
=============================================================================== */
.savings-documents h3 {
    font-size: 14px;
    font-weight: 700;
    color: #212121;
    text-transform: uppercase;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.doc-list li {
    margin-bottom: 18px;
}

    .doc-list li a {
        font-size: 14px;
        color: #2b388f;
        line-height: 20px;
        text-decoration: underline;
    }

    .doc-list li i {
        display: inline-block;
        float: left;
        width: 20px;
        height: 20px;
        background-position: center center;
        background-repeat: no-repeat;
        margin-right: 8px;
    }

/* ===============================================================================
    Help Contacts
=============================================================================== */
#main.with-title {
    min-height: calc(100vh - 195px);
}

.account-modal.title-modal {
    padding: 30px 0 26px 0;
}

    .account-modal.title-modal h1 {
        /*font-family: "Roboto Condensed", sans-serif;*/
        font-size: 24pX;
        color: #2b388f;
        background-color: white;
        text-align: center;
        font-weight: 700;
    }

.help-contacts-widget {
    padding-top: 60px;
    padding-bottom: 50px;
    zoom: 1;
}

    .help-contacts-widget:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .help-contacts-widget .contact-box:nth-child(odd) {
        margin-right: 2%;
    }

.contact-box {
    float: left;
    width: 49%;
    min-height: 325px;
    background: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    padding: 40px 30px 20px 30px;
    text-align: center;
}

    .contact-box .icon-container {
        height: 65px;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .contact-box h3 {
        font-size: 24px;
        font-weight: 900;
        color: #2b388f;
        margin-bottom: 45px;
    }

    .contact-box p {
        font-size: 16px;
        color: #2b388f;
        margin-bottom: 20px;
    }

        .contact-box p a {
            color: #2b388f;
            text-decoration: underline;
        }

/* ===============================================================================
    Help form
=============================================================================== */
.account-modal.title-modal.modal-tabs {
    padding: 30px 0 0px 0;
}

    .account-modal.title-modal.modal-tabs h1 {
        /*font-family: "Roboto Condensed", sans-serif;*/
        font-size: 24pX;
        color: #2b388f;
        text-align: center;
        font-weight: 700;
        margin-bottom: 20px;
    }

.textarea-wrap .textarea-1 {
    height: 180px;
    padding: 20px 20px;
    margin-bottom: 20px;
}

/* ===============================================================================
    Map 
=============================================================================== */
.map-widget {
    background: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    padding-bottom: 5px;
}

    .map-widget .inner {
        padding: 0 20px;
    }

.map-wrapper {
    height: 385px;
    position: relative;
    margin-bottom: 15px;
}

#map-canvas {
    height: 385px;
}

.infobox-wrapper {
    display: none;
    background: #fff;
}


.infobox {
    background: #fff;
    padding: 15px 10px;
    border-top: 4px solid #2b388f;
}

    .infobox .loc-title {
        font-size: 16px;
        line-height: 20px;
        font-weight: 700;
        color: #2b388f;
        margin-bottom: 5px;
    }

    .infobox .loc-info {
        font-size: 14px;
        color: #333333;
        margin-bottom: 0;
    }




/*.infobox .infobox {
  background: #fff;
  padding: 15px 10px;
  border-top: 4px solid #2b388f; }
  .infobox .infobox .loc-title {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    color: #2b388f;
    margin-bottom: 5px; }
  .infobox .infobox .loc-info {
    font-size: 14px;
    color: #333333;
    margin-bottom: 0; }*/

.map-search {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border: 1px solid #bbbbbb;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    overflow: hidden;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    background: #fff url(../img/icons/search-1.png) center center no-repeat;
    cursor: pointer;
}

    .map-search .search {
        display: none;
    }

    .map-search.active {
        width: 300px;
    }

        .map-search.active .search {
            display: block;
            width: 300px;
            height: 40px;
            font-size: 14px;
            color: #2b388f;
            line-height: 40px;
            padding: 0 10px;
            border: none;
        }

.content-tabs {
    zoom: 1;
}

    .content-tabs:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .content-tabs li {
        float: left;
        /*font-family: "Roboto Condensed", sans-serif;*/
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        padding: 10px 20px;
        border-bottom: 3px solid #fff;
        -webkit-transition: border 0.3s ease;
        -moz-transition: border 0.3s ease;
        -ms-transition: border 0.3s ease;
        -o-transition: border 0.3s ease;
        transition: border 0.3s ease;
    }

        .content-tabs li a {
            color: #a5a5a5;
            -webkit-transition: color 0.3s ease;
            -moz-transition: color 0.3s ease;
            -ms-transition: color 0.3s ease;
            -o-transition: color 0.3s ease;
            transition: color 0.3s ease;
        }

        .content-tabs li.active {
            border-bottom: 3px solid #2b388f;
        }

            .content-tabs li.active a {
                color: #2b388f;
            }

        .content-tabs li:hover a {
            color: #2b388f;
        }

.map-list {
    border-top: 1px solid #ebebeb;
}

    .map-list td {
        border-bottom: 1px solid #ebebeb;
        text-align: right;
        padding: 10px;
    }

    .map-list tr td:not(:last-child) .inner {
        border-right: 1px solid #ebebeb;
    }

    .map-list p {
        font-size: 14px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        margin-bottom: 0;
    }

        .map-list p.color-1,
        .map-list p.color-1 a {
            color: #2b388f;
        }

        .map-list p.color-2,
        .map-list p.color-2 a {
            /*font-family: "Roboto Condensed", sans-serif;*/
            color: #212121;
        }

        .map-list p.color-3,
        .map-list p.color-3 a {
            color: #898989;
        }

    .map-list .col-icon {
        padding-left: 0;
        text-align: left;
    }

        .map-list .col-icon .inner {
            position: relative;
            padding-left: 35px;
        }

        .map-list .col-icon i {
            width: 30px;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            background-repeat: no-repeat;
        }

    .map-list .bank-icon-1 {
        background-position: center 2px;
    }

/* ===============================================================================
    Calculators
=============================================================================== */
.calculator-widget {
    width: 1000px;
    margin: 0 auto;
}

.info-txt {
    font-size: 14px;
    color: #2b388f;
    line-height: 18px;
    font-weight: 700;
    text-align: center;
    padding: 15px;
    border: 1px solid #2b388f;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
}

    .info-txt p {
        margin-bottom: 0;
    }

.calculators-wrap {
    zoom: 1;
    margin-bottom: 30px;
}

    .calculators-wrap:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .calculators-wrap .calculator-box {
        float: left;
        width: 30%;
        border: 1px solid #dfdfdf;
        padding: 40px 30px;
        position: relative;
    }

        .calculators-wrap .calculator-box:not(:last-child) {
            margin-right: 5%;
        }

    .calculators-wrap h3 {
        width: 100%;
        font-size: 14px;
        color: #212121;
        text-align: center;
        text-transform: uppercase;
        font-weight: 700;
        position: absolute;
        top: -8px;
        left: 0;
    }

        .calculators-wrap h3 span {
            display: inline-block;
            background: #fff;
            padding: 0 20px;
        }

    .calculators-wrap .group {
        margin-bottom: 10px;
    }

        .calculators-wrap .group:last-child {
            padding-top: 10px;
        }

/* ===============================================================================
    Messages
=============================================================================== */
.custom-table th, .custom-table td {
    border-bottom: 1px solid #eaeaea;
    padding: 6px 20px;
    text-align: left;
    /*font-family: "Roboto", sans-serif;*/
    font-size: 14px;
    color: #212121;
}

.custom-table tr th:not(:last-child),
.custom-table tr td:not(:last-child) {
    border-right: 1px solid #eaeaea;
}

.custom-table th {
    height: 60px;
    font-weight: 700;
    border-top: 1px solid #eaeaea;
}

.custom-table strong {
    color: #2b388f;
}

.custom-table tr th:first-child,
.custom-table tr td:first-child {
    text-align: center;
}

.custom-table td i {
    display: inline-block;
    width: 28px;
    height: 18px;
    background-repeat: no-repeat;
    background-position: center center;
}

/* ===============================================================================
    Home Business
=============================================================================== */
.account-modal.business {
    background-color: #eceef3;
    background-image: none;
}

    .account-modal.business .main-tabs li a span {
        background: #2b388f;
    }

    .account-modal.business .account-box {
        border-color: #333333;
    }

/* ===============================================================================
    Payment Business
=============================================================================== */
.col-header.header-2 .btn-1.fixed {
    width: 130px;
}

.col-header.header-2 .checkbox-wrap label {
    width: 200px;
    display: inline-block;
    float: left;
    text-align: left;
    position: relative;
    top: -5px;
    padding-left: 10px;
}

.col-header.header-2 span.dxichCellSys {
    float: left;
}

/* ===============================================================================
    Group Copies
=============================================================================== */
.col-header.padding {
    padding: 15px 30px 25px;
}

.col-header.border-bottom {
    border-bottom: 1px solid #eaeaea;
}

.col-header.no-mb {
    margin-bottom: 0;
}

.filter-copies {
    zoom: 1;
    border-bottom: 1px solid #eaeaea;
    padding: 20px 30px 0px;
}

    .filter-copies:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .filter-copies .group-inner {
        zoom: 1;
    }

        .filter-copies .group-inner:after {
            display: block;
            visibility: hidden;
            height: 0;
            clear: both;
            content: ".";
        }

    .filter-copies .col-left {
        float: left;
    }

        .filter-copies .col-left .input-box {
            width: 215px;
        }

    .filter-copies .col-right {
        float: right;
    }

        .filter-copies .col-right .input-box {
            width: 115px;
            margin-right: 10px;
        }

        .filter-copies .col-right .group-inner {
            float: left;
        }

    .filter-copies input[type="text"].dxeEditAreaSys {
        color: #a8a8a8;
    }

    .filter-copies label {
        display: inline-block;
        float: left;
        /*font-family: "Roboto", sans-serif;*/
        font-size: 14px;
        color: #212121;
        line-height: 40px;
        margin-right: 8px;
        float: left;
    }

    .filter-copies .input-box {
        float: left;
    }

.table-statments {
    border-bottom: 1px solid #eaeaea;
    zoom: 1;
}

    .table-statments:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .table-statments th {
        text-align: left;
        /*font-family: "Roboto", sans-serif;*/
        font-size: 14px;
        color: #212121;
        padding: 20px;
        border-bottom: 1px solid #eaeaea;
        font-weight: 600;
    }

    .table-statments td {
        padding: 0 20px 0 20px;
    }

    .table-statments tbody tr {
        padding-top: 15px;
        display: block;
    }

.side-table {
    width: 210px;
    float: left;
}

.wide-table {
    border-left: 1px solid #eaeaea;
    float: left;
    width: 960px;
}

/* ===============================================================================
    Mandatni poslovi
=============================================================================== */
.client-data {
    border: 1px solid #eaeaea;
    width: 1010px;
    margin: 0 auto 40px;
    padding: 35px 25px 35px 50px;
    zoom: 1;
}

    .client-data:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .client-data legend {
        text-transform: uppercase;
        /*font-family: "Roboto", sans-serif;*/
        color: #000;
        font-size: 14px;
        font-weight: 900;
        text-align: center;
        padding: 0 20px;
    }

    .client-data .data {
        /*font-family: "Roboto", sans-serif;*/
        font-size: 14px;
        color: #2b388f;
        line-height: 40px;
        margin-bottom: 0;
    }

    .client-data .group-inner {
        zoom: 1;
        margin-bottom: 0;
    }

        .client-data .group-inner:after {
            display: block;
            visibility: hidden;
            height: 0;
            clear: both;
            content: ".";
        }

    .client-data .group {
        width: 46%;
        margin-bottom: 12px;
    }

        .client-data .group .input-1,
        .client-data .group label,
        .client-data .group .dxeButtonEdit,
        .client-data .group .data {
            display: inline-block;
            width: 50%;
            float: left;
            text-align: left;
        }

        .client-data .group label {
            text-transform: uppercase;
            padding-top: 13px;
        }

        .client-data .group .dxeButtonEdit {
            padding-top: 0;
        }

        .client-data .group .select-3 {
            min-height: auto;
        }

    .client-data .model-input-wrapper {
        zoom: 1;
    }

        .client-data .model-input-wrapper:after {
            display: block;
            visibility: hidden;
            height: 0;
            clear: both;
            content: ".";
        }

        .client-data .model-input-wrapper p {
            font-size: 14px;
            color: #212121;
            /*font-family: "Roboto", sans-serif;*/
            text-transform: uppercase;
            float: left;
            display: inline-block;
            margin-bottom: 0;
            padding-top: 11px;
            margin-right: 10px;
        }

        .client-data .model-input-wrapper .input-1 {
            text-align: center;
            width: 40px;
        }

    .client-data .group.full-width {
        width: 100%;
        clear: both;
    }

        .client-data .group.full-width label {
            width: 23%;
        }

        .client-data .group.full-width .input-1 {
            width: 77%;
        }

    .client-data .group.center {
        width: 230px;
        float: none;
        margin: 0 auto;
    }

        .client-data .group.center .input-1,
        .client-data .group.center label,
        .client-data .group.center .dxeButtonEdit {
            width: 100%;
        }

    .client-data label {
        font-size: 12px;
        color: #808080;
    }

    .client-data .group.right {
        float: right;
    }

    .client-data .group.left {
        float: left;
    }

.clear-b {
    clear: both;
}

.no-margin {
    margin: 0 !important;
}

.center-btn.single-btn {
    width: 340px;
    margin: 0 auto;
}

.business-graph-wrapper {
    border: 1px solid #eaeaea;
    width: 1010px;
    margin: 0 auto 35px;
    padding: 45px 50px;
    position: relative;
    min-height: 355px;
    zoom: 1;
}

    .business-graph-wrapper:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .business-graph-wrapper .graph-data {
        float: left;
        width: 300px;
        margin-top: 20px;
    }

        .business-graph-wrapper .graph-data p {
            text-transform: uppercase;
            /*font-family: "Roboto", sans-serif;*/
            font-size: 12px;
            color: #808080;
            line-height: 20px;
            margin-bottom: 12px;
        }

            .business-graph-wrapper .graph-data p span {
                font-size: 14px;
                float: right;
                color: #2b388f;
            }

    .business-graph-wrapper .graph {
        width: 505px;
        height: 255px;
        float: right;
    }

    .business-graph-wrapper .graph-title {
        /*font-family: "Roboto", sans-serif;*/
        font-weight: 900;
        width: 100%;
        text-transform: uppercase;
        font-size: 14px;
        position: absolute;
        left: 0;
        top: -7px;
        text-align: center;
    }

        .business-graph-wrapper .graph-title span {
            background: #fff;
            padding: 0 20px;
        }


.chart-legend {
    width: 360px;
    position: absolute;
    top: 295px;
    right: 0;
}

    .chart-legend p {
        text-transform: uppercase;
        margin-bottom: 0;
        /*font-family: "Roboto", sans-serif;*/
        font-size: 12px;
        color: #808080;
        position: relative;
        margin-bottom: 10px;
    }

    .chart-legend .red:after {
        content: "";
        width: 10px;
        height: 10px;
        display: block;
        position: absolute;
        top: 0;
        left: -20px;
        -webkit-border-radius: 100px;
        -moz-border-radius: 100px;
        -ms-border-radius: 100px;
        border-radius: 100px;
        background: #d2132d;
    }

    .chart-legend .blue:after {
        content: "";
        width: 10px;
        height: 10px;
        display: block;
        position: absolute;
        top: 0;
        left: -20px;
        -webkit-border-radius: 100px;
        -moz-border-radius: 100px;
        -ms-border-radius: 100px;
        border-radius: 100px;
        background: #2b388f;
    }

/* ===============================================================================
    Finishes requests
=============================================================================== */
.account-box.finishes-box .col-left {
    width: 60%;
}

.account-box.finishes-box .col-right {
    width: 40%;
}

.account-box.finishes-box .checkbox-wrap {
    float: left;
    width: 168px;
    position: relative;
    padding-left: 30px;
    margin-top: 6px;
}

.account-box.finishes-box span.dxichCellSys {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -12px;
}

.account-box.finishes-box .amount-txt {
    width: 100px;
    display: inline-block;
    text-align: right;
}

/* ===============================================================================
    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 {
    display: none;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    -webkit-transform: translate3d(-50%, -50%, 0);
    background: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
}

    .popup-box .popup-inner {
        padding: 20px;
    }

    .popup-box .close-popup {
        display: inline-block;
        width: 20px;
        height: 20px;
        background-color: #2b388f;
        background-repeat: no-repeat;
        background-position: center center;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        border-radius: 3px;
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: pointer;
    }

    .popup-box h2 {
        /*font-family: "Roboto Condensed", sans-serif;*/
        font-size: 24px;
        font-weight: 700;
        color: #2b388f;
        text-align: center;
        margin-bottom: 30px;
    }

    .popup-box .popup-inner > img {
        width: 100%;
        min-width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .popup-box .txt-center {
        text-align: center;
    }

        .popup-box .txt-center span,
        .popup-box .txt-center a {
            color: #2b388f;
            font-weight: 700;
        }

    .popup-box .popup-buttons-wrap {
        zoom: 1;
        padding-top: 20px;
    }

        .popup-box .popup-buttons-wrap:after {
            display: block;
            visibility: hidden;
            height: 0;
            clear: both;
            content: ".";
        }

        .popup-box .popup-buttons-wrap .btn-1 {
            width: 100%;
            float: left;
            margin-right: 0;
        }

            .popup-box .popup-buttons-wrap .btn-1:not(.half) {
                width: 160px;
                float: none;
                margin: 0 auto;
            }

            .popup-box .popup-buttons-wrap .btn-1.half {
                width: 48%;
            }

                .popup-box .popup-buttons-wrap .btn-1.half:first-child {
                    margin-right: 4%;
                }

        .popup-box .popup-buttons-wrap.center {
            text-align: center;
        }

            .popup-box .popup-buttons-wrap.center .btn-1 {
                display: inline-block;
                width: auto;
                min-width: 130px;
                float: none;
                padding: 0 25px;
                margin: 0 10px;
            }

        .popup-box .popup-buttons-wrap.center-btns {
            text-align: center;
        }

        .popup-box .popup-buttons-wrap .inline-block {
            display: inline-block !important;
            margin: 0 10px !important;
        }

    .popup-box .group label {
        display: block;
        font-size: 16px;
        color: #212121;
        text-align: center;
        margin-bottom: 5px;
    }

        .popup-box .group label span {
            color: #2b388f;
        }

    .popup-box .legend {
        margin-bottom: 0;
        text-transform: uppercase;
        /*font-family: "Roboto", sans-serif;*/
        color: #000;
        font-size: 14px;
        font-weight: 900;
        text-align: center;
    }

    .popup-box .dxgvControl .col-header {
        padding-bottom: 0;
    }

    .popup-box .client-data {
        margin-bottom: 0;
        padding-top: 25px;
        padding-bottom: 15px;
    }

        .popup-box .client-data label {
            padding-top: 0;
            font-size: 12px;
            color: #808080;
            text-align: left;
            display: inline-block;
        }

        .popup-box .client-data .data {
            line-height: 15px;
        }

    .popup-box.size-1 {
        width: 380px;
    }

    .popup-box.size-2 {
        width: 970px;
    }

    .popup-box.size-3 {
        width: 1170px;
    }

.standard-popup .popup-inner > p, .standard-popup .popup-inner > dl > * {
    font-size: 16px;
    color: #212121;
    line-height: 20px;
}

/* Home popups */
.welcome-popup {
    width: 670px;
    min-height: 390px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 60px 40px 20px 305px;
}

    .welcome-popup h2 {
        /*font-family: "Roboto Condensed", sans-serif;*/
        font-size: 24px;
        font-weight: 700;
        color: #2b388f;
        text-align: center;
        margin-bottom: 30px;
    }

    .welcome-popup p {
        font-size: 16px;
        color: #212121;
        line-height: 20px;
        text-align: center;
        margin-bottom: 30px;
    }

    .welcome-popup .btn-1 {
        width: 175px;
        margin-left: auto;
        margin-right: auto;
    }

/* Savings popups */
.savings-popup h2 {
    margin-bottom: 20px;
}

.savings-popup-1 .textarea-1 {
    height: 80px;
}

.savings-popup-2 .txt-center {
    margin-bottom: 0;
}

.savings-popup-2 .group-inner {
    margin-bottom: 15px;
}

/* Document popups */
.doc-popup h2 {
    margin-bottom: 20px;
}

.doc-wrap {
    width: 870px;
    height: 476px;
    background: #999999;
    margin: 0 auto 0px auto;
}

/* Message popup */
.popup-message {
    padding-top: 30px;
    padding-left: 40px;
}

    .popup-message h2 {
        font-family: 'Museo Sans', sans-serif;
        ;
        font-size: 24px;
        text-align: left;
        margin-bottom: 5px;
    }

    .popup-message .popup-inner > .date {
        font-size: 14px;
        color: #a5a5a5;
    }

    .popup-message .message-wrap {
        height: 400px;
    }

/* Upload popup */
.upload-popup .upload-wrap {
    padding-left: 260px;
    zoom: 1;
    margin-bottom: 30px;
}

    .upload-popup .upload-wrap:after {
        display: block;
        visibility: hidden;
        height: 0;
        clear: both;
        content: ".";
    }

    .upload-popup .upload-wrap .file-wrapper {
        float: left;
        margin-right: 20px;
    }

    .upload-popup .upload-wrap .btn-1 {
        float: left;
        width: auto;
        min-width: 100px;
    }

.upload-popup .popup-content {
    height: 400px;
}

.upload-popup .grid-content {
    margin-bottom: 40px;
}

.file-wrapper .upload-file {
    opacity: 0;
    visibility: hidden;
}

.file-wrapper .upload-btn {
    width: 120px;
    font-family: 'museo-slab', sans-serif;
    font-size: 14px;
    line-height: 38px;
    text-align: center;
    height: 38px;
    color: #212121;
    background: #f8f8f8;
    border-left: 1px solid #eaeaea;
    padding: 0 10px;
    -webkit-transition: background 0.3s ease;
    -moz-transition: background 0.3s ease;
    -ms-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
    transition: background 0.3s ease;
    position: absolute;
    right: 0px;
    top: 0px;
    margin-right: 0;
}

    .file-wrapper .upload-btn:hover {
        background: #f0f0f0;
    }

    .file-wrapper .upload-btn:focus {
        outline: none;
    }

.file-wrapper {
    width: 500px;
    height: 40px;
    /*font-family: "Roboto", sans-serif;*/
    font-size: 14px;
    line-height: 40px;
    font-weight: 500;
    color: #a8a8a8;
    border: 1px solid #eaeaea;
    padding: 0 110px 0 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    background: #fff;
    position: relative;
}

    .file-wrapper .file-name {
        width: 380px;
        display: inline-block;
        padding: 0px 16px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .file-wrapper .name-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        padding-right: 140;
    }

/* Default popup */
/* ==================================================
    =Media Queries
===================================================== */
/* ==================================================
    =High def devices
===================================================== */

#frmpartialMainProfil {
    font-size: 14px;
    float: left;
    width: 72px;
    text-align: center;
}

    #frmpartialMainProfil a {
        color: #999999;
    }

    #frmpartialMainProfil span {
        color: white;
        background-color: #2b388f;
        border-radius: 50%;
        margin-left: 3px;
        padding: 1px 5px;
        font-family: Arial, sans-serif;
    }

    #frmpartialMainProfil .submenu span {
        background-color: white;
    }

    #frmpartialMainProfil .submenu a {
        color: #333333;
    }


    #frmpartialMainProfil .submenu {
        z-index: -1;
    }

    #frmpartialMainProfil > a:after {
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 7px 5.5px 0 5.5px;
        border-color: #2b388f transparent transparent transparent; /*red*/
        position: absolute;
        top: 30px;
        left: 40%;
        margin-left: 30px;
    }

.btn-app-now {
    margin: 0;
    padding: 0;
    background-color: transparent;
    font-size: 12px;
    color: #2b388f;
    text-transform: uppercase;
}

    .btn-app-now:hover {
        text-decoration: underline;
    }

.frm-kyc {
    border-radius: 10px;
    background-color: rgb(245, 245, 245);
    width: 800px;
    margin: 10px auto 20px auto;
    padding: 40px 80px;
    color: #2b388f;
    font-size: 20px;
}

    .frm-kyc .frm-sub {
        margin-top: 10px;
        color: #333333;
        font-size: 14px;
    }

        .frm-kyc .frm-sub input[type="text"], .frm-kyc .frm-sub select, .frm-kyc .frm-sub textarea, .frm-kyc .frm-sub input[type="date"] {
            margin-bottom: 10px;
            outline: none;
            padding: 2px 10px;
            color: #333333;
            height: 30px;
            width: 200px;
            border-radius: 3px 10px;
            border: 1px solid lightgray;
            transition: border 0.2s linear;
        }

        .frm-kyc .frm-sub input[type="checkbox"] {
        }

        .frm-kyc .frm-sub select {
            cursor: pointer;
        }

        .frm-kyc .frm-sub div {
            margin-right: 10px;
            display: inline-block;
        }

        .frm-kyc .frm-sub textarea {
            width: 500px;
            height: 100px;
            padding: 5px;
        }

        .frm-kyc .frm-sub select > option {
            color: #333333;
        }

        .frm-kyc .frm-sub select:disabled {
            background-color: rgb(235, 235, 228);
        }

#sifraNamjene-dd, #sifraNamjene-dd input {
    cursor: pointer;
}

    #sifraNamjene-dd ul {
        /*height: 150px;*/
        overflow-y: scroll;
        position: absolute;
        z-index: 1;
        background-color: white;
        border-radius: 2px;
        box-shadow: 0 0 10px #999999;
    }

        #sifraNamjene-dd ul li {
            display: block;
            font-size: 14px;
            padding: 4px 12px;
            cursor: pointer;
            color: #2b388f;
        }

            #sifraNamjene-dd ul li:hover {
                background-color: #2b388f;
                color: white;
            }

            #sifraNamjene-dd ul li:first-child {
                height: 30px;
            }

    #sifraNamjene-dd:after {
        content: '';
        position: absolute;
        top: 0;
        right: 10px;
        height: 100%;
        width: 20px;
        background-image: url(../img/icons/arrow-bottom-1.png);
        background-position: center;
        background-repeat: no-repeat;
    }

#sifraNamjeneUl-dd {
    width: 100%;
    max-height: 150px;
}

#KYCpart input, #KYCpart select {
    border-radius: 5px;
    border: 1px solid lightgray;
    padding: 5px 10px;
    margin-bottom: 10px;
}

.half-center {
    width: 50%;
    margin: auto;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between; /* Ensure space between elements */
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.switch-container {
    display: flex;
    align-items: center; /* Align label and switch vertically in the center */
    justify-content: space-between; /* Space between label and switch */
    width: 65%; /* Ensure two items fit in one row */
    margin-bottom: 20px;
    gap: 10px; /* Space between label and switch */
}

.custom-switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
}

.custom-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    display: none;
}

.custom-control-label {
    position: relative;
    display: block;
    background-color: #ccc;
    border-radius: 20px;
    width: 34px;
    height: 20px;
    cursor: pointer;
}

.custom-control-label:before {
    content: '';
    position: absolute;
    left: 4px;
    top: 2px;
    width: 14px;
    height: 14px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}

input:checked + .custom-control-label {
    background-color: #2b388f;
}

input:checked + .custom-control-label:before {
    transform: translateX(14px);
}
.custom-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
}

.custom-table th,
.custom-table td {
    border: 1px solid #ddd;
    font-family: 'Museo Sans', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #212121;
    padding: 17px 15px;
}

.custom-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.custom-table td {
    white-space: nowrap;
}

.custom-table input[type="checkbox"] {
    width: 18px; /* Adjust width */
    height: 18px; /* Adjust height */
    margin: 0; /* Remove margin */
    vertical-align: middle; /* Align with text */
    cursor: pointer; /* Change cursor to pointer */
    border: 1px solid #ddd; /* Border styling */
    border-radius: 3px; /* Rounded corners */
    appearance: none; /* Remove default checkbox styling */
}

    .custom-table input[type="checkbox"]:checked {
        background: url(../img/bg/checkbox-1.png) 0 0px no-repeat;
        border-color: #007bff; /* Match border with background */
        color: white;
    }

.custom-table input[type="checkbox"]:checked::after {
    display: block;
    text-align: center;
    color: white;
    font-size: 14px;
}

.custom-checkbox-1 {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .custom-checkbox-1 input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 2px solid #2b388f;
    color: #ffffff;
}

.custom-checkbox-1:hover input ~ .checkmark {
    background-color: #ccc;
}

.custom-checkbox-1 input:checked ~ .checkmark {
    background-color: #2b388f;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox-1 input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox-1 .checkmark:after {
    left: 6px;
    top: 1px;
    width: 5px;
    height: 11px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.form-check-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 8px;
}
.dz {
    border: 1.5px dashed #0097A7;
    background: #f6f6f6;
    margin-left: 30%;
    text-align: center;
    position: relative;
    height: 140px;
    margin-right: 30%;
    background-color: #D8F3F7;
    color: #0097A7;
    margin-top: 10px;
}


.dz input[type=file] {
    position: absolute;
    inset: 0;
    opacity: .01;
    cursor: pointer;
    color: #0097A7;
}

.hint {
    font-size: 14px;
    color: #0097A7;
    position: absolute;
    margin-top: 40px;
    margin-left: 55px;
}

.hint a {
    font-size: 14px;
    color: #0097A7;
    text-decoration: underline;

}

.upload-icon {
    width: 24px;
    height: 36px;
    display: block;
    margin: 0 auto 8px auto;
    opacity: 0.8;
    background-position: center top;
    background-repeat: no-repeat;
}

.ms-attach-label {
    margin-left: 30%;
    margin-bottom: 10px;
    font-size:14px;
    font-weight: 400;
}
.ms-attach-wrapper {
    border: 1px dashed #CCCCCC;
    padding: 20px
}
/* ========== File list ========== */
.file-list {
    margin-top: 10px;
    border: 1px dashed #eaeaea;
    border-radius: 8px;
    padding: 8px;
}

.file-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-bottom: 1px solid #eaeaea;
}

    .file-row:last-child {
        border-bottom: none;
    }

    .file-row .name {
        flex: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .file-row .size {
        width: 90px;
        text-align: right;
        color: #808080;
    }

/* Links/btns inside both lists */
#prov-list a,
#prov-list button,
#bf-list a,
#bf-list button {
    border: none;
    background: transparent;
    cursor: pointer;
    text-decoration: underline;
}

/* ========== mPOS ========== */
.mpos-container {
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 12px 14px;
}

.mpos-grid {
    display: grid;
    grid-template-columns: 90px 1fr 120px;
    gap: 12px;
    align-items: end;
}

.mpos-headers {
    color: #a5a5a5;
    font-size: 13px;
    margin-bottom: 6px;
}



.mpos-list .mpos-item {
    display: grid;
    grid-template-columns: 90px 1fr 120px;
    gap: 12px;
    align-items: center;
    border: 1px dashed #eaeaea;
    background: #fff;
    border-radius: 10px;
    margin-top: 8px;
}

.mpos-editor {
    margin-top: 6px;
}

.mpos-total {
    margin-top: 8px;
}

/* ========== Typo / inputs shared ========== */
.ms-question,
.form-check-label,
.ms-textarea,
.ms-textbox,
.dxeButtonEdit {
    font-family: 'Museo Sans', sans-serif;
    font-size: 14px;
}

.ms-textarea,
.ms-textbox {
    width: 100%;
}

.ms-textbox {
    min-height: 40px;
}

/* Textarea + counter */
.ms-textarea-holder {
    position: relative;
}

.ms-textarea {
    resize: none;
    overflow: auto;
    min-height: 50px;
}

.ms-counter {
    position: absolute;
    right: 10px;
    bottom: 8px;
    font-size: 14px;
    color: #6b6b6b;
}

/* Info row */
.ms-help-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 14px;
}

.ms-help-text {
    color: #0b3d91;
    font-weight: 700;
}

/* small round “i” (koristi se i u EMV) */
.ms-i, .emv-i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #0b3d91;
    color: #0b3d91;
    font-weight: 700;
    font-size: 12px;
}

/* Upload label/wrap */
.ms-upload-wrap {
    margin-top: 18px;
}

.ms-upload-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-family: 'Museo Sans', sans-serif;
}

/* Utility */
.text-danger {
    color: #c92020;
    font-size: 14px;
    padding-top: 5px;
    margin-bottom: 0px;
}

.req {
    color: #c92020;
}

.ms-form-title {
    margin-top: 30px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

/* ========== EMV (Estimated Merchant Volumes) ========== */
.emv-section {
    margin-top: 10px;
}

.emv-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    grid-row-gap: 4px;
    align-items: center;
}

    .emv-grid label {
        font-size: 14px;
    }

.emv-input {
    width: 60%;
    padding: 10px 12px;
    border: 1px solid #bdbdbd;
    border-radius: 3px;
    font-size: 14px;
    box-sizing: border-box;
}

    .emv-input:focus {
        outline: none;
        border-color: #2c7be5;
        box-shadow: 0 0 0 2px rgba(44,123,229,.15);
    }

.amount {
    text-align: right;
}

.emv-msg {
    grid-column: 2 / 3;
    margin-top: -6px;
}

.emv-help {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: #0b3d91;
    font-size: 14px;
}

/* ========== Business Features (grid 2 kolone) ========== */
.bf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
    align-items: start;
}

    .bf-grid > label {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
    }

/* “Please specify” ispod desne kolone (Other) */
.bf-other {
    grid-column: 2;
    display: flex;
    align-items: center;
    margin-top: 8px;
    flex-wrap: wrap;
    font-size: 14px;
}

.bf-other-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.bf-input {
    padding: 8px 10px;
    border: 1px solid #bdbdbd;
    border-radius: 3px;
    min-width: 280px;
}

    .bf-input:disabled {
        background: #f5f5f5;
    }

.bf-counter {
    font-size: 12px;
    color: #6b6b6b;
}

/* 3-col button wrapper (ako treba) */
.button-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px 24px;
    align-items: start;
}

.mpos-total {
    height: 40px;
    padding-top: 3px;
    color: #a8a8a8;
    font-size: 14px;
    margin-bottom: 0;

}

.mpos-total span {
    color: #2b388f;
}

.mpos-btn-remove {
    background-color: #e74c3c;
    color: #fff;
    transition: background 0.3s;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    width: 90px;
}

.mpos-btn-remove:hover {
    background-color: #c0392b; 
}


.mpos-btn-add {
    background-color: #27ae60;
    color: #fff;
    transition: background 0.3s;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    width: 90px;
}

.mpos-btn-add:hover {
    background-color: #1e8449; 
}
.btn-dl {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    background: #0097A7;
}
.btn-del {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    background: #a5a5a5;
}