/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ==================================================
    =SASS CSS
===================================================== */
/* ==================================================
    =Styles
===================================================== */
body {
    font: 100% "Roboto", sans-serif;
    color: #333;
    -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;
    color: #444;
    background-color: #fff;
}

/* 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;
    accent-color: #76602e;
}

/* 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;
}

h1 {
    font: 400 32px/1.3 "Roboto", sans-serif;
}

h2 {
    font: 400 24px/1.2 "Roboto", sans-serif;
}

h3 {
    font: 400 22px/1.2 "Roboto", sans-serif;
}

h4 {
    font: 400 20px/1.2 "Roboto", sans-serif;
}

h5 {
    font: 400 16px/1.2 "Roboto", sans-serif;
}

h6 {
    font: 400 14px/1.2 "Roboto", sans-serif;
}

a {
    text-decoration: none;
}

/* Styling */
strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

sup {
    vertical-align: text-top;
    font-size: 75%;
}

sub {
    vertical-align: bottom;
    font-size: 75%;
}

blockquote {
    font-style: italic;
}

/* User generated  */
.user-content ul {
    list-style: disc;
    margin-left: 24px;
}

    .user-content ul ul {
        margin-left: 20px;
        margin-bottom: 0;
    }

    .user-content ul li {
        margin-bottom: 0;
    }

.user-content ol {
    margin-left: 24px;
    list-style: decimal;
}

    .user-content ol ol {
        list-style: lower-latin;
        margin-bottom: 0;
    }

.user-content ul ul, .view ol ol {
    margin-bottom: 0;
}

.user-content li li {
    font-size: 1em;
}

/* Table */
table {
    width: 100%;
    border: none;
    border-collapse: collapse;
    border-spacing: 0;
}

    table td, table th {
        vertical-align: middle;
    }

/* Normal form */
.normal-form input[type="text"],
.normal-form input[type="password"],
.normal-form input[type="datetime"],
.normal-form input[type="datetime-local"],
.normal-form input[type="date"],
.normal-form input[type="month"],
.normal-form input[type="time"],
.normal-form input[type="week"],
.normal-form input[type="number"],
.normal-form input[type="email"],
.normal-form input[type="url"],
.normal-form input[type="search"],
.normal-form input[type="tel"],
.normal-form input[type="color"],
.normal-form textarea,
.normal-form select {
    -webkit-appearance: none;
}

    .normal-form input[type="text"]:focus,
    .normal-form input[type="password"]:focus,
    .normal-form input[type="datetime"]:focus,
    .normal-form input[type="datetime-local"]:focus,
    .normal-form input[type="date"]:focus,
    .normal-form input[type="month"]:focus,
    .normal-form input[type="time"]:focus,
    .normal-form input[type="week"]:focus,
    .normal-form input[type="number"]:focus,
    .normal-form input[type="email"]:focus,
    .normal-form input[type="url"]:focus,
    .normal-form input[type="search"]:focus,
    .normal-form input[type="tel"]:focus,
    .normal-form input[type="color"]:focus,
    .normal-form textarea:focus,
    .normal-form select:focus {
        outline: none;
    }

/* ===============================================================================
    Icons
=============================================================================== */
.account-icon-1 {
    background-image: url(../img/icons/account-1.png);
    filter: brightness(0)
}

.arrow-left-icon-1 {
    background-image: url(../img/icons/arrow-left-1.png);
    filter: brightness(0)
}

.arrow-right-icon-1 {
    background-image: url(../img/icons/arrow-right-1.png);
    filter: brightness(0)
}

.bank-icon-1 {
    background-image: url(../img/icons/bank-1.png);
    filter: brightness(0)
}

.bank-icon-2 {
    background-image: url(../img/icons/bank-2.png);
    filter: brightness(0)
}

.briefcase-icon-1 {
    background-image: url(../img/icons/briefcase-1.png);
    filter: brightness(0)
}

