@charset "UTF-8";

/* CSS reset */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption,
th,
td {
  text-align: left;
  font-weight: normal;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}
blockquote,
q {
  quotes: "" "";
}
abbr,
acronym {
  border: 0;
}
iframe::-webkit-scrollbar {
  display: none;
}
html {
  scroll-behavior: smooth;
}

/* General styles */

@font-face {
  font-family: "Gilroy";
  src: url("https://www.markets.com/promo/_common/fonts/webFonts/GilroyLight/font.woff2")
    format("woff2");
  font-weight: 300;
}

body {
  font-family: "Gilroy", Arial, san-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #fff;
  background: #000;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
img.inline {
  vertical-align: middle;
}
h1,
h2,
h3,
h4 {
  font-family: "Gilroy", Arial, san-serif;
  font-weight: 600;
  /*	line-height: 1;*/
  margin-bottom: 0.5em;
}
h1 {
  font-size: 4em;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 12px;
}
h2 {
  font-size: 2.5em;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 300;
  margin-bottom: 1em;
}
h3 {
  font-size: 1.375em;
}
h4 {
  font-size: 2.125em;
  font-weight: 500;
  text-align: center;
  letter-spacing: 3.5px;
}
h1 br {
  display: none;
}
p {
  font-size: 1em;
  margin-bottom: 1em;
}
p.large {
  font-size: 1.375em;
}
p.small {
  font-size: 0.85em;
  margin-top: 10px;
  margin-bottom: 35px;
}
span.small {
  font-size: 0.5em;
  font-weight: normal;
}
table p {
  margin-bottom: 0;
}
th,
td {
  padding: 16px 20px;
  vertical-align: middle;
}
strong,
b {
  font-weight: bold;
}
ul li {
  position: relative;
  padding: 10px 25px;
}
ul li:before {
  content: "";
  display: inline-block;
  vertical-align: text-bottom;
  width: 15px;
  height: 15px;
  background: url(../images/bullet.png) center center/contain no-repeat;
  position: absolute;
  left: 0;
  right: 0;
  top: 16px;
}

/* Brand styles */

.btn {
  display: block;
  width: fit-content;
  padding: 1em 1.25em;
  color: #000;
  background: linear-gradient(109.43deg, #f4cc99 2.45%, #ddb475 100%);
  /* background: #7E66E6; purple */
  /* background: linear-gradient(300deg, #ff6770 17.81%, #ff4b55 81.86%); 	red */
  /* background: linear-gradient(300deg, #09C6F9 17.81%, #045DE9 81.86%);  blue */
  font-size: 1.125em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  box-sizing: border-box;
  border-radius: 8px;
  /*	max-width: 16em;
	margin: 50px auto 0;*/
}
.btn:hover {
  opacity: 0.9;
}
.btn-small {
  margin-top: 0;
  margin-bottom: 10px;
  padding: 9px 15px;
  background: linear-gradient(300deg, #ff6770 17.81%, #ff4b55 81.86%);
  min-width: 150px;
  font-size: 1.125em;
}
.btn-small:hover {
  background: #13121b;
}
.markets-logo {
  display: inline-block;
  max-width: 55%;
}
.logo-x {
  width: 200px;
  display: block;
}
.circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625em;
  font-weight: 700;
  line-height: 1;
}
.yellow {
  background-color: #fed86c;
}
.lilac {
  background-color: #cacdfc;
}
.green {
  background-color: #aee69d;
}
.turquoise {
  background-color: #87e1d7;
}

/* Embedded video */

.video-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-bottom: 0;
  margin-top: 40px;
}
.video-container iframe {
  width: 50%;
  height: 230px;
}

/* Layout styles */

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 20px 0;
}
.container.narrow {
  width: 100%;
  max-width: 1150px;
}

.container > div {
  box-sizing: border-box;
  /*	width: 100%;*/
}
.col-2,
.col-3,
.col-4 {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  /*	align-items: center;*/
}
.col-2 > div,
.col-3 > div,
.col-4 > div {
  box-sizing: border-box;
}

