/* Add here all your CSS customizations */

/* Buttons */

.btn-primary {
  border-radius: 20px;
}

.btn-custom-sm {
  color: white;
  background-color: #1268AB;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  vertical-align: middle;
  line-height: 25px;
  border-radius: 5px;
}

.btn-custom-sm:hover {
  border-color: black black black;
  background-color: white;
  color: black;
  border-radius: 5px;
}

.btn-custom-sm:active, .btn-custom-sm:focus, .btn-custom-sm:active:hover, .btn-custom-sm:active:focus {
  color: white;
	border-color: black black black;
  background-color: #1268AB;
  border-radius: 5px;
}

.btn-custom-sm-sel {
  color: black;
  background-color: #1268AB;
  font-weight: bold;
  font-size: 13px;
  text-align: center;
  vertical-align: middle;
  line-height: 26px;
  border-radius: 5px;
}

.btn-custom-sm-sel:hover {
  border-color: white white white;
  background-color: black;
  color: #1268AB;
  border-radius: 5px;
}

.btn-custom-sm-sel:active, .btn-custom-sm-sel:focus, .btn-custom-sm-sel:active:hover, .btn-custom-sm-sel:active:focus {
  color: black;
  border-color: #1268AB #1268AB #1268AB;
  background-color: #1268AB;
  border-radius: 5px;
}

.btn-dark-sm {
  color: white;
  background-color: #4A4A4A;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  vertical-align: middle;
  line-height: 25px;
  border-radius: 5px;
}

.btn-dark-sm:hover {
  border-color: black black black;
  background-color: white;
  color: black;
  border-radius: 5px;
}

.btn-dark-sm:active, .btn-dark-sm:focus, .btn-dark-sm:active:hover, .btn-dark-sm:active:focus {
  color: white;
	border-color: black black black;
  background-color: #4A4A4A;
  border-radius: 5px;
}

.btn-dark-sm-sel {
  color: black;
  background-color: #4A4A4A;
  font-weight: bold;
  font-size: 13px;
  text-align: center;
  vertical-align: middle;
  line-height: 26px;
  border-radius: 5px;
}

.btn-dark-sm-sel:hover {
  border-color: white white white;
  background-color: black;
  color: #4A4A4A;
  border-radius: 5px;
}

.btn-dark-sm-sel:active, .btn-dark-sm-sel:focus, .btn-dark-sm-sel:active:hover, .btn-dark-sm-sel:active:focus {
  color: black;
  border-color: #4A4A4A #4A4A4A #4A4A4A;
  background-color: #4A4A4A;
  border-radius: 5px;
}


/* Ticker */

.text-center {
  text-align: center;
}

.ticker {}

#header .header-body {
  background: #11222F;
  border-top: 3px solid #EDEDED;
  border-bottom: 1px solid transparent;
  padding: 8px 0;
  -webkit-transition: min-height 0.3s ease;
  -moz-transition: min-height 0.3s ease;
  transition: min-height 0.3s ease;
  width: 100%;
  z-index: 1001;
  min-height: 125px;
}

#header .header-nav-main.custom-header-nav-main-dark-style nav>ul>li>a {
  background: transparent !important;
  color: white;
  font-weight: 600;
}

.view-content {
  padding-top: 137px;
}

.top-label-ticker {
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  color: white;
}

p.top-label-ticker {
  margin-bottom: 0em;
}

.top-price-ticker {
  font-size: 14px;
  text-align: center;
  color: white;
}

p.top-price-ticker {
  margin-bottom: 0em;
}

.notifyTextUp {
  color: green;
}

.notifyTextDown {
  color: red;
}

.notifyTextDown::after {
  position: relative;
  top: 0;
  margin-left: 3px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-size: .7em;
  font-weight: normal;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e114";
}

.notifyTextUp::after {
  position: relative;
  top: 0;
  margin-left: 3px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-size: .7em;
  font-weight: normal;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e113";
}

.notifyBoxUp {
  background-color: green;
  color: black;
}

.notifyBoxDown {
  background-color: red;
  color: black;
}

