.preloader {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.preloader {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#2b2b2b), to(#a09373));
  background: -webkit-linear-gradient(left, #2b2b2b, #a09373);
  background: linear-gradient(to right, #2b2b2b, #a09373);
  z-index: 9999;
}

.preloader .pulse {
  position: relative;
}

.preloader .pulse:before, .preloader .pulse:after {
  position: absolute;
  content: '';
  border: 5px solid #fff;
  width: 80px;
  height: 80px;
  margin-left: -40px;
  -webkit-border-radius: 500px;
          border-radius: 500px;
}

.preloader .pulse:before {
  -webkit-animation: pulse-outer 0.8s ease-in infinite;
          animation: pulse-outer 0.8s ease-in infinite;
}

.preloader .pulse:after {
  -webkit-animation: pulse-inner 0.8s linear infinite;
          animation: pulse-inner 0.8s linear infinite;
}

@-webkit-keyframes pulse-outer {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  50% {
    opacity: 0.5;
    filter: alpha(opacity=50);
  }
  100% {
    opacity: 0;
    filter: alpha(opacity=0);
  }
}

@keyframes pulse-outer {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  50% {
    opacity: 0.5;
    filter: alpha(opacity=50);
  }
  100% {
    opacity: 0;
    filter: alpha(opacity=0);
  }
}

@-webkit-keyframes pulse-inner {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
    filter: alpha(opacity=0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@keyframes pulse-inner {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
    filter: alpha(opacity=0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

/*---------- GENERAL ----------*/
body {
  position: relative;
  font-family: "Open Sans", sans-serif;
  font-size: 16.52px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: #fff;
  background-color: #2b2b2b;
}

a, button, a:hover, a:focus, a:active, input, select, option {
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  outline: none !important;
}

input {
  cursor: text;
}

input[type='submit'], input[type='button'], input[type="checkbox"], input[type="radio"] {
  cursor: pointer;
}

input::-webkit-input-placeholder {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  letter-spacing: 1.5px;
}

input::-moz-placeholder {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  letter-spacing: 1.5px;
}

input:-ms-input-placeholder {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  letter-spacing: 1.5px;
}

input::placeholder {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  letter-spacing: 1.5px;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

input:focus::-moz-placeholder {
  color: transparent;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

input:focus:-ms-input-placeholder {
  color: transparent;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

input:focus::placeholder {
  color: transparent;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.preloader {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

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

::-webkit-scrollbar-track {
  background: #ebebeb;
}

::-webkit-scrollbar-thumb {
  background: #2b2b2b;
}

.btn {
  display: inline-block;
  width: 85px;
  height: 85px;
  font-size: 13.3px;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background-color: #a09373;
  border: 1px solid #a09373;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  -webkit-transition: all 0.4s cubic-bezier(0.2, 0, 0.7, 1);
  transition: all 0.4s cubic-bezier(0.2, 0, 0.7, 1);
}

.btn:hover {
  -webkit-box-shadow: 0 0 1px 15px rgba(160, 147, 115, 0.4), 0 0 1px 30px rgba(160, 147, 115, 0.1), 0 0 1px 45px rgba(160, 147, 115, 0.1);
          box-shadow: 0 0 1px 15px rgba(160, 147, 115, 0.4), 0 0 1px 30px rgba(160, 147, 115, 0.1), 0 0 1px 45px rgba(160, 147, 115, 0.1);
}

.btn.btn-o {
  background-color: transparent;
}

.btn.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.btn.is-hidden {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.7);
      -ms-transform: scale(0.7);
          transform: scale(0.7);
}

/*---------- END GENERAL ----------*/
/*---------- MAIN-BG ----------*/
.main-bg {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 428px;
  background-image: url("../img/background.jpg");
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: cover;
  z-index: 0;
}

.main-bg .overlay {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #272727;
  opacity: .75;
}

/*---------- END MAIN-BG ----------*/
/*---------- HEADER ----------*/
header {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  height: 147px;
}

header .user-name {
  display: inline-block;
  width: 50%;
  float: left;
  text-align: left;
  font-size: 16.67px;
  font-weight: 300;
  line-height: 1;
  padding: 37px 0;
}

header .user-name a {
  color: #fff;
}

header .logo {
  position: absolute;
  display: inline-block;
  left: 50%;
  margin: 0 0 0 -37.5px;
}

header .logo:before {
  position: absolute;
  content: '';
  top: 45px;
  left: -190px;
  width: 130px;
  height: 1px;
  background-color: #fff;
}

header .logo:after {
  position: absolute;
  content: '';
  top: 45px;
  right: -190px;
  width: 130px;
  height: 1px;
  background-color: #fff;
}

header .logo img {
  width: 75px;
}

header .logout {
  display: inline-block;
  width: 50%;
  text-align: right;
  padding: 32px 0;
}

header .logout a {
  display: inline-block;
  font-size: 14.58px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}

header .logout a:hover {
  color: #a09373;
}

header .logout a span {
  position: relative;
  display: inline-block;
  top: 1px;
}

header .logout a img {
  float: right;
  width: 17px;
  margin: 0 0 0 7px;
}

/*---------- END HEADER ----------*/
/*---------- DASHBOARD ----------*/
.dashboard {
  position: relative;
  width: 100%;
  height: 281px;
  background-color: rgba(39, 39, 39, 0.85);
  padding: 30px 0 35px;
}

.dashboard .users {
  display: inline-block;
  float: left;
  width: 45%;
  border-right: 1px solid #fff;
}

.dashboard .users .title {
  font-size: 20.83px;
  font-weight: 300;
  line-height: 1;
  margin: 0 0 15px;
}

.dashboard .users .table tr {
  height: 30px;
  text-align: left;
}

.dashboard .users .table tr .status {
  padding: 0 20px 0 0;
}

.dashboard .users .table tr .user, .dashboard .users .table tr .limit {
  padding: 0 24px 0 32px;
}

.dashboard .users .table tr .setting {
  padding: 0 14px;
}

.dashboard .users .table thead tr th {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1;
}

.dashboard .users .table tbody tr td {
  font-size: 12.5px;
  font-weight: 300;
  border-right: 1px solid #454545;
  line-height: 1;
}

.dashboard .users .table tbody tr td.status .circle {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #4dce87;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  margin: 0 2px 0 0;
}

.dashboard .users .table tbody tr td.status .circle.no {
  background-color: #c14646;
}

.dashboard .users .table tbody tr td.user {
  font-size: 14.58px;
  font-weight: 400;
  color: #a09373;
}

.dashboard .users .table tbody tr td.setting {
  border-right: none;
}

.dashboard .users .table tbody tr td.setting img {
  width: 13px;
  opacity: .4;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.dashboard .users .table tbody tr td.setting img:hover {
  opacity: 1;
}

.dashboard .on-account {
  display: inline-block;
  text-align: right;
  width: 55%;
  padding: 0 0 0 30px;
}

.dashboard .on-account .title {
  text-align: left;
  font-size: 20.83px;
  font-weight: 300;
  line-height: 1;
  margin: 0 0 15px;
}

.dashboard .on-account .table {
  display: inline-block;
}

.dashboard .on-account .table tr {
  height: 30px;
  text-align: left;
}

.dashboard .on-account .table tr .currency {
  padding: 0 30px 0 0;
}

.dashboard .on-account .table tr .bit, .dashboard .on-account .table tr .usd, .dashboard .on-account .table tr .eth, .dashboard .on-account .table tr .usdt, .dashboard .on-account .table tr .buy, .dashboard .on-account .table tr .sell {
  padding: 0 25px;
}

.dashboard .on-account .table tr .bit img, .dashboard .on-account .table tr .usd img, .dashboard .on-account .table tr .eth img, .dashboard .on-account .table tr .usdt img, .dashboard .on-account .table tr .buy img, .dashboard .on-account .table tr .sell img {
  width: 12px;
}

.dashboard .on-account .table tr .bit span, .dashboard .on-account .table tr .usd span, .dashboard .on-account .table tr .eth span, .dashboard .on-account .table tr .usdt span, .dashboard .on-account .table tr .buy span, .dashboard .on-account .table tr .sell span {
  position: relative;
  display: inline-block;
  top: 2px;
}

.dashboard .on-account .table thead tr th {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1;
}

.dashboard .on-account .table tbody tr td {
  font-size: 12.5px;
  font-weight: 300;
  border-right: 1px solid #454545;
  line-height: 1;
}

.dashboard .on-account .table tbody tr td.currency {
  font-size: 14.58px;
  font-weight: 600;
  color: #a09373;
}

.dashboard.for-user .on-account {
  width: 50%;
  float: left;
  text-align: left;
  border-right: 1px solid #fff;
  padding: 0;
}

.dashboard.for-user .cash {
  display: inline-block;
  text-align: right;
  width: 50%;
  margin: 0;
}

.dashboard.for-user .cash .title {
  padding: 0;
  margin: 0;
}

.dashboard.for-user .cash .total-cash {
  margin: 55px 0 40px;
}

.dashboard.for-user .cash .btn-cash {
  display: inline-block;
  width: 320px;
}

/*---------- END DASHBOARD ----------*/
/*---------- WORK ----------*/
.work-zone {
  position: relative;
  display: inline-block;
  width: 100%;
  z-index: 1;
}

.work-zone .story {
  position: relative;
  color: #272727;
  background-color: #fff;
  margin: 0 -15px 0 0;
}

.work-zone .story:before {
  position: absolute;
  content: '';
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.work-zone .story:after {
  position: absolute;
  content: '';
  top: 76px;
  left: -100%;
  width: 100%;
  height: 38px;
  background-color: #2b2b2b;
}

.work-zone .story .top {
  display: inline-block;
  width: 100%;
  padding: 30px 20px 20px 0;
}

.work-zone .story .top .title {
  display: inline-block;
  font-size: 20.83px;
  font-weight: 600;
  line-height: 1;
}

.work-zone .story .top .filter {
  position: relative;
  display: inline-block;
  top: -3px;
  float: right;
}

.work-zone .story .top .filter input::-webkit-clear-button, .work-zone .story .top .filter input::-webkit-inner-spin-button, .work-zone .story .top .filter input::-webkit-calendar-picker-indicator {
  opacity: 0;
  -webkit-appearance: none;
  cursor: pointer;
}

.work-zone .story .top .filter input::-webkit-datetime-edit {
  margin: 2px 0 0;
}

.work-zone .story .top .filter input::-webkit-datetime-edit-month-field, .work-zone .story .top .filter input::-webkit-datetime-edit-day-field, .work-zone .story .top .filter input::-webkit-datetime-edit-year-field {
  letter-spacing: 1.5px;
  background-color: #fff;
}

.work-zone .story .top .filter input {
  position: relative;
  display: inline-block;
  float: left;
  width: 162px;
  height: 26px;
  font-size: 12.5px;
  color: #b9b9bd;
  background-color: #fff;
  border: none;
  border-bottom: 1px solid #a09373;
  background-image: url("../img/calendar.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 12px;
  padding: 0 3px;
  margin: 0 45px 0 0;
}

.work-zone .story .top .filter input::-webkit-input-placeholder {
  color: #b9b9bd;
}

.work-zone .story .top .filter input::-moz-placeholder {
  color: #b9b9bd;
}

.work-zone .story .top .filter input:-ms-input-placeholder {
  color: #b9b9bd;
}

.work-zone .story .top .filter input::placeholder {
  color: #b9b9bd;
}

.work-zone .story .top .filter input:focus::-webkit-input-placeholder {
  color: transparent;
}

.work-zone .story .top .filter input:focus::-moz-placeholder {
  color: transparent;
}

.work-zone .story .top .filter input:focus:-ms-input-placeholder {
  color: transparent;
}

.work-zone .story .top .filter input:focus::placeholder {
  color: transparent;
}

.work-zone .story .top .filter input:after {
  position: absolute;
  display: none;
  content: '';
  top: 7px;
  right: 0;
  width: 17px;
  height: 17px;
  background-color: #fff;
  background-image: url("../img/calendar.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 17px;
}

.work-zone .story .top .filter select {
  position: relative;
  display: none;
  top: -1px;
  width: 162px;
  height: 26px;
  font-size: 12.5px;
  letter-spacing: 1.5px;
  color: #b9b9bd;
  background-color: #fff;
  border: none;
  border-bottom: 1px solid #a09373;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.work-zone .story .top .filter .select {
  position: relative;
  display: inline-block;
  height: 26px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.work-zone .story .top .filter .select .placeholder {
  position: relative;
  display: inline-block;
  width: 162px;
  height: 18px;
  font-size: 12.5px;
  color: #b9b9bd;
  border-bottom: 1px solid #a09373;
  cursor: pointer;
  line-height: 1;
  padding: 0 3px;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  z-index: 1;
}

.work-zone .story .top .filter .select .placeholder:after {
  position: absolute;
  content: '';
  top: 4px;
  right: 3px;
  width: 5px;
  height: 5px;
  background-image: url("../img/trengl.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 5px;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.work-zone .story .top .filter .select.is-open .placeholder {
  border-bottom: 1px solid transparent;
}

.work-zone .story .top .filter .select.is-open .placeholder:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.work-zone .story .top .filter .select.is-open ul {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.work-zone .story .top .filter .select ul {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #fff;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
}

.work-zone .story .top .filter .select ul li {
  display: block;
  text-align: left;
  cursor: pointer;
  font-size: 12.5px;
  color: #b9b9bd;
  padding: 4px 3px;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.work-zone .story .top .filter .select ul li:hover {
  color: #fff;
  background-color: #a09373;
}

.work-zone .story .table {
  width: 100%;
}

.work-zone .story .table tr .date {
  width: 17%;
}

.work-zone .story .table tr .buy, .work-zone .story .table tr .sell, .work-zone .story .table tr .total {
  width: 18%;
}

.work-zone .story .table thead {
  position: relative;
  display: table;
  width: -webkit-calc(100% - 5px);
  width: calc(100% - 5px);
  table-layout: fixed;
}

.work-zone .story .table thead:after {
  position: absolute;
  content: '';
  top: 0;
  right: -5px;
  width: 5px;
  height: 100%;
  background-color: #2b2b2b;
}

.work-zone .story .table thead tr {
  height: 38px;
  text-align: left;
  color: #fff;
  background-color: #2b2b2b;
}

.work-zone .story .table thead tr th {
  font-size: 12.5px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1;
  padding: 0 0 0 12px;
}

.work-zone .story .table thead tr th span {
  display: none;
}

.work-zone .story .table tbody {
  display: block;
  height: 419px;
  overflow: auto;
}

.work-zone .story .table tbody::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.work-zone .story .table tbody::-webkit-scrollbar-track {
  background: #ebebeb;
}

.work-zone .story .table tbody::-webkit-scrollbar-thumb {
  background: #2b2b2b;
}

.work-zone .story .table tbody tr {
  display: table;
  width: 100%;
  height: 60px;
  text-align: left;
  table-layout: fixed;
}

.work-zone .story .table tbody tr td {
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0 0 0 12px;
  border-left: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
}

.work-zone .story .table tbody tr td span {
  display: block;
  color: #a09373;
}

.work-zone .story .table tbody tr td span.time {
  font-size: 10.42px;
  color: #b7b7b7;
}

.work-zone .story .table tbody tr td span.m-date {
  display: none;
  color: #272727;
}

.work-zone .rate {
  margin: 0 0 0 -15px;
}

.work-zone.for-user .rate {
  display: block;
  width: 500px;
  text-align: center;
  padding: 30px 0;
  margin: 0 auto;
}

.work-zone.for-user .rate .trade .title {
  text-align: center;
  font-size: 25px;
  font-weight: 400;
  padding: 0;
  margin: 0 0 50px;
}

.work-zone.for-user .rate .trade .input {
  margin: 0;
}

.work-zone.for-user .rate .trade .note {
  text-align: left;
  font-size: 12.5px;
  font-weight: 300;
  margin: 15px 0 40px;
}

.work-zone.for-user .rate .trade .note span {
  font-size: 16.67px;
  font-weight: 700;
}

.cash {
  margin: 0 0 30px;
}

.cash .title {
  font-size: 20.83px;
  font-weight: 300;
  line-height: 1;
  padding: 0 30px;
  margin: 30px 0 0;
}

.cash .total-cash {
  text-align: right;
  font-size: 20.83px;
  font-weight: 300;
  line-height: 1;
  margin: 40px 0;
}

.cash .total-cash span {
  display: inline-block;
  font-size: 38.86px;
  color: #a09373;
}

.cash .btn-cash {
  display: block;
  text-align: center;
  font-size: 16.67px;
  font-weight: 300;
  color: #fff;
  background-color: #454545;
  padding: 21px 0;
}

.cash .btn-cash:hover {
  background-color: #a09373;
}

.trade {
  text-align: center;
}

.trade .title {
  text-align: left;
  font-size: 20.83px;
  font-weight: 300;
  line-height: 1.2;
  padding: 0 30px;
}

.trade .input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 72px;
  border-bottom: 1px solid #454545;
  margin: 10px 0 30px 30px;
}

.trade .input input[type='number'] {
  -moz-appearance: textfield;
}

.trade .input input::-webkit-outer-spin-button,
.trade .input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.trade .input input {
  display: inline-block;
  width: 90%;
  height: 44px;
  text-align: right;
  font-size: 29.17px;
  font-weight: 300;
  color: #fff;
  background-color: #2b2b2b;
  border: none;
  border-right: 1px solid #454545;
  padding: 0 12px;
}

.trade .input input::-webkit-input-placeholder {
  color: #fff;
}

.trade .input input::-moz-placeholder {
  color: #fff;
}

.trade .input input:-ms-input-placeholder {
  color: #fff;
}

.trade .input input::placeholder {
  color: #fff;
}

.trade .input input:focus::-webkit-input-placeholder {
  color: transparent;
}

.trade .input input:focus::-moz-placeholder {
  color: transparent;
}

.trade .input input:focus:-ms-input-placeholder {
  color: transparent;
}

.trade .input input:focus::placeholder {
  color: transparent;
}

.trade .input span {
  display: inline-block;
  font-size: 20.83px;
  font-weight: 300;
  color: #a09373;
  margin: 0 0 0 13px;
}

.trade .btn-group {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.trade .btn-group .stop {
  position: absolute;
}

/*---------- END WORK ----------*/
/*---------- LOGIN ----------*/
.login {
  position: relative;
  height: 100vh;
  text-align: center;
  background-image: url("../img/background.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 95px 0;
}

.login .overlay {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #1c1c1c;
  opacity: .9;
}

.login .logo {
  position: relative;
  display: inline-block;
  margin: 0 0 100px;
}

.login .logo:before {
  position: absolute;
  content: '';
  top: 45px;
  left: -170px;
  width: 130px;
  height: 1px;
  background-color: #fff;
}

.login .logo:after {
  position: absolute;
  content: '';
  top: 45px;
  right: -170px;
  width: 130px;
  height: 1px;
  background-color: #fff;
}

.login .logo img {
  width: 115px;
}

.login .form {
  position: relative;
  width: 425px;
  margin: 0 auto;
}

.login .form input[type='text'], .login .form input[type='password'] {
  display: block;
  width: 100%;
  height: 56px;
  font-weight: 300;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  margin: 0 0 45px;
}

.login .form input[type='text']::-webkit-input-placeholder, .login .form input[type='password']::-webkit-input-placeholder {
  color: #fff;
}

.login .form input[type='text']::-moz-placeholder, .login .form input[type='password']::-moz-placeholder {
  color: #fff;
}

.login .form input[type='text']:-ms-input-placeholder, .login .form input[type='password']:-ms-input-placeholder {
  color: #fff;
}

.login .form input[type='text']::placeholder, .login .form input[type='password']::placeholder {
  color: #fff;
}

.login .form input[type='text']:focus::-webkit-input-placeholder, .login .form input[type='password']:focus::-webkit-input-placeholder {
  color: transparent;
}

.login .form input[type='text']:focus::-moz-placeholder, .login .form input[type='password']:focus::-moz-placeholder {
  color: transparent;
}

.login .form input[type='text']:focus:-ms-input-placeholder, .login .form input[type='password']:focus:-ms-input-placeholder {
  color: transparent;
}

.login .form input[type='text']:focus::placeholder, .login .form input[type='password']:focus::placeholder {
  color: transparent;
}

.login .form .btn-o {
  margin: 15px 0 0;
}

/*---------- END LOGIN ----------*/
/*---------- POPUP ----------*/
.popup {
  position: fixed;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(21, 21, 21, 0.75);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  z-index: 99;
}

.popup.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}

.popup.is-visible .box {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.popup .box {
  position: relative;
  width: 515px;
  margin: auto;
  background-color: #fff;
  -webkit-transform: translateY(-40px);
      -ms-transform: translateY(-40px);
          transform: translateY(-40px);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  padding: 45px 35px;
}

.popup .box .box-info .line {
  margin: 0 0 30px;
}

.popup .box .box-info .line .label {
  display: inline-block;
  font-size: 14.58px;
  font-weight: 300;
  color: #454545;
  margin: 0 10px 0 0;
}

.popup .box .box-info .line .user-id {
  display: inline-block;
  font-size: 16.67px;
  font-weight: 600;
  color: #a09373;
}

.popup .box .box-info .line .user-satuts {
  display: inline-block;
  font-size: 14.58px;
  font-weight: 600;
  color: #454545;
}

.popup .box .box-info .line .user-satuts .circle {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #4dce87;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  margin: 0 2px 0 0;
}

.popup .box .box-info .line .user-satuts .circle.no {
  background-color: #c14646;
}

.popup .box .box-info .line .input {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.popup .box .box-info .line .input input[type='number'] {
  -moz-appearance: textfield;
}

.popup .box .box-info .line .input input::-webkit-outer-spin-button,
.popup .box .box-info .line .input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.popup .box .box-info .line .input input {
  display: inline-block;
  width: 75px;
  height: 28px;
  font-size: 16.67px;
  font-weight: 600;
  color: #454545;
  border: none;
  border-bottom: 1px solid #c1c1c1;
  padding: 0 3px;
}

.popup .box .box-info .line .input span {
  display: inline-block;
  height: 28px;
  font-size: 16.67px;
  font-weight: 600;
  color: #a09373;
  line-height: 1;
  border-bottom: 1px solid #c1c1c1;
  padding: 6px 0;
}

.popup .box .box-info .line .switch {
  position: relative;
  display: inline-block;
  top: 4px;
  height: 19px;
  width: 60px;
  text-align: center;
  background-color: #c1c1c1;
  -webkit-border-radius: 2px;
          border-radius: 2px;
}

.popup .box .box-info .line .switch label {
  position: relative;
  width: 50%;
  height: 100%;
  float: left;
  text-align: center;
  text-transform: uppercase;
  font-size: 10.42px;
  font-weight: 300;
  color: transparent;
  line-height: 19px;
  cursor: pointer;
  margin: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}

.popup .box .box-info .line .switch input {
  position: absolute;
  opacity: 0;
}

.popup .box .box-info .line .switch input:checked + label {
  color: #fff;
}

.popup .box .box-info .line .switch input:last-of-type:checked ~ a {
  left: 50%;
}

.popup .box .box-info .line .switch .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  display: block;
  background-color: #454545;
  -webkit-border-radius: 2px;
          border-radius: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.popup .box .box-info button {
  display: block;
  width: 50%;
  height: 50px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1.5px;
  background-color: #454545;
  border: none;
  margin: 45px auto 0;
}

.popup .box .box-info button:hover {
  background-color: #a09373;
}

.popup .box .close {
  position: absolute;
  display: inline-block;
  top: 18px;
  right: 18px;
  width: 20px;
  height: 20px;
}

.popup .box .close img {
  width: 100%;
  height: 100%;
}

/*---------- END POPUP ----------*/
/*---------- RESPONSIVE ----------*/
@media only screen and (max-width: 1200px) {
  .container {
    width: initial;
  }
  .btn {
    width: 60px;
    height: 60px;
    font-size: 11px;
  }
  .main-bg {
    top: 105px;
    height: 250px;
  }
  header {
    height: 105px;
  }
  header .container {
    margin: 0;
    width: 100%;
  }
  header .user-name {
    font-size: 13.67px;
  }
  header .logo {
    margin: 0 0 0 -30px;
    padding: 6px 0;
  }
  header .logo:before, header .logo:after {
    display: none;
  }
  header .logo img {
    width: 60px;
  }
  header .logout a span {
    top: -1px;
  }
  header .logout a img {
    width: 15px;
  }
  .dashboard {
    height: initial;
    background-color: transparent;
    padding: 15px 0 30px;
  }
  .dashboard .on-account {
    display: block;
    width: 100%;
    float: none;
    text-align: center;
    overflow: auto;
    padding: 0;
    margin: 0 0 35px;
  }
  .dashboard .on-account::-webkit-scrollbar {
    width: initial;
    height: initial;
  }
  .dashboard .on-account::-webkit-scrollbar-track {
    background: initial;
  }
  .dashboard .on-account::-webkit-scrollbar-thumb {
    background: initial;
  }
  .dashboard .on-account .title {
    text-align: center;
  }
  .dashboard .on-account .table tr .currency {
    width: 25%;
    padding: 0;
  }
  .dashboard .on-account .table tr .bit, .dashboard .on-account .table tr .usd, .dashboard .on-account .table tr .eth, .dashboard .on-account .table tr .usdt, .dashboard .on-account .table tr .buy, .dashboard .on-account .table tr .sell {
    padding: 0 15px;
  }
  .dashboard .on-account .table tbody tr td {
    border: none;
  }
  .dashboard .on-account .table tbody tr td.currency {
    padding: 0;
  }
  .dashboard .users {
    display: block;
    width: 100%;
    float: none;
    text-align: center;
    padding: 0;
    border: none;
  }
  .dashboard .users .table {
    display: inline-block;
  }
  .dashboard .users .table tr .user, .dashboard .users .table tr .limit, .dashboard .users .table tr .setting, .dashboard .users .table tr .status {
    width: 2%;
    padding: 0;
  }
  .dashboard .users .table tbody tr td {
    border: none;
  }
  .dashboard .users .table tbody tr td.status {
    text-align: center;
  }
  .dashboard .users .table tbody tr td.status span {
    display: none;
  }
  .dashboard .users .table tbody tr td.setting {
    text-align: center;
  }
  .dashboard.for-user .on-account {
    text-align: center;
    float: none;
    border: none;
  }
  .dashboard.for-user .cash {
    width: 100%;
    text-align: center;
  }
  .dashboard.for-user .cash .total-cash {
    margin: 40px 0;
  }
  .dashboard.for-user .cash .btn-cash {
    width: 100%;
  }
  .work-zone .rate {
    margin: 0;
  }
  .work-zone .story {
    margin: 0 -15px;
  }
  .work-zone .story:before, .work-zone .story:after {
    display: none;
  }
  .work-zone .story .top {
    padding: 30px 15px 20px;
  }
  .work-zone .story .top .title {
    display: block;
    text-align: center;
    margin: 0 0 15px;
  }
  .work-zone .story .top .filter {
    display: block;
    text-align: center;
    top: 0;
    float: none;
  }
  .work-zone .story .top .filter input {
    width: 12%;
    margin: 0 8% 0 0;
    color: #fff;
    background: none;
    border-bottom: none;
  }
  .work-zone .story .top .filter input:after {
    display: block;
  }
  .work-zone .story .top .filter select {
    display: inline-block;
    width: 80%;
  }
  .work-zone .story .top .filter .select {
    display: none;
  }
  .work-zone .story .table tr .date {
    display: none;
  }
  .work-zone .story .table tr .user {
    width: 23%;
  }
  .work-zone .story .table tr .buy, .work-zone .story .table tr .sell, .work-zone .story .table tr .total {
    width: 19%;
  }
  .work-zone .story .table thead tr th {
    font-size: 7px;
    padding: 0 0 0 9px;
  }
  .work-zone .story .table thead tr th span {
    display: block;
  }
  .work-zone .story .table tbody tr td {
    font-size: 9px;
    padding: 0 0 0 9px;
  }
  .work-zone .story .table tbody tr td span.time {
    font-size: 9px;
  }
  .work-zone .story .table tbody tr td span.m-date {
    display: block;
  }
  .work-zone.for-user .rate {
    width: 100%;
  }
  .work-zone.for-user .rate .trade .title {
    font-size: 20.83px;
    font-weight: 300;
    margin: 0 0 25px;
  }
  .work-zone.for-user .rate .trade .note {
    font-size: 11px;
  }
  .work-zone.for-user .rate .trade .note span {
    font-size: 13px;
  }
  .cash .title {
    text-align: center;
    padding: 0;
  }
  .trade {
    margin: 0 0 30px;
  }
  .trade .title {
    text-align: center;
    padding: 0;
  }
  .login {
    padding: 30px 0;
  }
  .login .logo {
    margin: 0 0 50px;
  }
  .login .logo:before, .login .logo:after {
    display: none;
  }
  .login .logo img {
    width: 60px;
  }
  .login .form {
    width: 70%;
  }
  .login .form input[type='text'], .login .form input[type='password'] {
    height: 46px;
    margin: 0 0 25px;
  }
  .login .form .btn {
    margin: 30px 0 0;
  }
  .popup .box {
    width: 100%;
    height: 100vh;
    padding: 70px 25px;
    -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
            transform: scale(0.8);
  }
  .popup .box .box-info .line .input {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 15px 0 0;
  }
  .popup .box .box-info .line .input input {
    width: 90%;
  }
  .popup .box .box-info button {
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 70px;
    font-size: 17px;
    left: 0;
    bottom: 0;
  }
}

@media only screen and (max-width: 991px) {
  /**/
}

@media only screen and (max-width: 768px) {
  /**/
}

@media only screen and (max-width: 480px) {
  /**/
}

@media only screen and (max-width: 359px) {
  /**/
}

/*---------- END RESPONSIVE ----------*/
