@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
* {
  font-family: "Nunito Sans", sans-serif;
  outline: none !important;
}

* {
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}

*::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.main_content {
  padding-top: 10px;
  overflow-y: scroll;
  overflow-x: hidden !important;
}

.countries_list img {
  width: 30px;
  margin-right: 10px;
}

.pc_fixed_menu {
  margin-top: -14px;
  padding: 16px 18px;
  padding-left: 58px !important;
  position: absolute;
  width: 16% !important;
  top: 0;
  height: 110vh;
  padding-top: 42px;
}

.collapse_btn {
  text-decoration: none;
}
.collapse_btn svg {
  font-size: 23px;
}

.is_online {
  display: inline-block;
}

.offcanvas.offcanvas-start {
  width: 75% !important;
}

.close_sidebar {
  background: transparent;
  border: 0;
  color: white;
  float: right;
  position: absolute;
  right: 13px;
  top: 17px;
}

.is_online_active {
  color: #29b17d;
}

.is_online_offline {
  color: #d3d0d0;
}

.all_symbols_list {
  padding: 0;
}
.all_symbols_list li {
  cursor: pointer;
  padding: 10px 20px;
  list-style-type: none;
}

.text-success {
  color: #4CB5A4 !important;
}

.text-danger {
  color: #FF0000 !important;
}

.nav2 {
  text-align: center;
}
.nav2 a {
  display: block;
  width: auto;
  margin: 0 auto;
  text-decoration: none;
  padding: 10px;
  border-radius: 10px;
}
.nav2 a svg {
  font-size: 20px;
}

*::-webkit-scrollbar-track {
  border-radius: 5px;
}
*::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}
*::-webkit-scrollbar-thumb {
  border-radius: 5px;
}

.no_bg {
  background-color: transparent !important;
  border: 0;
}

select, input {
  padding: 5px;
}

.modal li {
  cursor: pointer;
}

.navbar {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 0;
}
.navbar ul {
  padding: 0;
  padding-top: 5px;
  width: 100%;
}
.navbar li {
  display: inline-block;
  width: 20%;
}
.navbar a {
  text-decoration: none;
  font-size: 12px;
}
.navbar a svg {
  font-size: 26px;
}

.success_cmd, .fail_cmd {
  text-align: center;
}
.success_cmd svg, .fail_cmd svg {
  margin-top: 100px;
  color: #38bb7a;
}

.offcanvas-body ul {
  padding: 0;
}
.offcanvas-body ul li {
  list-style: none;
  padding: 14px 0;
}
.offcanvas-body ul li a {
  text-decoration: none;
  font-size: 18px;
}
.offcanvas-body ul li a svg {
  font-size: 20px !important;
}
.offcanvas-body .dropdown li {
  padding: 5px 0 !important;
}

.topbar {
  padding: 10px 5px;
}
.topbar .nav-list {
  padding: 0;
}
.topbar .nav-list li {
  display: inline-block;
  margin: 0 10px;
}
.topbar .nav-list li svg {
  color: #adacac;
  font-size: 20px;
}

.swal2-container {
  z-index: 99999 !important;
}

.no_data_home svg {
  font-size: 200px;
  display: block;
  margin: auto;
  margin-top: calc(40vh - 200px);
}

#shortcut_options ul {
  padding: 0;
}
#shortcut_options ul li {
  list-style-type: none;
  padding: 10px 5px;
  cursor: pointer;
}
#shortcut_options ul li svg {
  font-size: 22px;
}

.symbols_content {
  padding: 10px;
}

.table_container {
  max-height: 50vh;
  overflow-y: scroll;
}

.colored_tbl {
  width: 100%;
}
.colored_tbl td, .colored_tbl th {
  padding: 5px 10px;
  cursor: pointer;
}

.change_btn {
  width: 100%;
  padding: 10px;
  display: inline-block;
  border: 0;
}

.card {
  overflow: scroll;
}
.card::-webkit-scrollbar-track {
  border-radius: 5px;
}
.card::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.card::-webkit-scrollbar-thumb {
  border-radius: 5px;
}

table td, table th {
  white-space: nowrap;
}

.loading_sys {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.368627451);
  z-index: 9999;
  top: 0;
}

.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 3px solid;
  border-color: #FFF #FFF transparent transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  margin: 0 auto;
  margin-top: 40vh;
  display: block;
}