.card-icon-1 {
    background-image: url(../img/icons/card-1.png);
    filter: brightness(0)
}

.card-icon-2 {
    background-image: url(../img/icons/card-2.png);
    filter: brightness(0)
}

.check-icon-1 {
    background-image: url(../img/icons/check-1.png);
    filter: brightness(0)
}

.close-icon-1 {
    background-image: url(../img/icons/close-1.png);
    filter: brightness(0)
}

.coins-icon-1 {
    background-image: url(../img/icons/coins-1.png);
    filter: brightness(0)
}


.doc-icon-1 {
    background-image: url(../img/icons/document-1.png);
    filter: brightness(0)
}

.exchange-icon-1 {
    background-image: url(../img/icons/exchange-1.png);
    filter: brightness(0)
}

.facebook-icon-1 {
    background-image: url(../img/icons/facebook-1.png);
    filter: brightness(0)
}

.flag-icon-1 {
    background-image: url(../img/icons/flag-1.png);
    filter: brightness(0)
}

.help-icon-1 {
    background-image: url(../img/icons/help-1.png);
    filter: brightness(0)
}

.home-icon-1 {
    background-image: url(../img/icons/home-1.png);
    filter: brightness(0)
}

.info-icon-1 {
    background-image: url(../img/icons/info-1.png);
    filter: brightness(0)
}

.key-icon-1 {
    background-image: url(../img/icons/key-1.png);
    filter: brightness(0)
}

.linkedin-icon-1 {
    background-image: url(../img/icons/linkedin-1.png);
    filter: brightness(0)
}

.mail-icon-1 {
    background-image: url(../img/icons/mail-1.png);
    filter: brightness(0)
}

.mail-icon-2 {
    background-image: url(../img/icons/mail-2.png);
    filter: brightness(0)
}

.money-icon-1 {
    background-image: url(../img/icons/money-1.png);
    filter: brightness(0)
}

.open-icon-1 {
    background-image: url(../img/icons/open-1.png);
    filter: brightness(0)
}

.print-icon-1 {
    background-image: url(../img/icons/print-1.png);
    filter: brightness(0)
}

.plus-icon-1 {
    background-image: url(../img/icons/plus-1.png);
    filter: brightness(0)
}

.power-icon-1 {
    background-image: url(../img/icons/power-1.png);
    filter: brightness(0)
}

.save-icon-1 {
    background-image: url(../img/icons/save-1.png);
    filter: brightness(0)
}

.twitter-icon-1 {
    background-image: url(../img/icons/twitter-1.png);
    filter: brightness(0)
}

.user-icon-1 {
    background-image: url(../img/icons/user-1.png);

}

.user-icon-1:hover i{
    filter: hue-rotate(10deg);
}

.user-icon-2 {
    background-image: url(../img/icons/user-2.png);
    filter: brightness(0)
}

.user-icon-3 {
    background-image: url(../img/icons/user-3.png);
    filter: brightness(0)
}

.wallet-icon-1 {
    background-image: url(../img/icons/wallet-1.png);
    filter: brightness(0)
}

.web-icon-1 {
    background-image: url(../img/icons/web-1.png);
    filter: brightness(0)
}

.xl-icon-1 {
    background-image: url(../img/icons/xl-1.png);
    filter: brightness(0)
}

.pdf-icon-1 {
    background-image: url(../img/icons/pdf-1.png);
    filter: grayscale(1);
}

.youtube-icon-1 {
    background-image: url(../img/icons/youtube-1.png);
}

.fina-icon-1 {
    background-image: url(../img/icons/fina-1.png);
}

