@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
:root {
    --primary_font_family: "Manrope", serif;
    --primary: #7d74d8;
    --secondary: #6147a3;
    --bg_dark: #000000;
    --bg_light: #F4F4F4;
    --bg_gray: #474C4E;
    --text_dark: #000000;
    --text_light: #2C2C2C;
    --text_extra_light: #A3A9A9;
    --border_color: #DFDFDF;
    --light_color: #D1D1D1;
    --white: #ffffff;
    --black: #000000;
    --gray: #121212
}
html {
    overflow: hidden;
}
body {
    font-size: 16px;
    line-height: 28px;
    font-family: var(--primary_font_family);
    color: var(--gray);
    overflow: hidden;
    position: relative;
    height: 100vh;
    padding: 15px;
    background: var(--bg_light);
}
body:before {
    content: "";
    position: absolute;
    left: -10%;
    bottom: -60%;
    width: 31%;
    height: 82%;
    border-radius: 50%;
    -webkit-filter: blur(240px);
    filter: blur(240px);
    background: -webkit-gradient(linear, left top, left bottom, from(#7d74d8), to(white));
    background: linear-gradient(180deg, #7d74d8 0%, white 100%);
    opacity: 0.7;
    z-index: -1;
}
body:after {
    content: "";
    position: absolute;
    right: -20%;
    top: -30%;
    width: 31%;
    height: 82%;
    border-radius: 50%;
    -webkit-filter: blur(230px);
    filter: blur(230px);
    background: -webkit-gradient(linear, left top, left bottom, from(#6147a3), to(white));
    background: linear-gradient(180deg, #6147a3 0%, white 100%);
    opacity: 0.7;
    z-index: -1;
}
.text_light {
    color: var(--text_light) !important;
}
.text_dark {
    color: var(--text_dark) !important;
}
.text_white {
    color: var(--white) !important;
}
.text_primary {
    color: var(--primary) !important;
}
.text_secondary {
    color: var(--secondary) !important;
}
.text_gray {
    color: var(--gray) !important;
}
.bg_primary {
    background: var(--primary) !important;
}
.bg_secondary {
    background: var(--secondary) !important;
}
.bg_dark {
    background: var(--bg_dark) !important;
}
.bg_light {
    background: var(--bg_light) !important;
}
.text_extra_light {
    color: var(--text_extra_light) !important;
}
.bg_text_extra_light {
    background: var(--text_extra_light) !important;
}
.bg_gray {
    background: var(--bg_gray) !important;
}
.gray {
    background: var(--gray) !important;
}
.bg_light_color {
    background: var(--light_color) !important;
}
p {
    font-size: 16px;
    line-height: 24px;
    color: var(--text_light);
    font-weight: 400;
}
.text_8 {
    font-size: 8px !important;
    line-height: 14px !important;
    font-weight: 700;
}
.text_10 {
    font-size: 10px !important;
    line-height: 16px !important;
}
.text_12 {
    font-size: 12px !important;
    line-height: 18px !important;
}
.text_14 {
    font-size: 14px !important;
    line-height: 20px !important;
}
.text_16 {
    font-size: 16px !important;
    line-height: 28px !important;
}
.text_18 {
    font-size: 18px !important;
    line-height: 32px !important;
}
.line_height_20 {
    line-height: 20px;
}
.line_height_100 {
    line-height: 100%;
}
a {
    text-decoration: none;
    color: var(--primary);
    transition: 0.5s ease;
}
a:hover {
    color: var(--secondary);
}
h1, .h1 {
    font-size: 30px;
    line-height: 38px;
    font-weight: 600;
}
h2, .h2 {
    font-size: 26px;
    line-height: 34px;
    font-weight: 600;
}
h3, .h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
}
h4, .h4 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
}
h5, .h5 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}
h6, .h6 {
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
}
.fw_100 {
    font-weight: 100;
}
.fw_200 {
    font-weight: 200;
}
.fw_300 {
    font-weight: 300;
}
.fw_400 {
    font-weight: 400;
}
.fw_500 {
    font-weight: 500;
}
.fw_600 {
    font-weight: 600;
}
.fw_700 {
    font-weight: 700;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
img {
    max-width: 100%;
}
.container {
    max-width: 1450px;
}
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
/* Track */ ::-webkit-scrollbar-track {
    background: #f7f7f7;
}
/* Handle */ ::-webkit-scrollbar-thumb {
    background: #c0c0c0;
}
/* Handle on hover */ ::-webkit-scrollbar-thumb:hover {
    background: #000;
}
.btn-check:focus + .btn, .btn:focus {
    box-shadow: inherit;
}
.btn_primary {
    background: var(--primary);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 12px 35px;
    border-radius: 15px;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 9;
}
.btn_primary:before {
    background-color: var(--secondary);
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    width: 0;
    z-index: -1;
    -webkit-transform: skew(50deg);
    -moz-transform: skew(50deg);
    -o-transform: skew(50deg);
    transform: skew(50deg);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    transform-origin: top left;
    -ms-transition: 0.4s;
}
.btn_primary img {
    margin-right: 6px;
}
.btn_primary:hover {
    color: var(--white);
}
.btn_primary:hover:before {
    height: 100%;
    width: 200%;
}
.btn_secondary {
    background: var(--secondary);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 12px 35px;
    border-radius: 15px;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 9;
}
.btn_secondary:before {
    background-color: var(--primary);
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    width: 0;
    z-index: -1;
    -webkit-transform: skew(50deg);
    -moz-transform: skew(50deg);
    -o-transform: skew(50deg);
    transform: skew(50deg);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    transform-origin: top left;
    -ms-transition: 0.4s;
}
.btn_secondary img {
    margin-right: 6px;
}
.btn_secondary:hover {
    color: var(--white);
}
.btn_secondary:hover:before {
    height: 100%;
    width: 200%;
}
.btn_white {
    background: var(--white);
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    justify-content: center;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 9;
}
.btn_white:before {
    background-color: var(--secondary);
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    width: 0;
    z-index: -1;
    -webkit-transform: skew(50deg);
    -moz-transform: skew(50deg);
    -o-transform: skew(50deg);
    transform: skew(50deg);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    transform-origin: top left;
    -ms-transition: 0.4s;
}
.btn_white img {
    margin-right: 6px;
}
.btn_white:hover {
    color: var(--white);
}
.btn_white:hover:before {
    height: 100%;
    width: 200%;
}
.btn_border {
    background: transparent;
    color: var(--text_light);
    border: 1px solid var(--text_light);
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    justify-content: center;
    border-radius: 40px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 9;
}
.btn_border:before {
    background-color: var(--text_light);
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    width: 0;
    z-index: -1;
    -webkit-transform: skew(50deg);
    -moz-transform: skew(50deg);
    -o-transform: skew(50deg);
    transform: skew(50deg);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    transform-origin: top left;
    -ms-transition: 0.4s;
}
.btn_border img {
    margin-right: 6px;
}
.btn_border:hover {
    color: var(--white);
}
.btn_border:hover:before {
    height: 100%;
    width: 200%;
}
.btn_icon_grey {
    background: var(--bg_light);
    color: var(--text_light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 14px 20px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    z-index: 9;
    line-height: 27px;
}
.btn_icon_grey:before {
    background-color: var(--bg_gray);
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    width: 0;
    z-index: -1;
    -webkit-transform: skew(50deg);
    -moz-transform: skew(50deg);
    -o-transform: skew(50deg);
    transform: skew(50deg);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    transform-origin: top left;
    -ms-transition: 0.4s;
}
.btn_icon_grey img {
    margin-right: 10px;
    transition: 0.4s;
}
.btn_icon_grey:hover {
    color: var(--white);
}
.btn_icon_grey:hover:before {
    height: 100%;
    width: 200%;
}
.btn_icon_grey:hover img {
    filter: invert(0) brightness(100);
    transition: 0.4s;
}
.btn_icon_grey.btn-sm {
    padding: 8px 12px;
    justify-content: left;
}
.btn_icon_grey img {}
.btn_link {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}
.btn_link:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transition: 0.5s ease;
}
.btn_link img {
    margin-left: 8px;
    transition: 0.3s ease;
}
.btn_link:hover {
    color: var(--primary);
}
.btn_link:hover img {
    margin-left: 15px;
}
.btn_link:hover:before {
    width: 0;
}
.form_group {
    margin: 0 0 25px;
}
.trendingMainWrap .form_group {
    margin: 0 0 15px;
}
.form_group label {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    color: var(--bg_dark);
    display: inline-block;
    margin: 0 0 10px;
}
.form_group label span {
    color: var(--red);
}
.form_group .form-control {
    border: 1px solid var(--border_color);
    padding: 10px 17px;
    border-radius: 15px;
    box-shadow: none !important;
    font-size: 14px;
    font-weight: 500;
}
.form_group .form-control.large {
    padding: 17px;
}
.form_group .form-select {
    border: 1px solid var(--border_color);
    padding: 10px 17px;
    border-radius: 15px;
    box-shadow: none !important;
    background: url(../images/select-arrow.svg);
    background-repeat: no-repeat;
    background-position: right 16px center;
    font-size: 14px;
    font-weight: 500;
}
.form_group .form-select.large {
    padding: 15px 17px;
}
.form_group-sm {
    margin: 0 0 10px;
}
.form_group-xsm {
    margin: 0 0 5px;
}
.form_group-lg .form-select, .form_group-lg .form-control {
    font-size: 16px;
    padding: 9px 17px;
}
.form_group-sm label {
    font-size: 14px;
    margin: 0 0 6px;
}
.form_group-xsm label {
    font-size: 12px;
    margin: 0 0 5px;
}
.form_group-xsm .form-select {
    font-size: 14px;
    padding: 10px 45px 11px 12px;
    font-weight: 500;
}
.form_group-xsm .form-control {
    font-size: 14px;
    padding: 8px 12px 9px;
}
.btn_primary.click_btn {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    line-height: 18px;
}
.btn_icon_black {
    background: var(--black);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 14px 24px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    z-index: 9;
    line-height: 27px;
}
.btn_icon_black:before {
    background-color: var(--secondary);
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    width: 0;
    z-index: -1;
    -webkit-transform: skew(50deg);
    -moz-transform: skew(50deg);
    -o-transform: skew(50deg);
    transform: skew(50deg);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    transform-origin: top left;
    -ms-transition: 0.4s;
}
.btn_icon_black img {
    margin-right: 10px;
    filter: invert(0) brightness(100);
}
.btn_icon_black:hover {
    color: var(--white);
}
.btn_icon_black:hover:before {
    height: 100%;
    width: 200%;
}
.btn_icon_black.btn-sm {
    padding: 6px 18px 7px;
}
.form-control::placeholder {
    color: var(--light_color);
    opacity: 1;
}
.form-control:-ms-input-placeholder {
    color: var(--light_color);
}
.form-control::-ms-input-placeholder {
    color: var(--light_color);
}
sup {
    color: #FF1E1E;
}
.simple_table_wrap table {
    width: 100%;
    white-space: nowrap;
}
.simple_table_wrap table thead tr th {
    color: var(--text_extra_light);
    font-size: 16px;
    line-height: 20px;
    padding: 14px;
    vertical-align: bottom;
    border-bottom: 1px solid var(--border_color);
    font-weight: 500;
}
.simple_table_wrap table tbody tr td {
    color: var(--black);
    font-size: 16px;
    line-height: 20px;
    padding: 14px 5px;
    border-bottom: 1px solid var(--border_color);
    font-weight: 500;
}
.simple_table_big table thead tr th {}
.simple_table_big table .badge {
    width: 74px;
    margin: 0 auto;
}
/*.transaction_wrap{
	height: calc(100vh - 307px);
}*/
.simple_table_wrap .t_title h5 {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
}
.transaction_wrap .simple_table_wrap .badge {
    padding: 3px 7px;
}
hr {
    background: var(--border_color);
    opacity: inherit;
    margin: 30px 0;
}
.cmn_radio_wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}
.cmn_radio_wrap input {
    display: none;
}
.cmn_radio_wrap label {
    position: relative;
    padding-left: 32px;
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}
.cmn_radio_wrap label::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    display: inline-block;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid var(--border_color);
    background: transparent;
    border-radius: 50%;
}
.cmn_radio_wrap label::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    display: inline-block;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid var(--border_color);
    background: var(--white);
    border-radius: 50%;
}
.cmn_radio_wrap [type="radio"]:checked + label:after {
    background: var(--primary);
    border-color: var(--primary);
}
.cmn_radio_wrap [type="radio"]:checked + label::before {
    border-color: var(--white);
    z-index: 10;
}
.bg_white_box {
    background: var(--white);
    padding: 18px;
    border: 1px solid var(--border_color);
    border-radius: 15px;
}
.bank_account_wrap {
    padding: 13px 18px;
}
.btn_transparent {
    background: transparent;
    border: none;
    padding: 0;
}
.badge_primary {
    background: var(--primary);
    color: var(--white);
    padding: 3px 12px;
    border-radius: 15px;
    font-size: 10px;
    line-height: 12px;
}
.badge_secondary {
    background: var(--secondary);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 15px;
    font-size: 10px;
    line-height: 12px;
}
.badge_light {
    background: var(--bg_gray);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 15px;
    font-size: 10px;
    line-height: 12px;
}
.badge {
    padding: 3px 6px;
    color: #fff !important;
    border-radius: 40px;
}
.badge.bg-danger {
    background: #FF1E1E !important;
}
.badge.bg-success {
    background: #7d74d8 !important;
}
.badge.bg-gray {
    background: #474C4E !important;
}
.dropdown .dropdown-menu {
    transform: initial !important;
    top: 50px !important;
    background: var(--black);
    border-radius: 15px;
    padding: 15px 20px;
}
.dropdown .dropdown-menu li .dropdown-item {
    padding: 0;
    color: var(--white);
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 500;
}
.dropdown .dropdown-menu li .dropdown-item:hover {
    background: transparent;
    color: var(--secondary);
}
.dropdown .dropdown-menu li:last-child .dropdown-item {
    margin: 0;
}
.custom_radio_wrapper.inline_radio {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.custom_radio_wrapper.inline_radio .form-check {
    margin: 0;
    padding: 0;
}
.custom_radio_wrapper.inline_radio .form-check .form-check-input {
    display: none;
}
.custom_radio_wrapper.inline_radio .form-check .form-check-input:checked + .form-check-label {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}
.custom_radio_wrapper.inline_radio .form-check .form-check-label {
    padding: 10px 27px;
    border: 1px solid var(--text_dark);
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
}
.custom_checkbox {
    padding: 0;
    margin: 0;
}
.custom_checkbox .form-check-input {
    display: none;
}
.custom_checkbox .form-check-input:checked + .form-check-label:before {
    background: var(--primary);
    border-color: var(--primary);
}
.custom_checkbox .form-check-label {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: var(--text_dark);
    padding-left: 33px;
    position: relative;
}
.custom_checkbox .form-check-label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    border-radius: 9px;
    border: 1px solid var(--border_color);
}
.custom_checkbox .form-check-label:after {
    content: "";
    position: absolute;
    left: 6px;
    top: 9px;
    width: 13px;
    height: 10px;
    background: url(../images/check.svg);
    background-size: 13px;
    background-repeat: no-repeat;
}
.top_user_wrapper {
    background: #fff;
    border-radius: 15px;
    padding: 25px 20px;
    margin: 0 0 7px;
}
.top_user_wrapper > ul {
    display: flex;
    align-items: center;
}
.top_user_wrapper > ul > li > a {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    overflow: hidden;
    display: block;
}
.top_user_wrapper > ul > li.user_icon a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top_user_wrapper > ul > li.notification {
    margin-left: 10px;
}
.top_user_wrapper > ul > li.notification a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg_light);
}
.top_user_wrapper > ul > li.filter_icon {
    margin-left: auto;
}
.top_user_wrapper > ul > li.filter_icon .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    width: 50px;
    height: 50px;
    border-radius: 12px;
}
.top_user_wrapper > ul > li.filter_icon .dropdown-toggle:after {
    display: none;
}
.top_user_wrapper > ul > li.filter_icon .dropdown-toggle:hover {
    background: var(--bg_gray);
}
.top_user_wrapper > ul > li.filter_icon .dropdown-menu {
    right: 0 !important;
    left: inherit !important;
}
.menu_wrapper {
    padding: 45px 13px 20px 20px;
    background: var(--white);
    border: 1px solid var(--border_color);
    border-radius: 15px;
    height: calc(100vh - 130px);
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
}
.menu_wrapper .search_wrap {
    margin: 0 0 30px;
}
.menu_wrapper .search_wrap .form-control {
    border-radius: 12px;
    border: 1px solid var(--border_color);
    box-shadow: none !important;
    font-size: 14px;
    padding: 9px 13px 9px 35px;
    background: #fff url(../images/search.svg);
    background-repeat: no-repeat;
    background-position: left 13px center;
}
.menu_wrapper .menu_inner {
    padding-bottom: 10px;
    /* height: calc(100vh - 532px);
    overflow: auto;*/
}
.menu_wrapper .menu_inner > ul > li {
    margin: 0 0 14px;
}
.menu_wrapper .menu_inner > ul > li > a {
    display: flex;
    align-items: center;
}
.menu_wrapper .menu_inner > ul > li > a .icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--bg_light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu_wrapper .menu_inner > ul > li > a .menu_text {
    width: calc(100% - 50px);
    padding-left: 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text_dark);
}
.menu_wrapper .menu_inner > ul > li > a.active .icon {
    background: var(--black);
    position: relative;
    z-index: 9;
    overflow: hidden;
}
.menu_wrapper .menu_inner > ul > li > a.active .icon img {
    filter: invert(1);
}
.menu_wrapper .menu_inner > ul > li > a.active .icon:before {
    content: "";
    width: 42px;
    height: 30px;
    position: absolute;
    top: 0;
    right: 0;
    background: url(../images/menu-shape1.svg);
    background-repeat: no-repeat;
    z-index: -1;
}
.menu_wrapper .menu_inner > ul > li > a.active .icon:after {
    content: "";
    width: 42px;
    height: 30px;
    position: absolute;
    bottom: -10px;
    left: 0;
    background: url(../images/menu-shape2.svg);
    background-repeat: no-repeat;
    z-index: -1;
}
.menu_wrapper .menu_inner > ul > li > a.active .menu_text {
    color: var(--secondary);
}
.menu_wrapper .menu_inner > ul > li.dropdown .dropdown-toggle:after {
    position: absolute;
    right: 0;
    top: 17px;
    width: 17px;
    height: 17px;
    background: url(../images/plus.svg);
    border: 0 !important;
    background-size: 17px;
    filter: brightness(0);
}
.menu_wrapper .menu_inner > ul > li.dropdown .dropdown-toggle.show:after {
    filter: inherit;
}
.menu_wrapper .menu_inner > ul > li.dropdown .dropdown-toggle.show .menu_text {
    color: var(--secondary);
}
.menu_wrapper .menu_inner > ul > li.dropdown .dropdown-menu {
    position: relative !important;
    transform: inherit !important;
    inset: inherit !important;
    padding: 0;
    border: 0;
    padding-left: 60px;
    padding-top: 10px;
    background: inherit;
}
.menu_wrapper .menu_inner > ul > li.dropdown .dropdown-menu li a {
    padding: 0;
    margin: 0 0 10px;
    font-size: 14px;
    color: var(--text_extra_light);
    line-height: 22px;
}
.menu_wrapper .menu_inner > ul > li.dropdown .dropdown-menu li a:hover {
    background: transparent;
    color: var(--secondary);
}
.menu_wrapper .referral_wrap {
    padding: 15px 20px;
    text-align: center;
    border: 1px solid var(--border_color);
    border-radius: 12px;
    margin-bottom: 15px;
}
.referral_wrap h6 {
    margin: 0 0 6px;
}
.main_wrapper {
    display: flex;
    flex-wrap: wrap;
}
.main_wrapper .sidebar_wrapper {
    width: 18%;
}
.main_wrapper .main_content {
    width: calc(100% - 18%);
    display: flex;
    flex-wrap: wrap;
}
.main_wrapper .main_content .page_content_wrapper {
    width: calc(100% - 35%);
    padding: 20px 20px 0 20px;
}
/*.main_wrapper .main_content .page_content_wrapper .page_content_inner {
    height: calc(100vh - 44px);
    overflow-y: auto;
    padding-right: 15px;
}*/
.main_wrapper .main_content .right_content_wrapper {
    width: 35%;
}
.right_content_wrapper .right_sidebar {
    height: calc(100vh - 100px - 191px - 1rem);
    overflow-y: auto;
    overflow-x: hidden;
}
.right_content_wrapper .right_sidebar2 {
    height: calc(100vh - 100px - 1rem);
    overflow-y: auto;
    overflow-x: hidden;
}
.right_content_wrapper .right_sidebar3 {
    height: calc(100vh - 100px - 230px - 1rem);
    overflow-y: auto;
    overflow-x: hidden;
}
.page_title {
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 85px;
    font-size: 28px;
}
.white_box_part {
    padding: 30px;
}
.get_in_touch_wrap .profile_wrap {
    display: flex;
    align-items: center;
}
.get_in_touch_wrap .profile_wrap img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
}
.get_in_touch_wrap .profile_wrap .profile_title {
    width: calc(100% - 50px);
    padding-left: 20px;
}
.get_in_touch_wrap .profile_wrap .profile_title h6 {
    font-size: 14px;
    font-weight: 500;
}
.account_list_wrap, .bank_account_wrap {
    min-height: 172px;
}
.account_list_wrap > ul {
    display: flex;
    gap: 15px;
    margin: 20px 0 10px;
}
.account_list_wrap h2, .transaction_wrap h2, .bank_account_wrap h2, .trending_slider_wrapper h2 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    margin: 0 0 15px;
}
.account_list_wrap > ul li .btn_gray {
    background: var(--bg_light);
    padding: 14px 22px;
    gap: 10px;
    font-size: 16px;
    line-height: 27px;
    display: flex;
    align-items: center;
    border: 0;
    border-radius: 15px;
    font-weight: 500;
}
.account_list_wrap .dropdown .dropdown-menu {
    transform: initial !important;
    top: 39px !important;
    background: var(--black);
    border-radius: 15px;
    padding: 6px 15px;
    left: 20px !important;
    min-width: 122px;
    text-align: center;
}
.bg_grey_box h5 {
    font-size: 14px;
    font-weight: 500;
}
.bg_grey_box h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0;
}
.trasaction_type_wrap .bg_grey_box {
    padding: 9px 10px;
    border-radius: 12px;
    background: var(--bg_light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    flex-direction: column;
}
.calender_round_tab_wrap {
    background: var(--bg_light);
    border-radius: 30px;
    padding: 5px 8px;
    display: flex;
    align-items: center;
    gap: 25px;
    width: fit-content;
    margin: 0 auto;
}
.calender_round_tab_wrap .calender_wrap {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--border_color);
}
.calender_round_tab_wrap .nav-tabs {
    border-bottom: none;
    gap: 25px;
}
.calender_round_tab_wrap .nav-tabs .nav-link {
    color: var(--text_extra_light);
    margin-bottom: 0;
    padding: 0;
    border: none;
    background: transparent;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
}
.calender_round_tab_wrap .nav-tabs .nav-link.active {
    color: var(--text_light);
    font-weight: 700;
}
.deposite_box_wrapper {
    max-width: 720px;
    margin: 0 auto 40px;
}
.deposite_box_wrapper .trade_button_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 4px 5px 0;
    position: relative;
    z-index: 9;
}
.deposite_box_wrapper .deposite_box_inner {
    position: relative;
    background: var(--white);
    padding: 20px 60px 30px;
    border-radius: 0 0 30px 30px;
    border: 1px solid #DFDFDF;
    border-top: 0;
}
.deposite_box_wrapper .deposite_box_inner:before {
    content: '';
    position: absolute;
    left: -1px;
    top: -99px;
    width: 50%;
    height: 100px;
    background: url(../images/left-shape.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 1;
}
.deposite_box_wrapper .deposite_box_inner:after {
    content: '';
    position: absolute;
    right: -1px;
    top: -100px;
    width: 50%;
    height: 100px;
    background: url(../images/right-shape.svg);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 100%;
    z-index: 1;
}
.deposite_box_wrapper .deposite_box_inner ul.top_tab {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 15px;
}
.deposite_box_wrapper .deposite_box_inner ul.top_tab li {
    padding: 0 15px;
    border-right: 1px solid #000;
    font-size: 16px;
    line-height: 20px;
}
.deposite_box_wrapper .deposite_box_inner ul.top_tab li:last-child {
    border: 0;
}
.deposite_box_wrapper .deposite_box_inner h2 {
    text-align: center;
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
    margin: 40px 0;
}
.deposite_box_wrapper .deposite_box_inner ul.balance_Wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}
.deposite_box_wrapper .deposite_box_inner ul.balance_Wrapper li {
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    padding: 0 25px;
    border-right: 1px solid var(--border_color);
    color: var(--gray);
}
.deposite_box_wrapper .deposite_box_inner ul.balance_Wrapper li:last-child {
    border-right: 0;
}
.deposite_box_wrapper .deposite_box_inner ul.balance_Wrapper li span {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--text_extra_light);
}
.deposite_box_wrapper .deposite_box_inner ul.balance_Wrapper li.active {
    color: var(--primary);
}
.deposite_box_wrapper .deposite_box_inner .setting_dropdown {
    position: absolute;
    right: 25px;
    top: -80px;
    z-index: 99;
}
.deposite_box_wrapper .deposite_box_inner .setting_dropdown .dropdown .dropdown-menu {
    right: 0 !important;
    left: inherit !important;
}
.lot_commission_Wrapper {
    overflow: auto;
}
ul.lots_wrapper {
    margin: 15px 0 0;
    min-width: 485px;
}
ul.lots_wrapper li {
    display: flex;
    margin-bottom: 7px;
}
ul.lots_wrapper li .user_info_Wrap {
    border: 1px solid var(--border_color);
    border-radius: 15px;
    padding: 10px 20px;
    flex-grow: 1;
    position: relative;
}
ul.lots_wrapper li .user_info_Wrap .icon {
    width: 30px;
}
ul.lots_wrapper li .user_info_Wrap .text {
    width: calc(100% - 30px);
}
ul.lots_wrapper li .user_info_Wrap .badge {
    position: absolute;
    right: 0;
    top: 0;
    padding: 3px 20px;
    border-radius: 0 15px;
    border: 1px solid var(--border_color);
    font-size: 15px;
    font-weight: 700;
}
ul.lots_wrapper li .lots {
    width: 100px;
    border: 1px solid var(--border_color);
    border-radius: 15px;
    padding: 10px;
}
.client_lavel_dropdown .dropdown .dropdown-toggle {
    padding: 5px 30px 5px 7px;
    border-radius: 40px;
    background: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    border: 0;
}
.client_lavel_dropdown .dropdown .dropdown-toggle img {
    margin-right: 10px;
}
.client_lavel_dropdown .dropdown .dropdown-toggle:after {
    content: "";
    border: 0;
    margin: 0;
    background: url(../images/down-arrow.svg);
    width: 15px;
    height: 15px;
    right: 7px;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
}
.client_lavel_dropdown .dropdown .dropdown-menu {
    border-radius: 15px;
}
.calender_button {
    background: var(--bg_light);
    border: 0;
    padding: 5px 6px;
    display: flex;
    align-items: center;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text_light);
}
.calender_button span {
    margin: 0 10px;
}
.btn_round_gray {
    background: var(--bg_light);
    border: 0;
    padding: 5px 18px 5px 6px;
    display: flex;
    align-items: center;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}
