/*
 *  File:         demo_table.css
 *  CVS:          $Id$
 *  Description:  CSS descriptions for DataTables demo pages
 *  Author:       Allan Jardine
 *  Created:      Tue May 12 06:47:22 BST 2009
 *  Modified:     $Date$ by $Author$
 *  Language:     CSS
 *  Project:      DataTables
 *
 *  Copyright 2009 Allan Jardine. All Rights Reserved.
 *
 * ***************************************************************************
 * DESCRIPTION
 *
 * The styles given here are suitable for the demos that are used with the standard DataTables
 * distribution (see www.datatables.net). You will most likely wish to modify these styles to
 * meet the layout requirements of your site.
 *
 * Common issues:
 *   'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
 *     no conflict between the two pagination types. If you want to use full_numbers pagination
 *     ensure that you either have "example_alt_pagination" as a body class name, or better yet,
 *     modify that selector.
 *   Note that the path used for Images is relative. All images are by default located in
 *     ../images/tables/ - relative to this CSS file.
 */

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables features
 */

#dataTable1_filter input {
  /*background: #2e3f4d;
	border: none !important;*/
  padding: 5px;
  margin: 5px;
  font-weight: normal;
  font-size: 12px;
  /*border-radius: 5px;*/
}

#dataTable1_filter label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: normal;
}

#dataTable2_filter input {
  /*background: #2e3f4d;
	border: none !important;*/
  padding: 5px;
  margin: 5px;
  font-weight: normal;
  font-size: 12px;
  /*border-radius: 5px;*/
}

#dataTable2_filter label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: normal;
}

#dataTable3_filter input {
  background: #2e3f4d;
  border: none !important;
  padding: 5px;
  margin: 5px;
  font-weight: normal;
  font-size: 12px;
  border-radius: 5px;
}

#dataTable3_filter label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: normal;
}

.dataTables_info {
  float: left;
  margin-top: 4px;
  font-size: 13px;
  padding: 0 10px;
}

div.dataTables_length label {
  font-weight: normal;
  font-size: 12px;
  padding: 0;
  margin: 0;
  width: inherit;
}

.action-table img {
  width: 18px;
  height: 18px;
}

table.dataTable {
  clear: both;
  margin-bottom: 10px;
}

.dataTables_wrapper {
  position: relative;
  clear: both;
  zoom: 1;
}

.dataTables_processing {
  position: absolute;
  top: 53%;
  left: 50%;
  width: 250px;
  height: 42px;
  margin-left: -125px;
  margin-top: -15px;
  padding: 14px 0 2px 0;
  border: 1px solid #ddd;
  text-align: center;
  font-size: 14px;
  background-color: white;
}

.dataTables_info {
  float: left;
  margin-top: 4px;
  font-size: 13px;
}

.dataTables_paginate a {
  padding: 4px 8px;
  cursor: pointer;
  text-decoration: none !important;
  margin: 0;
  color: inherit;
}

.dataTables_paginate a.paginate_button_disabled {
  pointer-events: none;
}

/* Pagination nested */
.paginate_disabled_previous,
.paginate_enabled_previous,
.paginate_disabled_next,
.paginate_enabled_next {
  height: 19px;
  float: left;
  cursor: pointer;
  cursor: hand;
  color: #111 !important;
}

.paginate_disabled_previous:hover,
.paginate_enabled_previous:hover,
.paginate_disabled_next:hover,
.paginate_enabled_next:hover {
  text-decoration: none !important;
}

.paginate_disabled_previous:active,
.paginate_enabled_previous:active,
.paginate_disabled_next:active,
.paginate_enabled_next:active {
  outline: none;
}

.paginate_disabled_previous,
.paginate_disabled_next {
  color: #666 !important;
}

.paginate_disabled_previous,
.paginate_enabled_previous {
  padding-left: 23px;
}

.paginate_disabled_next,
.paginate_enabled_next {
  padding-right: 23px;
  margin-left: 10px;
}

.paginate_disabled_previous {
  background: url("../images/tables/back_disabled.png") no-repeat top left;
}

.paginate_enabled_previous {
  background: url("../images/tables/back_enabled.png") no-repeat top left;
}

.paginate_enabled_previous:hover {
  background: url("../images/tables/back_enabled_hover.png") no-repeat top left;
}

.paginate_disabled_next {
  background: url("../images/tables/forward_disabled.png") no-repeat top right;
}

.paginate_enabled_next {
  background: url("../images/tables/forward_enabled.png") no-repeat top right;
}

