@import 'quote-modal.css';
@import 'trading.css';
@import 'particle.css';
@import 'snackbar.css';
@import 'dark-mode.css';

/*
Table Of Contents

 1.)  Typography
 2.)  Default Styles
 3.)  Header
 4.)  Content - Main
 5.)  Footer

========================================*/


/*
 1.) Typography
----------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


/*
 2.) Default Styles
----------------------------------------*/

* {
    margin: 0;
    padding: 0;
}

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;
}

/* render html5 elements as block */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
    display: block;
}

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
    font-size: 20px;
}

sub {
    bottom: -0.25em;
}

img {
    width: auto;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
    border: 0;
    -ms-interpolation-mode: bicubic;
    line-height: .5em;
}


/*  Custom animations */
@-webkit-keyframes reveal {
    0% {
        opacity: 0;
    }

    1% {
        opacity: 0;
        -webkit-transform: scale(0.98) translateY(-15px);
    }

    80% {
        -webkit-transform: scale(1);
    }

    100% {
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes reveal {
    0% {
        opacity: 0;
    }

    1% {
        opacity: 0;
        -moz-transform: scale(0.98) translateY(-15px);
    }

    80% {
        -moz-transform: scale(1);
    }

    100% {
        -moz-transform: translateY(0);
    }
}


/*= Body
=======================================================*/
body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: #000000;
    line-height: 24px;
    background: #eeeeee;
}


/*= Links
=======================================================*/
a {
    color: #469FBF;
    text-decoration: none;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    outline: 0;
    cursor: pointer;
}

a:focus,
a:active,
a:hover {
    color: #0247fe;
    text-decoration: underline;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    outline: 0;
}

a:visited {
    outline: 0;
    text-decoration: none;
}



/*= Heading H1, H2, H3, H4, H5, H6, P
=======================================================*/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-weight: 300;
    padding: 0 0 10px 0;
    margin: 0;
}

h1,
.h1,
h2,
.h2 {
    font-size: 35px;
    line-height: 45px;
}

h3,
.h3 {
    font-size: 30px;
    line-height: 40px;
}

h4,
.h4 {
    font-size: 25px;
    line-height: 35px;
}

h5,
.h5 {
    font-size: 20px;
    line-height: 30px;
}

h6,
.h6 {
    font-size: 16px;
    line-height: 26px;
}

h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a {
    font-weight: inherit;
    font-style: inherit;
    color: inherit;
    text-decoration: inherit;
}

h1 a:hover,
.h1 a:hover,
h2 a:hover,
.h2 a:hover,
h3 a:hover,
.h3 a:hover,
h4 a:hover,
.h4 a:hover,
h5 a:hover,
.h5 a:hover,
h6 a:hover,
.h6 a:hover {
    color: #0247fe;
}

h1:last-child,
.h1:last-child,
h2:last-child,
.h2:last-child,
h3:last-child,
.h3:last-child,
h4:last-child,
.h4:last-child,
h5:last-child,
.h5:last-child,
h6:last-child,
.h6:last-child {
    padding-bottom: 0;
}

p {
    padding-bottom: 20px;
}

p:last-child {
    padding-bottom: 0;
}

em {
    font-style: italic;
}

em.fal,
em.far,
em.fas,
em.fab {
    font-style: normal;
}

b,
strong {
    font-weight: 700;
}

.bold {
    font-weight: 700;
}

.underline {
    text-decoration: underline;
}

.uppercase {
    text-transform: uppercase;
}

.center {
    text-align: center;
}


/*= Unorder List
=======================================================*/
ul,
ol {
    list-style: none;
    padding: 0;
}

li {
    position: relative;
    padding-left: 15px;
}

li:last-child {
    padding-bottom: 20px;
}

ul li ul,
ol li ol {
    padding-top: 10px;
    padding-left: 10px;
}

ul:last-child li:last-child,
ol:last-child li:last-child {
    padding-bottom: 0;
}

ul:last-child li:last-child ul,
ol:last-child li:last-child ol {
    padding-bottom: 0;
}

ul li:before {
    content: "";
    width: 6px;
    height: 6px;
    float: left;
    background: #0247fe;
    border-radius: 360px;
    position: absolute;
    top: 9px;
    left: 0;
}

ul li ul li {
    padding-left: 15px;
}

ul li ul li:before {
    content: "";
    width: 6px;
    height: 6px;
    background: #0247fe;
    border-radius: 360px;
    top: 9px;
}


/*= Order List
=======================================================*/
ol {
    counter-reset: item;
}

ol>li {
    counter-increment: item;
    padding-left: 22px;
}

ol>li:before {
    content: counter(item)".";
    font-weight: 700;
    color: #0247fe;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0;
}


/* #Input
================================================= */

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: 0;
}

select,
textarea,
input {
    -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
    -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
    -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
    -o-transition: border linear 0.2s, box-shadow linear 0.2s;
    transition: border linear 0.2s, box-shadow linear 0.2s;
}

label {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    line-height: 24px;
    letter-spacing: normal;
    padding: 0 0 10px 0;
    margin: 0;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
    width: 100%;
    height: 40px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    line-height: 20px;
    letter-spacing: normal;
    white-space: nowrap;
    text-overflow: ellipsis;
    background: #ffffff;
    box-shadow: none;
    border: 1px solid #979797;
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    overflow: hidden;
    position: relative;
    padding: 9px 23px;
    margin: 0;
}