.loader::after,
.loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid;
  border-color: transparent transparent #69dcff #69dcff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-sizing: border-box;
  animation: rotationBack 0.5s linear infinite;
  transform-origin: center center;
}

.loader::before {
  width: 32px;
  height: 32px;
  border-color: #FFF #FFF transparent transparent;
  animation: rotation 1.5s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.select_img {
  background-color: #1f3488;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  color: white;
  padding: 30px 35px;
  cursor: pointer;
  transition: 0.2s;
}
.select_img:hover {
  background-color: #2a43a5;
}
.select_img svg {
  font-size: 40px;
}

.selected_img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
  cursor: pointer;
  transition: 0.2s;
  opacity: 1;
}
.selected_img:hover {
  opacity: 0.7;
}

.profile_photo {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
  cursor: pointer;
}

.big_profile_photo {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}

.zoom {
  background: rgba(0, 0, 0, 0.3137254902);
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 90999;
  overflow: scroll;
}
.zoom img {
  display: block;
  width: 60%;
  height: 60vh;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  margin-top: 20vh;
}
.zoom svg {
  right: 39px;
  position: absolute;
  color: white;
  top: 20px;
  transition: 0.2s;
  cursor: pointer;
}
.zoom svg:hover {
  color: #efecec;
}

.home_page iframe {
  height: 100vh;
  width: 100%;
}

.user_transactions_tbl td {
  padding: 10px;
}

.select_country_btn .country_details img {
  width: 30px !important;
}

.btn-primary {
  background-color: #1a6f70 !important;
  border: 1px solid #1a6f70 !important;
}
.btn-primary:hover {
  background-color: #238f91 !important;
  border: 1px solid #238f91 !important;
}

.high_low {
  font-size: 11px !important;
}