.paginate_enabled_next:hover {
  background: url("../images/tables/forward_enabled_hover.png") no-repeat top
    right;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables display
 */
table.display {
  margin: 0 auto;
  clear: both;
  width: 100%;

  /* Note Firefox 3.5 and before have a bug with border-collapse
   * ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 )
   * border-spacing: 0; is one possible option. Conditional-css.com is
   * useful for this kind of thing
   *
   * Further note IE 6/7 has problems when calculating widths with border width.
   * It subtracts one px relative to the other browsers from the first column, and
   * adds one to the end...
   *
   * If you want that effect I'd suggest setting a border-top/left on th/td's and
   * then filling in the gaps with other borders.
   */
}

table.display thead th {
  padding: 3px 18px 3px 10px;
  border-bottom: 1px solid black;
  font-weight: bold;
  cursor: pointer;
  cursor: hand;
}

table.display tfoot th {
  padding: 3px 18px 3px 10px;
  border-top: 1px solid black;
  font-weight: bold;
}

table.display tr.heading2 td {
  border-bottom: 1px solid #aaa;
}

table.display td {
  padding: 3px 10px;
}

table.display td.center {
  text-align: center;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Misc
 */
.dataTables_scroll {
  clear: both;
}

.dataTables_scrollBody {
  *margin-top: -1px;
  -webkit-overflow-scrolling: touch;
}

.top .dataTables_info {
  float: none;
}

.clear {
  clear: both;
}

.dataTables_empty {
  text-align: center;
}

tfoot input {
  margin: 0.5em 0;
  width: 100%;
  color: #444;
}

td.group {
  background-color: #d1cfd0;
  border-bottom: 2px solid #a19b9e;
  border-top: 2px solid #a19b9e;
}

td.details {
  background-color: #d1cfd0;
  border: 2px solid #a19b9e;
}

.example_alt_pagination div.dataTables_info {
  width: 40%;
}

.paging_full_numbers a:active {
  outline: none;
}

.paging_full_numbers a:hover {
  text-decoration: none;
}

table.display tr.even.row_selected td {
  background-color: #b0bed9;
}

table.display tr.odd.row_selected td {
  background-color: #9fafd1;
}

/*
 * Sorting classes for columns
 */
/* For the standard odd/even */

/* For the Conditional-CSS grading rows */
/*
  Colour calculations (based off the main row colours)
  Level 1:
    dd > c4
    ee > d5
  Level 2:
    dd > d1
    ee > e2
 */
tr.odd.gradeA td.sorting_1 {
  background-color: #c4ffc4;
}

tr.odd.gradeA td.sorting_2 {
  background-color: #d1ffd1;
}

tr.odd.gradeA td.sorting_3 {
  background-color: #d1ffd1;
}

tr.even.gradeA td.sorting_1 {
  background-color: #d5ffd5;
}

tr.even.gradeA td.sorting_2 {
  background-color: #e2ffe2;
}

tr.even.gradeA td.sorting_3 {
  background-color: #e2ffe2;
}

tr.odd.gradeC td.sorting_1 {
  background-color: #c4c4ff;
}

tr.odd.gradeC td.sorting_2 {
  background-color: #d1d1ff;
}

tr.odd.gradeC td.sorting_3 {
  background-color: #d1d1ff;
}

tr.even.gradeC td.sorting_1 {
  background-color: #d5d5ff;
}

tr.even.gradeC td.sorting_2 {
  background-color: #e2e2ff;
}

tr.even.gradeC td.sorting_3 {
  background-color: #e2e2ff;
}

tr.odd.gradeX td.sorting_1 {
  background-color: #ffc4c4;
}

tr.odd.gradeX td.sorting_2 {
  background-color: #ffd1d1;
}

tr.odd.gradeX td.sorting_3 {
  background-color: #ffd1d1;
}

tr.even.gradeX td.sorting_1 {
  background-color: #ffd5d5;
}

tr.even.gradeX td.sorting_2 {
  background-color: #ffe2e2;
}

tr.even.gradeX td.sorting_3 {
  background-color: #ffe2e2;
}

tr.odd.gradeU td.sorting_1 {
  background-color: #c4c4c4;
}

tr.odd.gradeU td.sorting_2 {
  background-color: #d1d1d1;
}

tr.odd.gradeU td.sorting_3 {
  background-color: #d1d1d1;
}

tr.even.gradeU td.sorting_1 {
  background-color: #d5d5d5;
}

tr.even.gradeU td.sorting_2 {
  background-color: #e2e2e2;
}

tr.even.gradeU td.sorting_3 {
  background-color: #e2e2e2;
}

/*
 * Row highlighting example
 */
.ex_highlight #example tbody tr.even:hover,
#example tbody tr.even td.highlighted {
  background-color: #ecffb3;
}

.ex_highlight #example tbody tr.odd:hover,
#example tbody tr.odd td.highlighted {
  background-color: #e6ff99;
}