textarea {
    height: 120px;
    white-space: normal;
    outline: none;
    resize: none;
    padding-top: 10px;
    padding-bottom: 10px;
}


select {
    background-image: url(../img/arrow-down.png);
    background-size: 11px auto;
    background-repeat: no-repeat;
    background-position: top 15px right 23px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-top: 0;
    padding-right: 57px;
    padding-bottom: 0;
}

select::-ms-expand {
    display: none;
}

select.colorize option:not([disabled]) {
    color: #000000;
}

select.colorize option.def:not([disabled]),
select.colorize.empty:not([disabled]) {
    color: #000000;
}


::-webkit-input-placeholder,
::-webkit-textarea-placeholder {
    color: #000000;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #000000;
}

::-moz-placeholder {
    color: #000000;
}

::-ms-input-placeholder {
    color: #000000;
}

select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
    outline: 0;
    border-color: #0247fe;
}


/* #Buttons
================================================== */
.btn,
.button,
input[type="button"],
input[type="submit"] {
    width: auto;
    height: auto;
    float: none;
    display: inline-block;
    vertical-align: middle;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #ffffff;
    line-height: 20px;
    letter-spacing: normal;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    white-space: normal;
    background: #469FBF;
    border: none;
    border-radius: 3px;
    box-shadow: 3px 3px 7px 0px grey;
    overflow: hidden;
    position: relative;
    z-index: 1;
    cursor: pointer;
    outline: 0;
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
    padding: 11px 23px 9px 23px;
    margin: 0;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:active:focus,
.btn.active,
.btn.active:focus,
.button:hover,
.button:focus,
.button:active,
.button:active:focus,
.button.active,
.button.active:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="button"]:active,
input[type="button"]:active:focus,
input[type="button"].active,
input[type="button"].active:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"]:active,
input[type="submit"]:active:focus,
input[type="submit"].active,
input[type="submit"].active:focus .btn:not(:disabled):not(.disabled).active,
.button:not(:disabled):not(.disabled):active {
    color: #ffffff;
    text-decoration: none;
    background: #001498;
    box-shadow: #001498 inset 0 0 0 1px;
    outline: 0;
}

.disabled {
    cursor: not-allowed;
    filter: alpha(opacity=65);
    opacity: .65;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
    cursor: not-allowed;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65;
}

a.btn.disabled,
fieldset[disabled] a.btn {
    pointer-events: none;
}

.btn-out {
    float: none;
    display: inline-block;
    vertical-align: top;
    margin: 10px -10px -20px -10px;
}

.btn-out a {
    margin: 0 10px 20px 10px;
}

.btn-view {
    top: -5px;
    right: 6px;
    padding: 7px 20px 7px 20px;
}


/*= Container - Main
=======================================================*/
#container-main {
    width: 100%;
    float: left;
    overflow: hidden;
    position: relative;
    padding: 72px 0 0 0;
}

/* 
.hidden-body {
	overflow:hidden;
} */

.hidden-body .container-main {
    width: 100%;
    float: left;
    position: relative;
    overflow: hidden;
}

.hidden-body .container-main:before {
    content: "";
    width: 100%;
    height: 100%;
    float: left;
    background: rgba(0, 0, 0, 0.25);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
}

.container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px;
}

@media only screen and (max-width: 767px) {
    .container {
        padding: 0 20px;
    }
}


/* Check - Options */
.check-options {
    width: 100%;
    float: left;
}

.check-options input[type=checkbox],
.check-options input[type=radio] {
    display: none;
}

.check-options label {
    width: 100%;
    min-height: 14px;
    float: left;
    font-weight: 500;
    font-size: 14px;
    color: #000000;
    line-height: 18px;
    letter-spacing: normal;
    text-transform: none;
    position: relative;
    padding: 0 30px 0 0;
    margin: 0;
}

.check-options label:before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    float: left;
    background-repeat: no-repeat;
    background-size: 14px auto;
    border-radius: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.check-options input[type=checkbox]+label:before {
    background-image: url(../img/checkbox-1.png);
    background-position: top;
}

.check-options input[type=checkbox]:checked+label {
    color: #000000;
}

.check-options input[type=checkbox]:checked+label:before,
.check-options input[type=checkbox]:checked+label:focus:before {
    background-image: url(../img/checkbox-1.png);
    background-position: bottom;
}

.radio-options label:before {
    width: 14px;
    height: 14px;
    background-size: 18px auto;
}

.check-options input[type=radio]+label:before {
    background-image: url(../img/radio-btn-1.png);
    background-position: top;
}

.check-options input[type=radio]:checked+label:before,
.check-options input[type=radio]:checked+label:focus:before {
    background-image: url(../img/radio-btn-1.png);
    background-position: bottom;
}

.green {
    color: #01ad43;
}

/*= Login - Form */
.login-form {
    width: 100%;
    height: 100%;
    float: left;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    overflow: auto;
    padding: 50px 0;
}