/* ===============================================================================
    Buttons
=============================================================================== */
.btn-1 {
    display: block;
    width: 100%;
    height: 40px;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    padding: 11px 10px;
    cursor: pointer;
    border: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    -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 {
        color: #ffffff;
        background: #76602e;
        text-align: center;
    }

        .btn-1.color-1:hover {
            background: #5B4D30;
        }

    .btn-1.color-2 {
        border: 1px solid black;
        color: black;
        background: white   ;
    }

        .btn-1.color-2:hover {
            background: #e9e9e9;
        }

    .btn-1.padding {
        padding-left: 20px;
        padding-right: 20px;
    }

    .btn-1 .xl-icon-1, .btn-1 .pdf-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: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    -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: #76602e;
    }

        .btn-2.color-1:hover {
            background: #5B4D30;
        }

    .btn-2.color-2 {
        background: #a5a5a5;
    }

        .btn-2.color-2:hover {
            background: #989898;
        }

    .btn-2:disabled,
    .btn-2: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: 12px;
    color: #808080;
    text-transform: uppercase;
    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: #000000;
    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: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #0369b5;
    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: #0369b5;
    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;
    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;
        width: 47%;
    }
        /*.group-wrapper .half:nth-child(even) {
    float: right; }
  .group-wrapper .half.space {
    height: 40px; }*/


        .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), .group-wrapper .half:nth-child(9), .group-wrapper .half:nth-child(11), .group-wrapper .half:nth-child(13), .group-wrapper .half:nth-child(15), .group-wrapper .half:nth-child(17), .group-wrapper .half:nth-child(19), .group-wrapper .half:nth-child(21) {
            clear: both;
            margin-bottom: 20px;
        }

        .group-wrapper .half.space {
            height: 40px;
        }



    .group-wrapper.m-bottom-1 {
        margin-bottom: 10px;
    }

margin-bottom: 10px;
}
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: #0369b5;
        }

.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;
}

.form-title2 {
    text-transform: uppercase;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    margin-top: 10px;
    padding-top: 15px;
}
/* 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: #000000;
}

.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: #000000;
}

.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: 115px;
    background: #fff;
}

    #page-header .container {
        position: relative;
    }

.site-branding {
    float: left;
}

    .site-branding a {
        display: block;
        width: 265px;
        height: 66px;
        background: url(../img/bg/logo-1.png) 0 0 no-repeat;
        text-indent: -9999px;
        overflow: hidden;
        margin-top: 20px;
        filter: invert(1);
    }

.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: '';
            height: 0;
            position: absolute;
            -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 {
            color: #76602e;
        }

        .main-nav > li > a {
            display: block;
            font-family: "Roboto Condensed", sans-serif;
            color: #000000;
            font-size: 14px;
            text-transform: uppercase;
        }
                .main-nav > li > a:hover {
                    color: #76602e;
                    font-weight: bolder;
                }
                    .main-nav li.active > a {
                    color: #76602e;
                    font-weight: bolder;
                    text-decoration: underline;
                    }
                        .main-nav li.active i {
                        filter: hue-rotate(210deg);
                        }
                        .main-nav li:not(.active):hover i {
                            filter: hue-rotate(210deg);
                        }
                        .main-nav li:not(.active):hover i.user-icon-1 {
                            filter: none;
                        }
                        .main-nav li.active i.user-icon-1 {
                            filter: none;
                        }


    .main-nav a i {
        display: block;
        height: 40px;
        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: #000000 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;
        -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: #212121;
        position: relative;
        padding: 8px;
    }

    .main-nav .submenu .active a {
        font-weight: 700;
        color: #76602e;
    }


    /* .main-nav .submenu a:after {
        content: '';
        width: 0;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0;
        background: #000000;
        -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: #76602e;
    }

        .main-nav .submenu a:hover:after,
        .main-nav .submenu .active a:after {
            width: 3px;
        }

    .main-nav .has-menu.item-color-1 > a {
        color: #d2142e;
    }

        .main-nav .has-menu.item-color-1 > a:after {
            border-color: #d2142e transparent transparent transparent;
        }

.lang-nav {
    float: right;
    margin-top: 36px;
}

    .lang-nav li {
        margin-bottom: 8px;
    }

#page-header.main-header .main-nav.small {
    width: 220px;
    position: absolute;
    top: 0;
    right: 15px;
}

    #page-header.main-header .main-nav.small:before {
        content: '';
        width: 220px;
        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: 65px;
            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: #76602e;
    }

    #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.profile-nav .submenu a span {
        font-weight: 700;
        color: #76602e;
    }

    #page-header.main-header .main-nav.small li.profile-nav > a span {
        display: inline-block;
        width: 17px;
        height: 17px;
        background: #0369b5;
        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:after {
            border-color: #000000 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;
    }

/* ===============================================================================
    Login
=============================================================================== */
#page-header.login-header .main-nav {
    margin-left: 60px;
}

    #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;
}

    #main.login-main h2 {
        font-family: "Roboto Condensed", sans-serif;
        font-size: 24px;
        color: #000000;
        text-transform: uppercase;
        text-align: center;
        font-weight: 700;
        margin-bottom: 20px;
    }

    #main.login-main .copy {
        font-size: 14px;
        color: #000000;
        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: 5px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

    .login-box .cnt {
        padding: 0 20px;
    }

