/* General rules*/
@-ms-viewport{
  width: device-width;
}

.wallet-selector-tos-agreement {
  padding-bottom: 10px;
}

.app {
  font-family: 'Avenir', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}

body {
  background: #f9fbff;
  overflow-y: auto;
  background: -webkit-linear-gradient(to right, rgb(127, 127, 213, 0.1), rgb(134, 168, 231, 0.1), rgb(145, 234, 228, 0.1));  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, rgb(127, 127, 213, 0.1), rgb(134, 168, 231, 0.1), rgb(145, 234, 228, 0.1)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

h2, .content {
  margin-top: 0;
  padding: 15px 0;
  color:  #424242;
  border-bottom: 1px solid #e0e0e0;
}

.ui.segment {
  border:hidden;
}

/*Custom Tabs for Account page */

.tabs-component-tabs {
  border: solid 1px #ddd;
  border-radius: 6px;
  margin-bottom: 5px;
  padding-left: 15px;
  /*padding-top:16px;*/
}

@media (min-width: 700px) {
  .tabs-component-tabs {
    border: 0;
    align-items: stretch;
    display: flex;
    justify-content: flex-start;
    margin-bottom: -1px;
  }
}

.tabs-component-tab {
  color: #999;
  font-size: 14px;
  font-weight: 600;
  margin-right: 0;
  list-style: none;
}

.tabs-component-tab:not(p) {
  border-bottom: dotted 1px #ddd;
}

.tabs-component-tab:hover {
  color: #666;
}

.tabs-component-tab.is-active {
  color: #000;
}

.tabs-component-tab.is-disabled * {
  color: #cdcdcd;
  cursor: not-allowed !important;
}

@media (min-width: 700px) {
  .tabs-component-tab {
    background-color: #fff;
    border: solid 1px #ddd;
    margin-right: .25em;
    transform: translateY(2px);
    transition: transform .3s ease;
  }

.tabs-component-tab.is-active {
    border-bottom: solid 1px #fff;
    border-top: solid 2px #02AAEA;
    transform: translateY(0);
  }
}

.tabs-component-tab-a {
  align-items: center;
  color: inherit;
  display: flex;
  padding: .75em 1em;
  text-decoration: none;
}

/* Gap around Table in Tab*/

.tabs-component-panels {
  padding: 1em 16px;
}

@media (min-width: 700px) {
  .tabs-component-panels {
    border-top-left-radius: 0;
    background-color: #fff;
    border-top: solid 1px #ddd;
    padding: 16px 16px;
  }
}

/* Tables */

table {
  margin-bottom: 16px;
}

tbody, thead {
  table-layout: fixed;
}

td, th {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

#table-wrapper {
    min-width: 250px;
    overflow: auto;
}

#table {
    padding: 14px;
}

#table-title {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.table-header {
  padding-top: 5px !important;
}

.table-header-text {
  color: #243b55;
}

.info {
    margin-top: 16px;
}

#info {
  margin-top:16px;
  width: 100% !important;
}

/** Slider **/
/* component style */
.vue-slider-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* rail style */
.vue-slider-rail {
  background-color: #ccc;
  border-radius: 15px;
}

/* process style */
.vue-slider-process {
  background-color: #3498db;
  border-radius: 15px;
}

/* mark style */
.vue-slider-mark {
  z-index: 4;
}
.vue-slider-mark:first-child .vue-slider-mark-step, .vue-slider-mark:last-child .vue-slider-mark-step {
  display: none;
}
.vue-slider-mark-step {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.16);
}
.vue-slider-mark-label {
  font-size: 14px;
  white-space: nowrap;
}
/* dot style */
.vue-slider-dot-handle {
  cursor: pointer;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  box-sizing: border-box;
  box-shadow: 0.5px 0.5px 2px 1px rgba(0, 0, 0, 0.32);
}
.vue-slider-dot-handle-focus {
  box-shadow: 0px 0px 1px 2px rgba(52, 152, 219, 0.36);
}

.vue-slider-dot-handle-disabled {
  cursor: not-allowed;
  background-color: #ccc;
}

