html, body {
  height: 100%;
}

body {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  overflow-x: hidden;
  width: 100%;
  background: #f2f3f8;
  color: #74788d;
  /* padding: 80px 0 0 0; */
  font-family: 'Poppins', sans-serif;
}

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

a,
a:hover {
  text-decoration: none;
  color: #676767;
}

:focus {
  outline: none;
}

button:focus {
  outline: none;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
}

::-webkit-input-placeholder {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}

::-moz-placeholder {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}

:-ms-input-placeholder {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}

:-moz-placeholder {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}

.top-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: #fff;
  padding: 15px;
  height: 79px;
  z-index: 50;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  box-shadow: 0 10px 30px 0 rgba(82, 63, 105, 0.08);
  -webkit-box-shadow: 0 10px 30px 0 rgba(82, 63, 105, 0.08);
  -moz-box-shadow: 0 10px 30px 0 rgba(82, 63, 105, 0.08);
}

.header-tabs {
  float: left;
}

.header-profile {
  margin-left: auto;
}

.header-user-profile-inner {
  position: relative;
  padding-right: 20px;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.header-user-profile-inner img {
  width: 15px;
  margin-right: 10px;
  filter: brightness(0.5)invert(1);
  -webkit-filter: brightness(0.5)invert(1);
  -moz-filter: brightness(0.5)invert(1);
}

.header-user-profile-inner span {
  color: #48465b;
  font-size: 14px;
  font-weight: 500;
}

.header-user-profile-inner i {
  position: absolute;
  top: 50%;
  color: #48465b;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
}

.profile-popoup {
  position: absolute;
  z-index: -1;
  background: #fff;
  width: 170px;
  right: 5px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-transform: translate3d(0, -20px, 0);
  -moz-transform: translate3d(0, -20px, 0);
  -ms-transform: translate3d(0, -20px, 0);
  -o-transform: translate3d(0, -20px, 0);
  transform: translate3d(0, -20px, 0);
  -moz-opacity: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .15s linear;
  -moz-transition: all .15s linear;
  -ms-transition: all .15s linear;
  -o-transition: all .15s linear;
  transition: all .15s linear;
}

.profile-popoup ul {
  position: relative;
}

.profile-popoup ul:before {
  content: "";
  background: url(../images/droupdown-arrow.png);
  width: 25px;
  height: 11px;
  position: absolute;
  top: -11px;
  right: 15px;
}

.profile-popoup ul li {
  width: 100%;
}

.profile-popoup ul li a {
  display: block;
  padding: 6px 10px;
  font-size: 15px;
  color: #48465b;
  white-space: nowrap;
  -webkit-transition: all 0.15s;
  -moz-transition: all 0.15s;
  -ms-transition: all 0.15s;
  -o-transition: all 0.15s;
  transition: all 0.15s;
}

.profile-popoup ul li a:hover {
  background: #f2f3f8;
}

.header-user-profile-inner.active .profile-popoup {
  -webkit-transform: translate3d(0, 80px, 0);
  -moz-transform: translate3d(0, 80px, 0);
  -ms-transform: translate3d(0, 80px, 0);
  -o-transform: translate3d(0, 80px, 0);
  transform: translate3d(0, 80px, 0);
  -moz-opacity: 1;
  opacity: 1;
  z-index: 99;
  visibility: visible;
}

.header-tabs .nav-pills .nav-link {
  background: #f2f3f8;
  color: #48465b;
  font-size: 18px;
  text-transform: capitalize;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  margin-right: 15px;
  border: 0;
  outline: none;
  padding: 15px;
  padding: 7px 15px;
  line-height: 35px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}

.header-tabs .nav-pills .nav-link.active {
  background: #5d78ff;
  color: #fff;
}

.header-tabs .nav-pills .nav-link:hover {
  background: rgba(93, 120, 255, 0.9);
  color: #fff;
}

.strategy-div {
  background: #fff;
  height: 100%;
  padding: 20px 0;
}

.strategy-div button {
  /*background: #5E72E4;*/
  background: #333D5F;
  border: 0;
  outline: none;
  box-shadow: none;
  color: #fff;
  text-transform: capitalize;
  font-size: 18px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  padding: 10px;
  width: 90%;
  text-align: center;
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}

.strategy-div button:hover {
  background: rgba(51, 61, 95, 0.9);
}

.strategy-div button img {
  margin-right: 10px;
}

.strategy-div-inner a {
  background: #f2f3f8;
  font-size: 15px;
  width: 100%;
  display: block;
  padding: 10px 15px;
  font-weight: 500;
  color: #48465b;
}

.strategy-div-inner ul li {
  margin-bottom: 15px;
}

.strategy-div-inner {
  padding: 20px 15px 0 15px;
}

.tickers-list-div {
  background: #fff;
  padding: 20px 15px;
  margin-top: 20px;
}

.tickers-list-div-header {
  background: #FF9F24;
  color: #fff;
  padding: 10px 10px;
  font-weight: 600;
  font-size: 18px;
  border-top-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  -moz-border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  -moz-border-top-right-radius: 3px;
}

.operater-list-div-header {
  background: #53D7E3;
}

.indicators-list-div-header {
  background: #5E72E4;
}

.tickers-list-div-inner {
  background: #f2f3f8;
  padding: 10px 10px;
  border-bottom-left-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  -moz-border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  -moz-border-bottom-right-radius: 3px;
}

.tickers-list-div-inner ul li a {
  font-size: 13px;
  color: #48465b;
  width: 100%;
  display: block;
  text-transform: capitalize;
  padding: 10px 10px;
  font-weight: 500;
}

.tickers-list-div-inner ul li:nth-child(even) {
  background: #fff;
}

.tickers-list-div-inner ul li {
  margin-bottom: 5px;
}

.p-class-o {
  padding: 0;
}

.charts-table h5 {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.2;
  color: #48465b;
  margin: 20px 0;
  text-transform: capitalize;
}

.crt-table-bg {
  background: #fff;
  padding: 20px 0;
}

.charts-table .table th {
  background: #f2f3f8;
  font-weight: 600 !important;
  font-size: 16px !important;
}

.charts-table .table th,
td {
  font-size: 15px;
  color: #48465b;
  font-weight: 500;
  text-align: center;
  text-transform: capitalize;
}

.charts-table .table td {
  vertical-align: middle;
  padding: 10px;
  color: #74788d;
}

.charts-table .table th,
td p {
  margin: 0;
}

.charts-table .table-striped tbody tr:nth-of-type(even) {
  background-color: rgba(246, 248, 255, 1);
}

.charts-table .table-striped tbody tr:nth-of-type(odd) {
  background-color: transparent;
}

.charts-table button {
  background: #53D7E3;
  border: 0;
  outline: none;
  box-shadow: none;
  color: #fff;
  text-transform: capitalize;
  font-size: 19px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 40px auto 15px auto;
  padding: 13px;
  cursor: pointer;
  width: 150px;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}

.charts-table button:hover {
  background: rgba(83, 215, 227, 0.9)
}

.charts-main h5 {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.2;
  color: #48465b;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.charts-main {
  display: -ms-flexbox;
  display: flex;
}

.charts-main a {
  font-size: 15px;
  margin-left: auto;
  color: #fff;
  text-transform: capitalize;
}

.charts-div-src {
  background: #fff;
  padding: 20px 20px;
}

.work-spcs h5 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: #48465b;
  margin: 20px 0;
  text-transform: capitalize;
}