.tabs-1 {
    background: #f9f9f9;
    overflow: hidden;
    margin-bottom: 30px;
}

    .tabs-1 li {
        float: left;
    }
            /* .tabs-1 li label:hover {
        color: #76602e;
        font-weight: bold;
    } */

        .tabs-1 li a, .tabs-1 li label {
            display: block;
            font-family: #secondaryfont;
            font-size: 14px;
            color: #808080;
            line-height: 50px;
            text-align: center;
            text-transform: uppercase;
            position: relative;
        }
                .tabs-1 li a, .tabs-1 li label:hover {

            color: #76602e;
            font-weight: bold;

        }

            /* .tabs-1 li a:after, .tabs-1 li label:after {
                content: '';
                width: 100%;
                height: 0;
                position: absolute;
                bottom: 0;
                left: 0;
                background: #76602e;
                -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: #76602e;
            font-weight: bold;
            background: #fff;
            box-shadow: 1px 0 0 rgba(0, 0, 0, 0.12), -1px 0 0 rgba(0, 0, 0, 0.12), 0 1px 0 rgba(0, 0, 0, 0.18);
        }

            .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;
                color: #76602e;
            }

.tab-nr-1 li {
    width: 100%;
}

.tab-nr-2 li {
    width: 50%;
}

.tab-nr-3 li {
    width: 33%;
}

.tab-nr-3 li {
    width: 33%;
}

.tab-nr-4 li {
    width: 25%;
}

.tab {
    display: none;
}

    .tab.active {
        display: block;
    }

#main.login-1 {
    padding-top: 30px;
}

    #main.login-1 .login-box {
        margin-bottom: 50px;
    }

.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: #0369b5;
        text-align: center;
    }

    .promo-slider p {
        font-size: 14px;
        color: #808080;
        line-height: 20px;
        text-align: center;
    }

        .promo-slider p a {
            color: #0369b5;
        }

.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-image: url(../img/bg/login-bg.jpg);
}

    .prelogin h2 {
        font-family: "Roboto Condensed", sans-serif;
        font-size: 24px;
        color: #000000;
        text-transform: uppercase;
        text-align: center;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .prelogin .security-logo {
        text-align: center;
        margin-bottom: 20px;
    }

    .prelogin .copy {
        font-size: 14px;
        color: #000000;
        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: #000000;
    }

.currency-widget h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
}

.currency-list th, .currency-list td {
    width: 100px;
    text-align: right;
    border-bottom: 1px solid #eaeaea;
}

.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: #000000;
    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: '';
                    height: 15px;
                    position: absolute;
                    top: 50%;
                    right: 15px;
                    margin-top: -5px;
                    -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;
                    aspect-ratio: cos(30deg);
                    clip-path: polygon(-50% 50%,50% 100%,150% 50%,50% 0);
                    background: #967D64;
                }

                .news-widget .news-list li:hover:after {
                    right: 10px;
                }

        .news-widget .news-list .news-title {
            font-size: 18px;
            font-weight: 600;
            color: #000000;
            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: #000000;
        font-weight: 700;
        text-transform: uppercase;
        position: relative;
        padding-left: 20px;
        margin-bottom: 35px;
    }

        .news-detail .back:after {
            content: '';
            height: 15px;
            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;
            aspect-ratio: cos(30deg);
            clip-path: polygon(-50% 50%,50% 100%,150% 50%,50% 0);
            background: #967D64;
        }

        .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: #000000;
        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: 20%;
        -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;
    background-image: url(../img/bg/login-bg.jpg);
}

    #main.prelogin-full .logo-prelogin {
        text-align: center;
        margin-bottom: 40px;
        filter:invert(1);
    }

    #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;
    margin-bottom: 45px;
}

.prelogin-select-account .description {
    font-size: 14px;
    color: #212121;
    min-height: 70px;
}

/* ===============================================================================
    Dashboard
=============================================================================== */
.title-1 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 40px;
    color: #0369b5;
}