.login-form .form-box {
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.login-form .form-box .box {
    width: 100%;
    max-width: 425px;
    float: left;
    text-align: center;
    background: #ffffff;
    border: 1px solid #979797;
    border-radius: 3px;
    padding: 45px 35px;
}

.login-form .form-box .box .logo {
    width: 100%;
    text-align: center;
    overflow: hidden;
    margin-bottom: 25px;
}

.login-form .form-box .box .logo img {
    max-height: 80px;
}

.login-form .form-box .box .heading-txt {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    padding-bottom: 30px;
}

.login-form .form-box .box .heading-txt:last-child {
    padding-bottom: 0;
}

.login-form .form-box .box .heading-txt h1,
.login-form .form-box .box .heading-txt .h1 {
    padding-bottom: 0;
}

.login-form .form-box .box .form-field {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 32px;
}

.login-form .form-box .box .form-field:last-child {
    margin-bottom: 0;
}

.login-form .form-box .box .form-field ul {
    padding: 0 0 28px 0;
    margin: 0;
}

.login-form .form-box .box .form-field ul:last-child {
    padding-bottom: 0;
}

.login-form .form-box .box .form-field ul li {
    padding: 0 0 20px 0;
    margin: 0;
}

.login-form .form-box .box .form-field ul li:last-child {
    padding-bottom: 0;
}

.login-form .form-box .box .form-field ul li:before {
    display: none;
}

.login-form .form-box .box .form-field .btn,
.login-form .form-box .box .form-field .button {
    width: 100%;
    font-size: 15px;
    line-height: 25px;
    padding: 11px 23px 9px 23px;
}

.login-form .form-box .box .form-field .btn em,
.login-form .form-box .box .form-field .button em {
    position: relative;
    top: -2px;
    margin-left: 10px;
}

.login-form .form-box .box .form-field .btn-out {
    width: 100%;
    margin: 0;
}

.login-form .form-box .box .form-field .btn-out a {
    margin: 0;
}

.login-form .form-box .box .check-options {
    text-align: left;
}

.login-form .form-box .box .check-options label {
    min-height: 14px;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    line-height: 18px;
    padding: 0 0 0 25px;
}

.login-form .form-box .box .check-options label:before {
    width: 14px;
    height: 14px;
    float: left;
    background-repeat: no-repeat;
    background-size: 14px auto;
    border-radius: 0;
    position: absolute;
    top: 1px;
    left: 0;
    z-index: 1;
}

.login-form .form-box .box .check-options input[type="checkbox"]+label:before {
    background-image: url(../img/checkbox-1.png);
    background-position: top;
}

.login-form .form-box .box .check-options input[type="checkbox"]:checked+label {
    color: #000000;
}

.login-form .form-box .box .check-options input[type="checkbox"]:checked+label:before,
.login-form .form-box .box .check-options input[type="checkbox"]:checked+label:focus:before {
    background-image: url(../img/checkbox-1.png);
    background-position: bottom;
}

@media only screen and (max-width: 767px) {
    .login-form {
        padding: 40px 0;
    }

    .login-form .form-box .box {
        padding: 40px 25px;
    }
}


/* Table - Info */
.table-info {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    background: #ffffff;
    border: 1px solid #979797;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: -1px 0px 8px 3px darkslategrey;
    overflow: hidden;
}

.request-box {
    box-shadow: -1px 0px 8px 3px darkslategrey;
}

.table-info:last-child {
    margin-bottom: 0;
}

.table-info .main-heading {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    font-weight: 500;
    font-size: 14px;
    color: #000000;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    background: #f5f5f5;
    border-radius: 3px 3px 0 0;
    position: relative;
    padding: 11px 75px 9px 75px;
}

.table-info .main-heading .icons-left {
    float: left;
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translate(0, -50%);
    margin: 0 -4px;
}

.table-info .main-heading .icons-left .gird,
.table-info .main-heading .icons-left .active-state {
    float: left;
    margin: 0 4px;
}

.table-info .main-heading .icons-left .gird img,
.table-info .main-heading .icons-left .active-state img {
    max-height: 16px;
}

.table-info .main-heading p {
    padding: 0;
}

.table-info .main-heading .icon-close {
    width: 12px;
    height: 12px;
    float: right;
    text-decoration: none;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
}

.table-info .main-heading .icon-x {
    width: 25px;
    height: 20px;
    float: right;
    text-decoration: none;
    position: absolute;
    top: 40%;
    left: 10px;
    transform: translate(0, -50%);
}

.table-info .main-heading .icon-left {
    width: 12px;
    height: 12px;
    float: right;
    text-decoration: none;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translate(0, -50%);
    white-space: nowrap;
}

.table-info .main-heading .icon-right {
    width: 12px;
    float: right;
    text-decoration: none;
    position: absolute;
    left: 10px;
    transform: translate(0, -50%);
    white-space: nowrap;
}

.table-info .main-heading .icon-close img {
    width: 100%;
    vertical-align: top;
}

.table-info .main-heading .icon-x img {
    width: 100%;
    vertical-align: top;
}

.table-info .sub-heading {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    color: #000000;
    line-height: 20px;
    text-transform: uppercase;
    background: #e4e4e4;
    padding: 5px 10px 5px 10px;
    margin-bottom: 10px;
}

.table-info .aside {
    width: 100%;
    float: left;
    padding: 0 16px;
}

.table-info .aside ul {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0;
}

.table-info .aside ul li {
    width: 100%;
    float: left;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
    color: #000000;
    line-height: 20px;
    text-transform: uppercase;
    border-bottom: 1px solid #e0e0e0;
    padding: 5px 0 !important;
    margin: 0;
}

.table-info .aside ul li:before {
    display: none;
}

.table-info .aside ul li:last-child {
    border-bottom: none;
}

.table-info .aside ul li .col-1,
.table-info .aside ul li .col-2,
.table-info .aside ul li .col-3 {
    width: 10%;
    float: left;
    padding-right: 10px;
}

.table-info .aside ul li .col-1 img {
    max-height: 17px;
}

.table-info .aside ul li .col-2 {
    width: 40%;
}

.table-info .aside ul li .col-3 {
    width: 50%;
    padding-right: 0;
}

.table-info .aside ul li .green {
    color: #01ad43;
}

.table-info .aside ul li .red {
    color: #ff0000;
}

@media only screen and (max-width: 767px) {
    .table-info {
        margin-bottom: 20px;
    }

    .table-info .aside ul li .col-1,
    .table-info .aside ul li .col-2,
    .table-info .aside ul li .col-3 {
        width: 12%;
    }

    .table-info .aside ul li .col-2 {
        width: 42%;
    }

    .table-info .aside ul li .col-3 {
        width: 46%;
    }
}


/* Table - Info */
.table-info.indo-2 .aside {
    min-height: 175px;
}

.table-info .table-heading {
    width: 100%;
    float: left;
    font-size: 14px;
    color: #000000;
    line-height: 20px;
    text-transform: uppercase;
    background: #e4e4e4;
    padding: 11px 18px 9px 18px;
}

.table-info.indo-2 .table-heading ul {
    float: left;
    padding: 0;
    margin: 0 -23px -9px -23px;
}

.table-info.indo-2 .table-heading ul li {
    float: left;
    padding: 0;
    margin: 0 23px 9px 23px;
}

.table-info.indo-2 .table-heading ul li:before {
    display: none;
}

.table-info.indo-2 .table-heading.heading-2 ul {
    margin-right: -36px;
    margin-left: -36px;
}

.table-info.indo-2 .table-heading.heading-2 ul li {
    margin-right: 36px;
    margin-left: 36px;
}

@media only screen and (max-width: 767px) {
    .table-info.indo-2 .table-heading ul {
        margin: 0 -15px -9px -15px;
    }

    .table-info.indo-2 .table-heading ul li {
        margin: 0 15px 9px 15px;
    }

    .table-info.indo-2 .table-heading.heading-2 ul {
        margin-right: -25px;
        margin-left: -25px;
    }

    .table-info.indo-2 .table-heading.heading-2 ul li {
        margin-right: 25px;
        margin-left: 25px;
    }
}


/* Request - Box */
.request-box {
    width: 100%;
    float: left;
    background: #ffffff;
    padding: 20px 20px;
    height: calc(100% - 40px);
    border-radius: 0 0 10px;
    box-shadow: none;
}


.request-box .dropdown {
    width: 100%;
    float: left;
    position: relative;
    margin-bottom: 14px;
}

.request-box .dropdown:last-child {
    margin-bottom: 0;
}

.request-box .dropdown .dropdown-link {
    width: 100%;
    height: 40px;
    float: left;
    font-size: 14px;
    color: #000000;
    line-height: 20px;
    background: #ffffff;
    border: 1px solid #979797;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    padding: 10px 15px 8px 15px;
}

.request-box .dropdown .dropdown-link:before {
    content: "";
    width: 40px;
    height: 40px;
    float: left;
    background: #f6f6f6 url(../img/arrow-down.png) no-repeat center center;
    background-size: 11px auto;
    border: 1px solid #979797;
    border-radius: 0 2px 2px 0;
    position: absolute;
    top: -1px;
    right: -1px;
}

.request-box .dropdown .dropdown-link.active:before {
    background-image: url(../img/arrow-up.png);
}

.request-box .dropdown .dropdown-cont {
    width: 100%;
    float: left;
    display: none;
    font-size: 14px;
    color: #000000;
    line-height: 20px;
    background: #ffffff;
    border: 1px solid #979797;
    border-radius: 2px;
    position: absolute;
    top: 39px;
    left: 0;
    z-index: 6;
    padding: 16px 15px;
}

.request-box .dropdown .dropdown-cont ul {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0;
}

.request-box .dropdown .dropdown-cont ul li {
    width: 100%;
    float: left;
    padding: 0 0 10px 0;
    margin: 0;
}

.request-box .dropdown .dropdown-cont ul li:before {
    display: none;
}

.request-box .dropdown .dropdown-cont ul li:last-child {
    padding-bottom: 0;
}

.request-box .dropdown .dropdown-cont ul li a {
    width: 1005;
    float: left;
    color: #000000;
    text-decoration: none;
}

.request-box .dropdown .dropdown-cont ul li a:focus,
.request-box .dropdown .dropdown-cont ul li a:active,
.request-box .dropdown .dropdown-cont ul li a:hover {
    color: #0247fe;
}

.request-box .options-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 14px;
    margin: 0 -10px -14px -10px;
}