img.sparkline {
  -webkit-filter: hue-rotate(190deg);
  filter: hue-rotate(190deg);
  width: 200px;
  height: 59px;
  background-repeat: repeat-x;
}

/* search */

.search {
  width: 100%;
  height: 34px;
}

/* day/night */

.day {
  color: black;
}

.night {
  color: white;
}

/* Skins */
html .background-color-secondary {
	background-color: #142A3C !important;
}

/* Day - Night */
.switch {
  margin-top: 5px;
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;


}

.switch input {display:none;}

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

  border-radius: 20px;
}

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

  border-radius: 20px;
}

input:checked + .slider {
  background-color: #2196F3;
}

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

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

/* ifame chart */

.holds-the-iframe {
  background: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 100% 100%"><text fill="#1268AB" x="50%" y="50%" font-family="\'Lucida Grande\', sans-serif" font-size="24" text-anchor="middle">Loading...</text></svg>') 0px 0px no-repeat;
  /* background:url(../images/loader.gif) center center no-repeat; */
}

/* main table */

.main-table tr {
  cursor: pointer;
}

.exchanges-table tr {
  cursor: pointer;
}

.watch-coin {
  cursor: pointer;
}

/* blue table */

table.blueTable {
  border: 1px solid #1268AB;
  /* background-color: white; */
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
table.blueTable td, table.blueTable th {
  border: 1px solid white;
  padding: 3px 2px;
}
table.blueTable tbody td {
  font-size: 13px;
}
table.blueTable tbody td a {
  color: #188FFF;
}
table.blueTable tr:nth-child(even) {
  background: #D0E4F5;
}
table.blueTable thead {
  background: #1268AB;
  background: -moz-linear-gradient(top, #4d8ec0 0%, #2977b3 66%, #1268AB 100%);
  background: -webkit-linear-gradient(top, #4d8ec0 0%, #2977b3 66%, #1268AB 100%);
  background: linear-gradient(to bottom, #4d8ec0 0%, #2977b3 66%, #1268AB 100%);
  border-bottom: 2px solid #444444;
}
table.blueTable thead th {
  font-size: 14px;
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
  border-left: 2px solid #D0E4F5;
}
table.blueTable thead th:first-child {
  border-left: none;
}
table.blueTable tfoot {
  font-size: 14px;
  font-weight: bold;
  color: #FFFFFF;
  background: #D0E4F5;
  background: -moz-linear-gradient(top, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
  background: -webkit-linear-gradient(top, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
  background: linear-gradient(to bottom, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
  border-top: 2px solid #444444;
}
table.blueTable tfoot td {
  font-size: 14px;
}
table.blueTable tfoot .links {
  text-align: right;
}
table.blueTable tfoot .links a {
  display: inline-block;
  background: #1268AB;
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: 5px;
}

/* dark table */

table.darkTable {
  border: 1px solid #353536;
  /* background-color: #4A4A4A; */
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
table.darkTable td, table.darkTable th {
  border: 1px solid #4A4A4A;
  padding: 3px 2px;
}
table.darkTable tbody td {
  font-size: 13px;
  color: #E6E6E6;
}
table.darkTable tbody td a {
  color: #188FFF;
}
table.darkTable tr:nth-child(even) {
  background: #4A4A4A;
}
table.darkTable thead {
  background: #353536;
  border-bottom: 2px solid #353536;
}
table.darkTable thead th {
  font-size: 14px;
  font-weight: bold;
  color: #E6E6E6;
  text-align: center;
  border-left: 2px solid #4A4A4A;
}
table.darkTable thead th:first-child {
  border-left: none;
}

table.darkTable tfoot {
  font-size: 14px;
  font-weight: bold;
  color: #E6E6E6;
  background: #000000;
  background: -moz-linear-gradient(top, #404040 0%, #191919 66%, #000000 100%);
  background: -webkit-linear-gradient(top, #404040 0%, #191919 66%, #000000 100%);
  background: linear-gradient(to bottom, #404040 0%, #191919 66%, #000000 100%);
  border-top: 2px solid #4A4A4A;
}
table.darkTable tfoot td {
  font-size: 14px;
}

/* textarea {
	resize: none;
} */

/* header listing */

.header-image {
  /* background: rgba(211, 211, 211, 0.5); */
}

.header-soon {
  background: rgba(211, 211, 211, 0.7);
  border-radius: 15px 15px 15px 15px;
  margin: 1px;
}

.header-listing {
  border-bottom: 1px dotted gray;
}

.header-country {
  border-right: 1px dotted gray;
}

.link-corner {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: absolute;
  top: 0;
}

.link-corner-text {
  font-weight: bold;
  position: absolute;
  right: 15px;
  bottom: -20px;
}

.exchanger-status-on {
  background-color: #59B34B;
  color: black;
}

.exchanger-status-off {
  background-color: #D21E1F;
  color: black;
}

.img-responsive {
    margin: 0 auto;
}

/* wallet listing */
#navlist {
  margin-left: 0px;
  padding-left: 0px;
  width: 100%;
}
#navlist li {
  display: inline;
  /* list-style-type: none; */
  margin-top: 3px;
  padding-right: 5px;
}

.icon-platform{
  width : 16px;
  height: 16px;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* message info */

.message-box {
  width: 100%;
  margin: 0 auto;
  position: absolute;
  /* top: 0px; */
  /* background-color: lightblue; */
}

.message-info {
  width: 30%;
  font-weight: bold;
  position: sticky;
  top: 200px;
  float: right;
  z-index: 1000000;
}

.label-red {
  color: #D21E1F;
}

.label-green {
  color: #59B34B;
}

/* news rss */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Helvetica', !important;
  color: #D3D3D3;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Helvetica', !important;
  font-weight: 500;
  line-height: 1.1;
  color: #D3D3D3;
}

h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small, h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small, .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #D3D3D3;
}

h1, .h1, h2, .h2, h3, .h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #D3D3D3;
}

h1 small, .h1 small, h2 small, .h2 small, h3 small, .h3 small, h1 .small, .h1 .small, h2 .small, .h2 .small, h3 .small, .h3 .small {
  font-size: 65%;
  color: #D3D3D3;
}

h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  color: #D3D3D3;
}

h4 small, .h4 small, h5 small, .h5 small, h6 small, .h6 small, h4 .small, .h4 .small, h5 .small, .h5 .small, h6 .small, .h6 .small {
  font-size: 75%;
  color: #D3D3D3;
}

h1, .h1 {
  font-size: 36px;
  color: #D3D3D3;
}

h2, .h2 {
  font-size: 30px;
  color: #D3D3D3;
}

h3, .h3 {
  font-size: 24px;
  color: #D3D3D3;
}

h4, .h4 {
  font-size: 18px;
  color: #D3D3D3;
}

h5, .h5 {
  font-size: 14px;
  color: #D3D3D3;
}

h6, .h6 {
  font-size: 12px;
  color: #D3D3D3;
}

.top5 {
  margin-top: 5px;
}

.top7 {
  margin-top: 7px;
}

.top10 {
  margin-top: 10px;
}

.top15 {
  margin-top: 15px;
}

.top17 {
  margin-top: 17px;
}

.top30 {
  margin-top: 30px;
}

.bottom30 {
  margin-bottom: 30px;
}

.media {
  margin-top: 15px;
}

.media:first-child {
  margin-top: 0;
}

.media, .media-body {
  overflow: hidden;
  zoom: 1;
}

.media-body {
  width: 10000px;
}

.media-object {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.media-object.img-thumbnail {
  max-width: none;
}

.media-right, .media>.pull-right {
  padding-left: 10px;
}

.media-left, .media>.pull-left {
  padding-right: 10px;
}

.media-left, .media-right, .media-body {
  display: table-cell;
  vertical-align: top;
}

.media-left{
  min-width: 160px;
}

.media-middle {
  vertical-align: middle;
}

.media-bottom {
  vertical-align: bottom;
}

.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

.media-list {
  padding-left: 0;
  list-style: none;
}

.newsItemContainer a.newsItemLink span {
  color: #616161;
  display: inline-block;
  text-align: justify;
}

.newsItemContainer a.newsItemLink:hover, .newsItemContainer a.newsItemLink:hover span {
  color: #63c7f7;
}

.newsItemContainer a.newsItemLink:link, .newsItemContainer a.newsItemLink:visited .newsItemContainer a.newsItemLink:hover .newsItemContainer a.newsItemLink:active {
  text-decoration: none;
}

.newsItemMeta {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  color: #7a7a7a;
  font-size: .85em;
}

.font-small {
  font-size: .8em;
}

/* Coin Listing */
.main-rounded {
  background-color: rgba(244, 244, 244, 0.7);
  color: black;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  border-color: black black black;
  /* border: 1px solid black; */
  text-align: center;
  vertical-align: middle;
  margin: 5px 0px 5px 0px;
	font-size: 10px;
  font-weight: bold;
}

.main-rounded-night {
  background-color: rgba(12, 13, 15, 0.7);
  color: white;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  border-color: black black black;
  /* border: 1px solid black; */
  text-align: center;
  vertical-align: middle;
  margin: 5px 0px 5px 0px;
	font-size: 10px;
  font-weight: bold;
}

/* Table responsibe */
.table>tbody>tr>td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}

@media only screen and (max-width: 1024px),
(min-device-width: 768px) and (max-device-width: 1024px) {

  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
  }

  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  tr {
    border: 1px solid #ccc;
  }

  td {
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
  }

  td:before {
    top: 6px;
    left: 6px;
    width: 45%;
    margin-right: 20px;
    font-weight: bold;
    white-space: nowrap;
    padding: 3px 3px 12px 7px;
  }

  .main-table td:nth-of-type(1):before { content: "#"; }
  .main-table td:nth-of-type(2):before { content: "Name"; }
  .main-table td:nth-of-type(3):before { content: "Market Cap"; }
  .main-table td:nth-of-type(4):before { content: "Price"; }
  .main-table td:nth-of-type(5):before { content: "Circulating Supply"; }
  .main-table td:nth-of-type(6):before { content: "Volume (24h)"; }
  .main-table td:nth-of-type(7):before { content: "Change (24h)"; }
  .main-table td:nth-of-type(8):before { content: "Price Graph (7d)";}

  .exchanger-detail-table td:nth-of-type(1):before { content: "Market"; }
  .exchanger-detail-table td:nth-of-type(2):before { content: "Update (UTC)"; }
  .exchanger-detail-table td:nth-of-type(3):before { content: "Price"; }
  .exchanger-detail-table td:nth-of-type(4):before { content: "Open (24h)"; }
  .exchanger-detail-table td:nth-of-type(5):before { content: "Low (24h)"; }
  .exchanger-detail-table td:nth-of-type(6):before { content: "High (24h)"; }
  .exchanger-detail-table td:nth-of-type(7):before { content: "Volume (24h)"; }

  .exchanger-list-table td:nth-of-type(1):before { content: "Logo"; }
  .exchanger-list-table td:nth-of-type(2):before { content: "Country"; }
  .exchanger-list-table td:nth-of-type(3):before { content: "Name"; }

  .exchanges-table td:nth-of-type(1):before { content: "#"; }
  .exchanges-table td:nth-of-type(2):before { content: "Name"; }
  .exchanges-table td:nth-of-type(3):before { content: "Status"; }
  .exchanges-table td:nth-of-type(4):before { content: "Market Share"; }
  .exchanges-table td:nth-of-type(5):before { content: "Volume (24h)"; }
  .exchanges-table td:nth-of-type(6):before { content: "Volume (7d)"; }

  .coin-detail-table td:nth-of-type(1):before { content: "Exchange"; }
  .coin-detail-table td:nth-of-type(2):before { content: "Market"; }
  .coin-detail-table td:nth-of-type(3):before { content: "Price"; }
  .coin-detail-table td:nth-of-type(4):before { content: "Volume"; }

  .coin-edit-table td:nth-of-type(1):before { content: "Exchange"; }
  .coin-edit-table td:nth-of-type(2):before { content: "Coin From"; }
  .coin-edit-table td:nth-of-type(3):before { content: "Coin To"; }
  .coin-edit-table td:nth-of-type(4):before { content: "Market"; }

  .coin-list-table td:nth-of-type(1):before { content: "Logo"; }
  .coin-list-table td:nth-of-type(2):before { content: "Name"; }
  .coin-list-table td:nth-of-type(3):before { content: "Short"; }
  .coin-list-table td:nth-of-type(4):before { content: "Short Show"; }
  .coin-list-table td:nth-of-type(5):before { content: "Ciculating Supply"; }
  .coin-list-table td:nth-of-type(6):before { content: "Total Supply"; }
  .coin-list-table td:nth-of-type(7):before { content: "Type"; }
  .coin-list-table td:nth-of-type(8):before { content: "Live"; }

  .news-edit-table td:nth-of-type(1):before { content: "Name"; }
  .news-edit-table td:nth-of-type(2):before { content: "Size"; }
  .news-edit-table td:nth-of-type(3):before { content: "Progress"; }
  .news-edit-table td:nth-of-type(4):before { content: "Status"; }
  .news-edit-table td:nth-of-type(5):before { content: "Actions"; }

  .news-list-table td:nth-of-type(1):before { content: "Title"; }
  .news-list-table td:nth-of-type(2):before { content: "Author"; }
  .news-list-table td:nth-of-type(3):before { content: "Date Issued (UTC)"; }
  .news-list-table td:nth-of-type(4):before { content: "Date Expire (UTC)"; }
  .news-list-table td:nth-of-type(5):before { content: "Priority"; }
  .news-list-table td:nth-of-type(6):before { content: "Live"; }

  .spend-edit-coins-table td:nth-of-type(1):before { content: "Coin Supported"; }
  .spend-edit-platform-table td:nth-of-type(1):before { content: "Platform"; }
  .spend-edit-gtype-table td:nth-of-type(1):before { content: "Game Type"; }

  .spend-list-table td:nth-of-type(1):before { content: "Logo"; }
  .spend-list-table td:nth-of-type(2):before { content: "Name"; }
  .spend-list-table td:nth-of-type(3):before { content: "Live"; }

  .wallet-edit-coin-table td:nth-of-type(1):before { content: "Coin Supported"; }
  .wallet-edit-platform-table td:nth-of-type(1):before { content: "Platform"; }

  .wallet-list-table td:nth-of-type(1):before { content: "Logo"; }
  .wallet-list-table td:nth-of-type(2):before { content: "Name"; }
  .wallet-list-table td:nth-of-type(3):before { content: "Live"; }
}

/* Events Calendar */
.event-status-1{
  background-color: #FCE6B5;
  color: black;
}
.event-status-2{
  background-color: #BAE0CE;
  color: black;
}
.event-status-3{
  background-color: #F2C7C4;
  color: black;
}

/* Custom Tabs */
.nav-dark > li > a {
    background-color: rgba(40, 44, 52, 0.3);
    border: medium none;
}

.nav-dark > li > a:hover {
    background-color: rgba(40, 44, 52, 0.6);
    border: medium none;
    border-top: 3px solid;
}

/* Comming / Available*/
.status-green{
    position: absolute;
    right:-3px;
    top:-3px;
    background:green;
    text-align: center;
    border-radius: 15px 15px 15px 15px;
    color:white;
    padding:0px 10px;
    font-size:12px;
}

.status-red{
    position: absolute;
    right:-3px;
    top:-3px;
    background:red;
    text-align: center;
    border-radius: 15px 15px 15px 15px;
    color:white;
    padding:0px 10px;
    font-size:12px;
}

/* Contact Us*/
.body_contactus {
	width: 100%;
	height: 194px;
	font-size: 20px;
	padding: 15px;
}

.has-error .body_contactus {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}