#main {
    min-height: calc(100vh - 115px);
    background-color: #eaeaea;
    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: 10px;
        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: #76602e;
                    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: #0F3C2D;
background: linear-gradient(90deg, rgba(15, 60, 45, 1) 0%, rgba(91, 77, 48, 1) 100%);
    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;
        font-weight: 700;
        line-height: 26px;
        color: #fff;
        text-transform: uppercase;
        display: inline-block;
        float: left;
        opacity: 0.5;
        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;
    }

        .account-change p.active {
            opacity: 1;
        }

    .account-change .switch {
        float: left;
        display: inline-block;
        width: 48px;
        height: 26px;
        border: 3px solid #fff;
        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: #fff;
            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: #fff;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    zoom: 1;
    padding: 20px;
    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: #212121;
        text-transform: uppercase;
        margin-right: 5px;
    }

    .account-box .amount {
        font-size: 48px;
        font-weight: 300;
    }

    .account-box .currency {
        font-size: 18px;
    }

    .account-box .account-actions {
        float: left;
        width: 100%;
        padding-top: 10px;
    }

        .account-box .account-actions .btn-1 {
            width: 22.5%;
            float: left;
        }

            .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;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 0;
    }

    .custom-select .description {
        font-size: 14px;
        color: #212121;
        line-height: 16px;
        margin-bottom: 0;
    }

    .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: #000000 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 #000000 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: #0369b5;
        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: #000000;
        font-weight: 600;
        text-transform: uppercase;
    }

    .account-list .txt-meta {
        font-size: 14px;
        color: #212121;
        text-transform: uppercase;
    }

    .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: #000000;
    }

/* ===============================================================================
    Payments in HRK
=============================================================================== */
.account-modal.modal-tabs {
    padding-bottom: 0;
}

.main-tabs {
    zoom: 1;
    display:flex;
    width:100%;
}

    .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;
        flex: 1;
    }

        .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: #76602e;
            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: #0369b5;
            }

                .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%;
        }



.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;
    }

    .content-col-2 .content-side-chat {
        background: #fff;
        float: left;
        width: 380px;
        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-main-chat {
        width: 790px;
        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;
        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;
    text-transform: uppercase;
}

.form-txt-1 {
    font-size: 14px;
    color: #808080;
    margin-bottom: 8px;
}

    .form-txt-1 span {
        color: #000000;
    }

    .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: #0369b5;
        }

    .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 .key_limit {
        float: none;
        width: 10%;
        border-bottom: none;
        padding-top: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        padding-right: 5px;
        font-size: 12px;
        line-height: 19px;
        color: #808080;
        text-transform: uppercase;
    }

    .detail-box .value {
        width: 50%;
        float: left;
        font-size: 14px;
        line-height: 19px;
    }

        .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: #a5a5a5;
            background: transparent;
            aspect-ratio: cos(30deg);
            clip-path: polygon(-50% 50%,50% 100%,150% 50%,50% 0);
        }

            .pagination li.active a,
            .pagination li a:hover {
                color: #fff;
                background-color: #967D64;
            }

    .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;
    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 #76602e;
    -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: #0369b5;
        }