.ex_highlight_row #example tr.even:hover {
  background-color: #ecffb3;
}

.ex_highlight_row #example tr.even:hover td.sorting_1 {
  background-color: #ddff75;
}

.ex_highlight_row #example tr.even:hover td.sorting_2 {
  background-color: #e7ff9e;
}

.ex_highlight_row #example tr.even:hover td.sorting_3 {
  background-color: #e2ff89;
}

.ex_highlight_row #example tr.odd:hover {
  background-color: #e6ff99;
}

.ex_highlight_row #example tr.odd:hover td.sorting_1 {
  background-color: #d6ff5c;
}

.ex_highlight_row #example tr.odd:hover td.sorting_2 {
  background-color: #e0ff84;
}

.ex_highlight_row #example tr.odd:hover td.sorting_3 {
  background-color: #dbff70;
}

/*
 * KeyTable
 */
table.KeyTable td {
  border: 3px solid transparent;
}

table.KeyTable td.focus {
  border: 3px solid #3366ff;
}

table.display tr.gradeA {
  background-color: #eeffee;
}

table.display tr.gradeC {
  background-color: #ddddff;
}

table.display tr.gradeX {
  background-color: #ffdddd;
}

table.display tr.gradeU {
  background-color: #ddd;
}

#allOpenOrdersTable_length {
  width: 100%;
}

#allOpenOrdersTable_my_length {
  width: 100%;
}

.dataTables_processing {
  display: none !important;
}

/*------------*/

/*#allOpenOrdersTable {
 display: inline-block;
  max-height: 250px;
  min-height: 250px;
  overflow-y: scroll;
}

#allOpenOrdersTable_wrapper{
  height: 100%;
    width: 100%;
    overflow: hidden;
	}
*/

/*.ypost {
  overflow-x: inherit;
}
#bit_bottom .table-responsive{
  overflow-x: inherit;
}*/

.watchlst .nav.nav-tabs {
  background: inherit;
  bottom: 20px;
  float: right;
  position: relative;
}

#allOpenOrdersTable_my_paginate {
  display: table;
  height: 22px;
  line-height: 22px;
  margin-bottom: 0;
  margin-top: 20px;
  position: relative;
}

#allOpenOrdersTable_my_paginate span {
  display: none;
}

/*  */

.dt-paging button {
  background-color: #333333;
  color: white;
  padding: 10px 15px;
  border: none;
  margin-inline: 2px;
  border-radius: 5px;
}

.dt-paging button.current {
  background-color: #08a66e;
}

/* 
.profit-history-search label {
  font-size: 14px;
}

.profit-history-search input {
  background: #333333;
  border: 1px solid #ffffff36;
  border-radius: 5px;
  padding: 5px;
  margin: 5px;
  color: white;
}

.profit-history-search select {
  background-color: #333333;
  color: white;
  padding: 5px;
  border: none;
  border-radius: 5px;
  margin-right: 5px;
}

.profit-history-search select+label {
  font-size: 13px;
}

.profit-history thead tr th {
  background: black;
}

.profit-history tbody tr td {
  background: black;
} */

/* Profit History table styles */

/* .profit-history-cont {
  min-width: fit-content;
  overflow-x: scroll;
} */

.profit-history-heading {
  /* padding: 15px 20px; */
  /* background-color: #1e1e1e; */
  background: radial-gradient(
    52.62% 100% at 50% 0%,
    rgba(0, 32, 21, 0.5) 0%,
    rgba(1, 12, 17, 0.5) 100%
  );
  border-bottom: 1px solid #08a66e80;
  border-radius: 10px 10px 0 0;
}

.profit-history-heading h6 {
  font-size: 16px;
  padding: 15px 20px;
}

.profit-history-search {
  /* margin: 10px 0px 0px 0px; */
  margin: 0px !important;
  padding: 10px 20px;
  gap: 10px;
}

.profit-history-search input {
  background: #070707;
  border: 1px solid #ffffff36;
  border-radius: 5px;
  padding: 5px;
  margin: 0;
  color: white;
  height: auto !important;
  padding: 2px 12px !important;
}

.profit-history-search select {
  margin-top: px;

  background-color: #333333;
  color: white;
  padding: 5px;
  border: none;
  border-radius: 5px;
  margin-right: 0px;
  height: auto !important;
  padding: 6px 5px !important;
}

.profit-history-cont .table-responsive {
  max-height: 100%;
  padding-right: 10px;
  margin: 0 10px 0 10px;
}