@media (min-width: 1181px) {
  .col-2 > div {
    width: 49%;
  }
  .col-2 > div.wide {
    width: 55%;
  }
  .col-2 > div.narrow {
    width: 35%;
  }
  .col-3 > div {
    width: 32%;
  }
  .col-4 > div {
    width: 23%;
  }
  .hidden-lg {
    display: none;
  }
}

@media (min-width: 581px) and (max-width: 1180px) {
  .col-2 > div {
    width: 100%;
  }
  .col-3 > div {
    width: 100%;
  }
  .col-4 > div {
    width: 49%;
  }
  .hidden-sm {
    display: none;
  }
}

@media (max-width: 580px) {
  .col-2 > div {
    width: 100%;
  }
  .col-3 > div {
    width: 100%;
  }
  .col-4 > div {
    width: 100%;
  }
  .hidden-sm {
    display: none;
  }
}

/* Page Styles */

:target {
  scroll-margin-top: 30px;
  scroll-snap-margin-top: 30px;
}

.live-chat-wrap {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1000;
}

.mid-wrap {
  background: url(../images/mid-bkgr.png) center center / 100% auto no-repeat;
}
@media (max-width: 580px) {
  .mid-wrap {
    background-image: url(../images/mid-bkgr-mob.png);
  }
}

#section-1 {
  background: url(../images/page-bkgr.jpg) center top no-repeat;
  padding-bottom: 700px;
}
@media (min-width: 1921px) {
  #section-1 {
    background-size: 100% auto;
    background-position: center 4%;
    padding-bottom: 43vw;
    margin-bottom: -8vw;
  }
}
@media (max-width: 580px) {
  #section-1 {
    background: url(../images/page-bkgr-mob.jpg) center calc(50% + 7vw) / 100%
      auto no-repeat;
    padding-bottom: 120vw;
    margin-bottom: -35vw;
  }
}

h1 {
  color: #f3d1a8;
  text-shadow: 0px 0px 24px #000000;
  position: relative;
  margin: 80px auto;
}
h1 span {
  font-weight: 300;
}
h1::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 189px;
  height: 51px;
  background: #ffffff;
  mix-blend-mode: overlay;
  filter: blur(20px);
  transform: matrix(-1, 0, 0, 1, 0, 0);
}
h2 {
  color: #f3d1a8;
}
h2::before,
h2::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: #f3d1a8;
  vertical-align: middle;
}
h2::before {
  margin-right: 30px;
}
h2::after {
  margin-left: 30px;
}
@media (max-width: 1180px) {
  h2 {
    margin-bottom: 0;
  }
  h2::after {
    display: block;
    margin: 30px auto 0;
  }
  h2::before {
    display: none;
  }
}
@media (max-width: 580px) {
  h1 {
    font-size: 1.5em;
    letter-spacing: 5px;
    margin: 40px auto;
  }
  h2 {
    font-size: 2.125em;
    letter-spacing: initial;
  }
  h3 {
    font-size: 1em;
  }
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}
.highlights img {
  vertical-align: text-bottom;
  margin: 0 8px;
}
.highlights span {
  font-size: 1.625em;
  font-weight: 500;
  color: #f3d1a8;
}
@media (max-width: 580px) {
  .highlights {
    gap: 20px;
  }
  .highlights img {
    width: 14px;
    height: 14px;
  }
  .highlights span {
    font-size: 1em;
  }
}