/* ===============================================================================
    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: #76602e;
        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: #fff;
        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: #000000;
        margin-bottom: 45px;
    }

    .contact-box p {
        font-size: 16px;
        color: #000000;
        margin-bottom: 20px;
    }

        .contact-box p a {
            color: #000000;
            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: #fff;
        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 #0369b5;
}

    .infobox .loc-title {
        font-size: 16px;
        line-height: 20px;
        font-weight: 700;
        color: #0369b5;
        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 #0369b5; }
  .infobox .infobox .loc-title {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    color: #0369b5;
    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: #0369b5;
            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 {
            background:#e9e9e9;
            }

            .content-tabs li.active button{
                background:#e9e9e9;
                color: #76602e;
                font-weight: bolder;
            }

            .content-tabs li.active a {
                color: #000000;
            }

        .content-tabs li:hover a {
            color: #76602e;
        }

.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: #000000;
        }

        .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;
    line-height: 18px;
    font-weight: 700;
    text-align: center;
    padding: 15px;
    border: 1px solid #000000;
    -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: #0369b5;
}

.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: #5B4D30;
    background: linear-gradient(90deg, rgba(91, 77, 48, 1) 0%, rgba(15, 60, 45, 1) 100%);
}

    .account-modal.business .main-tabs li a span {
        background: #0369b5;
    }

/* ===============================================================================
    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;
        margin-top: -8px; /*Dodano-poravnava datume s ostalim*/
    }

    .filter-copies label {
        display: inline-block;
        float: left;
        font-family: "Roboto", sans-serif;
        font-size: 14px;
        color: #212121;
        line-height: 20px; /*Bilo je 40px, ali onda str�i tekst*/
        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: #0369b5;
        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: #0369b5;
            }

    .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: #0369b5;
    }

/* ===============================================================================
    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;
    }

    .kart {
        color: #76602e !important;
    }

    .popup-box .close-popup {
        display: inline-block;
        width: 20px;
        height: 20px;
        background-color: #0369b5;
        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: #000000;
        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 {
            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 .btn-1.third {
        width: 30% !important;
        float: left !important;
    }
    .popup-box .popup-buttons-wrap .btn-1.third:first-child {
        margin-right: 4%;
    }
    .popup-box .popup-buttons-wrap .btn-1.third:nth-child(2) {
        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: #0369b5;
        }

    .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: #000000;
        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: #mainfont;
        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:first-child {
        color: #999999;
    }

    #frmpartialMainProfil span {
        color: white;
        background-color: #76602e;
        border-radius: 50%;
        margin-left: 3px;
        padding: 1px 5px;
    }

    #frmpartialMainProfil .submenu span {
        background-color: white;
    }

    #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: #000000 transparent transparent transparent;
        position: absolute;
        top: 30px;
        left: 40%;
        margin-left: 30px;
    }

#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: #0369b5;
        }

            #sifraNamjene-dd ul li:hover {
                background-color: #0369b5;
                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;
}

.token-data {
    color: red;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.itsme-button {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 10px;
    margin-bottom: 20px
}

.itsme-h3 {
    font-family: 'Roboto Slab';
    font-weight: 800;
}

.itsme-href {
    color: #595858;
    /* margin: 8px; */
    border: 1px solid gray;
    border-radius: 10px;
    padding-top: 10px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 25px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
}