body[data-mode=dark] {
  background-color: #0f1824;
}
body[data-mode=dark] .main_color {
  background-color: #0f1824 !important;
}
body[data-mode=dark] .edit_order_title_ {
  display: none;
}
body[data-mode=dark] .high_low {
  color: #bebebe;
}
body[data-mode=dark] .sec_color {
  background-color: #202943 !important;
}
body[data-mode=dark] .card, body[data-mode=dark] .offcanvas, body[data-mode=dark] .pc_fixed_menu {
  background-color: #202943 !important;
  color: white;
}
body[data-mode=dark] .modal-content {
  background-color: #202943;
  color: white !important;
}
body[data-mode=dark] .close_modal {
  background-color: transparent;
  color: white !important;
  border: 0;
  font-size: 26px;
}
body[data-mode=dark] .close_modal:hover {
  color: #cfcccc !important;
}
body[data-mode=dark] .navbar {
  background-color: #202943;
  color: white !important;
  z-index: 9999 !important;
}
body[data-mode=dark] .navbar a {
  color: white;
}
body[data-mode=dark] .navbar .active a {
  color: #6f95fd;
}
body[data-mode=dark] .new_position_selector {
  border: 1px solid #afadad;
  background-color: transparent !important;
}
body[data-mode=dark] .new_position_selector svg {
  color: #f6f6f6;
}
body[data-mode=dark] .main_new_position_selector strong {
  margin-left: 10px;
}
body[data-mode=dark] .main_new_position_selector hr {
  border: 1px solid white;
  width: 95%;
  margin: 10px auto;
}
body[data-mode=dark] .collapse_btn {
  color: white;
}
body[data-mode=dark] .all_symbols_list li {
  color: white;
}
body[data-mode=dark] .main_collapse {
  padding-bottom: 5px;
  border-bottom: 1px solid #949393;
}
body[data-mode=dark] .shortcuts_list .short_item {
  cursor: pointer;
  color: white !important;
  transition: 0.3s;
  padding: 0 4px;
}
body[data-mode=dark] .shortcuts_list .main_short_item:hover {
  background: rgba(161, 184, 255, 0.1882352941) !important;
  color: white !important;
}
body[data-mode=dark] .new_order_container {
  color: white;
}
body[data-mode=dark] #shortcut_options ul li:hover {
  background-color: white;
  color: black;
}
body[data-mode=dark] .main_phone, body[data-mode=dark] .main_crypto_selector {
  border: 1px solid #949393;
  background-color: #202943;
  border-radius: 5px;
}
body[data-mode=dark] .main_phone .select_country_btn, body[data-mode=dark] .main_phone .select_method_btn, body[data-mode=dark] .main_crypto_selector .select_country_btn, body[data-mode=dark] .main_crypto_selector .select_method_btn {
  background-color: transparent;
  border: 0;
}
body[data-mode=dark] .main_phone svg, body[data-mode=dark] .main_crypto_selector svg {
  color: #e8e6e6;
}
body[data-mode=dark] .main_phone .phone_input, body[data-mode=dark] .main_crypto_selector .phone_input {
  border: 0;
}
body[data-mode=dark] .bulk_action {
  color: #e1e0e0;
}
body[data-mode=dark] #bulk_action ul {
  padding: 0;
}
body[data-mode=dark] #bulk_action ul li {
  list-style-type: none;
  margin-bottom: 8px;
  padding: 10px 5px;
}
body[data-mode=dark] #bulk_action ul li:hover {
  background-color: rgba(255, 255, 255, 0.1450980392);
  color: #fbfbfb;
}
body[data-mode=dark] .no_data_home {
  text-align: center;
  color: #c5c1c1;
}
body[data-mode=dark] .pc_fixed_menu {
  box-shadow: 10px 10px 10px rgba(15, 24, 36, 0.7294117647);
}
body[data-mode=dark] .offcanvas-body ul li a, body[data-mode=dark] .pc_fixed_menu ul li a {
  color: white;
}
body[data-mode=dark] .offcanvas-body ul .active a, body[data-mode=dark] .pc_fixed_menu ul .active a {
  color: #6f95fd;
}
body[data-mode=dark] .nav2 a {
  color: white;
  transition: 0.5s;
  background-color: #172436;
}
body[data-mode=dark] .nav2 a svg {
  color: #0db27e;
}
body[data-mode=dark] .nav2 a:not(.active):hover {
  background-color: #1e3048;
}
body[data-mode=dark] .nav2 .active {
  background-color: #0f1824;
}
body[data-mode=dark] .scroller::-webkit-scrollbar-track {
  border: 1px solid #c9c9c9;
  background-color: #cbcaca;
}
body[data-mode=dark] .scroller::-webkit-scrollbar {
  background-color: #cbcaca;
}
body[data-mode=dark] .scroller::-webkit-scrollbar-thumb {
  background-color: #6b6b6b;
}
body[data-mode=dark] .dropdown-menu {
  background-color: #303e66;
  padding: 0;
}
body[data-mode=dark] .dropdown-menu li {
  display: block;
  width: 100%;
  margin: unset !important;
}
body[data-mode=dark] .dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  width: 100%;
  color: white !important;
}
body[data-mode=dark] .dropdown-menu li a:hover {
  background-color: #415388;
}
body[data-mode=dark] select, body[data-mode=dark] input, body[data-mode=dark] textarea {
  background-color: #202943 !important;
  color: white !important;
  border: 1px solid #afadad;
}
body[data-mode=dark] .no_bg {
  background-color: transparent !important;
  border: 0;
}
body[data-mode=dark] nav {
  background-color: #202943;
}
body[data-mode=dark] nav .nav-list {
  color: white;
}
body[data-mode=dark] .symbols_content {
  background-color: #202943;
}
body[data-mode=dark] .colored_tbl thead {
  background-color: #0f1824 !important;
}
body[data-mode=dark] .colored_tbl td, body[data-mode=dark] .colored_tbl th {
  color: white;
}
body[data-mode=dark] .colored_tbl tbody .active {
  background-color: #303e66 !important;
}
body[data-mode=dark] .colored_tbl tbody tr {
  transition: 0.5s;
}
body[data-mode=dark] .colored_tbl tbody tr:hover {
  background-color: #303e66 !important;
}
body[data-mode=dark] .change_btn {
  background-color: #202943;
  color: #8f8e8e;
}
body[data-mode=dark] .change_btn_active {
  background-color: #3569f7;
  color: #f1f1f1;
}
body[data-mode=dark] .color_blue {
  color: #3569f7 !important;
}
body[data-mode=dark] .swal2-icon.swal2-warning {
  border-color: #a63131 !important;
  color: #a63131 !important;
}
body[data-mode=dark] .swal2-icon-warning .swal2-title {
  font-size: 30px !important;
}
body[data-mode=dark] .history_tabs .history_tab {
  color: #bcb8b8;
  border-bottom: 2px solid transparent;
}
body[data-mode=dark] .history_tabs .active {
  color: white;
  border-bottom: 2px solid #3569f7;
}
body[data-mode=dark] .tab_values {
  color: white;
}
body[data-mode=dark] .swal2-modal {
  background: #191834 !important;
}
body[data-mode=dark] .swal2-modal .swal2-title, body[data-mode=dark] .swal2-modal .swal2-html-container {
  color: white !important;
  font-size: 15px;
}
body[data-mode=dark] .text-success {
  color: #0ddea1 !important;
}
body[data-mode=dark] input::-webkit-input-placeholder {
  color: #cecaca !important;
}
body[data-mode=dark] .lang_list {
  position: absolute;
  background-color: #303e66;
  height: 300px;
  z-index: 9999;
  overflow: scroll;
  width: 100%;
  padding: 6px 24px !important;
  top: 0;
}
body[data-mode=dark] .upload_container {
  color: white;
  border: 2px dashed white;
  text-align: center;
  width: 100%;
  cursor: pointer;
  display: block;
  padding: 10px;
}