.btn-wrap {
  margin: 50px auto 20px;
  position: relative;
}
.btn-wrap span {
  position: absolute;
  top: -12px;
  right: -12px;
  padding: 3px 10px;
  background: linear-gradient(315deg, #bb9dfb 0%, #66a0ff 100%);
  border-radius: 8px;
  color: #fff;
  font-size: 0.875em;
  font-weight: 300;
}
.btn-wrap.animated {
  opacity: 0;
}
@media (max-width: 580px) {
  .btn-wrap {
    margin: 0;
  }
  .btn {
    width: 100%;
  }
}
.tnc-link {
  text-decoration: underline;
}

.box {
  border: 1px solid #f3d1a8;
  border-radius: 8px;
  padding: 24px 16px;
}

#section-2 .box {
  background: radial-gradient(
    ellipse farthest-corner at bottom right,
    rgba(81, 69, 55, 1) 0%,
    rgba(0, 0, 0, 1) 50%
  );
  position: relative;
  text-align: center;
}
#section-2 .box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 5px;
  top: 5px;
  border: 1px solid #f3d1a8;
  border-radius: 8px;
}
#section-2 .box img {
  margin: 12px 12px 30px;
}
#section-2 .box p {
  margin-bottom: 0.25em;
}
#section-2 .box span {
  font-size: 1.375em;
  color: #f3d1a8;
}
@media (max-width: 1180px) {
  #section-2 .box {
    margin-bottom: 16px;
  }
}
@media (max-width: 580px) {
  #section-2 .box {
    text-align: initial;
    animation-delay: 0s;
  }
  #section-2 .box::after {
    left: 3px;
    top: 3px;
  }
  #section-2 .box img {
    float: left;
    margin: 0 32px 0 16px;
  }
  #section-2 .box span {
    font-size: 1em;
  }
}

.tables-wrap td {
  text-align: right;
}
.table-basic {
  background: #000;
}
.table-silver {
  background: #222;
}
.table-gold {
  background: linear-gradient(323.76deg, #f4cc99 13.19%, #b07f32 88.71%);
}
.table-platinum {
  background: linear-gradient(315deg, #bb9dfb 0%, #66a0ff 100%);
}
.tables-wrap h3 {
  margin-bottom: 0;
  color: #fff;
}
.tables-wrap h3 img {
  vertical-align: middle;
}
span.tooltip {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../images/question-white.svg) center center / contain
    no-repeat;
  vertical-align: middle;
  margin-left: 16px;
  margin-top: 3px;
  position: absolute;
}
.tooltip .tooltiptext {
  visibility: hidden;
  opacity: 0;
  width: 180px;
  background-color: #000;
  color: #fff;
  font-size: 12px;
  line-height: 1.25;
  border-radius: 8px;
  padding: 8px;
  position: absolute;
  left: calc(-50% - 82px);
  bottom: 25px;
  z-index: 1;
  transition: all 0.3s;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.tooltip .tooltiptext:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(0, 0, 0, 0);
  border-top-color: #000000;
  border-width: 8px;
  margin-left: -8px;
}

@media (min-width: 1181px) {
  th,
  td {
    padding: 20px;
  }
  th {
    padding-left: 40px;
  }
  .tables-wrap {
    border: 1px solid #f3d1a8;
    border-radius: 8px;
    display: flex;
    margin: 80px 0;
  }
  .tables-wrap .table-basic {
    flex-grow: 1;
    border-radius: 8px 0 0 8px;
  }
  .tables-wrap .table-platinum {
    border-radius: 0 8px 8px 0;
  }
  .tables-wrap th {
    color: #f3d1a8;
    width: 100%;
  }
  .tables-wrap td {
    text-align: center;
    min-width: 150px;
  }
  .table-basic td {
    color: #969696;
  }
  .table-silver td {
    color: #e6e6ef;
  }
  .table-basic h3 {
    margin-left: auto;
    width: 150px;
  }
  span.tooltip {
    background: url(../images/question.svg) center center / contain no-repeat;
  }
  .tooltip .tooltiptext {
    width: 260px;
    padding: 16px;
    left: 25px;
    top: -25px;
    bottom: auto;
  }
}
@media (max-width: 1180px) {
  .tables-wrap table {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #f3d1a8;
    border-collapse: separate;
    margin-bottom: 16px;
  }
  .tables-wrap thead td {
    text-align: center;
  }
}
@media (min-width: 1351px) {
  .tables-wrap td {
    min-width: 170px;
  }
  .table-basic h3 {
    width: 170px;
  }
}
@media (min-width: 1423px) {
  .tables-wrap td {
    min-width: 190px;
  }
  .table-basic h3 {
    width: 190px;
  }
}

#section-3 .box {
  display: flex;
  align-items: center;
  gap: 32px;
  background: #222222;
  margin-bottom: 16px;
}
#section-3 .box div:first-child {
  flex-shrink: 0;
}
#section-3 .box img {
  width: 55px;
  height: 55px;
}
#section-3 .box h3 {
  color: #f3d1a8;
  margin-bottom: 0;
}
#section-3 .box p {
  margin-bottom: 0;
}
@media (min-width: 1181px) {
  #section-3 .box {
    padding-left: 73px;
    padding-right: 36px;
    min-height: 116px;
  }
}
@media (max-width: 580px) {
  #section-3 .box {
    padding: 20px;
    align-items: flex-start;
    animation-delay: 0s;
  }
}

