:root {

  --nb-color-blue: #3498DB;
  --nb-color-green: #2ECC71;
  --nb-color-red: #e73c37;
  --nb-color-grey: #9ca3af;
  --nb-color-white: #ECF0F1;


  --orange:#FF851B;
  --blue:#0074D9;
  --black:#111111;
  --yellow:#e8cb0f;
  --white:#f4f6f9;
  --dark-blue:#3c424f;

  --nz-main-color:#0aac96;
  --nz-main-color-hover: #0e806f;
  --green:#0ecb81;
  --red:#f6465d;

  --nz-light-text: #98aaba;

  --nz-bg-color-100: #131722;
  --nz-border-color:#3c424f;
  --nz-border-color-50: rgba(60, 66, 79, 0.5);
}
@tailwind base;
@tailwind components;
@tailwind utilities;

@font-face {
  font-family: 'Inter';
  src: url("../fonts/Inter-Light.ttf");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url("../fonts/Inter-Regular.ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url("../fonts/Inter-Medium.ttf");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url("../fonts/Inter-SemiBold.ttf");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url("../fonts/Inter-Bold.ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


.loaderSVG {
  width: 100px;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.loaderSVG__track {
  stroke: hsl(222.35deg 28.81% 23.14%);
  transition: stroke 0.3s;
}
.loaderSVG__track *{
  fill: transparent!important;
}
.loaderSVG__worm1,
.loaderSVG__worm2 {
  animation: worm1 2s linear infinite;
}
.loaderSVG__worm2 {
  animation-name: worm2;
}
@keyframes worm1 {
  from {stroke-dashoffset: 0;}
  50% {animation-timing-function: steps(1);stroke-dashoffset: -358;}
  50.01% {animation-timing-function: linear;stroke-dashoffset: 358;}
  to {stroke-dashoffset: 0;}
}
@keyframes worm2 {
  from {stroke-dashoffset: 358;}
  50% {stroke-dashoffset: 0;}
  to {stroke-dashoffset: -358;}
}

.sk-folding-cube{
  transform: none!important;
}



.flexNZ{
  display: flex!important;
}

.btn-nz-def{
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-width: max-content;
  cursor: pointer;
  transition: 0.4s;

  padding: 12px 40px;
  background: var(--nz-main-color)!important;

  color: white!important;
  text-align: center;
}
.btn-nz-def:hover{
  background: var(--nz-main-color-hover)!important;
}

@media screen {
  .btn-nz-def{
    padding: 8px 30px;
  }
}


html {
  margin  : 0;
  padding : 0;
}

body {
  margin      : 0;
  padding     : 0;
  /*font-family : Trebuchet MS,Tahoma,Arial,sans-serif;*/
  font-family : 'Inter',Arial,sans-serif;
  font-size   : 16px;
}

/* List style */

ul {
  margin  : 0;
  padding : 0;
}

ul > li {
  margin     : 0;
  padding    : 0;
  list-style : none;
}

/* Font style */

.nz-mono {
  font-family : 'Roboto Mono',
                'Roboto',
                monospace,
                sans-serif;
}

/* Scrollbar webkit */

::-webkit-scrollbar {
  width  : 5px;
  height : 5px;
}

::-webkit-scrollbar-button {
  width  : 0px;
  height : 0px;
}

::-webkit-scrollbar-thumb {
  border        : 0px none #ffffff;
  border-radius : 31px;
  background    : #343c4c;
}

::-webkit-scrollbar-thumb:hover {
  background : #343c4c;
}

::-webkit-scrollbar-thumb:active {
  background : #353c4c;
}

::-webkit-scrollbar-track {
  border        : 0px none #ffffff;
  border-radius : 50px;
  background    : #181f2c;
}

::-webkit-scrollbar-track:hover {
  background : #181f2c;
}

::-webkit-scrollbar-track:active {
  background : #181f2c;
}

::-webkit-scrollbar-corner {
  background : #181f2c;
}

/* Button */

.btn {
  display            : flex;
  -moz-appearance    : none;
  -o-appearance      : none;
  -webkit-appearance : none;
  width              : 107px;
  height             : 39px;
  color              : #fff;
  border             : none;
  border-radius      : 3px;
  background         : #363c4f;
  outline            : none;
  text-decoration    : none;
  align-items        : center;
  font-size          : 15px;
  justify-content    : center;
  cursor             : pointer;
}

.btn.btn-small {
  height: max-content;

  padding: 4px 8px;
  color: #fff;
  border-radius: 3px;
  background: #29c368;
  font-size: 12px;
}

.btn.btn-exsmall {
  width: 66px;
  font-size: 11px;
  height: 18px;
}

.btn.btn-xssmall {
  font-size: 12px;
  height: 25px;
}

.btn.btn-big {
  font-size: 15px;
  height: 41px;
  text-transform: uppercase;
}

.btn.btn-autowidth {
  width   : auto;
  padding : 4px 10px;
}

.btn:hover {
  background : #3f4559;
}

.btn.btn-orange {
  background : #ff7700;
}

.btn.btn-orange:hover {
  background : #fe8114;
}

.btn.btn-green {
  background: #26a054;
}

.btn.btn-blue {
  background: #066fdc;
}

.btn.btn-black {
  background: #000;
}

.btn.btn-red {
  background: #e30f0f;
}

.btn.btn-red:hover {
  background: #cf1010;
}

.btn.btn-green {
  background: #29c359;
}

.btn.btn-green:hover {
  background: #29c359;
}

.btn.btn-lightred {
  background: #db4931;
}



.btn-shadow.btn-blue {
  background : #006cff;
}

.btn-shadow.btn-blue:hover {
  background : #1461fe;
}

.btn-shadow {
  display            : flex;
  -moz-appearance    : none;
  -o-appearance      : none;
  -webkit-appearance : none;
  height             : 39px;
  padding            : 0px 21px;
  color              : #fff;
  border             : none;
  border-radius      : 3px;
  background         : #ff7700;
  outline            : none;
  box-shadow         : 0px 5px 15px 0px #ff770052;
  text-decoration    : none;
  align-items        : center;
  font-size          : 13px;
  font-weight        : 700;
  justify-content    : center;
  cursor             : pointer;
}

.btn-shadow:hover {
  background : #fe5a14;
}

.btn-shadow.btn-grey {
  background : #a6a7a7;
  box-shadow : 0px 5px 15px 0px #a6a7a752;
}

.btn-shadow.btn-grey:hover {
  background : #969798;
}

.btn-shadow.btn-black {
  background : #262626;
  box-shadow : 0px 5px 15px 0px #26262652;
}

.btn-shadow.btn-black:hover {
  background : #232323;
}

/* Loading */

.sk-folding-cube {
  position          : relative;
  width             : 40px;
  height            : 40px;
  margin            : 20px auto;
  -webkit-transform : rotateZ(45deg);
  transform         : rotateZ(45deg);
}

.sk-folding-cube .sk-cube {
  position          : relative;
  width             : 50%;
  height            : 50%;
  float             : left;
  -ms-transform     : scale(1.1);
  -webkit-transform : scale(1.1);
  transform         : scale(1.1);
}

.sk-folding-cube .sk-cube:before {
  content                  : '';
  position                 : absolute;
  top                      : 0;
  left                     : 0;
  width                    : 100%;
  height                   : 100%;
  background-color         : #333;
  -webkit-animation        : sk-foldCubeAngle 1.8s infinite linear both;
  animation                : sk-foldCubeAngle 1.8s infinite linear both;
  -ms-transform-origin     : 100% 100%;
  -webkit-transform-origin : 100% 100%;
  transform-origin         : 100% 100%;
}

.sk-folding-cube.sk-folding-cube-orange .sk-cube:before {
  background-color : #ff7700;
}

.sk-folding-cube.sk-folding-cube-white .sk-cube:before {
  background-color : #fff;
}

.sk-folding-cube .sk-cube2 {
  -webkit-transform : scale(1.1) rotateZ(90deg);
  transform         : scale(1.1) rotateZ(90deg);
}

.sk-folding-cube .sk-cube3 {
  -webkit-transform : scale(1.1) rotateZ(180deg);
  transform         : scale(1.1) rotateZ(180deg);
}

.sk-folding-cube .sk-cube4 {
  -webkit-transform : scale(1.1) rotateZ(270deg);
  transform         : scale(1.1) rotateZ(270deg);
}

.sk-folding-cube .sk-cube2:before {
  -webkit-animation-delay : 0.3s;
  animation-delay         : 0.3s;
}

.sk-folding-cube .sk-cube3:before {
  -webkit-animation-delay : 0.55s;
  animation-delay         : 0.55s;
}

.sk-folding-cube .sk-cube4:before {
  -webkit-animation-delay : 0.85s;
  animation-delay         : 0.85s;
}

@-webkit-keyframes sk-foldCubeAngle {
  0%,
  10% {
    opacity           : 0;
    -webkit-transform : perspective(140px) rotateX(-180deg);
    transform         : perspective(140px) rotateX(-180deg);
  }

  25%,
  75% {
    opacity           : 1;
    -webkit-transform : perspective(140px) rotateX(0deg);
    transform         : perspective(140px) rotateX(0deg);
  }

  90%,
  100% {
    opacity           : 0;
    -webkit-transform : perspective(140px) rotateY(180deg);
    transform         : perspective(140px) rotateY(180deg);
  }
}

@keyframes sk-foldCubeAngle {
  0%,
  10% {
    opacity           : 0;
    -webkit-transform : perspective(140px) rotateX(-180deg);
    transform         : perspective(140px) rotateX(-180deg);
  }

  25%,
  75% {
    opacity           : 1;
    -webkit-transform : perspective(140px) rotateX(0deg);
    transform         : perspective(140px) rotateX(0deg);
  }

  90%,
  100% {
    opacity           : 0;
    -webkit-transform : perspective(140px) rotateY(180deg);
    transform         : perspective(140px) rotateY(180deg);
  }
}

/* Other loading */
.spinner {
  width: 40px;
  height: 40px;
  margin: 100px auto;
  background-color: rgba(244, 246, 249,0.4);

  border-radius: 100%;
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  animation: sk-scaleout 1.0s infinite ease-in-out;
}

.spinner.spinner-dark {
  background-color:rgba(86, 86, 86, 0.4);
}

@-webkit-keyframes sk-scaleout {
  0% { -webkit-transform: scale(0) }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  } 100% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    opacity: 0;
  }
}

/* Chosen */

.chosen-container-single .chosen-single {
  height        : 40px;
  padding       : 0 0 0 12px;
  border        : 1px solid #e1e3e6;
  border-radius : 2px;
  background    : #fff;
  box-shadow    : none;
}

.chosen-container-single .chosen-single span {
  /*margin-top : 7px;*/
  font-size  : 15px;
}

.chosen-container-single .chosen-single div {
  top    : 8px;
  right  : 12px;
  width  : 10px;
  height : 25px;
}

/* Message */

section.nz-msg {
  display         : none;
  margin-bottom   : 15px;
  padding         : 12px 0px;
  color           : #fff;
  background      : #3ed064;
  text-align      : center;
  align-items     : center;
  justify-content : center;
  border-radius: 2px;
  box-shadow: 0px 2px 5px #00000036;
}

section.nz-msg.nz-msg-error {
  background : #e54747;
}

section.nz-msg.nz-msg-infos {
  background : #32373f;
}

section.nz-msg.nz-msg-warning {
  background : #ef6c00;
}

/* Auto fill */

input:-webkit-autofill,
input:-webkit-autofill:focus input:-webkit-autofill,
input:-webkit-autofill:hover,
select:-webkit-autofill,
select:-webkit-autofill:focus,
select:-webkit-autofill:hover,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus {
  -webkit-box-shadow : 0 0 0 30px white inset;
}

/* Dropzone */

.dz-preview {
  display : none;
}


/* Alert */

section.nz-notif-alt {
  z-index        : 99999999999;
  display        : flex;
  position       : absolute;
  bottom         : 80px;
  left           : 40px;
  flex-direction : column-reverse;
}

section.nz-notif-alt > div {
  display        : flex;
  /*width          : 300px;*/
  margin-top     : 10px;
  /*border-top     : 3px solid #22aa5a;*/
  /*background     : #29c368;*/
  /*box-shadow     : 0px 2px 5px 0px #00000052;*/
  flex-direction : column;
}

section.nz-notif-alt > div > header {
  display         : flex;
  padding         : 7px 7px 7px 10px;
  align-items     : center;
  justify-content : space-between;
}

section.nz-notif-alt > div > header > div {
  display         : flex;
  width           : 25px;
  height          : 25px;
  background      : rgba(0,0,0,0.1);
  align-items     : center;
  justify-content : center;
  cursor          : pointer;
}

section.nz-notif-alt > div > header > span {
  color       : #fff;
  font-weight : 500;
}

section.nz-notif-alt > div > header > div > svg {
  width  : 20px;
  height : 20px;
  fill   : #fff;
}

section.nz-notif-alt > div > div {
  padding : 10px;
  color   : #fff;
}

section.nz-notif-alt > div.nz-notif-alt-err {
  border-top-color : #bf1616;
  background       : #df2323;
}

section.nz-notif-alt > div.nz-notif-alt-crypto {
  display: flex; align-items: stretch;
}

section.nz-notif-alt > div.nz-notif-alt-crypto {
  background: #1d2435 !important;
  border-top: none !important;
  display: flex; align-items: center;
  flex-direction: row;
  height: 80px;
  padding: 15px 15px 15px 21px;
  box-sizing: border-box;
}

section.nz-notif-alt > div.nz-notif-alt-crypto > div:first-child {
  width: 32px; height: 32px;
  display: flex; justify-content: center; align-items: center;
  margin-right: 15px;
  padding: 0;
}

section.nz-notif-alt > div.nz-notif-alt-crypto > div:first-child > img {
  width: 100%; height: 100%; filter: invert(1) brightness(1);
}

section.nz-notif-alt > div.nz-notif-alt-crypto > div:last-child {
  position: relative;
  flex:1;
  padding: 0;
}

section.nz-notif-alt > div.nz-notif-alt-crypto > div:last-child > div.nz-notif-alt-crypto-close {
  position: absolute;
  top:-5px; right:-5px;
  fill:#fff;
  width: 15px; height: 15px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0.6;
}

section.nz-notif-alt > div.nz-notif-alt-crypto > div:last-child > div.nz-notif-alt-crypto-close:hover {
  opacity: 1;
}

section.nz-notif-alt > div.nz-notif-alt-crypto > div:last-child > div.nz-notif-alt-crypto-desc {
  display: flex; flex-direction: column;
  position: relative;
}

section.nz-notif-alt > div.nz-notif-alt-crypto > div:last-child > div.nz-notif-alt-crypto-desc > label {
  margin-bottom: 1px;
  font-size: 16px;
}

section.nz-notif-alt > div.nz-notif-alt-crypto > div:last-child > div.nz-notif-alt-crypto-desc > span {
  font-weight: 100;
  font-size: 21px;
}

section.nz-notif-alt > div.nz-notif-alt-crypto > div:last-child > div.nz-notif-alt-crypto-desc > i {
  font-size: 12px;
  text-transform: uppercase;
  margin-top: 4px;
  position: absolute;
  bottom: 0; right:0;
  opacity: 0.8;
}

section.nz-notif-alt > div.nz-notif-alt-crypto.nz-notif-alt-crypto-buy > div:last-child > div.nz-notif-alt-crypto-desc > span {
  color:#29c359;
}






/* Date picker */
.datepicker {
  z-index: 9999999999999 !important;
}

/* Loading screen */
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;

  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;

  z-index: 999999999999;
  position: fixed;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #181f2c;
  display: flex;
  justify-content: center; align-items: center;
  overflow: hidden;
}