.request-box .options-list:last-child {
    padding-bottom: 0;
}

.request-box .options-list .check-options {
    width: 50%;
    padding: 0 10px 14px 10px;
}

.request-box .options-list .check-options input[type="checkbox"],
.request-box .options-list .check-options input[type="radio"] {
    display: none;
}

.request-box .options-list .check-options label {
    width: 100%;
    min-height: 40px;
    float: left;
    font-weight: 500;
    font-size: 16px;
    color: #ff0000;
    line-height: 20px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #ff0000;
    border-radius: 2px;
    letter-spacing: normal;
    text-transform: uppercase;
    position: relative;
    padding: 10px 41px 8px 41px;
    margin: 0;
}

.request-box .options-list .check-options label:before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    float: left;
    background-repeat: no-repeat;
    background-size: 15px auto;
    border-radius: 0;
    position: absolute;
    top: 50%;
    right: 13px;
    transform: translate(0, -50%);
    z-index: 1;
}

.request-box .options-list .check-options input[type="checkbox"]+label:before {
    background-image: url(../img/checkbox-red.png);
    background-position: top;
}

.request-box .options-list .check-options input[type="checkbox"]:checked+label {
    color: #ff0000;
}

.request-box .options-list .check-options input[type="checkbox"]:checked+label:before,
.request-box .options-list .check-options input[type="checkbox"]:checked+label:focus:before {
    background-image: url(../img/checkbox-red.png);
    background-position: bottom;
}