.btn_round_gray:hover {
    background: var(--primary);
}
.btn_round_gray span {
    background: #DFDFDF;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.export_wrap .btn_round_gray {
    font-size: 13px;
    font-weight: 500;
    color: var(--text_light);
}
.btn_round_gray.only-icon {
    padding: 5px 6px;
}
.btn_round_gray.only-icon span {
    margin-right: 0;
}
.table_design_two table {
    width: 100%;
    white-space: nowrap;
    border-collapse: separate;
    border-spacing: 0 5px;
}
.table_design_two table tbody tr td {
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    color: var(--text_extra_light);
    background: var(--white);
    padding: 5px;
}
.table_design_two table tbody tr td span {
    display: block;
    font-size: 16px;
    color: var(--gray);
    font-weight: 700;
}
.table_design_two table tbody tr td span.badge {
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
}
.table_design_two table tbody tr td h5 {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray);
    margin: 0;
    padding-left: 15px;
}
.table_design_two table tbody tr td:first-child {
    border-radius: 15px 0 0 15px;
}
.table_design_two table tbody tr td:last-child {
    border-radius: 0 15px 15px 0;
}
.table_design_two table tbody tr td .position_status {
    display: inline-block;
    background: var(--bg_light);
    padding: 12px 10px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
}
.regulation_wrapper {
    background: var(--white);
    border: 1px solid var(--border_color);
    border-radius: 15px;
    height: calc(100vh - 100px - 66px - 1rem);
    overflow: auto;
}
.sub_wrapper {
    height: calc(100vh - 218px - 66px - 1rem);
    overflow: auto;
}
.regulation_wrapper .regulation_title {
    padding: 30px 30px 20px;
    position: relative;
}
.regulation_wrapper .regulation_title .back_button {
    position: absolute;
    left: 30px;
    top: 30px;
}
.regulation_wrapper .regulation_title h4 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}
.tab_design_one > .nav-tabs {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border_color);
}
.tab_design_one > .nav-tabs > .nav-item {
    width: 50%;
}
.tab_design_one > .nav-tabs > .nav-item > .nav-link {
    width: 100%;
    border: 0;
    border-radius: 0;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--text_extra_light);
    margin: 0;
    position: relative;
    padding: 10px 10px 18px;
}
.tab_design_one > .nav-tabs > .nav-item > .nav-link:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: 0.5s ease;
}
.tab_design_one > .nav-tabs > .nav-item > .nav-link.active {
    color: var(--text_light);
}
.tab_design_one > .nav-tabs > .nav-item > .nav-link.active:before {
    width: 100%;
}
.tab_design_one > .tab-content {
    padding: 45px 0 0;
}
.tab_design_two .tab-content {
    padding: 20px 40px 40px;
}
.tab_design_two .nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    gap: 15px;
    border-bottom: 1px solid var(--border_color);
    padding-bottom: 40px;
}
.tab_design_two .nav-tabs .nav-item {
    margin: 0;
}
.tab_design_two .nav-tabs .nav-item .nav-link {
    background: var(--bg_light);
    margin: 0;
    padding: 13px 15px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text_light);
    display: flex;
    align-items: center;
    border: 0;
}
.tab_design_two .nav-tabs .nav-item .nav-link.active {
    background: var(--primary);
    color: var(--white);
}
.tab_design_two .nav-tabs .nav-item .nav-link.active .icon img {
    filter: brightness(0) invert(1);
}
.radio_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}
.radio_wrapper .form-check {
    padding: 0;
    margin: 0;
}
.radio_wrapper .form-check .form-check-input {
    display: none;
}
.radio_wrapper .form-check .form-check-input:checked + .form-check-label {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.radio_wrapper .form-check .form-check-label {
    border: 1px solid var(--border_color);
    border-radius: 15px;
    font-size: 14px;
    font-weight: 500;
    padding: 7px 16px;
}
.ticker_wrapper .ticker_row_wrap {
    border: 1px solid var(--border_color);
    border-radius: 15px;
}
.ticker_wrapper .ticker_row_wrap .collapse_row ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}
.ticker_wrapper .ticker_row_wrap .collapse_row ul li {
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    color: var(--text_extra_light);
}
.ticker_wrapper .ticker_row_wrap .collapse_row ul li span {
    color: var(--gray);
}
.ticker_wrapper .ticker_row_wrap .collapse_row ul li span.badge {
    font-size: 8px;
    padding: 6px 14px;
}
.solution_wrap .form_group {
    position: relative;
}
.solution_wrap .form_group .form-control {
    border: 0;
    border-top: 1px solid var(--border_color);
    border-radius: 15px;
    height: 170px;
    padding-bottom: 56px;
    font-size: 12px;
    font-weight: 600;
}
.solution_wrap .form_group .btn_icon_black {
    border-radius: 40px;
    position: absolute;
    right: 15px;
    bottom: 15px;
    padding: 1px 16px;
    font-size: 12px;
    font-weight: 500;
    line-height: 28px;
}
.upload_wrapper input {
    display: none;
}
.upload_wrapper label {
    /* background: var(--black);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 12px 35px;
    border-radius: 15px;
    font-size: 15px;
    font-weight: 600;*/
    position: relative;
    overflow: hidden;
    z-index: 9;
    cursor: pointer;
    margin-bottom: 20px;
}
.upload_wrapper label img {
    /*margin-right: 10px;*/
}
.upload_wrapper label:hover img {
    filter: brightness(0) saturate(100%) invert(47%) sepia(66%) saturate(3458%) hue-rotate(347deg) brightness(100%) contrast(102%);
}
.bank_account_status {
    background: var(--bg_light);
    border-radius: 15px;
    padding: 10px;
    display: flex;
    align-items: center;
}
.bank_account_status .img_wrapper {
    width: 170px;
    height: 75px;
    border-radius: 15px;
    background: var(--white);
    overflow: hidden;
    position: relative;
}
.bank_account_status .img_wrapper > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bank_account_status .img_wrapper .btn_transparent {
    position: absolute;
    left: 8px;
    top: 8px;
    line-height: 1;
    z-index: 9;
}
.bank_account_status .content_wrapper {
    width: calc(100% - 60px);
    padding: 0 0 0 20px;
    display: flex;
    align-items: center;
}
.bank_account_status .content_wrapper ul {
    width: calc(100% - 60px);
}
.ticker_wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.ticker_wrap li {
    font-size: 12px;
    line-height: 20px;
    padding-left: 15px;
    position: relative;
    margin-left: 15px;
    color: var(--black);
}
.ticker_wrap li:before {
    border-radius: 50%;
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 10px;
    transform: translateY(-50%);
}
.ticker_wrap li.complete:before {
    background: linear-gradient(180deg, #6147a3 0%, #7d74d8 100%);
}
.ticker_wrap li.pending:before {
    background: #DFDFDF;
}
.chart_box_wrap {
    padding: 15px;
    border: 1px solid var(--border_color);
    border-radius: 15px;
    text-align: center;
    margin-bottom: 15px;
}
.chart_box_wrap h5 {
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    margin: 0 0 15px;
}
.trending_box {
    border: 1px solid var(--border_color);
    border-radius: 15px;
    margin-bottom: 15px;
    height: 100%;
}
.trending_box img {
    border-radius: 15px;
    object-fit: cover;
    aspect-ratio: 2 / 1;
    width: 100%;
    border-top: 1px solid var(--border_color);
    border-bottom: 1px solid var(--border_color);
}
.trending_box .trending_content {
    padding: 15px 30px;
}
.trending_box .trending_content h4 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: var(--text_extra_light);
    margin: 0 0 10px;
}
.trending_box .trending_content h4 span {
    color: var(--gray);
}
.trending_box .trending_content p {
    font-size: 12px;
    line-height: 18px;
    margin: 0;
    color: var(--gray);
}
.trendingSlider .swiper-wrapper .swiper-slide {
    width: auto;
    max-width: 310px;
}
.sidebar_trending_box {
    width: 68%;
    margin-top: 20px;
}
.right_sidebar .trending_box {
    height: auto;
}
.right_sidebar .trending_box .trending_content {
    padding: 15px 25px;
}
.right_sidebar .trending_box h4 {
    font-size: 14px;
    line-height: 18px;
}
.right_sidebar .trending_box h4 span {
    font-size: 14px;
    line-height: 18px;
}
.right_sidebar2 .trending_box {
    height: auto;
}
.right_sidebar2 .trending_box .trending_content {
    padding: 15px 25px;
}
.right_sidebar2 .trending_box h4 {
    font-size: 14px;
    line-height: 18px;
}
.right_sidebar2 .trending_box h4 span {
    font-size: 14px;
    line-height: 18px;
}
.right_sidebar3 .trending_box {
    height: auto;
}
.right_sidebar3 .trending_box .trending_content {
    padding: 15px 25px;
}
.right_sidebar3 .trending_box h4 {
    font-size: 14px;
    line-height: 18px;
}
.right_sidebar3 .trending_box h4 span {
    font-size: 14px;
    line-height: 18px;
}
.helpLine_box {
    padding: 10px;
    border-radius: 15px;
    background: var(--bg_light);
    text-align: center;
}
.helpLine_box h6 {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    margin: 7px 0;
    color: var(--text_extra_light);
}
.helpLine_box a {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    border-radius: 40px;
    padding: 5px 30px;
}
.position_top_filter_wrapper {
    gap: 10px;
    flex-wrap: wrap;
    padding: 30px 30px 0;
}
.page_content_inner .get_in_touch_wrap {
    display: none !important;
}
.mobile_header {
    display: none;
}
.trade_button_mobile {
    display: none;
}
.open_account_wrap {
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 15px;
    font-weight: 500;
}
.button_group {
    flex-wrap: wrap;
    gap: 10px;
}
.modal-sm {
    max-width: 500px;
}
.modal_style_one .modal-dialog .modal-content {
    border-radius: 15px;
    border: 0;
    box-shadow: 0 0 62px 0 rgba(0, 0, 0, 0.25);
    background: var(--white);
}
.modal_style_one .modal-dialog .modal-content .modal-header {
    padding: 0;
    border: 0;
}
.modal_style_one .modal-dialog .modal-content .modal-header .btn-close {
    background: url(../images/close.svg);
    padding: 0;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 99;
    opacity: 1;
	filter: invert(1);
}
.modal_style_one .modal-dialog .modal-content .modal-body {
    padding: 0;
}
.modal_style_one.upload_modal .modal-dialog .modal-content .modal-header .btn-close {
    top: -25px;
    right: 10px;
}
.account_modal_wrapper .account_img {
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}
.account_modal_wrapper .account_img img {
    width: 100%;
    aspect-ratio: 5 / 2;
    object-fit: cover;
}
.account_modal_wrapper .account_form_wrapper {
    padding: 30px 50px;
}
.account_modal_wrapper .account_form_wrapper h4 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
}
.password_Wrapper {
    position: relative;
}
.password_Wrapper .toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.upload_wrapper {
    padding: 100px;
}
.upload_wrapper h2 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
    color: var(--dark);
}
.upload_wrapper p {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}
.list_deposit_details {}
.list_deposit_details li {
    font-size: 12px;
    color: var(--text_light);
    list-style: disc;
    margin: 0 0 0 15px;
    font-weight: 500;
}
.month-chart h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text_dark);
}
.chart-day {
    color: #474C4E;
    font-size: 16px;
}
.chart-day span {
    color: #0AD95C;
    margin-left: 8px;
}
.easy_table_wrap .table > :not(:last-child) > :last-child > *, .easy_table_wrap .table > :not(caption) > * > * {
    border-color: var(--border_color);
}
.easy_table_wrap .table tbody tr th, .easy_table_wrap .table thead tr th:first-child {
    padding-left: 40px;
}
.easy_table_wrap .table thead tr th {
    font-size: 12px;
    color: var(--text_extra_light);
    font-weight: 500;
}
.easy_table_wrap .table tbody tr th, .easy_table_wrap .table tbody tr td {
    font-size: 12px;
    color: #121212;
    font-weight: 600;
}
.pagination_Wrapper {}
.pagination_Wrapper ul {}
.pagination_Wrapper ul li {
    font-size: 12px;
    font-weight: 700;
    color: #2C2C2C;
}
.pagination_Wrapper ul li a {}
.pagination_Wrapper ul li a:hover img {
    filter: brightness(0) saturate(100%) invert(47%) sepia(89%) saturate(2851%) hue-rotate(347deg) brightness(100%) contrast(103%);
}
.balance_wrap h2 {
    font-size: 28px;
    font-weight: 700;
}
.balance_wrap h5 {
    font-weight: 500;
}
.grey_box_badge {}
.grey_box_badge .badge {
    padding: 5px 21px;
    font-size: 16px;
    font-weight: 700;
}
.pagination_Wrapper {
    margin: 50px 0 0;
}
.page_content_inner .pagination_Wrapper {
    margin: 20px 0 0;
}
.SuccessModal {
    position: absolute;
    z-index: 999;
    bottom: 35px;
    top: inherit;
    height: auto;
}
body:has(.SuccessModal.show) .modal-backdrop {
    display: none !important;
    background: transparent !important;
    opacity: 0 !important;
}
.SuccessModal .modal-content {
    border: 1px solid #10B981;
    border-radius: 15px;
    padding: 30px 11px;
    background: #ECFDF5;
}
.SuccessModal .modal-content .modal-body {
    padding: 0;
}
.message_Wrap {
    display: flex;
    align-items: center;
}
.message_Wrap img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}
.message_Wrap p {
    padding-left: 10px;
    font-size: 12px;
    line-height: 18px;
    color: #0A845B;
    font-weight: 500;
    margin: 0;
}
.SuccessModal#InternalTransferModal {
    left: -33%;
    bottom: 0;
}
.SuccessModal#InternalTransferModal .modal-dialog {
    width: 245px;
    margin: 0 auto;
}
.SuccessModal#InternalTransferModal .modal-content {
    padding: 10px 11px;
}
.SuccessModal#WalletModal {
    bottom: 70px;
}
.SuccessModal#WalletModal .modal-dialog {
    width: 245px;
    margin: 0 auto;
}
.SuccessModal#WalletModal .modal-content {
    padding: 10px 11px;
}
.SuccessModal#queryModal {
    bottom: -70px;
}
.SuccessModal#queryModal .modal-dialog {
    width: 245px;
    margin: 0 auto;
}
.SuccessModal#queryModal .modal-content {
    padding: 10px 11px;
}
.InternalTransfer {
    display: flex;
    gap: 10px;
}
.InternalTransferOne {
    width: 40%;
}
.InternalTransferTwo {
    width: 60%;
}
.InternalTransferTwo .form_group {
    width: 55%;
}
.InternalTransferTwo .btn_icon_black {
    float: right;
}
.InternalTransferThree {
    width: 20%;
}
.menu_wrapper.dropdown-active .menu_inner {
    height: calc(60vh - 100px);
    overflow-y: auto;
    overflow-x: hidden;
}
.transaction_img {
    position: relative;
}
.transaction_img img {
    border-top: 1px solid var(--border_color);
    border-bottom: 1px solid var(--border_color);
    border-radius: 15px;
    width: 100%;
}
.transaction_img h3 {
    position: absolute;
    left: 30px;
    top: 30px;
    color: var(--white);
}
.transaction_wrap-inner {
    padding: 18px;
}
.white_box_part .bg_grey_box h5 {
    font-size: 14px;
    font-weight: 500;
}
.white_box_part .bg_grey_box h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0;
}
.white_box_part .bg_grey_box {
    padding: 9px 10px;
    border-radius: 12px;
    background: var(--bg_light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    flex-direction: column;
}
.bg_light_box-main {
    margin-top: 100px;
}
.bg_light_box {
    padding: 9px 10px;
    border-radius: 15px;
    border: 1px solid var(--light_color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    flex-direction: column;
    margin-bottom: 30px;
}
.bg_light_box h5 {
    font-size: 14px;
    font-weight: 500;
}
.bg_light_box h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0;
}
.sm_table_wrap table thead tr th, .sm_table_wrap table tbody tr td {
    font-size: 12px;
    line-height: 16px;
}
.Commission {
    position: relative;
}
.Commission .card-body {
    padding: 0;
}
.Commission .card-title {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: var(--black);
}
.Commission .card-text {
    font-weight: 700;
    font-size: 28px;
    line-height: 38px;
    line-height: 32px;
    margin-bottom: 10px;
}
.Commission .btn_icon_grey {
    position: absolute;
    right: 30px;
    top: 30px;
    padding: 12px;
}
.Commission .btn_primary {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.02em;
    padding: 6px 15px;
}
.chart-graphic {
    margin-bottom: 30px;
    margin-top: 60px;
}
.inputfile-5 + label {
    color: #d3394c;
}
.inputfile-5:focus + label, .inputfile-5.has-focus + label, .inputfile-5 + label:hover {
    color: #722040;
}
.inputfile-5 + label figure {
    width: 100px;
    height: 135px;
    background-color: #d3394c;
    display: block;
    position: relative;
    padding: 30px;
    margin: 0 auto 10px;
}
.inputfile-5:focus + label figure, .inputfile-5.has-focus + label figure, .inputfile-5 + label:hover figure {
    background-color: #722040;
}
.inputfile-5 + label figure::before, .inputfile-5 + label figure::after {
    width: 0;
    height: 0;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
}
.inputfile-5 + label figure::before {
    border-top: 20px solid #dfc8ca;
    border-left: 20px solid transparent;
}
.inputfile-5 + label figure::after {
    border-bottom: 20px solid #722040;
    border-right: 20px solid transparent;
}
.inputfile-5:focus + label figure::after, .inputfile-5.has-focus + label figure::after, .inputfile-5 + label:hover figure::after {
    border-bottom-color: #d3394c;
}
.inputfile-5 + label svg {
    width: 100%;
    height: 100%;
    fill: #f1e5e6;
}
@media (max-width: 1750px) {
    /*.main_wrapper .sidebar_wrapper {
        width: 320px;
    }
   .main_wrapper .main_content {
        width: calc(100% - 320px);
    }
    .main_wrapper .main_content .right_content_wrapper {
        width: 470px;
    }
    .main_wrapper .main_content .page_content_wrapper {
        width: calc(100% - 470px);
    }*/
    .upload_wrapper label {
        padding: 12px 15px;
    }
    .bank_account_status .img_wrapper {
        width: 120px;
        height: 75px;
    }
    .sidebar_trending_box {
        width: 70%;
    }
}
@media (max-width: 1620px) {
    .deposite_box_wrapper {
        max-width: 600px;
    }
    .deposite_box_wrapper .trade_button_wrapper {
        max-width: 390px;
        margin: 0 auto 5px;
    }
    .deposite_box_wrapper .deposite_box_inner:before {
        top: -82px;
        width: 50%;
        height: 90px;
    }
    .deposite_box_wrapper .deposite_box_inner:after {
        top: -85px;
        width: 50%;
        height: 90px;
    }
    .deposite_box_wrapper .deposite_box_inner {
        padding: 20px 30px 30px;
    }
    .deposite_box_wrapper .deposite_box_inner ul.balance_Wrapper li:first-child {
        padding-left: 0;
    }
    .deposite_box_wrapper .deposite_box_inner ul.balance_Wrapper li:last-child {
        padding-right: 0;
    }
    .deposite_box_wrapper .deposite_box_inner ul.balance_Wrapper li {
        padding: 0 15px;
    }
    /*.position_top_filter_wrapper .team_radio {
        width: 100%;
    }*/
    .deposite_box_wrapper .deposite_box_inner .setting_dropdown {
        top: -60px;
    }
    .get_in_touch_wrap .btn_icon_grey {
        padding: 10px 10px;
        font-size: 13px;
        line-height: 20px;
    }
    .get_in_touch_wrap .profile_wrap .profile_title h6 {
        font-size: 12px;
        line-height: 16px;
    }
    .get_in_touch_wrap .profile_wrap .profile_title {
        padding-left: 10px;
    }
    .bank_account_status .content_wrapper ul li {
        font-size: 12px !important;
        line-height: 17px !important;
    }
    .sidebar_trending_box {
        width: 78%;
    }
}
@media (max-width: 1501px) {
    /*body {
        padding-right: 0;
    }
    .main_wrapper .main_content .page_content_wrapper {
        width: 100%;
        padding: 0 0 30px;
    }
    .main_wrapper .main_content .right_content_wrapper {
        width: 100%;
    }
    .main_wrapper .main_content {
        width: calc(100% - 320px);
        height: 100vh;
        overflow: auto;
        padding-right: 15px;
    }
	.main_wrapper .main_content .right_content_wrapper {
        width: 100%;
        height: auto;
        overflow: inherit;
    }
    
    .main_wrapper .main_content {
        padding: 20px;
    }
    .main_wrapper .main_content .page_content_wrapper .page_content_inner {
        height: auto;
        overflow-y: inherit;
        padding-right: 0;
    }
	*/
    .position_top_filter_wrapper .team_radio {
        width: auto;
    }
    /*.page_content_inner .get_in_touch_wrap {
        display: flex !important;
    }
    .right_content_wrapper .get_in_touch_wrap {
        display: none !important;
    }*/
    .InternalTransferOne {
        width: 50%;
    }
    .InternalTransferTwo {
        width: 50%;
    }
    .InternalTransferTwo .form_group {
        width: 80%;
    }
    .sidebar_trending_box {
        width: 87%;
    }
    .cmn_radio_wrap label br {
        display: none;
    }
    .bg_light_box-main {
        margin-top: 50px;
    }
}
@media (max-width: 1366px) {
    .sidebar_trending_box {
        width: 90%;
    }
}
@media (max-width: 1280px) {
    .sidebar_trending_box {
        width: 100%;
    }
    .trending_box .trending_content {
        padding: 15px 20px;
    }
}
@media (max-width: 1201px) {
    body {
        padding: 15px 0px 15px 15px
    }
    .main_wrapper .main_content .page_content_wrapper {
        width: 100%;
        padding: 0;
    }
    .main_wrapper .main_content .right_content_wrapper {
        width: 100%;
        margin-top: 30px;
    }
    .main_wrapper .main_content .page_content_wrapper .page_content_inner {
        height: auto;
        overflow-y: inherit;
    }
    .main_wrapper .main_content {
        height: 100vh;
        overflow: auto;
        padding-right: 20px;
    }
    .right_content_wrapper .right_sidebar, .sub_wrapper, .menu_wrapper, .regulation_wrapper {
        height: auto;
        overflow: inherit;
    }
    .right_sidebar {
        margin: 0 0 30px;
    }
    .right_content_wrapper .right_sidebar2 {
        height: auto;
        overflow: inherit;
    }
    .right_sidebar2 {
        margin: 0 0 30px;
    }
    .right_content_wrapper .right_sidebar3 {
        height: auto;
        overflow: inherit;
    }
    .right_sidebar3 {
        margin: 0 0 30px;
    }
    .top_user_wrapper {
        padding: 0px 20px 25px;
    }
    .page_title {
        margin-top: 0;
    }
    .mobile_header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: var(--white);
        padding: 15px 30px;
        border: 1px solid var(--border_color);
        border-radius: 15px;
        margin: 0 0 10px;
    }
    .mobile_header .btn_icon_black {
        padding: 15px;
    }
    .mobile_header .btn_icon_black img {
        margin: 0;
    }
    .main_wrapper .sidebar_wrapper {
        display: none;
    }
    .main_wrapper .main_content {
        width: 100%;
    }
    .offcanvas-header {
        justify-content: flex-end;
    }
    .main_wrapper .main_content {
        padding: 0 15px 0 0;
    }
    .main_wrapper .main_content .page_content_wrapper .page_content_inner {
        padding-right: 0;
    }
    .account_list_wrap, .bank_account_wrap {
        min-height: inherit;
    }
    .InternalTransferTwo .form_group {
        width: 100%;
    }
    .InternalTransferTwo .btn_icon_black {
        float: inherit;
        width: 100%;
    }
    .sidebar_trending_box {
        width: 320px;
    }
}
@media (max-width: 1120px) {}
@media (max-width: 992px) {
    .pagination_Wrapper {
        margin: 30px 0 0;
    }
}
@media (max-width: 650px) {
    .deposite_box_wrapper .trade_button_wrapper {
        max-width: 320px;
    }
    .deposite_box_wrapper {
        max-width: 490px;
    }
    .deposite_box_wrapper .deposite_box_inner:before {
        top: -66px;
        height: 80px;
    }
    .deposite_box_wrapper .deposite_box_inner:after {
        top: -72px;
        height: 80px;
    }
    .deposite_box_wrapper .deposite_box_inner ul.balance_Wrapper {
        flex-wrap: wrap;
    }
    .deposite_box_wrapper .deposite_box_inner ul.balance_Wrapper li {
        width: 50%;
        border: 0;
        padding: 0 0 10px;
        text-align: center;
    }
    .ticker_wrapper .ticker_row_wrap .collapse_row ul {
        flex-wrap: wrap;
        gap: 5px;
    }
    .deposite_box_wrapper .deposite_box_inner .setting_dropdown {
        top: -50px;
    }
    .bg_light_box-main {
        margin-top: 30px;
    }
}
@media (max-width: 575px) {
    .deposite_box_wrapper .deposite_box_inner:before, .deposite_box_wrapper .deposite_box_inner:after {
        display: none;
    }
    .trade_button_wrapper {
        display: none !important;
    }
    .trade_button_mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin: 0 0 10px;
    }
    .deposite_box_wrapper .deposite_box_inner {
        border-radius: 10px;
        border: 1px solid #DFDFDF;
        border-top: 1px solid #DFDFDF;
    }
    .get_in_touch_wrap {
        /*flex-direction: column;
        align-items: self-start !important;*/
    }
    .get_in_touch_wrap .btn_icon_grey {
        margin-left: 0px;
		min-width: 135px;
    }
    .mobile_header {
        padding: 15px 20px;
    }
    .bank_account_status {
        flex-direction: column;
        align-items: self-start;
        gap: 10px;
    }
    .bank_account_status .content_wrapper {
        width: 100%;
        padding: 0;
    }
    .deposite_box_wrapper .deposite_box_inner .setting_dropdown {
        top: 20px;
    }
    ul.lots_wrapper {
        min-width: 100%;
    }
    ul.lots_wrapper li {
        flex-wrap: wrap;
        border: 1px solid var(--border_color);
        border-radius: 15px;
    }
    ul.lots_wrapper li .user_info_Wrap {
        width: 100%;
        border: 0;
        border-bottom: 1px solid var(--border_color);
        border-radius: 0;
    }
    ul.lots_wrapper li .lots {
        width: 50%;
        border: 0;
        border-radius: 0;
    }
    ul.lots_wrapper li .lots:last-child {
        border-left: 1px solid var(--border_color);
    }
    .position_top_filter_wrapper {
        padding: 20px 20px 0;
    }
    .tab_design_two .tab-content {
        padding: 15px 20px 20px;
    }
    .bank_account_status .content_wrapper {
        flex-direction: column;
        align-items: self-start;
    }
    .bank_account_status .content_wrapper ul {
        width: 100%;
        margin: 0 0 10px;
    }
    .tab_design_one > .tab-content {
        padding: 25px 0 0;
    }
    .tab_design_two .nav-tabs {
        padding-bottom: 25px;
    }
    .regulation_wrapper .regulation_title {
        padding: 20px 15px 10px;
    }
    .regulation_wrapper .regulation_title .back_button {
        left: 20px;
        top: 20px;
    }
    hr {
        margin: 20px 0;
    }
    .white_box_part {
        padding: 0 20px 20px;
    }
    .easy_table_wrap .table tbody tr th, .easy_table_wrap .table thead tr th:first-child {
        padding-left: 20px;
    }
    .form_group {
        margin: 0 0 15px;
    }
    .bank_account_status .img_wrapper {
        width: 100%;
    }
    .InternalTransferOne, .InternalTransferTwo {
        width: 100%;
    }
    .InternalTransfer {
        display: flex;
        gap: 0;
        flex-direction: column;
    }
    .position_top_filter_wrapper .team_radio {
        flex-wrap: wrap;
        width: 100%;
    }
}
@media (max-width: 481px) {
    .helpLine_box a {
        font-size: 13px;
        line-height: 19px;
        padding: 5px 20px;
    }
    .account_modal_wrapper .account_form_wrapper {
        padding: 15px;
    }
    .upload_wrapper {
        padding: 50px 20px;
    }
    .tab_design_two .nav-tabs {
        gap: 8px;
    }
    .tab_design_two .nav-tabs .nav-item .nav-link {
        font-size: 12px;
        padding: 8px 10px;
    }
    .easy_table_wrap .table-responsive table {
        width: 100%;
        white-space: nowrap;
    }
    .team_radio-right {
        display: block !important;
        width: 100%;
    }
    .team_radio-right .export_wrap {
        margin-top: 10px;
    }
    .team_radio-right .calender_wrapper .calender_button, .team_radio-right .export_wrap .btn_round_gray {
        width: 100%;
        position: relative;
    }
    .team_radio-right .calender_wrapper .calender_button img:nth-child(3) {
        position: absolute;
        right: 15px;
    }
}
/*# sourceMappingURL=style.css.map */
@media (min-height: 1117px) {
    .right_sidebar {
        position: relative;
    }
    .pagination_Wrapper {
        position: absolute;
        width: 94%;
        bottom: 20px;
    }
    .page_content_inner {
        position: relative;
    }
    .page_content_inner .pagination_Wrapper {
        width: 93%;
    }
    .menu-bottom {
        position: absolute;
        width: 90%;
        bottom: 20px;
    }
}
/**********sign in**********/
.inverted-radius {
  --r: 31px;
  --s: 40px;
  --x: 12px;
  --y: 10px;
  width: 100%;
  aspect-ratio: 1;
  background: var(--white);
  border-radius: var(--r);
  --_m: /calc(2 * var(--r)) calc(2 * var(--r)) radial-gradient(#000 70%, #0000
        72%);
  --_g: conic-gradient(at calc(100% - var(--r)) var(--r), #0000 25%, #000 0);
  --_d: (var(--s) + var(--r));
  mask: calc(100% - var(--_d) - var(--x)) 0 var(--_m),
    100% calc(var(--_d) + var(--y)) var(--_m),
    radial-gradient(var(--s) at 100% 0, #0000 99%, #000 calc(100% + 1px))
      calc(-1 * var(--r) - var(--x)) calc(var(--r) + var(--y)),
    var(--_g) calc(-1 * var(--_d) - var(--x)) 0,
    var(--_g) 0 calc(var(--_d) + var(--y));
  mask-repeat: no-repeat;
  position: relative;
  padding: 50px 50px;
  /*box-shadow: 7px 8px 24px 0px rgba(0, 0, 0, 0.1), 29px 33px 44px 0px rgba(0, 0, 0, 0.09), 66px 73px 59px 0px rgba(0, 0, 0, 0.05), 117px 130px 70px 0px rgba(0, 0, 0, 0.01), 183px 203px 77px 0px rgba(0, 0, 0, 0.01);*/
}

.inverted-box {
  position: relative;
}

.ArrowButton {
  position: absolute;
  right: 0;
  top: 0;
  background: var(--white);
  filter: drop-shadow(117px 130px 70px rgba(0, 0, 0, 0.01))
    drop-shadow(66px 73px 59px rgba(0, 0, 0, 0.05))
    drop-shadow(29px 33px 44px rgba(0, 0, 0, 0.09))
    drop-shadow(7px 8px 24px rgba(0, 0, 0, 0.1));
  border-radius: 60px;
  height: 68px;
  width: 68px;
  z-index: 9;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-around;
  transition: 0.5s ease;
}

.ArrowButton svg {
  fill: var(--secondary);
}
.inverted-box .logo {
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .inverted-radius {
    padding: 35px 40px;
  }
}
@media (max-width: 480px) {
  .inverted-radius {
    padding: 35px 25px;
  }
  .inverted-radius {
    --r: 14px;
    --s: 30px;
  }
  .ArrowButton {
    height: 48px;
    width: 48px;
  }
}
@media (max-width: 375px) {
  .inverted-radius {
    padding: 30px 15px;
  }
  .inverted-radius .form_group-sm label {
    margin: 0;
  }
  .inverted-radius .form_group {
    margin: 0 0 5px;
  }
  .inverted-box .logo {
    margin-bottom: 15px;
  }
  .inverted-box .text-center.pb-3 {
    padding-bottom: 0.5rem !important;
  }
}
.eye-icon
 {
    float: right;
    margin-right: 10px;
    margin-top: -35px;
    position: relative;
    z-index: 2;
    cursor: pointer;
}
.inverted-box .logo img {
    max-width: 200px;
}
/**********sign in**********/
.alert {
    border-radius: 15px;
    padding: 0.75rem 0.75rem;
}
.noaccount_box_wrapper {
    margin: 30px auto;
    display: block;
    max-width: 500px;
    text-align: center;
}
.noaccount_title
 {
    margin: 0 auto;
    display: block;
}
.noaccount_title_primary {
    color: #7d74d8;
    margin-bottom: 30px;
    line-height: 1.3em;
}
.noaccount_title_secondary {
    color: #050517;
    line-height: 1.3em;
    margin-bottom: 20px;
}
.noaccount_img img {
    max-width: 400px;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
    width: 100%;
}
.deposite_box_wrapper .deposite_box_inner ul.balance_Wrapper li {
    text-align: center;
}
.invalid-feedback {
    line-height: 1.2em;
}
.accountlivebtn .activeaccount {
    background: #6147a3 !important;
    color: #fff !important;
}
.accountlivebtn a {
    color: #121212 !important;
    background: var(--bg_light);
    padding: 10px 12px;
    font-size: 14px;
    line-height: 27px;
    border-radius: 15px;
    margin-bottom: 10px;
}
.nodata_found_icon img {
    width: 32px;
    padding-bottom: 10px;
}
.nodata_found_text h5 {
    color: #2C2C2C;
    margin-bottom: 0;
}
.nodata_found-start {
    margin: 0 auto;
    display: block;
    text-align: center;
    padding: 30px 0px;
}
.registration_acct {
    padding-top: 30px;
    border-top: 1px solid #D1D1D1;
    margin-top: 30px;
}
.registration_acct p {
    margin-bottom: 0 !important;
}
.logregibtn {
    border: 1px solid #2C2C2C;
    padding: 10px 15px;
    border-radius: 15px;
    color: #2C2C2C !important;
    margin-left: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 9;
}
.logregibtn:before
 {
    background-color: #2C2C2C;
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    width: 0;
    z-index: -1;
    -webkit-transform: skew(50deg);
    -moz-transform: skew(50deg);
    -o-transform: skew(50deg);
    transform: skew(50deg);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    transform-origin: top left;
    -ms-transition: 0.4s;
}
.logregibtn:hover {
    background: #2C2C2C;
    color: #ffffff !important;
}
.logregibtn:hover img {
    filter: invert(1);
}
.logregibtn:hover:before {
    height: 100%;
    width: 200%;
}
.phoneinline {
    display: flex;
    width: 100%;
}
#phonecode
 {
    flex-basis: 0;
    flex-grow: 1;
    padding: 0 5px;
    width: 55px;
    margin-right: 10px;
}
@media (max-width:767px){
	.pageregister .inverted-radius {
		overflow: auto;
		height: calc(100vh - 100px);
	}
	.authmaster main.container.h-100 {
		height: calc(100% - 60px) !important;
	}
	.transactionMethodWrap .nav-item {
		min-width: 140px;
	}
	.reply_wrapper {
		display: block !important;
	}
	.reply_wrapper h5
	{
		margin-bottom: 10px;
	}
	.reply_wrapper .form-control {
		width: 100% !important;
		margin: 0 !important;
		margin-bottom: 10px !important;
	}
	.google2faform {
		text-align: center;
	}
	.mylevelexport .btn-export-excel {
		margin-bottom: 10px !important;
	}
	.main_wrapper .main_content{
		height: calc(100vh - 60px);
	}
	.trending_box{
		height:auto;
	}
}
@media (min-width:768px){
	.transactionMethodWrap .nav-item {
		min-width: 180px;
	}
}
.authmaster {
    padding: 0 !important;
}
.documentboxWrap .btn_icon_grey img {
    filter: invert(1);
}
.documentboxWrap {
    position: relative;
    max-width: 225px;
    margin: 0 auto;
}
.upload-input {
    position: absolute;
    left: 0;
    right: 0;
    line-height: 27px;
    padding: 14px 20px;
    width: 100%;
    z-index: 99;
    cursor: pointer;
    opacity: 0;
}
.upload-input:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
}
.poadocname,.poidocname,.bookbankname,.depositproofdocname {
    font-size: 12px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 0 !important;
    line-height: 1.5em;
	color: #6147a3;
}
.kycbankwrap .invalid-feedback {
    text-align: center;
}
.hrmargin0 {
    margin: 0;
}
.documentboxWrap2 {
    position: relative;
    max-width: 225px;
    margin: 0 auto;
}
.upload-input2 {
    position: absolute;
    left: 0;
    right: 0;
    line-height: 22px;
    padding: 10px;
    width: 100%;
    z-index: 99;
    cursor: pointer;
    opacity: 0;
}
.upload-input2:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
}
.documentboxWrap2 .btn_icon_grey:hover{
	color: var(--text_light);
}
.documentboxWrap2 .btn_icon_grey:hover:before {
    height: unset !important;
    width: unset !important;
}
.documentboxWrap2 .btn_icon_grey {
    font-size: 14px;
    padding: 10px 10px;
    width: 100%;
    line-height: 22px;
}
.documentboxWrap2 .btn_icon_grey img {
    line-height: 1.5;
    height: 22px;
    margin-right: 5px;
    vertical-align: middle;
	filter: invert(1);
}
.bank_account_status .content_wrapper{
	width:100% !important;
}
.bank_account_status .content_wrapper ul{
	width:100% !important;
}
.bookbanklight
 {
    height: 100%;
    width: 100%;
    display: block;
}
.bookbanklight img {
    height: 100%;
    margin: 0 auto;
    max-width: 100%;
}
.banklistslider {
    margin-bottom: 0 !important;
}
#deposit_mode {
    padding: 0 15px 40px;
}
#deposit_mode .icon img {
    height: 26px;
}
.menu_wrapper .dropdown-item.active, .menu_wrapper .dropdown-item:active
 {
    background: transparent !important;
    color: var(--secondary) !important;
}
.depositProofWrap {
    position: relative;
    max-width: 160px;
}
.transactionMethodWrap .nav-item .nav-link {
    display: block !important;
}
.transactionMethodWrap .nav-item .nav-link .icon {
    text-align: center;
    margin-bottom: 10px;
}
.transactionMethodWrap .nav-item .nav-link .icon img {
    min-height: 50px !important;
    margin-right: 0 !important;
}
.transactionMethodWrap .nav-item .nav-link span {
    font-weight: 600 !important;
    font-size: 16px;
    text-align: center;
    display: block;
}
.transactionMethodWrap .tab_design_two .nav-tabs {
    border-bottom: 0;
}
.menu_wrapper .menu_inner .dropdown-item:focus, .menu_wrapper .menu_inner .dropdown-item:hover {
    background: transparent !important;
}
.customdatefilter .form-control {
    background: #fff;
    padding: 8px 15px;
    font-size: 14px;
    line-height: 1.5em;
    border-radius: 15px;
}
.customdatefilter #dateSearch {
    background: var(--secondary);
    border-color: var(--secondary);
    border-radius: 15px;
    padding: 8px 15px;
    font-size: 14px;
    line-height: 1.5em;
    margin-top: 28px;
}
.customdatefilter .form-control:focus
 {
    outline: none !important;
    box-shadow: none !important;
    border-color: #ced4da !important;
}
.customdatefilter #dateSearch:hover {
    background: var(--primary);
    border-color: var(--primary);
}
.customdatefilter .btn-check:active+.btn-primary:focus, .customdatefilter .btn-check:checked+.btn-primary:focus, .customdatefilter .btn-primary.active:focus, .customdatefilter .btn-primary:active:focus, .customdatefilter .show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none !important;
}
.customdatefilter select.form-select {
    border-radius: 15px;
    font-size: 14px;
    line-height: 1.5em;
    padding: 8px 15px;
}
.customdatefilter select.form-select:focus {
    border-color: #ced4da !important;
    box-shadow: none !important;
}
.ui-datepicker {
    font-size: 12px !important;
    width: 180px !important;
}
.ui-datepicker td, .ui-datepicker th {
    padding: 2px !important;
	line-height: 1.2em !important;
}
.ui-datepicker td a, .ui-datepicker th a {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
    padding: 0 !important;
    text-align: center !important;
    border-radius: 5px;
}
.dataTables_wrapper thead th {
    font-size: 12px !important;
    color: var(--text_extra_light) !important;
    line-height: 16px !important;
    padding: 10px 15px !important;
}
.dataTables_length label {
    font-size: 12px;
    line-height: 16px;
}
.dataTables_wrapper .dataTables_length select {
    font-size: 12px !important;
    border-radius: 15px !important;
}
.dataTables_wrapper .dataTables_filter label {
    font-size: 12px !important;
    line-height: 16px;
}
.dataTables_wrapper .dataTables_filter input {
    border-radius: 15px !important;
    padding: 6px 15px;
	max-width: 140px;
}
.dataTables_empty {
    color: #a3a9a9 !important;
    font-weight: 300 !important;
}
table.dataTable {
    border-bottom: none !important;
}
.dataTables_wrapper .dataTables_info {
    font-size: 12px !important;
    line-height: 16px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
    font-size: 12px !important;
    line-height: 16px;
	padding: 2px 10px !important;
}
.dataTables_wrapper .dataTables_info {
    margin-bottom: 10px;
}
.dataTables_wrapper .dataTables_paginate {
    margin-bottom: 10px;
}
table.dataTable tbody td {
    font-size: 12px !important;
    line-height: 16px !important;
    padding: 10px 15px !important;
    color: var(--bg_dark) !important;
}
.btn_round_gray_export {
    background: var(--bg_light);
    border: 0;
    padding: 5px 18px 5px 6px;
    display: flex;
    align-items: center;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
	color: var(--text_light);
}
.exporticn
 {
    background: #DFDFDF;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.btn-export-excel {
    background: #fff !important;
    border: none !important;
    padding: 0 !important;
    line-height: 0 !important;
    margin: 0 !important;
    height: unset !important;
    border-radius: 30px !important;
    box-shadow: none !important;
	margin-top: 22px !important;
}
#tradeexport .dt-buttons
 {
    text-align: left !important;
}
.summarybtn .nav-link.active {
    background: var(--primary) !important;
}
.summarybtn .nav-link {
    border: unset !important;
    background: var(--bg_gray);
    margin: 0 5px;
    color: #fff !important;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 14px;
    line-height: 1.5em;
}
.summarybtn .nav-tabs
 {
    border: none !important;
    margin-bottom: 30px !important;
}
.solution_wrap {
    padding: 20px;
    background: var(--bg_light);
    border-radius: 15px;
}
.solution_wrap .form_group label {
    font-size: 14px;
    margin-bottom: 5px;
	color:var(--text_extra_light);
}
.solution_wrap .form_group .form-control {
    border: 0;
    box-shadow: none !important;
    background: #fff;
    border-radius: 15px;
    padding: 15px 20px;
    height: 100px;
	overflow: auto;
}
.reply_wrapper {
    display: flex;
    align-items: center;
    margin-top: 15px;
}
.reply_wrapper h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    width: 70px;
	color:var(--text_extra_light);
}
.reply_wrapper .form-control {
    width: calc(100% - 200px);
    margin: 0 15px;
    border: 0;
    border-radius: 30px;
    box-shadow: none !important;
    background: #fff;
	font-size: 12px;
    padding: 10px 15px;
}
.solution_wrap .btn_icon_black {
    border-radius: 40px;
    padding: 1px 16px;
    font-size: 12px;
    font-weight: 500;
    line-height: 28px;
}
.singlemsgclient {
    border-radius: 10px;
    text-align: left;
    display: block;
    margin-right: 50px;
    width: calc(100% - 50px);
    margin-bottom: 3px;
	color: var(--bs-gray);
	font-weight: 500 !important;
}
.singlemsgadmin {
    border-radius: 10px;
    display: block;
    margin-left: 50px;
    width: calc(100% - 50px);
    text-align: end;
    margin-bottom: 3px;
	color: var(--bg_gray);
	font-weight: 500 !important;
}
.newsmorebtn {
    font-size: 14px !important;
}
.newsdetailsimg {
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}
.news_details_modal {
    padding: 30px 50px;
}
.newsdetailstitle {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
}
.newsdetailsdesc {
    font-size: 14px;
    line-height: 1.5em;
}
#ibterms {
    height: 20px;
    width: 20px;
    line-height: 20px;
    vertical-align: middle;
}
.google2fainfo h5 {
    margin-bottom: 10px;
}
.google2fainfo img {
    margin-bottom: 10px;
}
.google2fainfo h6 {
    margin-bottom: 10px;
}
.google2faform p {
    font-size: 14px;
    line-height: 1.5em;
}
.uinfosinlge label {
    font-size: 12px;
    color: var(--bg_gray);
    line-height: 15px;
    margin-bottom: 0px !important;
}
.uinfosinlge p {
    margin-bottom: 0px !important;
    font-size: 12px;
    line-height: 15px;
    color: var(--bg_dark);
    padding-bottom: 5px;
}
.uinfosinlgeicon img {
    width: 18px;
}
.uinfosinlge
 {
    border-bottom: 1px solid var(--bg_light);
    display: flex;
    align-items: center;
}
.uinfosinlgeicon {
    margin-right: 10px;
}
li.filter_icon a.togglebtns {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    justify-content: center;
}
.notificationheader li a {
    background: transparent !important;
    text-align: left !important;
    display: block !important;
    line-height: 1.2em;
}
.notificationheader li a h6 {
    font-size: 12px !important;
    line-height: 1.3em;
}
.notificationheader li a small {
    font-size: 10px;
    margin-bottom: 0;
    line-height: 12px;
}
.nonotificationdata a {
    font-size: 12px !important;
    line-height: 1.2em !important;
}
li.notification .dropdown a.dropdown-toggle {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    overflow: hidden;
}
li.notification .dropdown a.dropdown-toggle:after {
    display: none;
}
.mycommdata .text_extra_light {
    line-height: 1.3em;
}
.mylevelexport .btn-export-excel {
    margin-top: 0 !important;
}
.mylevelexport {
    width: auto !important;
}
.client_lavel_dropdown .dropdown-item.active, .client_lavel_dropdown .dropdown-item:active {
    background: transparent !important;
	color:var(--secondary) !important;
}
#terms_slave,#terms
 {
    height: 20px;
    width: 20px;
    vertical-align: middle;
}
.ibrequest-image {
    margin-top: 30px;
}
.ibrequest-image img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: block;
}
.langswitch .dropdown-item {
    background: transparent !important;
}
.langswitch .dropdown-toggle {
    color: #000 !important;
}
.managerWrap .dropdown-toggle::after
 {
    display: none !important;
}
.accountlivebtn a {
    width: 100% !important;
    text-align: center;
}