.pace .pace-progress {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;

  max-width: 350px;
  position: fixed;
  z-index: 2000;
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  height: 5px;
  width: 100%;
  background: #29d;
  transform: none !important;
}

.pace.pace-inactive {
  display: none;
}

/* Cookie popup */
div.nz-cookie-approval {
  position: absolute;
  bottom: 20px; left:20px;
  width: 250px;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0px 5px 15px #00000021;
  z-index: 99999999;
  display: flex; flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
  display: none;
}

div.nz-cookie-approval > svg {
  width: 60px; height: 60px;
  margin: 10px 0px 20px 0px;
  fill:#000;
}

div.nz-cookie-approval > span {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
}

div.nz-cookie-approval > p {
  text-align: center;
  font-size: 13px;
  opacity: 0.7;
  margin: 17px 0px; padding: 0;
}

/* Infos popup */
section.nz-adm-notif-popup {
  position: absolute;
  top:0; left:0; right:0;
  bottom: 0;
  z-index: 999999;
  display: flex; justify-content: center; align-items: center;
  background: rgba(0, 0, 0, 0.35);
}

section.nz-adm-notif-popup > section {
  width: 500px;
  height: 600px;
  border-radius  : 2px;
  background     : #fff;
  box-shadow     : 0px 1px 3px 0px #10141dc2;
  box-sizing: border-box;
  padding: 15px;
  overflow: auto;
}

section.nz-adm-notif-popup > section > h2 {
  text-align: center;
  margin: 15px 0px; padding: 0;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
}

section.nz-adm-notif-popup > section > div {
  color:#555;
}

section.nz-adm-notif-popup > section > footer {
  display: flex; justify-content: flex-end;
  margin-top: 20px;
}

/* Contact zone */
section.nz-contact-zone {
  position: absolute;
  z-index: 99999999;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.15);
  display: flex; justify-content: center; align-items: center;
}

section.kr-contact-zone > section {
  width: 750px;
  height: 400px;
  background: #f4f6f9;
  display: flex; align-items: stretch;
  box-shadow: 0px 2px 5px #00000061;
}

section.nz-contact-zone > section > div {
  flex:1;
}

section.nz-contact-zone > section > div.nz-contact-zone-image {
  background-image: url('../img/other/contact.png');
}

section.nz-contact-zone > section > div:last-child {
  display: flex; flex-direction: column;
  align-items: stretch;
}

section.nz-contact-zone > section > div:last-child > header {
  display: flex; justify-content: flex-end; align-items: center;
  padding: 10px;
  margin-bottom: 10px;
}

section.nz-contact-zone > section > div:last-child > header > div {
  width: 20px; height: 20px;
  display: flex; justify-content: center; align-items: center;
  cursor: pointer;
}

section.nz-contact-zone > section > div:last-child > header > div > svg {
  width: 100%; height: 100%;
}

section.nz-contact-zone > section > div:last-child > h2 {
  font-weight: 500;
  margin: 0; padding: 0;
  font-size: 17px;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-right: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 5px;
}

section.nz-contact-zone > section > div:last-child > ul {
  margin-bottom: 20px;
  padding-right: 15px;
}

section.nz-contact-zone > section > div:last-child > ul > li {
  display: flex; justify-content: space-between;
  align-items: flex-start;
  font-size: 14px;
  margin-bottom: 10px;
}

section.nz-contact-zone > section > div:last-child > ul > li > span:first-child {
  text-transform: uppercase;
  font-weight: 500;
}
section.nz-contact-zone > section > div:last-child > ul > li > span:last-child {
  text-align: right;
}

section.nz-contact-zone > section > div:last-child > ul > li a {
  color:#000;
}

/* Lightbox */
.lightboxOverlay {
  z-index: 9999999 !important;
}

.lightbox {
  z-index: 9999999999999999 !important;
}

/* Datepicker */
.daterangepicker {
  position: absolute;
  color: inherit;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #ddd;
  width: 278px;
  max-width: none;
  padding: 0;
  margin-top: 7px;
  top: 100px;
  left: 20px;
  z-index: 3001;
  display: none;
  font-family: arial;
  font-size: 15px;
  line-height: 1em;
}

.daterangepicker:before, .daterangepicker:after {
  position: absolute;
  display: inline-block;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: '';
}