.request-box .options-list .radio-options label:before {
    width: 15px;
    height: 15px;
    background-size: 15px auto;
}

.request-box .options-list .check-options input[type="radio"]+label:before {
    background-image: url(../img/radio-btn-red.png);
    background-position: top;
}

.request-box .options-list .check-options input[type="radio"]:checked+label:before,
.request-box .options-list .check-options input[type="radio"]:checked+label:focus:before {
    background-image: url(../img/radio-btn-red.png);
    background-position: bottom;
}

.request-box .options-list .check-options.green label {
    color: #01ad43;
    border-color: #01ad43;
}

.request-box .options-list .check-options.green input[type="checkbox"]+label:before {
    background-image: url(../img/checkbox-green.png);
}

.request-box .options-list .check-options.green input[type="checkbox"]:checked+label {
    color: #01ad43;
}

.request-box .options-list .check-options.green input[type="checkbox"]:checked+label:before,
.request-box .options-list .check-options.green input[type="checkbox"]:checked+label:focus:before {
    background-image: url(../img/checkbox-green.png);
}

.request-box .options-list .check-options.green input[type="radio"]+label:before {
    background-image: url(../img/radio-btn-green.png);
}

.request-box .options-list .check-options.green input[type="radio"]:checked+label:before,
.request-box .options-list .check-options.green input[type="radio"]:checked+label:focus:before {
    background-image: url(../img/radio-btn-green.png);
}

.request-box .price-box {
    width: 100%;
    height: 40px;
    float: left;
    font-size: 14px;
    color: #000000;
    line-height: 20px;
    background: #ffffff;
    border: 1px solid #979797;
    border-radius: 2px;
    position: relative;
    padding: 10px 78px 8px 15px;
    margin-bottom: 14px;
}

.withdrawal-amount-box {
    width: 100%;
    height: 40px;
    float: left;
    font-size: 14px;
    color: #000000;
    line-height: 20px;
    background: #ffffff;
    border: 1px solid #979797;
    border-radius: 2px;
    position: relative;
    padding: 10px 78px 8px 15px;
    margin-bottom: 14px;
}

.withdrawal-amount-box:last-child {
    margin-bottom: 0;
}

.withdrawal-amount-box .currency {
    width: 50%;
    height: 40px;
    float: left;
    font-size: 14px;
    color: #000000;
    line-height: 38px;
    text-align: center;
    background: #f6f6f6;
    border: 1px solid #979797;
    border-radius: 0 2px 2px 0;
    position: absolute;
    top: -1px;
    right: -1px;
}

.withdrawal-amount-box input.value {
    display: inline;
    margin: -10px;
    padding: 0 0 0 1em;
    border: none;
    height: 1em;
}


.request-box .price-box:last-child {
    margin-bottom: 0;
}

.request-box .price-box .currency {
    width: 50%;
    height: 40px;
    float: left;
    font-size: 14px;
    color: #000000;
    line-height: 38px;
    text-align: center;
    background: #f6f6f6;
    border: 1px solid #979797;
    border-radius: 0 2px 2px 0;
    position: absolute;
    top: -1px;
    right: -1px;
}

.request-box .btn,
.request-box .button {
    width: 100%;
    font-size: 15px;
    line-height: 25px;
    text-align: left;
    padding: 11px 55px 9px 30px;
}

.request-box .btn em,
.request-box .button em {
    position: absolute;
    top: 50%;
    right: 23px;
    transform: translate(0, -50%);
}

.request-box .btn em img,
.request-box .button em img {
    width: 100%;
    max-width: 9px;
}

.request-box .btn-out {
    width: 100%;
    margin: 0;
}

.request-box .btn-out a {
    margin: 0;
}

@media only screen and (max-width: 1499px) {
    .request-box {
        padding: 20px 20px;
    }
}