.work-spcs-inner {
  min-height: 646px;
  background: #fff;
  overflow: auto;
  padding: 15px;
}

.work-spcs button {
  background: #5E72E4;
  border: 0;
  outline: none;
  box-shadow: none;
  color: #fff;
  text-transform: capitalize;
  font-size: 19px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* margin: 40px auto 15px auto; */
  padding: 13px;
  cursor: pointer;
  width: 150px;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}

.work-spcs button:hover {
  background: rgba(94, 114, 228, 0.9)
}

.fit-screen-height {
  padding-bottom: 15px;
}

.charts-div-src .apexcharts-text tspan {
  fill: #48465b;
  font-weight: 500;
  font-family: 'Poppins', sans-serif !important;
}

.charts-div-src .apexcharts-tooltip {
  font-size: 15px;
  background: #f2f3f8 !important;
  border: 0 !important;
  color: #48465b;
  width: 200px;
  box-shadow: none;
  font-family: 'Poppins', sans-serif !important;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}

.apexcharts-title-text {
  fill: #48465b;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 500;
}

.login-body-class {
  background: url(../images/body-bg.svg) #f2f5fa;
  width: 100%;
  background-size: cover;
  background-position: center;
  display: contents;
  min-height: 100vh;
  padding: 0;
}

.login-box {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  background-color: #ffffff;
  padding: 30px;
  width: 462px;
  margin: 0 auto
}