body[data-mode=light] {
  background-color: #f5f4f4;
}
body[data-mode=light] .high_low {
  color: #7f7f7f;
}
body[data-mode=light] .main_color {
  background-color: #ffffff !important;
}
body[data-mode=light] .text-white {
  color: black !important;
}
body[data-mode=light] .edit_order_title_ {
  display: none;
}
body[data-mode=light] .sec_color {
  background-color: #202943 !important;
}
body[data-mode=light] .card, body[data-mode=light] .offcanvas, body[data-mode=light] .pc_fixed_menu {
  background-color: white !important;
  color: rgb(0, 0, 0);
}
body[data-mode=light] .card li a, body[data-mode=light] .offcanvas li a, body[data-mode=light] .pc_fixed_menu li a {
  color: black !important;
}
body[data-mode=light] .modal .close_modal {
  color: black !important;
}
body[data-mode=light] .color_mode {
  color: black;
}
body[data-mode=light] .modal-content {
  background-color: white !important;
  color: rgb(7, 7, 7) !important;
}
body[data-mode=light] .close_modal {
  background-color: transparent;
  color: white !important;
  border: 0;
  font-size: 26px;
}
body[data-mode=light] .close_modal:hover {
  color: #cfcccc !important;
}
body[data-mode=light] .navbar {
  background-color: white;
  color: rgb(252, 252, 252) !important;
  z-index: 9999 !important;
}
body[data-mode=light] .navbar a {
  color: rgb(16, 16, 16);
}
body[data-mode=light] .navbar .active a {
  color: #6f95fd;
}
body[data-mode=light] .page-item {
  --bs-pagination-active-bg:#1c6243 !important;
}
body[data-mode=light] .new_position_selector {
  border: 1px solid #b3b3b3;
  background: white;
}
body[data-mode=light] .new_position_selector svg {
  color: black;
}
body[data-mode=light] .collapse_btn {
  color: black;
}
body[data-mode=light] .all_symbols_list li {
  color: black;
}
body[data-mode=light] .main_collapse {
  padding-bottom: 5px;
  border-bottom: 1px solid #949393;
}
body[data-mode=light] .main_collapse a {
  color: black !important;
}
body[data-mode=light] .pc_fixed_menu {
  box-shadow: 10px 10px 10px rgba(224, 224, 224, 0.7294117647);
}
body[data-mode=light] .shortcuts_list .short_item {
  cursor: pointer;
  color: rgb(22, 22, 22) !important;
  transition: 0.3s;
}
body[data-mode=light] .shortcuts_list .main_short_item:hover {
  background: #cfcece !important;
  color: black !important;
}
body[data-mode=light] .new_order_container {
  color: rgb(32, 32, 32);
}
body[data-mode=light] .new_order_container small {
  color: black !important;
}
body[data-mode=light] #shortcut_options ul li:hover {
  background-color: white;
  color: black;
}
body[data-mode=light] #bulk_action ul {
  padding: 0;
}
body[data-mode=light] #bulk_action ul li {
  list-style-type: none;
  margin-bottom: 8px;
  padding: 10px 5px;
}
body[data-mode=light] #bulk_action ul li:hover {
  background-color: rgba(73, 72, 72, 0.1490196078);
  color: black;
}
body[data-mode=light] .no_data_home {
  text-align: center;
  color: #c5c1c1;
}
body[data-mode=light] .offcanvas-body ul li a, body[data-mode=light] .pc_fixed_menu ul li a {
  color: white;
}
body[data-mode=light] .offcanvas-body ul .active a, body[data-mode=light] .pc_fixed_menu ul .active a {
  color: #6f95fd;
}
body[data-mode=light] .nav2 a {
  color: rgb(37, 35, 35);
  transition: 0.5s;
  background-color: rgb(234, 233, 233);
}
body[data-mode=light] .nav2 a svg {
  color: #0db27e;
}
body[data-mode=light] .nav2 a:not(.active):hover {
  background-color: #d1cfcf;
}
body[data-mode=light] .nav2 .active {
  background-color: #dbddff;
}
body[data-mode=light] .scroller::-webkit-scrollbar-track {
  border: 1px solid #c9c9c9;
  background-color: #cbcaca;
}
body[data-mode=light] .scroller::-webkit-scrollbar {
  background-color: #cbcaca;
}
body[data-mode=light] .scroller::-webkit-scrollbar-thumb {
  background-color: #6b6b6b;
}
body[data-mode=light] .dropdown-menu {
  background-color: #f5f5f5;
  padding: 0;
}
body[data-mode=light] .dropdown-menu li {
  display: block;
  width: 100%;
  margin: unset !important;
}
body[data-mode=light] .dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  width: 100%;
  color: black !important;
}
body[data-mode=light] .dropdown-menu li a:hover {
  background-color: #e3e0e0;
}
body[data-mode=light] select, body[data-mode=light] input, body[data-mode=light] textarea {
  background-color: white !important;
  color: black !important;
  border: 1px solid #afadad;
}
body[data-mode=light] .bulk_action {
  color: black !important;
}
body[data-mode=light] .main_phone, body[data-mode=light] .main_crypto_selector {
  border: 1px solid #afadad;
  background-color: white !important;
  border-radius: 5px;
}
body[data-mode=light] .main_phone .select_country_btn, body[data-mode=light] .main_phone .select_method_btn, body[data-mode=light] .main_crypto_selector .select_country_btn, body[data-mode=light] .main_crypto_selector .select_method_btn {
  background-color: transparent;
  border: 0;
}
body[data-mode=light] .main_phone .phone_input, body[data-mode=light] .main_crypto_selector .phone_input {
  border: 0;
}
body[data-mode=light] .no_bg {
  background-color: transparent !important;
  border: 0;
}
body[data-mode=light] nav {
  background-color: white;
  color: black !important;
}
body[data-mode=light] nav .nav-list {
  color: #0d0d0d;
}
body[data-mode=light] .symbols_content {
  background-color: #202943;
}
body[data-mode=light] .colored_tbl thead {
  background-color: white !important;
}
body[data-mode=light] .colored_tbl td, body[data-mode=light] .colored_tbl th {
  color: black;
}
body[data-mode=light] .colored_tbl tbody .active {
  background-color: #70e798 !important;
}
body[data-mode=light] .colored_tbl tbody tr {
  transition: 0.5s;
}
body[data-mode=light] .colored_tbl tbody tr:hover {
  background-color: #f2f2f2 !important;
}
body[data-mode=light] .change_btn {
  background-color: rgb(222, 219, 219);
  color: black;
}
body[data-mode=light] .change_btn_active {
  background-color: #3569f7;
  color: white;
}
body[data-mode=light] .color_blue {
  color: #3569f7 !important;
}
body[data-mode=light] .swal2-icon.swal2-warning {
  border-color: #a63131 !important;
  color: #a63131 !important;
}
body[data-mode=light] .swal2-icon-warning .swal2-title {
  font-size: 30px !important;
}
body[data-mode=light] .history_tabs .history_tab {
  color: #000000;
  border-bottom: 2px solid transparent;
}
body[data-mode=light] .history_tabs .active {
  color: #000000;
  border-bottom: 2px solid #3569f7;
}
body[data-mode=light] .tab_values {
  color: black;
}
body[data-mode=light] .swal2-modal {
  background: #f4f4f4 !important;
}
body[data-mode=light] .swal2-modal .swal2-title, body[data-mode=light] .swal2-modal .swal2-html-container {
  color: rgb(12, 12, 12) !important;
  font-size: 15px;
}
body[data-mode=light] .text-success {
  color: #0d956c !important;
}
body[data-mode=light] input::-webkit-input-placeholder {
  color: #cecaca !important;
}
body[data-mode=light] .lang_list {
  position: absolute;
  background-color: #303e66;
  height: 300px;
  z-index: 9999;
  overflow: scroll;
  width: 100%;
  padding: 6px 24px !important;
  top: 0;
}
body[data-mode=light] .upload_container {
  color: rgb(20, 19, 19);
  border: 2px dashed rgb(25, 24, 24);
  text-align: center;
  width: 100%;
  cursor: pointer;
  display: block;
  padding: 10px;
}