/* Header */
#header-main {
    width: 100%;
    height: 72px;
    float: none;
    display: inline-block;
    vertical-align: top;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.16) 0 0 15px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    padding: 10px 46px 10px 0;
}

#header-main .logo {
    float: left;
    margin-right: 2vw;
}

#header-main .logo img {
    max-height: 50px;
    margin: 0px 0 0 45px;
}

@media only screen and (max-width: 768px) {
    #header-main .logo img {
        margin: 1em 0 0 0;
    }

    #header-main .user {
        margin: 1em 0;
    }
}

@media (min-width: 769px) {
    @media (max-width: 1399px) {
        #header-main .user-info {
            margin-top: 1em !important;
        }

        #header-main .logo img {
            margin: 1em 0 0 45px;
        }
    }
}

#header-main .user-info {
    float: right;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    margin: 8px 0 0 0;
}

#header-main .user-info .user {
    float: left;
    margin-left: -40px;
    position: relative;
    z-index: 1;
}

#header-main .user-info .user a {
    width: 40px;
    height: 40px;
    float: left;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    background: grey;
    border-radius: 360px;
}

#header-main .user-info .user a img {
    max-height: 22px;
}

#header-main .user-info .aside {
    text-align: right;
    padding: 0 68px 0 0;
}

#header-main .user-info .aside .name {
    font-weight: 700;
    font-size: 15px;
    color: black;
    line-height: 22px;
}

#header-main .user-info .aside .time {
    font-size: 12px;
    color: black;
    line-height: 18px;
    text-transform: uppercase;
}

@media only screen and (max-width: 1399px) {
    #header-main {
        padding: 0 40px 0 0;
    }
}

@media only screen and (max-width: 767px) {
    #header-main {
        text-align: center;
        padding: 0 20px;
    }

    #header-main .logo {
        float: none;
        display: inline-block;
        vertical-align: top;
    }

    #header-main .user-info {
        position: absolute;
        top: 8px;
        right: 20px;
        z-index: 4;
        margin: 0;
    }

    #header-main .user-info .user {
        margin-left: 0;
    }

    #header-main .user-info .aside {
        display: none;
    }
}


/* Content - Main */
#content-main {
    width: 100%;
    float: left;
    overflow-y: auto;
    background: url(/img/header-overlay.png) 0 0 no-repeat, url(/bcx_pro/img/header-bg-azure.png) 50% 100% no-repeat;
    background-size: contain, cover;
}


/* Top - Bar */
.top-bar {
    width: 100%;
    height: 56px;
    float: left;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    background: grey;
    padding: 0 46px 0 60px;
}

.top-bar .left-heading {
    width: 54%;
    padding: 0 40px 0 14px;
}

.top-bar .left-heading h1 {
    float: none;
    display: inline-block;
    vertical-align: top;
    font-weight: 500;
    font-size: 17px;
    color: #000000;
    line-height: 56px;
    box-shadow: inset #333333 0 -6px 0 0;
    padding: 0 17px 0 17px;
}

.top-bar .right-btns {
    width: 100%;
}

.top-bar .right-btns .btn-out {
    margin: 0;
}

.top-bar .right-btns .btn-out a {
    margin: 0;
}

.top-bar .right-btns .save-layout {
    float: right;
}

.top-bar .right-btns .save-layout .gird {
    float: none;
    display: inline-block;
    vertical-align: middle;
    margin-left: 17px;
}

.top-bar .right-btns .save-layout .gird img {
    max-width: 24px;
}

.top-bar .right-btns .save-layout .btn,
.top-bar .right-btns .save-layout .button {
    background: #333333;
    box-shadow: none;
}

.top-bar .right-btns .save-layout .btn:hover,
.top-bar .right-btns .save-layout .btn:focus,
.top-bar .right-btns .save-layout .btn:active,
.top-bar .right-btns .save-layout .btn:active:focus,
.top-bar .right-btns .save-layout .btn.active,
.top-bar .right-btns .save-layout .btn.active:focus,
.top-bar .right-btns .save-layout .button:hover,
.top-bar .right-btns .save-layout .button:focus,
.top-bar .right-btns .save-layout .button:active,
.top-bar .right-btns .save-layout .button:active:focus,
.top-bar .right-btns .save-layout .button.active,
.top-bar .right-btns .save-layout .button.active:focus {
    background: #000000;
}

.top-bar .right-btns .save-layout .btn em,
.top-bar .right-btns .save-layout .button em {
    position: relative;
    top: -2px;
    margin-right: 10px;
}

.top-bar .right-btns .save-layout .btn-out {
    vertical-align: middle;
    margin: 0;
}

.top-bar .right-btns .save-layout .btn-out a {
    margin: 0;
}

@media only screen and (max-width: 1399px) {
    .top-bar {
        padding: 0 40px 0 60px;
    }
}

@media only screen and (max-width: 1199px) {
    .top-bar .left-heading {
        width: 35%;
    }

    .top-bar .right-btns {
        width: 65%;
    }
}