.daterangepicker:before {
  top: -7px;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #ccc;
}

.daterangepicker:after {
  top: -6px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
}

.daterangepicker.opensleft:before {
  right: 9px;
}

.daterangepicker.opensleft:after {
  right: 10px;
}

.daterangepicker.openscenter:before {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.openscenter:after {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.opensright:before {
  left: 9px;
}

.daterangepicker.opensright:after {
  left: 10px;
}

.daterangepicker.drop-up {
  margin-top: -7px;
}

.daterangepicker.drop-up:before {
  top: initial;
  bottom: -7px;
  border-bottom: initial;
  border-top: 7px solid #ccc;
}

.daterangepicker.drop-up:after {
  top: initial;
  bottom: -6px;
  border-bottom: initial;
  border-top: 6px solid #fff;
}

.daterangepicker.single .daterangepicker .ranges, .daterangepicker.single .drp-calendar {
  float: none;
}

.daterangepicker.single .drp-selected {
  display: none;
}

.daterangepicker.show-calendar .drp-calendar {
  display: block;
}

.daterangepicker.show-calendar div.drp-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
.daterangepicker .drp-buttons .drp-selected {
  font-size: 1.2em;
  font-weight: bold;
  vertical-align: middle;
}

.daterangepicker .drp-buttons .btn {
  border: 1px solid transparent;
  color: #333;

}
.daterangepicker .drp-buttons .btn.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.daterangepicker .drp-buttons .btn.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.daterangepicker .drp-buttons .btn.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.daterangepicker .drp-buttons .btn.btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}

.daterangepicker.auto-apply .drp-buttons {
  display: none;
}

.daterangepicker .drp-calendar {
  display: none;
  max-width: 270px;
}

.daterangepicker .drp-calendar.left {
  padding: 8px 0 8px 8px;
}

.daterangepicker .drp-calendar.right {
  padding: 8px;
}

.daterangepicker .drp-calendar.single .calendar-table {
  border: none;
}

.daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span {
  color: #fff;
  border: solid black;
  border-width: 0 2px 2px 0;
  border-radius: 0;
  display: inline-block;
  padding: 3px;
}

.daterangepicker .calendar-table .next span {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.daterangepicker .calendar-table .prev span {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  min-width: 32px;
  width: 32px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

.daterangepicker .calendar-table {
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: #fff;
}

.daterangepicker .calendar-table table {
  width: 100%;
  margin: 0;
  border-spacing: 0;
  border-collapse: collapse;
}

.daterangepicker td.available:hover, .daterangepicker th.available:hover {
  background-color: #eee;
  border-color: transparent;
  color: inherit;
}

.daterangepicker td.week, .daterangepicker th.week {
  font-size: 80%;
  color: #ccc;
}

.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
  background-color: #fff;
  border-color: transparent;
  color: #999;
}

.daterangepicker td.in-range {
  background-color: #ebf4f8;
  border-color: transparent;
  color: #000;
  border-radius: 0;
}

.daterangepicker td.start-date {
  border-radius: 4px 0 0 4px;
}

.daterangepicker td.end-date {
  border-radius: 0 4px 4px 0;
}

.daterangepicker td.start-date.end-date {
  border-radius: 4px;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
  background-color: #357ebd;
  border-color: transparent;
  color: #fff;
}

.daterangepicker th.month {
  width: auto;
}

.daterangepicker td.disabled, .daterangepicker option.disabled {
  color: #999;
  cursor: not-allowed;
  text-decoration: line-through;
}

.daterangepicker select.monthselect, .daterangepicker select.yearselect {
  font-size: 12px;
  padding: 1px;
  height: auto;
  margin: 0;
  cursor: default;
}

.daterangepicker select.monthselect {
  margin-right: 2%;
  width: 56%;
}

.daterangepicker select.yearselect {
  width: 40%;
}

.daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
  width: 50px;
  margin: 0 auto;
  background: #eee;
  border: 1px solid #eee;
  padding: 2px;
  outline: 0;
  font-size: 12px;
}

.daterangepicker .calendar-time {
  text-align: center;
  margin: 4px auto 0 auto;
  line-height: 30px;
  position: relative;
}

.daterangepicker .calendar-time select.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.daterangepicker .drp-buttons {
  clear: both;
  text-align: right;
  padding: 8px;
  border-top: 1px solid #ddd;
  display: none;
  line-height: 12px;
  vertical-align: middle;
}

.daterangepicker .drp-selected {
  display: inline-block;
  font-size: 12px;
  padding-right: 8px;
}

.daterangepicker .drp-buttons .btn {
  margin-left: 8px;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
}

.daterangepicker.show-ranges .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker .ranges {
  float: none;
  text-align: left;
  margin: 0;
}

.daterangepicker.show-calendar .ranges {
  margin-top: 8px;
}

.daterangepicker .ranges ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.daterangepicker .ranges li {
  font-size: 12px;
  padding: 8px 12px;
  cursor: pointer;
}

.daterangepicker .ranges li:hover {
  background-color: #eee;
}

.daterangepicker .ranges li.active {
  background-color: #08c;
  color: #fff;
}

/*  Larger Screen Styling */
@media (min-width: 564px) {
  .daterangepicker {
    width: auto; }
    .daterangepicker .ranges ul {
      width: 140px; }
    .daterangepicker.single .ranges ul {
      width: 100%; }
    .daterangepicker.single .drp-calendar.left {
      clear: none; }
    .daterangepicker.single.ltr .ranges, .daterangepicker.single.ltr .drp-calendar {
      float: left; }
    .daterangepicker.single.rtl .ranges, .daterangepicker.single.rtl .drp-calendar {
      float: right; }
    .daterangepicker.ltr {
      direction: ltr;
      text-align: left; }
      .daterangepicker.ltr .drp-calendar.left {
        clear: left;
        margin-right: 0; }
        .daterangepicker.ltr .drp-calendar.left .calendar-table {
          border-right: none;
          border-top-right-radius: 0;
          border-bottom-right-radius: 0; }
      .daterangepicker.ltr .drp-calendar.right {
        margin-left: 0; }
        .daterangepicker.ltr .drp-calendar.right .calendar-table {
          border-left: none;
          border-top-left-radius: 0;
          border-bottom-left-radius: 0; }
      .daterangepicker.ltr .drp-calendar.left .calendar-table {
        padding-right: 8px; }
      .daterangepicker.ltr .ranges, .daterangepicker.ltr .drp-calendar {
        float: left; }
    .daterangepicker.rtl {
      direction: rtl;
      text-align: right; }
      .daterangepicker.rtl .drp-calendar.left {
        clear: right;
        margin-left: 0; }
        .daterangepicker.rtl .drp-calendar.left .calendar-table {
          border-left: none;
          border-top-left-radius: 0;
          border-bottom-left-radius: 0; }
      .daterangepicker.rtl .drp-calendar.right {
        margin-right: 0; }
        .daterangepicker.rtl .drp-calendar.right .calendar-table {
          border-right: none;
          border-top-right-radius: 0;
          border-bottom-right-radius: 0; }
      .daterangepicker.rtl .drp-calendar.left .calendar-table {
        padding-left: 12px; }
      .daterangepicker.rtl .ranges, .daterangepicker.rtl .drp-calendar {
        text-align: right;
        float: right; } }
@media (min-width: 730px) {
  .daterangepicker .ranges {
    width: auto; }
  .daterangepicker.ltr .ranges {
    float: left; }
  .daterangepicker.rtl .ranges {
    float: right; }
  .daterangepicker .drp-calendar.left {
    clear: none !important; } }

    /*  sweetalert2 */
    body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
      overflow-y: hidden;
    }

    body.swal2-shown.swal2-height-auto {
      height: 100% !important;
    }

/* Selectize */
.selectize-input {
  box-shadow: none !important;
}

.selectize-control.multi .selectize-input > div {
  background: #fe8114 !important;
  padding: 4px 7px !important;
  color:#fff !important;
  border-radius: 2px;
}

/* Pagination */

ul.my-pagination {
  display: flex;
  box-sizing: border-box;
  width: 30%;
  margin: 0 auto;
  /*padding: 15px;*/
  /*margin-bottom: 20px;*/
  padding-top: 0px;
  align-items: center;
}

ul.my-pagination>li {
  display: flex;
  padding: 8px 5px;
  background: #fff;
  align-items: center;
  flex: 1;
  justify-content: center;
  cursor: pointer;
}

ul.my-pagination>li:hover {
  background: #f8f8f8;
}

/*ul.my-pagination>li.my-pagination-selected {*/
/*  background: #f5f5f5;*/
/*}*/

.my-pagination {
  display: inline-block;
  background-color: #fff;
}

.my-pagination li {
  color: black;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  border: 1px solid #ddd;
  list-style-type: none;
}

.my-pagination li.active {
  background-color: #4CAF50;
  color: white;
  border: 1px solid #4CAF50;
}