.profit-history-cont .table-responsive thead tr {
  position: sticky;
  top: 0;
}

.profit-history-cont table {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 1px 4px;
  font-weight: 500;
}

.profit-history-cont tr td {
  padding: 9px 10px;
}

.profit-history-cont thead tr {
  background: radial-gradient(
    52.62% 100% at 50% 0%,
    rgba(0, 32, 21, 0.5) 0%,
    rgba(1, 12, 17, 0.5) 100%
  );
}
.profit-history-cont thead th {
  /* color: #9A9898;
  font-size: 13px;
  line-height: 1;
  background: #11111100 !important;
  border: none !important;
  white-space: nowrap; */
  background: #1e1e1e00;
  border: none;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  line-height: 1;
  text-align: center;
  position: relative;
  white-space: nowrap;
}

.profit-history-cont thead td:first-child {
  text-align: center;
}

.profit-history-cont tbody tr td {
  background: #1e1e1e00;
  color: #d6d6d6;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  border: none !important;
}

.profit-history-cont tbody tr td:first-child {
  border-radius: 5px 0 0 5px;
}

.profit-history-cont tbody tr td:last-child {
  border-radius: 0 5px 5px 0;
}

.profit-history-cont table img {
  width: 17px;
}

.profit-history-cont tbody tr td span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.profit-history-paging button {
  /* background-color: #08a66e; */
  background: #08a66e1a;
  color: #08a66e;
  font-weight: bold;
  padding: 3px 10px;
  border: none;
  border-radius: 3px;
  margin-inline: 2px;
  cursor: pointer;
}

.profit-history-paging button:disabled {
  background: #08a66e1a;
  color: #08a66e;
  opacity: 0.5;
}

.pagination-cont {
  flex-wrap: wrap;
  flex-direction: column-reverse;
  gap: 10px;
}

.top_exchanges tbody tr td:first-child {
  text-align: start;
}

a.buy_btn small img {
  width: 25px;
  height: 25px;
  background-color: white;
  border-radius: 100%;
  object-fit: contain;
  padding: 2px;
}

.package-dropdown .package-dropdown-menu li {
  padding: 8px 15px;
  font-size: 15px;
  line-height: 1;
}

.package-dropdown-menu {
  padding: 10px 0;
  height: 260px !important;
  overflow: auto !important;
  width: 170px !important;
}

.full-width {
  width: 100% !important;
}

/* header css */
@media (max-width: 767.9px) {
  .bot-backToHome {
    width: 100%;
    padding: 5px 7px !important;
    font-size: 11px !important;
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
    border-radius: 0px !important;
    background: #08a66e !important;
  }

  nav {
    padding-top: 45px !important;
    padding-bottom: 10px !important;
  }

  .header-navbar.header-navbar-dashboard--v2
    .navbar-left
    .navbar-brand
    .navbar-brand__icon {
    display: block;
    width: 140px;
    max-width: inherit;
  }

  .header-navbar.header-navbar-dashboard--v2
    .navbar-right
    .navbar-profile-menu
    .navbar-profile-menu__image {
    max-width: 1.8rem;
    max-height: 1.8rem;
  }

  .navbar-profile-menu {
    position: absolute !important;
    top: 0;
    right: 20px;
  }

  .header-navbar.header-navbar-dashboard--v2 .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 2000px;
    padding: 0 2rem;
    position: relative;
  }

  .pack-amount {
    line-height: 20px;
    width: 50%;
    flex-wrap: wrap;
    gap: 7px;
  }

  .pack-amount div {
    flex-wrap: wrap;
    font-size: 13px;
    gap: 5px;
  }

  .pack-amount div label {
    width: 100%;
  }

  .package-dropdown-button {
    font-size: 13px !important;
    width: auto;
    /* padding: 2px 17px !important; 
    text-align: center;*/
  }

  .navbar-right {
    width: 100%;
    justify-content: space-between;
    margin: 5px 0 0 0;
    flex-wrap: wrap;
  }

  .fullscreen {
    display: none;
  }

  .package-dropdown-menu {
    height: 200px !important;
    overflow: scroll !important;
    width: 140px !important;
  }

  .package-dropdown-menu li {
    font-size: 13px !important;
    padding: 7px 10px !important;
    line-height: 1 !important;
  }
}

@media (max-width: 600px) {
  .profit-history-search {
    flex-direction: column;
  }

  .profit-history-search input {
    width: 100% !important;
  }
}

.warning-alert {
  color: #ffd166;
  border: 1px solid;
  padding: 8px 20px;
  border-radius: 9px;
  background: #ffd1661f;
  width: 100%;
}

.profit-color {
  color: #08a66e !important;
  font-weight: 500;
}