@media only screen and (max-width: 767px) {
    .top-bar {
        height: auto;
        padding: 0 20px;
    }

    .top-bar .left-heading {
        width: 100%;
        padding: 0;
    }

    .top-bar .left-heading h1 {
        box-shadow: inset #333333 0 -4px 0 0;
        padding: 0 15px;
        margin-bottom: 15px;
    }

    .top-bar .right-btns {
        width: 100%;
        padding-bottom: 20px;
    }
}

@media only screen and (max-width: 479px) {
    .top-bar .right-btns {
        width: 100%;
    }

    .top-bar .right-btns .btn-out {
        width: 100%;
        padding-right: 40px;
        margin: 0 0 15px 0;
    }

    .top-bar .right-btns .btn-out .btn,
    .top-bar .right-btns .btn-out .button {
        width: 100%;
    }

    .top-bar .right-btns .save-layout {
        width: 100%;
        padding-right: 40px;
        position: relative;
    }

    .top-bar .right-btns .save-layout .gird {
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        right: 0;
        margin-left: 0;
    }

    .top-bar .right-btns .save-layout .gird img {
        max-width: 24px;
    }

    .top-bar .right-btns .save-layout .btn-out {
        padding: 0;
        margin: 0;
    }
}


/* Menu - BTN */
.menu-btn {
    width: 32px;
    height: 24px;
    float: left;
    display: none;
    cursor: pointer;
    position: fixed;
    top: 16px;
    left: 20px;
    z-index: 10;
}

.menu-btn .icon-bar {
    width: 100%;
    float: left;
    text-decoration: none;
    position: relative;
}

.menu-btn .icon-bar span {
    width: 100%;
    height: 3px;
    float: left;
    background: #ffffff;
    position: relative;
    margin: 10px 0;
}

.menu-btn .icon-bar span:before {
    content: "";
    width: 100%;
    height: 3px;
    float: left;
    background: #ffffff;
    position: absolute;
    top: -10px;
    left: 0;
}

.menu-btn .icon-bar span:after {
    content: "";
    width: 100%;
    height: 3px;
    float: left;
    background: #ffffff;
    position: absolute;
    top: 10px;
    left: 0;
}

.menu-btn.active {
    color: #ffffff;
}

.menu-btn.active .icon-bar span {
    background: none;
}

.menu-btn.active .icon-bar span:before {
    height: 3px;
    top: 0;
    background: #ffffff;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
}

.menu-btn.active .icon-bar span:after {
    height: 3px;
    top: 0;
    background: #ffffff;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
}

@media only screen and (max-width: 767px) {
    .menu-btn {
        display: block;
    }
}


/* Left - Sidebar */
.left-sidebar {
    width: 60px;
    height: 100%;
    float: left;
    text-align: center;
    background: #163641;
    position: fixed;
    top: 0;
    left: 0;
    overflow: auto;
    padding: 70px 0 0 0;
}

.left-sidebar ul {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0;
}

.left-sidebar ul li {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0 16px 0;
}

.left-sidebar ul li:last-child {
    margin-bottom: 0;
}

.left-sidebar ul li:before {
    display: none;
}

.left-sidebar ul li a {
    width: 100%;
    float: left;
    text-decoration: none;
    position: relative;
    padding: 13px 0;
}

.left-sidebar ul li a img {
    width: 100%;
    max-width: 23px;
}

.left-sidebar ul li a span {
    display: none;
}

.left-sidebar ul li.active a {
    box-shadow: inset #ffffff 3px 0 0 0;
}

@media only screen and (min-width: 768px) {
    .left-sidebar {
        /* display: block!important; */
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .left-sidebar {
        width: 270px;
        display: none;
        text-align: left;
        background: #000000;
        z-index: 7;
        padding: 80px 0 0 0;
    }

    .left-sidebar ul li {
        font-weight: 700;
        font-size: 15px;
        line-height: 23px;
        margin: 0 0 10px 0;
    }

    .left-sidebar ul li a {
        color: #ffffff;
        padding: 10px 0 10px 59px;
    }

    .left-sidebar ul li a em {
        position: absolute;
        top: 50%;
        left: 20px;
        transform: translate(0, -50%);
    }

    .left-sidebar ul li a span {
        display: inline-block;
    }
}


/* Content - Inner */
.content-inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 15px 45px 25px 45px;
    z-index: 1;
}

.content-inner .left-panel {
    width: 50%;
    padding-right: 6.5px;
}

.content-inner .right-panel {
    width: 50%;
    padding-left: 6.5px;
}

.content-inner .right-panel .form-boxs {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -8px -26px -8px;
}

.content-inner .right-panel .form-boxs .box-out {
    width: 50%;
    padding: 0 8px 16px 8px;
}

.content-inner .right-panel .form-boxs .request-box {
    height: 100%;
}

@media only screen and (max-width: 1399px) {
    .content-inner {
        padding: 40px 40px 40px 40px;
    }

    .content-inner .right-panel .form-boxs {
        margin: 0 0 -26px 0;
    }

    .content-inner .right-panel .form-boxs .box-out {
        width: 100%;
        padding: 0 0 26px 0;
    }
}

@media only screen and (max-width: 991px) {
    .content-inner .left-panel {
        width: 100%;
        padding-right: 0;
        margin-bottom: 26px;
    }

    .content-inner .right-panel {
        width: 100%;
        padding-left: 0;
    }

    .content-inner .right-panel .form-boxs {
        margin: 0 -8px -26px -8px;
    }

    .content-inner .right-panel .form-boxs .box-out {
        width: 50%;
        padding: 0 8px 26px 8px;
    }
}