@media (min-width: 581px) {
  #section-4 {
    padding: 40px 0;
  }
}
.steps {
  text-align: center;
  justify-content: center;
}
.steps > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.steps img {
  margin-bottom: 40px;
}
.steps .btn {
  margin-top: 20px;
}

@media (min-width: 1181px) {
  .steps {
    padding: 40px 0;
    flex-direction: row;
  }
  .steps > div {
    width: 21%;
  }
  .steps > div.arrow {
    width: 19%;
    background: url(../images/arrow.png) 0 55px / contain no-repeat;
  }
}
@media (max-width: 580px) {
  .steps > div {
    animation-delay: 0s !important;
  }
  .steps img {
    margin-bottom: 20px;
  }
}

.accordion h3 {
  color: #f3d1a8;
  padding: 40px 80px 26px 20px;
  position: relative;
}
.accordion h3 span {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 20px;
  background: url(../images/dropdown.svg) center center / contain no-repeat;
  transition: all 0.3s;
}
.ui-icon-triangle-1-e {
  transform: rotate(-90deg);
}
.ui-accordion-header-collapsed {
  cursor: pointer;
}
.accordion h3:not(:first-child) {
  border-top-width: 1px;
  border-top-style: solid;
  border-image: linear-gradient(
      to bottom,
      rgba(243, 209, 168, 0.4) 0%,
      rgba(0, 0, 0, 0.4) 50%
    )
    1;
}
.accordion div {
  padding: 8px 20px 20px;
}
@media (max-width: 580px) {
  .accordion {
    margin-top: 20px;
  }
}
@media (max-width: 580px) {
  .accordion h3 {
    padding: 30px 60px 16px 0;
  }
  .accordion div {
    padding: 8px 0 20px;
  }
}

#section-5 .col-3 {
  justify-content: space-around;
  border-top-width: 1px;
  border-top-style: solid;
  border-image: linear-gradient(
      to bottom,
      rgba(243, 209, 168, 0.4) 0%,
      rgba(0, 0, 0, 0.4) 50%
    )
    1;
  margin-top: -10px;
  padding-top: 40px;
}
#section-5 .col-3 > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
}
#section-5 .col-3 img {
  margin-bottom: 40px;
}
@media (min-width: 1181px) {
  #section-5 .col-3 {
    padding-top: 110px;
  }
  #section-5 .col-3 > div {
    width: 20%;
  }
}
@media (max-width: 580px) {
  #section-5 .col-3 > div {
    animation-delay: 0s !important;
  }
  #section-5 .col-3 img {
    margin-bottom: 20px;
  }
}