.my-pagination li:hover:not(.active) {background-color: #ddd;}

.sorting {
  cursor: pointer;
  text-align: center;
}
.sorting.active {
  background-color: #ccc;
}

th.sorting:after {
  content: url(/icon/other/sort.svg);
  display: inline-block;
  height: 14px;
  width: 14px;
  padding-left: 3px;
}

th.sorting.asc:after {
  content: url(/icon/other/sort_asc.svg);
}
th.sorting.desc:after {
  content: url(/icon/other/sort_desc.svg);
}





.alert>.start-icon {
  margin-right: 0;
  min-width: 20px;
  text-align: center;
}

.alert>.start-icon {
  margin-right: 5px;
}

.greencross
{
  font-size:18px;
  color: #25ff0b;
  text-shadow: none;
}

.alert-simple.alert-success
{
  border: 1px solid rgba(36, 241, 6, 0.46);
  background-color: rgba(7, 149, 66, 0.12156862745098039);
  box-shadow: 0px 0px 2px #259c08;
  color: #0ad406;
  text-shadow: 2px 1px #00040a;
  transition:0.5s;
  cursor:pointer;
}
.alert-success:hover{
  background-color: rgba(7, 149, 66, 0.35);
  transition:0.5s;
}



.alert-simple.alert-danger
{
  border: 1px solid rgba(241, 6, 6, 0.81);
  background-color: rgba(220, 17, 1, 0.16);
  box-shadow: 0px 0px 2px #ff0303;
  color: #ff0303;
  text-shadow: 1px 1px #00040a;
  transition:0.5s;
  cursor:pointer;
  /*font-size: 17px;*/
}

.alert-danger:hover
{
  background-color: rgba(220, 17, 1, 0.33);
  transition:0.5s;
}

.danger
{
  font-size: 18px;
  color: #ff0303;
  text-shadow: none;
}


.alert:before {
  content: '';
  position: absolute;
  width: 0;
  height: calc(100% - 44px);
  border-left: 1px solid;
  border-right: 2px solid;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
  left: 0;
  top: 50%;
  transform: translate(0,-50%);
  height: 20px;
}

.fa-times
{
  -webkit-animation: blink-1 2s infinite both;
  animation: blink-1 2s infinite both;
}


/**
 * ----------------------------------------
 * animation blink-1
 * ----------------------------------------
 */
@-webkit-keyframes blink-1 {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes blink-1 {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 6px;
  color: inherit;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

.text-left {
  text-align: left!important;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-dismissible {
  padding-right: 4rem;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  padding-right: 30px;
}

.fade {
  transition: opacity .15s linear;
}

span.small-span {
  text-transform: lowercase!important;
}

.blockfolio-info-table section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #363f54;
}

#contactModal {
  margin-top: 60px;
}



body>header>div>div>ul.nz-top-graphlist>li>div.nz-top-graphlist-inf>label.pair{
  font-size: 14px!important;
  color: white!important;
  font-weight: 700!important;
  display: block!important;
  line-height: 1!important;
}
body>header>div>div>ul.nz-top-graphlist>li>div.nz-top-graphlist-inf>label.cex{
  font-size: 10px!important;
  font-weight: 700!important;
  display: block!important;
  line-height: 1!important;
  margin-bottom: 0!important;
}
body>header>div>div>ul.nz-top-graphlist>li>div.nz-top-graphlist-inf>.prschnge{
  position: absolute;
  right: 16px;
  bottom: 5px;
  font-size: 10px!important;
  font-weight: 700!important;
  display: block!important;
  line-height: 1!important;
}

section.nz-search>ul>li mark{
  color: var(--nz-main-color)!important;
}
section.nz-notif-alt{
  /*pointer-events: none!important;*/
}

section.nz-balance-credit>section>section.nz-balance-credit-cblance>section>h3{
  font-weight: 700!important;
}
section.nz-balance-credit>section>section.nz-balance-credit-cblance>section>img{
  filter: none!important;
  opacity: 1!important;
}
section.nz-balance-credit>section>section.nz-balance-credit-cblance>section>div.btn>span:first-child{
  font-size: 16px!important;
}
section.nz-balance-credit>section>section.nz-balance-credit-cblance>section>label{
  font-size: 12px!important;
  opacity: 0.7!important;
  text-transform: initial!important;
  font-weight: 300!important;
}
section.nz-balance-credit .btn.btn-green{
  background: var(--nz-main-color)!important;
}
body>header>div>div>div.nz-wallet-top>section>div.nz-wallet-top-change>ul>li>div>svg{
  transform: scale(0.7) !important;
  margin: 0 5px 0 0 !important;
}
body>header>div>div>div.nz-wallet-top>section>div.nz-wallet-top-change>ul>li>div{
  align-items: flex-start!important;
}

/* MOBILE */
/* MOBILE */
/* MOBILE */
/* MOBILE */
/* MOBILE */

@media screen and (min-width: 769px){
  .mobileNavBottom,
  .mobileNavLeft{
    display: none!important;
  }
  .nz-addgraph-dashboard span{
    display: none!important;
  }

  .mobbtndd{
    display: none!important;
  }
}
@media screen and (max-height: 500px){
  .nz-leftside.nz-leftside-hide .nz-infoscurrencylf{
    display: none!important;
  }
}
@media screen and (max-width: 768px){
  /* TEMP*/
  /* TEMP*/
  /* TEMP*/
  /* TEMP*/
  /* TEMP*/
  .nz-leftnav.nz-leftnav-PC{
    display: none;
  }
  .nz-leftside.nz-leftside-hide .nz-infoscurrencylf{
    display: none!important;
  }
  /* MOB MENU */
  /* MOB MENU */
  /* MOB MENU */
  /* MOB MENU */
  /* MOB MENU */
  .mobileNavBottom{
    position: fixed;
    z-index: 11000;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #131722;
    border-top: 1px solid #777777;
  }
  .mobileNavBottom__list{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mobileNavBottom__item{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 15px 10px;
    border-right: 1px solid #232631;
  }
  .mobileNavBottom__item span{
    display: block;
    padding-top: 4px;
    font-size: 10px;
    line-height: 1;
    text-align: center;
    color: #c2c2c2;
    font-weight: 700;
    text-transform: uppercase;
  }
  .mobileNavBottom__item svg *{
    fill: #e8e8e8;
  }
  .mobileNavLeft{
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10000;
  }
  .mobileNavLeft__list{
    background: #131722;
    border-right: 1px solid #777777;
    height: 100vh;
    width: 20vw;
    overflow: auto;
    padding-bottom: 70px;
  }
  .mobileNavLeft__item{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 15px 10px;
    border-bottom: 1px solid #232631;
    position: relative;
  }
  .mobileNavLeft__item .nz-leftnav-bubble{
    position: absolute;
    top: 7px;
    right: 25px;
    background: var(--nz-main-color);
    border-radius: 3px;
    color: #ffffff;
    font-size: 10px;
    padding: 2px 3px;
  }
  .mobileNavLeft__item span{
    display: block;
    padding-top: 4px;
    font-size: 10px;
    line-height: 1;
    text-align: center;
    color: #c2c2c2;
    font-weight: 700;
    text-transform: uppercase;
  }
  /* PROFILE RIGHT TOP BLOCK */
  /* PROFILE RIGHT TOP BLOCK */
  /* PROFILE RIGHT TOP BLOCK */
  /* PROFILE RIGHT TOP BLOCK */
  /* PROFILE RIGHT TOP BLOCK */
  body>header>div>div>div.nz-wallet-top{
    width: max-content!important;
  }
  body>header>div>div>div.nz-wallet-top>div.nz-wallet-top-real{
    min-width: unset!important;
  }
  body>header>div>div>div.nz-wallet-top>div>svg{
    display: none!important;
  }
  body>header>div>div>div.nz-wallet-top>div.nz-wallet-top-real{
    min-width: unset!important;
  }
  body>header>div>div>div.nz-wallet-top>div>div>span:first-child{
    color: white!important;
    font-size: 10px!important;
    white-space: nowrap!important;
  }
  body>header>div>div>div.nz-wallet-top>div>div>span.nz-wallet-top-ammount{
    font-size: 16px!important;
    line-height: 1!important;
    white-space: nowrap!important;
  }
  body>header>div>div>div.nz-wallet-top>div>div>label{
    color: white!important;
    margin: 0!important;
    white-space: nowrap!important;
  }
  body>header>div>div>div.nz-account{
    padding: 0!important;
    width: 35px!important;
    min-width: 35px!important;
  }
  .nz-addgraph-dashboard{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 45px;
    padding: 5px;
  }
  /* DASHBOARD */
  /* DASHBOARD */
  /* DASHBOARD */
  /* DASHBOARD */
  /* DASHBOARD */
  section.nz-dashboard{
    max-width: 100% !important;
  }
  /* CALC */
  /* CALC */
  /* CALC */
  /* CALC */
  /* CALC */
  .nz-calculatorside{
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
  }
  section.nz-calculatorside > header > span{
    font-size: 20px!important;
  }
  section.nz-calculatorside > section > section > div > input[type="text"]{
    font-size: 20px!important;
    width: 120px!important;
  }
  /* TOP BAR + MARKET ADD */
  /* TOP BAR + MARKET ADD */
  /* TOP BAR + MARKET ADD */
  /* TOP BAR + MARKET ADD */
  /* TOP BAR + MARKET ADD */
  section.nz-searchpop.nz-searchpop-show{
    left: 0!important;
    top: 55px!important;
    width: 100% !important;
    height: calc(100vh - 55px)!important;
  }
  div.nz-search-field-content div.nz-search-field-content-bicon>input[type="text"]{
    font-size: 18px !important;
  }
  div.nz-search-field-content div.nz-search-field-content-bicon{
    height: max-content !important;
  }
  div.nz-search-field-content div.nz-search-field-content-bicon>input[type="text"]{
    height: 35px !important;
  }
  div.nz-search-field-content div.nz-search-field-content-bicon>div{
    padding: 5px !important;
    width: 35px !important;
    height: 35px !important;
  }
  div.nz-search-field-content div.nz-search-field-content-bicon>svg{
    width: 18px;
    height: 18px;
  }
  section.nz-searchpop section.nz-search>ul{
    height: calc(100vh - 55px - 35px - 30px);
  }
  /* TOP BAR + MARKET SELECT */
  /* TOP BAR + MARKET SELECT */
  /* TOP BAR + MARKET SELECT */
  /* TOP BAR + MARKET SELECT */
  /* TOP BAR + MARKET SELECT */
  .nz-top-graphlist{
    align-self: flex-start!important;
    display: flex!important;
    flex-direction: column!important;
    height: 42px!important;
    border: 1px solid #747884!important;

    min-width: unset!important;
    width: max-content!important;
    padding: 0 40px 0 0!important;
    margin: 5px 0 5px 15px!important;
    overflow: hidden!important;
    align-items: stretch!important;
    position: relative!important;
    background: #171e32!important;
  }
  .nz-top-graphlist.open{
    height: max-content!important;
  }
  .nz-top-graphlist .mobbtndd{
    position: absolute!important;
    right: 0!important;
    top: 0!important;
    width: 40px!important;
    height: 41px!important;
    cursor: pointer!important;
    z-index: 5!important;
    padding: 0!important;
    min-width: unset!important;
    border-left: 1px solid #747884 !important;
    border-bottom: 1px solid #747884 !important;
  }
  body>header>div>div>div.nz-addgraph-dashboard{
    border-right: 1px solid #747884 !important;
  }
  .nz-top-graphlist .mobbtndd:before{
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: 50% !important;
    top: 46% !important;
    transform: translate(-50%,-50%)  rotate(45deg) !important;
    width: 7px !important;
    height: 7px !important;
    border: 1px solid white !important;
    border-left: none !important;
    border-top: none !important;
    z-index: 3 !important;
    pointer-events: none !important;
    transition: 0.4s !important;
    border-radius: 0!important;
  }
  .nz-top-graphlist .mobbtndd:after{
    display: none!important;
  }
  .nz-top-graphlist .mobbtndd.open:before{
    transform: translate(-50%,-20%)  rotate(-135deg) !important;
  }
  body>header>div>div>ul.nz-top-graphlist>li{
    height: auto!important;
    width: auto!important;
    margin: 0!important;
    padding: 9px 15px 5px!important;
    align-items: flex-start!important;
    background: #171e32!important;
    border: none!important;
  }
  body>header>div>div>ul.nz-top-graphlist>li>div.nz-top-graphlist-closeb{
    display: block!important;
  }
  body>header>div>div>ul.nz-top-graphlist>li.nz-top-graphlist-item-selected>div>svg, body>header>div>div>ul.nz-top-graphlist>li.nz-top-graphlist-item-view>div>svg{
    margin: 0!important;
    width: 16px!important;
  }
  .nz-dash-pan-cry{
    overflow: auto!important;
    padding-bottom: 90px!important;
    height: calc(100vh - 55px)!important;
  }
  div.nz-dash-pan-cry > div.nz-dash-pan-action{
    width: 100% !important;
    height: max-content!important;
    padding-bottom: 100px!important;
    border: none!important;
  }
  section.nz-leftside>div.nz-leftside-hide-controller>svg{
    background: var(--nz-main-color)!important;
    overflow: visible!important;
    height: 38px!important;
    fill: #fff!important;
    width: 15px!important;
  }

  .nz-leftside{
    position: fixed;
    left: 0!important;
    top: 0!important;
    bottom: unset!important;
    /*width: 100%!important;*/
    height: calc(100% - 68px)!important;
  }

  .nz-dashboard{

    overflow: auto;
  }

  .nz-balance-view{
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .nz-marketcoinlist{
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .nz-marketlist:not(.nz-marketlist-nofixwidth){
    min-width: 1150px;
  }
  .nz-marketlist.nz-marketlist-880{
    min-width: 880px;
  }
  .nz-marketlist-header{
    z-index: 3;
  }
  .nz-marketlist-scroll{
    overflow: auto;
    height: 100%;
  }
  .nz-marketlist-scroll::-webkit-scrollbar {
    width: 10px!important;
    height: 10px!important;
  }

  /* Track */
  .nz-marketlist-scroll::-webkit-scrollbar-track {
    background: #2e3648;
  }

  /* Handle */
  .nz-marketlist-scroll::-webkit-scrollbar-thumb {
    background: var(--nz-main-color)!important;
  }

  /* Handle on hover */
  .nz-marketlist-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--nz-main-color)!important;
  }
  .nz-dashboard{
    height: calc(100vh - 69px - 60px) !important;
  }
  .nz-marketlist-header{
    position: sticky;
    left: 0;
    top: -1px;
    width: 100%;
  }
  .nz-marketlist-header .nz-marketlist-n{
    /*padding-left: 10px;*/
  }
  .nz-marketlist-header .nz-marketlist-n:nth-child(2){
    padding-left: 3px;
  }
  .nz-marketlist{
    position: relative;
  }

  .nz-marketlist-item *{
    font-size: 11px!important;
  }

  div.nz-marketcoinlist > nav > ul > li,
  div.nz-heatmap > nav > ul > li{
    padding: 5px;
    font-size: 13px;
    white-space: nowrap;
  }
  div.nz-marketcoinlist > nav, div.nz-heatmap > nav{
    margin-bottom: 3px!important;
  }
  div.nz-marketa{
    min-width: 830px;
  }


  section.nz-balance-credit>section>section.nz-balance-credit-cblance{
    flex-direction: column;
    align-items: center;
  }
  section.nz-balance-credit>section>section.nz-balance-credit-cblance>section{
    width: calc(100% - 20px)!important;
    padding: 20px!important;
    border: 1px solid rgba(255,255,255,0.4)!important;
    border-radius: 10px!important;
    margin: 10px!important;
  }
  section.nz-balance-credit>section>section.nz-balance-credit-cblance>section>img{
    margin: 0 0 10px!important;
    width: 40px!important;
    height: 40px!important;
  }
  section.nz-balance-credit>section>section.nz-balance-credit-cblance>section>div.btn{
    margin-top: 10px!important;
  }

  body>header>div>div>div.nz-wallet-top>section>div.nz-wallet-top-resum{
    height: 100% !important;
    padding: 18px!important;
  }
  body>header>div>div>div.nz-wallet-top>section>div>h3{
    font-size: 10px!important;
    font-weight: 700!important;
    margin-bottom: 10px!important;
  }
  body>header>div>div>div.nz-wallet-top>section>div.nz-wallet-top-resum>ul>li{
    font-size: 11px!important;
  }
  body>header>div>div>div.nz-wallet-top>section>div.nz-wallet-top-resum>div{
    text-align: left!important;
    font-size: 10px!important;
    font-weight: 500!important;
    opacity: 1!important;
    color:  var(--nz-main-color)!important;
  }
  body>header>div>div>div.nz-wallet-top>section>div.nz-wallet-top-resum{
    width: 180px!important;
  }
  body>header>div>div>div.nz-wallet-top>section>div.nz-wallet-top-change{
    padding: 18px!important;
  }
  body>header>div>div>div.nz-wallet-top>section>div.nz-wallet-top-change>h3{
    align-items: flex-start!important;
  }
  body>header>div>div>div.nz-wallet-top>section>div.nz-wallet-top-change>ul>li{
    flex-direction: column!important;
    align-items: flex-start!important;
  }
  body>header>div>div>div.nz-wallet-top>section>div.nz-wallet-top-change>ul>li>section{
    margin-top: 10px;
    padding-left: 28px;
  }
  div.nz-marketa{
    padding-bottom: 110px!important;
  }
  .nz-marketlist-header .nz-marketlist-cellnumber{
    width: 100%;
  }
  .nz-marketlist-header .nz-marketlist-cellnumber:nth-last-child(1){
    min-width: 165px;
  }

  div.nz-dash-pan-cry > div.nz-dash-pan-graph.nz-dash-pan-graph-trading-a{
    width: 100% !important;
    position: static!important;
    display: block!important;
    height: 400px!important;
  }
  div.nz-dash-pan-cry > div.nz-dash-pan-graph.nz-dash-pan-graph-trading-a > div:nth-child(1){
    width: 100% !important;
    position: static!important;
    display: block!important;
    height: 400px!important;
  }
  /*div.nz-dash-pan-cry > div.nz-dash-pan-graph.nz-dash-pan-graph-trading-a > div:nth-child(2){*/
  /*  width: 100% !important;*/
  /*  position: static!important;*/
  /*  display: block!important;*/
  /*  height: max-content!important;*/
  /*}*/
  div.nz-dash-pan-cry > div.nz-dash-pan-graph.nz-dash-pan-graph-trading-a > div canvas{
    width: 100% !important;
    position: static!important;
    display: block!important;
    height: 400px!important;
  }

  div.nz-dash-pan-cry>div.nz-dash-pan-action{
    position: static!important;
  }
  /*.nz-dash-orderlistpassed{*/
  /*  display: none!important;*/
  /*}*/
}

@media screen and (min-width: 769px){
  .nz-dashboard{
    max-width: calc(100vw - 274px - 74px);
    width: calc(100vw - 274px - 74px);
    /*overflow: auto;*/
  }

  .nz-balance-view{
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .nz-marketlist:not(.nz-marketlist-nofixwidth){
    min-width: 1150px;
  }
  .nz-marketlist.nz-marketlist-880{
    min-width: 880px;
  }
  .nz-marketlist-scroll{
    overflow: auto;
    height: 100%;
  }
  .nz-marketlist-scroll::-webkit-scrollbar {
    width: 10px!important;
    height: 10px!important;
  }

  /* Track */
  .nz-marketlist-scroll::-webkit-scrollbar-track {
    background: #2e3648;
  }

  /* Handle */
  .nz-marketlist-scroll::-webkit-scrollbar-thumb {
    background: var(--nz-main-color)!important;
  }

  /* Handle on hover */
  .nz-marketlist-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--nz-main-color)!important;
  }
}






.nz-admin-container {

}

/* Alert New */

.alert .close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .2;
  margin-left: 15px;
}

.alert .close:hover,.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: .5;
}