.vue-slider-dot-tooltip-inner {
  font-size: 14px;
  white-space: nowrap;
  padding: 2px 5px;
  min-width: 20px;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  border-color: #3498db;
  background-color: #3498db;
  box-sizing: content-box;
}
.vue-slider-dot-tooltip-inner::after {
  content: "";
  position: absolute;
}
.vue-slider-dot-tooltip-inner-top::after {
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  height: 0;
  width: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px;
  border-top-color: inherit;
}
.vue-slider-dot-tooltip-inner-bottom::after {
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  height: 0;
  width: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px;
  border-bottom-color: inherit;
}
.vue-slider-dot-tooltip-inner-left::after {
  left: 100%;
  top: 50%;
  transform: translate(0, -50%);
  height: 0;
  width: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px;
  border-left-color: inherit;
}
.vue-slider-dot-tooltip-inner-right::after {
  right: 100%;
  top: 50%;
  transform: translate(0, -50%);
  height: 0;
  width: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px;
  border-right-color: inherit;
}

.vue-slider-dot-tooltip-wrapper {
  opacity: 0;
  transition: all 0.3s;
}
.vue-slider-dot-tooltip-wrapper-show {
  opacity: 1;
}

/** Percentage rows */
.step-row {
  max-height: 45px;
  display: flex;
  padding-bottom: 0px;
  flex-basis: 20px;
  background: none;
  margin: 0px 0px 5px;
  flex-wrap: wrap;
  flex: 0 1 0%;
}
.input-container {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  position: relative;
}
.input-container > input[type="text"], .input-container > input[type="number"] {
  width: 100%;
}
.step-input {
  box-shadow: none;
  height: 30px;
  width: 70px;
  cursor: pointer;
  background: rgb(255, 255, 255);
  border-width: 1px;
  border-style: solid;
  border-color: rgb(226, 226, 226);
  border-image: initial;
  outline: none;
  margin: 0px 3px;
}
.step-input:first-child {
  margin-left: 0px;
}
.step-input:last-child {
  margin-right: 0px;
}

/*Footer*/
/*Labels*/
.ui.blue.label {
  cursor: default;
}

.search-button {
  width:85px;
  border-radius: 0;
}

/* Top containers */

#top-container{
  padding-top: 145px;
  padding-bottom: 33px;
}

@media (max-width: 767px) {
    #top-container {
      padding-top: 60px !important;
    }

    .ui.padded.segment {
      padding: 1em !important;
    }
}

#top-container-home{
  padding-top: 130px;
  padding-bottom: 33px;
}

@media (max-width: 767px) {
  #top-container-home {
    margin-left: 8px !important;
    margin-right: 8px !important;
    padding-top: 60px;
    padding-bottom: 15px;
  }
}

/* Rows remove padding*/

.ui.grid>.row {
  padding-bottom:0;
  padding-top:0;
}

/*Mobile Menu search button*/

.search-button {
  width:85px;
}

/* Menu */

#tab, #tab-search {
  height:100%;
}

#tab:hover {
  border-bottom: solid 2px #0984e3;
}

#logo {
  height:50px;
  width: auto;
  margin-right: 5px;
  margin-left: 0px;
}

.inline-logo, .inline-logo-mobile {
  margin-bottom: 0px;
}

.inline-logo-mobile {
  font-size:0.8em;
}

.ui.menu.item {
  padding-top: 0;
  padding-bottom: 0;
}

#inline-image {
    margin-top: 11px;
}

/* Overflow breaking for td */
.special-td-2 {
  display: inline-block;
  min-width: 100%;
  white-space: normal;
  word-break: break-all;
}


@media (max-width: 662px){
  .special-td-2 {
    display: inline-block;
    min-width: 250px !important;
    white-space: normal;
    word-break: break-all;
  }
}
/* Hidden on Mobile */