#section-6 {
  padding: 60px 0 200px;
  background: url(../images/section-6.png) center bottom / 100% auto no-repeat;
}
#section-6 .container {
  background: #0a1b2b url(../images/section-6-container.png) center center /
    cover no-repeat;
  border: 1px solid #f3d1a8;
  border-radius: 8px;
  padding: 50px 40px;
  align-items: center;
  overflow: hidden;
}
.login-wrapper {
  padding: 40px;
  box-sizing: border-box;
  background-color: #fff;
  color: #000;
  border-radius: 8px;
  position: relative;
}
@media (max-width: 580px) {
  #section-6 {
    padding: 20px 0 100px;
    background-size: 200% auto;
  }
  #section-6 .container {
    padding: 18px 18px 65px;
  }
  .login-wrapper {
    padding: 20px;
  }
  .login-wrapper h3 {
    font-size: 1.5em;
  }
}

#leadform-form .form_wrapper {
  font-family: "Gilroy", Arial, san-serif !important;
}
#leadform-form .form_wrapper .mid_wrapper .bonus_holder {
  margin-top: 10px !important;
}
#leadform-form .form_wrapper .mid_wrapper .external-auth.branded-sso .or-line {
  margin: 22px 0 10px !important;
  display: none !important;
}
#leadform-form
  .form_wrapper
  .mid_wrapper
  .external-auth.branded-sso
  .or-line:before,
#leadform-form
  .form_wrapper
  .mid_wrapper
  .external-auth.branded-sso
  .or-line:after {
  border-bottom-color: #e8e8e8;
  width: 60px !important;
}
#leadform-form .form_wrapper .mid_wrapper .external-auth {
  margin-bottom: 10px !important;
}
#leadform-form
  .form_wrapper
  .mid_wrapper
  .external-auth
  .external-auth-content {
  justify-content: center;
}
#leadform-form
  .form_wrapper
  .mid_wrapper
  .external-auth.display-sso-icons
  .ext-buttons {
  border-radius: 50%;
  margin: 0 13px;
  font-size: 0;
  border: 1px solid rgb(230, 230, 239);
  width: 32px;
  height: 32px;
  flex: initial;
}
#leadform-form
  .form_wrapper
  .mid_wrapper
  .external-auth.display-sso-icons
  .ext-buttons.ext-buttons-apple {
  background: url(../images/apple.svg) center center/16px 16px no-repeat !important;
}
#leadform-form
  .form_wrapper
  .mid_wrapper
  .external-auth.display-sso-icons
  .ext-buttons.ext-buttons-goog {
  background: url(../images/google.svg) center center/16px 16px no-repeat !important;
}
#leadform-form
  .form_wrapper
  .mid_wrapper
  .external-auth.display-sso-icons
  .ext-buttons.ext-buttons-fb {
  background: url(../images/facebook.svg) center center/16px 16px no-repeat !important;
}
#leadform-form .form_wrapper .mid_wrapper .form_holder .form_row .field_title {
  font-size: 14px !important;
  text-align: initial;
}
#leadform-form
  .form_wrapper
  .mid_wrapper
  .form_holder
  .form_row
  .field_input
  input {
  border: 1px solid #d0d1d1 !important;
  padding: 15px !important;
  border-radius: 8px !important;
  font-family: "Gilroy", Arial, san-serif !important;
  font-size: 16px !important;
  color: #aaa !important;
  background-color: #fff;
}
#leadform-form
  .form_wrapper
  .mid_wrapper
  .form_holder
  .form_row
  .field_input
  input#telephone {
  padding-left: 40px !important;
}
#leadform-form .form_wrapper .mid_wrapper .form_holder .button {
  background: #13121b !important;
  border-radius: 8px !important;
  padding: 15px !important;
  font-family: "Gilroy", Arial, san-serif !important;
  margin-bottom: 20px !important;
}
#leadform-form .form_wrapper .mid_wrapper .gdpr-disclosure,
#leadform-form .form_wrapper .mid_wrapper .legal,
#leadform-form .form_wrapper .mid_wrapper .legal span {
  font-size: 12px !important;
  color: #8a8b8b !important;
}
.gdpr-disclosure a {
  font-family: "Gilroy", Arial, san-serif !important;
  color: #161717 !important;
}
.layer_text {
  margin: 0 auto !important;
}
.row-password2 .field_title {
  display: none;
}