.alert button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert h4 {
  margin-top: 0;
  color: inherit;
}

.alert .alert-link {
  font-weight: bold;
}

.alert>p,.alert>ul {
  margin-bottom: 0;
}

.alert>p+p {
  margin-top: 5px;
}

.alert.alert-dismissable {
  padding-right: 35px;
}

.alert.alert-dismissable .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}

.alert.alert-success hr {
  border-top-color: #c9e2b3;
}

.alert.alert-success .alert-link {
  color: #2b542c;
}

.alert.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}

.alert.alert-info hr {
  border-top-color: #a6e1ec;
}

.alert.alert-info .alert-link {
  color: #245269;
}

.alert.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}

.alert.alert-warning hr {
  border-top-color: #f7e1b5;
}

.alert.alert-warning .alert-link {
  color: #66512c;
}

.alert.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}

.alert.alert-danger hr {
  border-top-color: #e4b9c0;
}

.alert.alert-danger .alert-link {
  color: #843534;
}

.alert {
  border-radius: 0;
  -webkit-border-radius: 0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.11);
}

.alert .sign {
  font-size: 20px;
  vertical-align: middle;
  margin-right: 5px;
  text-align: center;
  width: 25px;
  display: inline-block;
}

.alert.alert-success {
  background-color: #dbf6d3;
  border-color: #aed4a5;
  color: #569745;
}