@media only screen and (max-width: 767px) {
  /* Fix for iOS devices */
  input {
    font-size: 16px !important;
  }

  [class*="mobile hidden"],
  [class*="tablet only"]:not(.mobile),
  [class*="computer only"]:not(.mobile),
  [class*="large monitor only"]:not(.mobile),
  [class*="widescreen monitor only"]:not(.mobile),
  [class*="or lower hidden"] {
    display: none !important;
  }
}
/* Tablet / iPad Portrait */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  [class*="mobile only"]:not(.tablet),
  [class*="tablet hidden"],
  [class*="computer only"]:not(.tablet),
  [class*="large monitor only"]:not(.tablet),
  [class*="widescreen monitor only"]:not(.tablet),
  [class*="or lower hidden"]:not(.mobile) {
    display: none !important;
  }
}
/* Computer / Desktop / iPad Landscape */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  [class*="mobile only"]:not(.computer),
  [class*="tablet only"]:not(.computer),
  [class*="computer hidden"],
  [class*="large monitor only"]:not(.computer),
  [class*="widescreen monitor only"]:not(.computer),
  [class*="or lower hidden"]:not(.tablet):not(.mobile) {
    display: none !important;
  }
}
/* Large Monitor */
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  [class*="mobile only"]:not([class*="large monitor"]),
  [class*="tablet only"]:not([class*="large monitor"]),
  [class*="computer only"]:not([class*="large monitor"]),
  [class*="large monitor hidden"],
  [class*="widescreen monitor only"]:not([class*="large monitor"]),
  [class*="or lower hidden"]:not(.computer):not(.tablet):not(.mobile) {
    display: none !important;
  }
}
/* Widescreen Monitor */
@media only screen and (min-width: 1920px) {
  [class*="mobile only"]:not([class*="widescreen monitor"]),
  [class*="tablet only"]:not([class*="widescreen monitor"]),
  [class*="computer only"]:not([class*="widescreen monitor"]),
  [class*="large monitor only"]:not([class*="widescreen monitor"]),
  [class*="widescreen monitor hidden"],
  [class*="widescreen monitor or lower hidden"] {
    display: none !important;
  }
}

/* Buttons next to headers */

#inline-button {
  margin-top: 10px;
}


/* Prettify */
.pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.clo,.opn,.pun{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.kwd,.tag,.typ{font-weight:700}.str{color:#060}.kwd{color:#006}.com{color:#600;font-style:italic}.typ{color:#404}.lit{color:#044}.clo,.opn,.pun{color:#440}.tag{color:#006}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee}

/* JSON tree */
.json-tree-value {
overflow: auto !important;
text-overflow: unset !important;
}

.json-tree {
  padding-left: 10px;
}

#pacman {
  position: fixed;
  left: 45%;
  top: 40%;
  width: 100%;
  height: 100%;
}

.invert {
  filter:  brightness(0) invert(1);
}

/* For Tabs */
.tabs-component-tabs {
  padding-left: 0px;
  border: 0;
  align-items: stretch;
  display: flex;
  justify-content: flex-start;
  margin-bottom: -1px;
}
.tabs-component-panels {
  padding-left: 0px;
}

.tabs-component-tab {
  background-color: #fff;
  border: solid 1px #ddd;
  margin-right: .25em;
  transform: translateY(2px);
  transition: transform .3s ease;
}
.tabs-component-tab.is-active {
  border-bottom: solid 1px #fff;
  border-top: solid 2px #02AAEA;
  transform: translateY(0);
}

@media (min-width: 992px) {
  .column.price-chartz .ui.dimmer{
    width: calc(100% - 14px);
  }
}

.vertically-aligned {
  display: flex;
  align-items: center;
}

.disable-scrollbars::-webkit-scrollbar {
  width: 0px;
  background: transparent; /* Chrome/Safari/Webkit */
}

.disable-scrollbars {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE 10+ */
}

.ui.search.selection.dropdown > input.search {
  border: none !important;
}

.normal-text {
  color: black;
}

#usd-balance {
  font-weight: 700;
  font-size: 18px;
  color: green;
}

.cursor {
  cursor: pointer;
}

.vjs-tree-node.is-highlight, .vjs-tree-node:hover {
  background-color: transparent !important;
}