@media only screen and (max-width: 767px) {
    .content-inner {
        padding: 40px 20px 40px 20px;
    }

    .content-inner .left-panel {
        margin-bottom: 20px;
    }

    .content-inner .right-panel .form-boxs {
        margin: 0 0 -20px 0;
    }

    .content-inner .right-panel .form-boxs .box-out {
        width: 100%;
        padding: 0 0 20px 0;
    }
}

.user-info {
    position: relative;
}

a.btn.withdraw-box.box {
    position: absolute;
    top: 1px;
    right: 250px;
    width: 220px;
}

.user-dropdown {
    position: absolute;
    background: white;
    top: 50px;
    right: 0px;
    /*height: 100px;*/
    padding: 1em;
    border: 1px solid lightgrey;
    box-shadow: 3px 7px 17px 0px darkslategrey;
    display: none;
    width: 200px;
}

.user-dropdown .show {
    display: block;
}

.user-dropdown a {
    display: block;
    color: darkslategray;
}

.user-dropdown a:hover {
    text-decoration: underline;
}

.user {
    position: relative;
}


/*Checkbox Darkmode*/

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #469FBF;
}

input:focus+.slider {
    box-shadow: 0 0 1px #469FBF;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.normal-p {
    padding-bottom: 0px;
    float: left;
    padding-top: 5px;
    padding-right: 5px;
}

.table-100 {
    width: 94vw;
}

p.center {
    text-align: center;
}

.crypto-logo {
    width: 40px;
    height: 40px;
    display: inline-block;
    margin-left: 1.3vw;
    margin-top: 5px;
}

.crypto-image {
    height: 40px;
    width: 40px;
}

@media only screen and (max-width: 1399px) {
    .crypto-logo {
        display: none;
    }

    .crypto-image {
        display: none;
    }
}

@media only screen and (max-width: 1700px) and (min-width: 1400px) {
    .crypto-logo {
        margin-left: 11px;
    }

}

@media only screen and (max-width: 1500px) and (min-width: 1000px) {

    a.btn.withdraw-box.box,
    a.btn.settlement_button {
        right: 204px !important;
    }
}


/*  */

.icofont-1x {
    font-size: 1.5em !important;
}

a.btn .settlement_button {
    margin-top: 0;
    margin-right: 30px;
}


/* heador dorpdown */

/* set the position of dropdown */
.drop-down {
    position: relative;
    display: inline-block;
    padding-right: 10px;
}

/* provide css to background of list items */
#list-items {
    position: absolute;
    min-width: 300px;
}

/* provide css to list items */
#list-items a {
    display: block;
    color: black;
    text-decoration: none;
}

.drop-down1 {
    position: absolute;
    background: white;
    top: 42px;
    right: 0px;
    padding: 15px 15px 0px 15px;
    border: 1px solid lightgrey;
    box-shadow: 3px 7px 17px 0px darkslategrey;
    display: none;
    width: 200px;
    height: 280px;
    overflow: hidden;
    overflow-y: hidden;
    overflow-y: auto;
}

.drop-down1 p {
    text-align: left;
    padding-bottom: 5px
}

.drop-down1 p:hover {
    text-decoration: underline;
}


.drop-down button {
    background: none;
    border: none;
    cursor: pointer;
}

.drop-down svg {
    vertical-align: middle;
}

.p-add-more {
    text-align: center !important;
    border-top: 1px solid #E3E3E3;
    padding-top: 5px;
}

#header-main .user-info .user {
    margin-left: 0;
}

#header-main .user-info .aside {
    padding: 0 10px 0 0;
}


.balance-statement-table {
    width: 100%;
    border-collapse: collapse;
    overflow-x: auto;

}

.balance-statement-table td,
.balance-statement-table th {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 16px;
}

.balance-statement-table th {
    background-color: #405467;
    color: #ffffff;
}

.balance-statement-table tbody tr:nth-child(even) {
    background-color: #F9F9F9;
}

.total-table {
    background: #deffd1 !important;
}

.balance-table .flex-panel {
    overflow-x: auto;
}

.balance-table-amount {
    text-align: right !important;
}

.balance-filter {
    display: flex;
    align-items: center;
}

.balance-filter p {
    padding: 0;
    color: #fff;
    margin: 0px 10px;
}

.balance-filter input[type="date"] {
    width: inherit;
}

.Cont-filter {
    margin: 15px 45px;
}

.balance-btn {
    display: flex;
}

.Cont-filter {
    display: flex;
    justify-content: space-between;
}

.balance-csv {
    margin-right: 8px;
}

.content-inner {
    justify-content: center;
}

.width-inc {
    width: 420px;
}

.drop-down1 p {
    border-top: 2px solid #d2d2d2;
    padding-top: 5px;
}

.full-width {
    overflow: auto !important;
}

#withdrawal_modal {
    margin: 50px 0px;
}

#settlement-amount-frm {
    margin: 20px 0px;
}

#settlement-amount-frm .btn {
    margin-top: 12px;
}

.xs-responsive-table {
    overflow: scroll !important;
    position: relative;
}