.alert.alert-info {
  background-color: #d9edf7;
  border-color: #98cce6;
  color: #3a87ad;
}

.alert.alert-warning {
  background-color: #fcf8e3;
  border-color: #f1daab;
  color: #c09853;
}

.alert.alert-danger {
  background-color: #f2dede;
  border-color: #e0b1b8;
  color: #b94a48;
}

.alert.alert-white {
  background-image: linear-gradient(to bottom,#FFFFFF,#F9F9F9);
  border-top-color: #d8d8d8;
  border-bottom-color: #bdbdbd;
  border-left-color: #cacaca;
  border-right-color: #cacaca;
  color: #404040;
  padding-left: 61px;
  position: relative;
}

.alert.alert-white .icon {
  text-align: center;
  width: 45px;
  /*height: 100%;*/
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  border: 1px solid #bdbdbd;
}

.alert.alert-white .icon:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  display: block;
  content: '';
  width: 10px;
  height: 10px;
  border: 1px solid #bdbdbd;
  position: absolute;
  border-left: 0;
  border-bottom: 0;
  top: 50%;
  right: -6px;
  margin-top: -5px;
  background: #fff;
}
.alert.alert-white.rounded {
  border-radius: 3px;
  -webkit-border-radius: 3px;
}

.alert.alert-white.rounded .icon {
  border-radius: 3px 0 0 3px;
  -webkit-border-radius: 3px 0 0 3px;
}

.alert.alert-white .icon i {
  font-size: 20px;
  color: #FFF;
  left: 12px;
  margin-top: -10px;
  position: absolute;
  top: 50%;
}

.alert.alert-white.alert-danger .icon,
.alert.alert-white.alert-danger .icon:after {
  border-color: #ca452e;
  background: #da4932;
}

.alert.alert-white.alert-info .icon,
.alert.alert-white.alert-info .icon:after {
  border-color: #3a8ace;
  background: #4d90fd;
}

.alert.alert-white.alert-warning .icon,
.alert.alert-white.alert-warning .icon:after {
  border-color: #d68000;
  background: #fc9700;
}

.alert.alert-white.alert-success .icon,
.alert.alert-white.alert-success .icon:after {
  border-color: #54a754;
  background: #60c060;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /*transform: translate(0, 0);*/
}
.fa-check:before {
  content: "\f00c"
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-warning:before, .fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-times-circle:before {
  content: "\f057";
}

body>header>div>div>div.nz-wallet-top>section>div>h3 span,
body>header>div>div>div.nz-wallet-top>section>div>h3{
  color: #98aaba;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
}
body>header>div>div>div.nz-wallet-top>section>div>h3 a{
  color: white;
  text-transform: capitalize;
  font-weight: 400;
  text-decoration: underline;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.4s;
}
body>header>div>div>div.nz-wallet-top>section>div>h3 a:hover{
  opacity: 1;
}

body>header>div>div>div.nz-wallet-top>section>div.nz-wallet-top-change>ul>li .ico{
  width: 32px;
  min-width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  margin-top: auto;
  margin-bottom: auto;
}

body>header>div>div>div.nz-wallet-top>section>div.nz-wallet-top-change>ul>li .ico svg{
  display: block;
  width: 18px;
}

body>header>div>div>div.nz-wallet-top>section>div.nz-wallet-top-change>ul>li.nz-wallet-top-change-margin .acccstitlestext label{
  color: var(--nb-color-blue);
}
body>header>div>div>div.nz-wallet-top>section>div.nz-wallet-top-change>ul>li.nz-wallet-top-change-practice .acccstitlestext label{
  color: var(--nb-color-red);
}
body>header>div>div>div.nz-wallet-top>section>div.nz-wallet-top-change>ul>li.nz-wallet-top-change-real .acccstitlestext label{
  color: var(--nb-color-green);
  white-space: nowrap;
}
body>header>div>div>div.nz-wallet-top>section>div.nz-wallet-top-change>ul>li .acccstitlestext{
  /*padding-top: 10px;*/
}
body>header>div>div>div.nz-wallet-top>section>div.nz-wallet-top-change>ul>li .acccstitlestext span{
  font-size: 12px;
  line-height: 1;
  text-transform: capitalize;
  color: white;
  font-weight: 400;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 6px;
}
body>header>div>div>div.nz-wallet-top>section>div.nz-wallet-top-change>ul>li .acccstitlestext label{
  font-size: 20px;
  line-height: 1;
  text-transform: capitalize;
  color: white;
  font-weight: 600;
  letter-spacing: 0.5px;
}
body>header>div>div>div.nz-wallet-top>section>div.nz-wallet-top-change>ul>li .acccstitlestext label.nz-wallet-change-estimated{
  font-size: 10px;
  line-height: 1;
  text-transform: capitalize;
  color: white!important;
  font-weight: 400;
  opacity: 0.5;
}
body>header>div>div>div.nz-wallet-top>section>div.nz-wallet-top-change>ul>li .ico-bnt-circle{
  width: 32px;
  min-width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(152, 170, 186, 0.4);
  border-radius: 8px;
  position: relative;
  transition: 0.4s;
}
body>header>div>div>div.nz-wallet-top>section>div.nz-wallet-top-change>ul>li .ico-bnt-circle:hover{
  border: 1px solid rgba(152, 170, 186, 0.6);
  background: rgba(152, 170, 186, 0.1);
}
body>header>div>div>div.nz-wallet-top>section>div.nz-wallet-top-change>ul>li .ico-bnt-circle:hover svg *{
  fill: rgba(255, 255, 255, 1);
}
body>header>div>div>div.nz-wallet-top>section>div.nz-wallet-top-change>ul>li .ico-bnt-circle:hover p{
  opacity: 1;
}
body>header>div>div>div.nz-wallet-top>section>div.nz-wallet-top-change>ul>li .ico-bnt-circle svg{
  display: block;
  width: 18px;
}
body>header>div>div>div.nz-wallet-top>section>div.nz-wallet-top-change>ul>li .ico-bnt-circle svg *{
  fill: rgba(152, 170, 186, 0.7);
  transition: 0.4s;
}
body>header>div>div>div.nz-wallet-top>section>div.nz-wallet-top-change>ul>li .ico-bnt-circle p{
  position: absolute;
  opacity: 0;
  left: 50%;
  top: -3px;
  z-index: 3;
  transform: translate(-50%,-100%);
  width: max-content;
  padding: 3px;
  fill: rgba(152, 170, 186, 1);
  color: white;
  border-radius: 5px;
  font-size: 10px;
  transition: 0.4s;
}

body>header>div>div>div.nz-wallet-top>section>div.nz-wallet-top-resum>ul{
  font-size: 12px!important;
}
body>header>div>div>div.nz-wallet-top>section>div.nz-wallet-top-resum>ul>li>div{
  background: transparent!important;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3)!important;
  margin: 0px 5px 5px!important;
}
body>header>div>div>div.nz-wallet-top>section>div.nz-wallet-top-resum{
  width: 230px!important;
}
body>header>div>div>div.nz-wallet-top>section>div.nz-wallet-top-resum>div{
  color: white!important;
  text-transform: capitalize!important;
  font-weight: 400!important;
  text-decoration: underline!important;
  cursor: pointer!important;
  text-align: left!important;
  margin-top: 5px!important;
}

@media screen and (min-width: 1011px){
  .nz-wallet-top-change__exit-btn{
    display: none!important;
  }
}

@media screen and (max-width: 1010px){
  body>header>div>div>div.nz-wallet-top>section>div>h3 a{
    transform: translate(0,10px);
  }
}
.nz-wallet-top-change{
  position: relative;
}
.nz-wallet-top-change__exit-btn{
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 30px;
}
.nz-wallet-top-change__exit-btn:before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) rotate(45deg);
  width: 20px;
  height: 2px;
  background: white;
}
.nz-wallet-top-change__exit-btn:after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) rotate(-45deg);
  width: 20px;
  height: 2px;
  background: white;
}


#contactModal{
  z-index: 7110!important;
}
#contactModal .fixed.bg-gray-500{
  background: #020605;
  opacity: 0.8;
}
#contactModal > div > [role="dialog"]{
  position: fixed;
  z-index: 90000000000;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) !important;
  width: 90%;
  max-width: 800px;
  max-height: calc(100vh - 100px);
  background: var(--nz-bg-color-100);
  border: 1px solid var(--nz-border-color-50);
  border-radius: 0;
  animation-duration: 0.3s;
  overflow: auto;
  padding: 20px;
}
#contactModal > div > [role="dialog"] > div:nth-child(1){
  gap: 20px;
}
#contactModal > div > [role="dialog"] > div:nth-child(1) > div{
  width: 50% !important;
  margin: 0;
}
#contactModal > div > [role="dialog"] > div:nth-child(1) > div > h3{
  color: #98aaba !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  min-height: unset !important;
  line-height: 1 !important;
}
#contactModal > div > [role="dialog"] > div:nth-child(1) > div > div > ul > li{
  border: none!important;
  border-bottom: 1px solid var(--nz-border-color-50)!important;

  padding: 10px;
  font-size: 16px;
  color: white;
}
#contactModal > div > [role="dialog"] > div:nth-child(1) > div > div > ul > li:last-child{
  border-bottom: none!important;
}
#contactModal > div > [role="dialog"] > div:nth-child(2){
  margin: 0!important;
}
#contactModal > div > [role="dialog"] > div:nth-child(2) > button{
  position: absolute;
  right: 5px;
  top: 5px;
  width: 27px;
  height: 27px;
  cursor: pointer;
  font-size: 0;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  box-shadow: none;
}