@media (max-width: 992px) {
  .admin_nav {
    text-align: center !important;
  }
  .admin_nav .text-end {
    text-align: center !important;
  }
  .view_chart {
    display: none !important;
  }
  .user_frm_login_signup {
    width: 100% !important;
  }
  .deposit_pc {
    display: none;
  }
  .deposit_phone {
    display: block;
  }
  .login_logo {
    width: 100% !important;
  }
  .withdrawal_pc {
    display: none;
  }
  .withdrawal_phone {
    display: block;
  }
  .topbar {
    width: 100% !important;
    padding: 10px 5px;
    margin-left: unset;
  }
  .verfication_pc {
    height: 120vh !important;
  }
}
@media (max-width: 1000px) {
  .main_pc_fixed_menu {
    display: none !important;
  }
  .chart_col {
    width: 100% !important;
  }
  .topbar {
    width: 100% !important;
    padding: 10px 5px;
    margin-left: unset;
  }
  .phone_ {
    font-size: 14px;
    width: 120px;
  }
  .sm_font {
    font-size: 12px !important;
  }
  .code_font {
    font-size: 14px !important;
  }
}
@media (min-width: 992px) {
  .phone_ {
    width: 140px;
  }
  .trades_pc {
    width: 60% !important;
  }
  .order_trade_date {
    width: 60%;
    position: absolute;
    left: 20%;
  }
  .topbar {
    width: 87% !important;
    padding: 10px 5px;
    margin-left: 14%;
    padding-left: 47px;
  }
  .user_frm_login_signup {
    width: 60% !important;
  }
  .toggle_menu_btn {
    display: none;
  }
  .deposit_pc {
    display: block;
  }
  .deposit_phone {
    display: none;
  }
  .withdrawal_pc {
    display: block;
  }
  .withdrawal_phone {
    display: none;
  }
  .offcanvas {
    max-width: 300px !important;
  }
  .shortcuts_list {
    max-height: 85vh;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .main_login_container {
    width: 70% !important;
  }
  .home {
    width: 100% !important;
    margin: 0 auto;
  }
  .home_page *:not(svg) {
    font-size: 20px !important;
  }
  .home_page .high_low * {
    font-size: 11px !important;
  }
  .home_page .high_low {
    font-size: 11px !important;
  }
  .history_tab {
    cursor: pointer;
  }
  .topbar .container-fluid {
    width: 100% !important;
  }
  .navbar {
    display: none !important;
    position: absolute;
    top: 75px;
    display: block;
    width: 60%;
    text-align: center;
    border-radius: 10px;
    margin: 0 auto;
    padding: 5px;
    height: 95px;
    left: 20%;
  }
  .navbar ul {
    padding: 0;
    padding-top: 5px;
    width: 100%;
  }
  .navbar li {
    display: inline-block;
    width: 14%;
    margin: 0 10px;
    padding: 15px;
    border-radius: 15px;
    background-color: #263b57;
  }
  .navbar li:hover {
    background-color: #344863;
  }
  .navbar a {
    text-decoration: none;
    font-size: 12px;
    display: block;
  }
  .navbar a svg {
    font-size: 26px;
  }
  .new_order_page {
    margin-top: 150px;
  }
  .new_order_page .navbar {
    display: unset !important;
  }
  form[id=deposit] img, form[id=withdrawal] img {
    width: 200px !important;
  }
  .new_order_page .navbar .save_order {
    width: 200px !important;
    float: left;
  }
  .new_order_page .navbar .edit_order_title_ {
    display: block !important;
    float: right;
    margin-right: 30px;
  }
  .new_order_page .navbar li {
    display: inline-block;
    width: 14%;
    margin: 0 10px;
    padding: 15px;
    border-radius: 15px;
    background-color: rgba(38, 59, 87, 0) !important;
  }
  .new_order_page .navbar li:hover {
    background-color: rgba(52, 72, 99, 0) !important;
  }
}/*# sourceMappingURL=style.css.map */