.container-chat {
    border: 2px solid #dedede;
    background-color: #f1f1f1;
    border-radius: 5px;
    padding: 10px;
    margin: 10px 0;
    width: 600px;
    float: right;
}

.container-chat-darker {
    border: 2px solid #dedede;
    background-color: #f1f1f1;
    border-radius: 5px;
    padding: 10px;
    margin: 10px 0;
    width: 600px;
    border-color: #ccc;
    background-color: #ddd;
    float: left;
}

.container-chat::after {
    content: "";
    clear: both;
    display: table;
}


.time-right {
    float: right;
    color: #aaa;
}

.time-left {
    float: left;
    color: #999;
}

.prepiska {
    width: 100%;
    max-width: 800px;
    height: calc(100% - 210px);
    padding: 15px 30px;
    margin: 0 auto;
    overflow-y: scroll;
    background-color: #fff;
}

.chat_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.chat__message {
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 25px;
    color: #000;
    background-color: #e6e7ec;
    max-width: 600px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    margin: 15px 0;
    word-break: break-all;
}

.chat-span {
    color: white;
    background-color: #0369b5;
    border-radius: 50%;
    margin-left: 3px;
    padding: 1px 5px;
}

.chat__message-own {
    color: #fff;
    margin-left: auto;
    background-color: #00a9de;
}

.chat__form {
    background-color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
    min-height: 210px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    /* align-items: center; */
    position: relative;
    max-height: 25%;
    padding-top: 10px;
}

.wrapper-chat__form {
    width: 100%
}

.input-chat__form {
    height: 70%;
    font-size: 16px;
    min-width: 97%;
    padding-left: 15px;
    background-color: #fff;
    border-radius: 15px;
    border: none;
    margin-left: 10px;
    font-family: 'Roboto', sans-serif;
    padding: 20px 20px;
    resize: none;
}

.file-chat_form {
    bottom: 0;
    position: absolute;
    left: 0;
    padding: 15px;
}

.button-chat__form {
    background-color: blue;
    border: none;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 15px;
    margin: 10px;
}

    .button-chat__form:hover {
        font-weight: bold;
    }

.chat-active {
    background-color: #f1f1f1;
}

#dokumenti::-webkit-file-upload-button {
    color: dimgray;
    display: inline-block;
    background: #f5f5f5;
    border: none;
    padding: 7px 15px;
    font-weight: 700;
    border-radius: 3px;
    white-space: nowrap;
    cursor: pointer;
    font-size: 10pt;
}

.chat-span-izbornik {
    color: #0369b5;
    background-color: white;
    border-radius: 50%;
    margin-left: 3px;
    padding: 1px 5px;
}

.file-loader {
    border: 7px solid #f3f3f3;
    border-radius: 50%;
    border-top: 7px solid #76602e;
    width: 30px;
    height: 30px;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
    display: none;
}

.file-wrapper {
    display: flex;
}

.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;
    background-color: #eee;
}

.custom-checkbox-1:hover input ~ .checkmark {
    background-color: #ccc;
}

.custom-checkbox-1 input:checked ~ .checkmark {
    background-color: #8597be;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox-1 input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox-1 .checkmark:after {
    left: 7px;
    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);
}

.custom-checkboxV2-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-checkboxV2-1 input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
}

.custom-checkboxV2-1:hover input ~ .checkmark {
    background-color: #ccc;
}

.custom-checkboxV2-1 input:checked ~ .checkmark {
    background-color: #8597be;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkboxV2-1 input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkboxV2-1 .checkmark:after {
    left: 7px;
    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);
}
/* ==================================================
    =Dvojni prikaz vrijednosti
===================================================== */
#dvojno {
    float: right;
}

.half-center {
    width: 50%;
    margin: auto;
    padding-bottom: 10px;
}

#dvojno2 {
    float: right;
    display: grid;
}

#exchangeRate {
    text-align: end;
}

.addressFields {
    display: none;
}