#contactModal > div > [role="dialog"] > div:nth-child(2) > button:before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) rotate(45deg);
  width: 20px;
  height: 3px;
  background: #98aaba;
  transition: 0.4s;
}
#contactModal > div > [role="dialog"] > div:nth-child(2) > button:after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) rotate(-45deg);
  width: 20px;
  height: 3px;
  background: #98aaba;
  transition: 0.4s;
}
#contactModal > div > [role="dialog"] > div:nth-child(2) > button:hover:before,
#contactModal > div > [role="dialog"] > div:nth-child(2) > button:hover:after{
  background: #ffffff;
}





.iframeContainerContact iframe {
  width: 100%;
  height: 730px;
  display: block;
}

.iframeContainerContact h3{
  color: #98aaba !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  min-height: unset !important;
  line-height: 1 !important;
  padding: 30px 0 10px;
}

#ticketForm {

}




body > header > div > div > div.nz-wallet-top > div > div > span.nz-wallet-top-ammount{
  white-space: nowrap;
}




.leverageContainer h3{
  color: #98aaba !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  min-height: unset !important;
  line-height: 1 !important;
  padding: 30px 0 0 7px;
}
.leverageContainer .slider-asset-amount{
  padding: 23px 48px 20px 37px;
}

section.nz-dashboard>section.nz-dash-orderlistpassed>header>ul>li>svg{
  height: 16px!important;
}



section.side-positioninfo > header > div > div.positioninfo_img{
  width: 46px;
  min-width: 46px;
  height: 46px;
  position: relative;
}
section.side-positioninfo > header > div > div.positioninfo_img img{
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 99px;
  position: absolute;
  margin: 0;
}
section.side-positioninfo > header > div > div.positioninfo_img img:nth-child(1){
  left: 0;
  top: 0;
  z-index: 2;
}
section.side-positioninfo > header > div > div.positioninfo_img img:nth-child(2){
  right: 0;
  bottom: 0;
}
.nz-heeader-btn.nz-heeader-btn-identity > input[type=button]{
  display: block;
}

.sb-chat.sb-chat-left{
  left: unset!important;
  right: 20px!important;
  bottom: 120px!important;
}
.sb-chat.sb-chat-left .sb-chat-btn{
  left: unset!important;
  right: 20px!important;
  bottom: 45px!important;
}
.sb-chat.sb-chat-left > .sb-body{
  right: 0!important;
  left: auto!important;
}
@media screen and (max-width: 768px){
  .sb-chat.sb-chat-left{
    right: 10px!important;
    bottom: 150px!important;
  }
  .sb-chat.sb-chat-left .sb-chat-btn{
    right: 10px!important;
    bottom: 80px!important;
  }
}
@media screen and (max-width: 464px){
    .sb-chat.sb-active .sb-body{
        width: 100%;
    }
}


/* ----------- */
.sectionTpSl {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.sectionTpSl .input-group {
  display: flex;
  /*flex-direction: column;*/
  padding: 0 0px;
  margin-top: 0.5rem;
}
.sectionTpSl .input-group .input-wrap {
  display: flex;
  background: #181f2c;
  cursor: pointer;
  justify-content: space-evenly;
  font-size: 16px;
  padding: 14px 15px;
  /*margin-top: 6px;*/
  color: #fff;
}
body[nz-theme=light] .sectionTpSl .input-group .input-wrap {
  color: #000000c4;
  background: #d3dce2;
}

.sectionTpSl .input-group .input-wrap input {
  text-align: right;
  font-size: 15px;
  color: inherit !important;
  font-weight: 500;
}
.sectionTpSl .input-group .input-wrap input[type=number] {
  background: transparent;
  border: none;
  width: 40px;
  margin: 0;
  flex: 1;
  font-family: Trebuchet MS, Tahoma, Arial, sans-serif;
}
.sectionTpSl .input-group .input-wrap label {
  font-size: 14px;
  color: #767e93;
}
.sectionTpSl .input-group .input-wrap .actual-value {
  width: auto;
  color: grey;
  text-align: right;
  flex: 2;
  font-size: 14px;
}

.sectionTpSl .header {
  color: #98aaba;
  font-size: 12px;
  text-transform: uppercase !important;
  font-weight: 700 !important;
}
.sectionTpSl .header input,
.sectionTpSl .header label {
  display: inline-block;
  vertical-align: middle;
}
.sectionTpSl .header input,
.sectionTpSl .header input[type=checkbox] {
  position: relative;
  opacity: 1;
}
.sectionTpSl .header input[type=checkbox]:focus{
  border: unset;
  outline: unset;
  -webkit-appearance: auto;
  appearance: auto;
}

.sectionTpSl .hide {
  display: none;
}


.sectionTpSl .input-number-plus-minus {
  width: 100%;
}
.sectionTpSl .input-number-plus-minus .input-buttons-pm {
  margin: -14px -6px -14px 6px;
}
.sectionTpSl .input-number-plus-minus .input-buttons-pm > div {
  height: 24px;
  width: 28px;
  /*
  background: #363c4f;
  background: #2a3147;
  background: #181f2c;
  */
  border-radius: 0px 2px 0px 0px;
  margin-bottom: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  /*color: #c6cbda;*/
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
}



.nz-dash-pan-action h3 {
  color: #98aaba !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  min-height: unset !important;
  line-height: 1 !important;
  padding: 30px 0 0 7px;
}

/*
.leverageContainer h3{
  color: #98aaba !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  min-height: unset !important;
  line-height: 1 !important;
  padding: 30px 0 0 7px;
}
.leverageContainer .slider-asset-amount{
  padding: 23px 48px 20px 37px;
}*/


.btn.btn-grey {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn.btn-grey:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}


#nz-wallet-top-margin-extended > div{
  background: #181f2c;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: none;
}
#nz-wallet-top-margin-extended .balance-values li{
  color: var(--nb-color-grey);
}
#nz-wallet-top-margin-extended .balance-values li span{
  color: var(--nb-color-white);
}
body > header > div > div > div.nz-wallet-top > div > svg{
  min-width: 16px;
  fill: #29c368;
}
@media screen and (max-width: 768px){
  body>header>div>div>ul.nz-top-graphlist>li.nz-top-graphlist-item-view{
    order: -99;
  }
}
div.nz-infoscurrencylf > div.nz-infoscurrencylf-range > div.nz-infoscurrencylf-range-infos > span{
  color: var(--nb-color-white);
}
div.nz-infoscurrencylf > div.nz-infoscurrencylf-range > div.nz-infoscurrencylf-range-bar > div{
  background: var(--nb-color-white);
}
div.nz-infoscurrencylf > div.nz-infoscurrencylf-range.nz-hg-up > div.nz-infoscurrencylf-range-bar > div{
  background: var(--nb-color-green);
}
div.nz-infoscurrencylf > div.nz-infoscurrencylf-range.nz-hg-down > div.nz-infoscurrencylf-range-bar > div{
  background: var(--nb-color-red);
}
.nz-infoscurrencylf-header .bot .nz-infoscurrencylf-price-evolv.nz-hg-up{
  color: var(--nb-color-green)!important;
}
.nz-infoscurrencylf-header .bot .nz-infoscurrencylf-price-evolv.nz-hg-down{
  color: var(--nb-color-red)!important;
}
.nz-wallet-top > div *{
  white-space: nowrap;
}

section.nz-donation-list>section>div.nz-donation>svg{
  width: 20px!important;
  height: auto!important;
}
section.nz-donation-list>section>div.nz-donation>svg *{
  fill: var(--nz-light-text) !important;
}
section.nz-donation-list>section>div.nz-donation>span{
  font-size: 16px!important;
  text-transform: uppercase!important;
  font-weight: 700!important;
  color: var(--nz-light-text)!important;
}
section.nz-donation-list>section>div.nz-donation{
  margin: 0!important;
  padding: 0!important;
  justify-content: flex-start!important;
}
section.nz-donation-list>section{
  border: 1px solid var(--nz-border-color-50);
  padding: 20px!important;
}
section.nz-donation-list>section>ul>li:last-child{
  margin-bottom: 0!important;
}
.liqd_box_input{
  position: relative;
}
.liqd_box_input .input{
  display: block;
  width: 100%;
  padding: 27px 85px 10px 10px;
  overflow: auto;
  border: 1px solid var(--nz-border-color);
  font-size: 14px;
  color: white;
  transition: 0.4s;
  background: transparent;
  border-radius: 0;
}
.liqd_box_input .label{
  position: absolute;
  left: 10px;
  top: 10px;
  color: var(--nz-light-text);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  z-index: 3;
}
.liqd_box_input .btn{
  display: flex;
  align-items: center;
  background: rgb(44,51,66);
  padding: 10px;
  transition: 0.4s;
  position: absolute;
  right: 0;
  top: 0;
  width: max-content;
  height: 60px;
}
.liqd_box_input .btn:hover{
  background: var(--nz-border-color);
}
.liqd_box_input img{
  position: relative;
  z-index: 2;
}
.liqd_box_input .img{
  display: none;
  width: max-content;
  margin-top: 10px;
}
.liqd_box_input img{
  display: block;
  width: 150px;
  height: auto;
  padding: 10px !important;
  border-radius: 8px !important;
  background: white;
}
.liqd_box_input .img-name{
  background: rgba(152, 170, 186, 0.2) !important;
  padding: 15px 5px 5px !important;
  color: white !important;
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  margin-top: -10px;
  border-radius: 8px;
  font-weight: 600;
}
section.nz-donation-list>section{
  width: 660px!important;
}

@media screen and (max-width: 768px){
  .ordrtb p{
    width: max-content!important;
    padding: 0 5px;
    font-size: 12px!important;
  }
  section.nz-dashboard>section.nz-dash-orderlistpassed>header>div>span:nth-child(1){
    font-size: 12px!important;
    margin-right: 15px!important;
  }
}