/* Desktop View */

@media (min-width: 1181px) {
}

/* Mobile View */

@media (max-width: 580px) {
}

/* Footer */

footer {
  background-color: #161717;
  color: #acafaf;
  padding-top: 30px;
  padding-bottom: 90px;
  border-radius: 24px 24px 0px 0px;
  margin-top: -25px;
}

footer .container {
  font-size: 0.75em;
}
footer a {
  /* color: #09c6f9; */
}
footer p {
  margin-bottom: 10px;
}
.awards {
  padding-bottom: 20px;
}
.awards img {
  display: inline-block;
  margin: 15px 10px;
  vertical-align: middle;
}
.awards img.logo-footer {
  margin-right: 14px;
  margin-left: 0;
}
[dir="rtl"] .awards img.logo-footer {
  margin-right: 0;
  margin-left: 14px;
}

.disclaimer .title {
  text-transform: uppercase;
}

.disclaimer strong {
  color: #fff;
  font-family: "Gilroy", Arial, san-serif !important;
  font-weight: 700;
}

.rw-fixed {
  position: fixed;
  width: 100%;
  margin: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #e4e4e4;
  color: #3a424c;
  box-sizing: border-box;
  padding: 10px 0 8px;
  font-size: 14px;
  text-align: center;
  z-index: 1000;
}

.rw-fixed .container {
  padding: 0;
}

footer strong{
	font-size:18px;
	font-weight:600;
}

footer a{
	text-decoration:underline;
	color:white;
}
.footer-links a {
	color: #09C6F9;
	text-decoration:none;
}
footer p {
  margin-bottom: 20px;
}

@media (min-width: 1181px) {
  footer {
    padding-top: 50px;
  }
  footer .col-2 > div.wide {
    width: 65%;
  }
  footer .col-2 > div.narrow {
    width: 25%;
  }
  .disclaimer .title {
    font-size: 14px;
  }
  .awards img {
    margin: 10px 20px;
  }
  .awards br {
    display: none;
  }
}

@media (max-width: 580px) {
  .awards img.logo-footer {
    width: 190px;
  }
}

@media (min-width: 581px) {
  #page-wrap .rw-inline,
  #page-wrap .rw-custom {
    font-size: 14px !important;
    text-align: center;
  }
}