.login-box .form-head {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  text-align: center;
}

.login-box .form-head img {
  width: 250px;
}

.login-box h4 {
  color: #5e72e4;
  font-weight: 600;
  font-size: 22px;
  padding: 24px 0 0 0;
}

.login-box p {
  text-align: center;
  margin-bottom: 25px;
  font-size: 14px;
}

.login-box .form-control {
  background-color: #ffffff;
  font-size: 15px;
  color: #8A98AC;
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}

.login-box .form-control:focus {
  border-color: #0080ff;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
}
.login-box .custom-control-label {
  color: #8A98AC;
  cursor: pointer;
}

.login-box .btn {
  background: #5e72e4;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  font-size: 18px;
  color: #fff;
  display: block;
  width: 100%;
  text-align: center;
  padding: 6px 12px;
  cursor: pointer;
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  outline: none;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
}

.login-or {
  position: relative;
  text-align: center;
  margin-top: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.login-or:before {
  content: "";
  background: rgba(0, 0, 0, 0.05);
  height: 1px;
  width: 45%;
  top: 45%;
  left: 0;
  position: absolute;
}

.login-or:after {
  content: "";
  background: rgba(0, 0, 0, 0.05);
  height: 1px;
  width: 45%;
  top: 45%;
  right: 0;
  position: absolute;
}

.btn-primary-rgba {
  background-color: rgba(0, 128, 255, 0.1);
  border: none;
  font-size: 18px;
  color: #0080ff;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  padding: 6px 12px;
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}

.btn-primary-rgba:hover {
  background-color: #0080ff;
  border: none;
  color: #ffffff;
}

.btn-danger-rgba {
  background-color: rgba(255, 63, 63, 0.1);
  border: none;
  font-size: 18px;
  color: #ff3f3f;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  padding: 6px 12px;
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}

.btn-danger-rgba:hover {
  background-color: #ff3f3f;
  border: none;
  color: #ffffff;
}
.sign-up-link,.forgot-psw {
  color: #5e72e4!important;
  cursor: pointer;
}
.login-box .custom-control-label::before {
  top: .15rem;
}

.login-box .custom-control-label::after {
  top: .15rem;
}

.modl-comns {
  display: none;
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}

.login-popup-open .login-modl-main {
  display: block;
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}

.forgot-popup-open .forgot-modl-main {
  display: block;
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}

.signup-popup-open .signup-modl-main {
  display: block;
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}

.toast{
  background: #5e72e4;
  font-weight: 500;
  font-size: 14px;
}

.toast-progress{
  background: rgba(51, 61, 95, 1);
}

#toast-container>div:hover{
  box-shadow: 0 0 12px #5e72e4;
  -webkit-box-shadow: 0 0 12px #5e72e4;
  -moz-box-shadow: 0 0 12px #5e72e4;
}

/*================= media query ===================*/

@media(max-width: 1199px) {
  .p-class-o {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media(max-width: 991px) {
  .header-tabs .nav-pills .nav-link {
    font-size: 15px;
    margin-right: 10px;
  }

  .header-tabs .nav-pills .nav-item {
    display: inline-block;
  }

  .header-user-profile-inner span,
  .header-user-profile-inner img {
    display: none;
  }

  .profile-popoup {
    right: 0;
  }

  .charts-table .table th,
  td {
    white-space: nowrap;
  }

  .login-body-class {
    background-size: contain;
    background-position: center;
    min-height: 100%;
    background-repeat: no-repeat;
  }
}

@media(max-width: 767px) {
  .tickers-list-div-header {
    margin-top: 15px;
  }

  .header-tabs .nav-pills .nav-link {
    font-size: 13px;
    margin-right: 5px;
    padding: 7px 9px;
    text-align: center;
  }

  .login-box {
    width: 100%;
    padding: 15px;
  }

  .login-box h4 {
    padding: 15px 0 0 0;
  }

  .login-box p {
    margin-bottom: 15px;
  }

  .login-box .custom-control-label {
    font-size: 13px;
  }

  .forgot-psw a {
    font-size: 13px;
  }

  .charts-div-src {
    padding: 20px 0;
  }
}