.balancesTable .nz-marketlist-scroll .nz-marketlist > div > div:nth-child(1),
.balancesTable .nz-marketlist-scroll .nz-marketlist-header > div:nth-child(1){
  max-width: 80px!important;
  width: 80px!important;
}

.balancesTable .nz-marketlist-scroll .nz-marketlist > div > div:nth-child(5),
.balancesTable .nz-marketlist-scroll .nz-marketlist-header > div:nth-child(5){
  max-width: 120px!important;
  width: 120px!important;
}

.balancesTable .nz-marketlist-scroll .nz-marketlist > div > div:nth-child(5),
.balancesTable .nz-marketlist-scroll .nz-marketlist-header > div:nth-child(5){
  max-width: 120px!important;
  width: 120px!important;
}

.balancesTable .nz-marketlist-scroll .nz-marketlist .btn{
  background: var(--nb-color-red)!important;
}
.balancesTable .nz-marketlist-scroll .nz-marketlist .btn.btn-green{
  background: var(--nb-color-green) !important;
}

section.nz-balance-view > header.balancesheader{
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 15px!important;
}
section.nz-balance-view > header.balancesheader > div{
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 15px!important;
}
section.nz-balance-view > header.balancesheader > h2{
  font-size: 16px!important;
  text-transform: uppercase!important;
  font-weight: 700!important;
  color: var(--nz-light-text)!important;
}
section.nz-balance-view > header.balancesheader > div > span{
  color: var(--nb-color-grey);
  font-size: 14px!important;
}
section.nz-balance-view > header.balancesheader > div > span > b{
  font-size: inherit!important;
  color: var(--nb-color-white) !important;
}
.balancesTable,
.balancesTable .nz-marketlist-scroll,
.balancesTable .nz-marketlist
{
  height: max-content!important;
}

.nz-balance-view.noflex{
  display: block!important;
}
.nz-balance-view.noflex ul.my-pagination{
  margin-top: 30px;
}
ul.my-pagination>li{
  background: rgba(255, 255, 255, 0.1)!important;
  border: 1px solid rgba(255, 255, 255, 0.2)!important;
  color: white!important;
}
ul.my-pagination>li:hover{
  background: rgba(255, 255, 255, 0.2)!important;
  border: 1px solid rgba(255, 255, 255, 0.4)!important;
}
ul.my-pagination>li.active{
  background: rgba(255, 255, 255, 0.4)!important;
  border: 1px solid rgba(255, 255, 255, 0.4)!important;
}

.textStatement{
  color: white!important;
  font-family: Inter, Arial, sans-serif!important;
  font-size: 14px!important;
  line-height: 1.8!important;
  margin-top: 20px!important;
}

.account-lowest-h3 + span{
  color: white !important;
  text-transform: capitalize !important;
  font-weight: 400 !important;
  text-decoration: underline !important;
  cursor: pointer !important;
  text-align: left !important;
  margin-top: 15px !important;
  opacity: 0.7;
  transition: 0.4s;
  font-size: 12px;
}

.account-lowest-h3 + span:hover{
  opacity: 1;
}


.balances-list li {}
.balances-list li .balance {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
.balances-list li .balance .balance-left {
  display: flex;
  flex-direction: row;
}
.balances-list li .balance .balance-left {
  display: flex;
  flex-direction: row;
}
.balances-list li .balance .balance-left .acccstitlestext {
  display: flex;
  flex-direction: column;
}
.balances-list li .balance .balance-right {
  align-self: stretch;
  justify-content: center;
}
.balances-list li .balance .balance-right .btn {
  width: unset;
  padding: 0.55rem 0.75rem 0.45rem;
  background: unset;
}
.balances-list li .balance .balance-right .btn:hover {
  background: #3f4559;
}
.balances-list li .balance .balance-right .btn.toggle-assets-list .fa {
  line-height: unset;
}
.balances-list li .balance .balance-right .btn.toggle-assets-list.active .fa-chevron-down {
  display: none;
}
.balances-list li .balance .balance-right .btn.toggle-assets-list:not(.active) .fa-chevron-up {
  display: none;
}

/*
 * new account menu
 */
.nz-wallet-top-dropdown .nz-wallet-top-resum {display: none;}

.nz-wallet-top {}
.nz-wallet-top .nz-wallet-top-change {
  padding: 20px !important;
}
.nz-wallet-top .nz-wallet-top-change .balances-list {
  width: calc(100% + 40px);
  margin: 0 -20px;
}
.nz-wallet-top .nz-wallet-top-change .balances-list > li {
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.nz-wallet-top .nz-wallet-top-change .balances-list li section {
  display: block;
  width: 100%;
  padding: 1rem 3rem 0rem 3rem;
}
.nz-wallet-top .nz-wallet-top-change .balances-list li section .nz-wallet-balance-show-list {
  text-align: center;
  width: 100%;
  margin-top: 10px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.7;
  cursor: pointer;
  transition: opacity 0.15s linear;
}
.nz-wallet-top .nz-wallet-top-change .balances-list li section .nz-wallet-balance-show-list:hover {
  opacity: 1;
}
.nz-wallet-top .nz-wallet-top-change .balances-list li section .balance-assets-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 12px;
}
.nz-wallet-top .nz-wallet-top-change .balances-list li section .balance-assets-list li {
  display: flex;
  align-items: flex-end;
  margin-bottom: 8px;
}
.nz-wallet-top .nz-wallet-top-change .balances-list li section .balance-assets-list li img {
  display: block;
  width: 18px;
  height: 18px;
  min-width: 18px;
}
.nz-wallet-top .nz-wallet-top-change .balances-list li section .balance-assets-list li div {
  flex: 1;
  height: 1px;
  background: transparent;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  margin: 0px 5px 5px;
}
[nz-theme="light"] .nz-wallet-top .nz-wallet-top-change .balances-list li section .balance-assets-list li div {
  border-bottom-color: rgba(0, 0, 0, 0.2);
}
.nz-wallet-top .nz-wallet-top-change .balances-list li section .balance-assets-list li span {}

.nz-wallet-top .nz-wallet-top-dropdown {
  position: fixed;
  right: 0;
  width: 640px;
  /*right: -145px;*/
}
.nz-wallet-top-dropdown .nz-account-menu {
  width: 190px;
  background: #262c3b;
  padding: 20px 0;
  color: #f4f6f9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.nz-wallet-top-dropdown .nz-account-menu ul {}
.nz-wallet-top-dropdown .nz-account-menu ul li a {
  display: block;
  padding: 8px 20px;
  line-height: 18px;
  font-size: 0.9rem;
  font-weight: 400;
}
.nz-wallet-top-dropdown .nz-account-menu ul li a:hover {
  background: #1d2435;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.15);
}
.nz-wallet-top-dropdown .nz-account-menu ul li .nz-button {}

.nz-wallet-top-dropdown .nz-account-menu ul li .icon,
.nz-wallet-top-dropdown .nz-account-menu ul li .nz-button .icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 6px;
}

.user_profile_container {
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  /*padding: 0 20px;*/
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.user_profile_container .user_profile_image_container {
  position: relative;
  width: 5rem;
  height: 5rem;
  margin: 0 1rem;
}
.user_profile_container .user_profile_image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
  border: 0.1875rem solid var(--nz-main-color);
  background: #262c3b;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
}
.user_profile_container .user_profile_info_container {}
.user_profile_container .user_profile_info_container .info_row {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  color: #ffffffb3;
}
.user_profile_container .user_profile_info_container .info_row i {
  margin-right: 0.25rem;
}
.user_profile_container .user_profile_info_container .info_row .info_value {
  font-weight: 300;
  color: color: #ffffff7d;;
}
.user_profile_container .user_profile_info_container .info_row.user_name {
  font-size: 1.3rem;
  color: #f4f6f9;
  margin-bottom: 0.5rem;
}

.nz-toggle-site-theme {
  display: flex;
  align-items: center;
  padding: 8px 20px;
}
.nz-toggle-site-theme b {
  font-size: 10px;
}
.nz-toggle-site-theme span {
  text-transform: uppercase;
  font-size: 10px;
  /*color: #f4f6f9;*/
}
.nz-toggle-site-theme > .nz-theme-toggle {
  width: 32px;
  height: 16px;
  border-radius: 30px;
  background: #181f2c;
  margin: 0px 5px;
  /* padding: 2px; */
  position: relative;
  cursor: pointer;
}
.nz-toggle-site-theme > .nz-theme-toggle > div {
  width: 16px;
  height: 16px;
  border-radius: 16px;
  background: #e72d01;
  position: absolute;
  transition: all 0.2s cubic-bezier(0.21, 1.1, 1, 1);
}
body[nz-theme="light"] .nz-toggle-site-theme > .nz-theme-toggle > div {
  margin-left: 16px;
}

[nz-theme="light"] .user_profile_container {
  color: #575859;
  border-bottom-color: rgba(0, 0, 0, 0.09);
}
[nz-theme="light"] .user_profile_container .user_profile_image {
  background: #fff;
}
[nz-theme="light"] .user_profile_container .info_row,
[nz-theme="light"] .user_profile_container .info_row.user_name {
  color: inherit;
}
[nz-theme="light"] .nz-wallet-top-dropdown .nz-account-menu {
  color: #575859;
  background: #fff;
}
[nz-theme="light"] .nz-wallet-top-dropdown .nz-account-menu ul li a:hover {
  background: #f1f5f8;
}
/*@media screen and (max-width: 480px) {*/
@media screen and (max-width: 768px) {
  .nz-wallet-top .nz-wallet-top-dropdown {
    max-width: 100%;
  }
  .nz-wallet-top .nz-wallet-top-dropdown .nz-account-menu {
    padding: 10px;
  }
  .nz-wallet-top .nz-wallet-top-dropdown .nz-account-menu,
  .nz-wallet-top .nz-wallet-top-dropdown .nz-account-menu ul {
    width: 100%;
  }
  .nz-wallet-top .nz-wallet-top-dropdown .nz-account-menu ul li {
    display: inline-block;
    width: 49%;
    margin-bottom: 0.25rem;
  }
}