.pdf-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  z-index: 500;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  visibility: hidden;
}
.pdf-wrapper .modal-body {
  width: 100%;
  box-sizing: border-box;
  height: calc(100vh - 30px);
}
.pdf-wrapper .pdf-frame iframe {
  width: 100%;
  border: none;
  height: calc(100vh - 30px);
}
.pdf-wrapper .modal-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  box-sizing: border-box;
  padding-right: 6px;
  align-items: center;
}
.pdf-wrapper .modal-header .icon-close {
  height: 30px;
  width: 30px;
  background: url(../../../pdfjs/web/images/icon-close-light.svg) no-repeat
    center center;
  background-size: 18px;
  cursor: pointer;
}
.noscroll {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

/* css edit start*/
.markets-depth-dropdown {
  border-radius: 8px;
  border: 1px solid var(--f-3-d-1-a-8, #f3d1a8);
  background: #222;
  padding: 64px 108px;
  text-align: center;
}

.markets-depth-dropdown h5 {
  font-size: 22px;
  font-weight: 600;
  color: #f3d1a8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.markets-depth-dropdown h5 img {
  margin-bottom: 3px;
}

.markets-depth-dropdown table {
  width: 100%;
  margin-bottom: 64px;
  margin-top: 64px;
}

.markets-depth-dropdown table th,
.markets-depth-dropdown table td {
  width: 25%;
  text-align: center;
  padding: 20px 0;
  border-right: 0.5px solid #f3d1a8;
}

.markets-depth-dropdown table th:last-child,
.markets-depth-dropdown table td:last-child {
  border-right: none;
}
.markets-depth-dropdown table th {
  font-size: 22px;
  vertical-align: inherit;
}

.markets-depth-dropdown table td {
  color: #f3d1a8;
}

.markets-depth-dropdown table th span {
  font-size: 14px;
}

.markets-depth-dropdown a {
  text-decoration: underline;
}

.markets-depth-toggle-button {
  background: url(../images/toggle.svg) no-repeat center;
  background-size: cover;
  width: 26px;
  height: 26px;
  border: none;
  cursor: pointer;
  margin-left: 6px;
  /* position:relative;
	top:2px; */
  transform: rotate(180deg);
  margin-right: 0px;
}

.markets-depth-toggle-button.button-active {
  transform: rotate(0deg);
}

.markets-depth-semi {
  border-radius: 40px;
  background: linear-gradient(315deg, #bb9dfb 0%, #66a0ff 100%);
  padding: 0 16px;
  color: white;
  display: inline-block;
  margin-left: 12px;
}

.markets-depth-dropdown-mobile-br {
  display: none;
}

.table-silver tr,
.table-gold tr,
.table-platinum tr {
  position: relative;
}

.markets-depth-toggle-button-mobile {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  border: none;
  z-index: 2;
  display: none;
}

.table-basic .row-market-depth th:first-child {
  padding-right: 0;
  display: flex;
  align-items: center;
}

.row-market-depth-container {
  display: flex;
  align-items: center;
  position: relative;
  margin-right: -90px;
}

.market-row-depth-tick{
  margin:auto;
  display:block;
}

@media (max-width: 1180px) {

  .market-row-depth-tick{
    margin-right:0;
  }
  .markets-depth-toggle-button {
    margin-right: 0px;
    margin-left: 12px;
  }
  .table-basic .row-market-depth {
    display: none;
  }
  .markets-depth-toggle-button-mobile {
    display: block;
  }
  .markets-depth-semi {
    padding: 0 8px;
    margin-left: 8px;
    font-size: 14px;
  }
  .table-platinum .markets-depth-semi {
    background: #66a0ff;
  }
  .depth-dropdown-pc {
    display: none !important;
  }
  .markets-depth-toggle-button {
    transform: rotate(180deg) !important;
  }
}
@media (max-width: 870px) {
  .markets-depth-dropdown {
    padding: 64px 16px;
  }
}

@media (max-width: 650px) {
  .markets-depth-dropdown-mobile-br {
    display: block;
  }
  .markets-depth-dropdown h5 {
    align-items: baseline;
    display: block;
  }
  .markets-depth-dropdown h5 img {
    position: relative;
    top: 3px;
  }
}

@media (max-width: 500px) {
  .markets-depth-dropdown table th,
  .markets-depth-dropdown table td {
    padding: 10px 6px;
  }
  .markets-depth-dropdown table th {
    font-size: 16px;
  }
  .markets-depth-dropdown table th span {
    font-size: 10px;
  }
  .markets-depth-dropdown table td {
    font-size: 14px;
  }
  .markets-depth-dropdown {
    padding: 64px 8px;
  }
}

@media (min-width: 1181px) {
  .markets-depth-dropdown {
    margin-top: -72px;
    margin-bottom: 80px;
  }
}

/* modal css start*/
.modal *,
.modal {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.modal {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 25;
  display: flex;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  overflow: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: all 250ms;
  overflow-x: hidden;
}
.modal-close-button {
  position: absolute;
  z-index: 3;
  top: -15px;
  right: -15px;
  background: url(../images/popup-close.svg);
  background-size: contain;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  cursor: pointer;
}
.modal-show {
  opacity: 1;
  visibility: visible;
  transition: all 500ms;
}
.modal-content {
  border-radius: 12px;
  text-align: center;
  position: relative;
  width: 90%;
  max-width: 1240px;
  height: auto;
  margin: auto;
  padding: 10px 0;
}

.depth-dropdown-mobile {
  padding: 64px 8px;
}

.test-button {
  width: 100px;
  height: 100px;
}

#chat-widget-minimized{
	opacity:0;
	visibility: hidden;
}