:root {
  --main_color: #e0802a;
  --hover_color: #d26d13;
}

.ltr-dir {
  direction: ltr !important;
}

.rtl-dir {
  direction: rtl;
}
 
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

section {
  position: relative;
}

input:focus,
textarea:focus {
  outline: 0 !important;
  box-shadow: 0 0 0 0rem var(--hover_color) !important;
  border-color: var(--hover_color) !important;
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* start of header  */

.header_profile {
  padding: 13px 0 4px;
  border-bottom: 1px solid #eee;
  height: 81px;
}

/* THE POPULAR RED NOTIFICATIONS COUNTER. */

#noti_Container {
  position: relative;
}

/* A CIRCLE LIKE BUTTON IN THE TOP MENU. */

.overlay_noti {
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(67, 94, 109, 0.8);
  z-index: 2;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
  display: none;
}

.overlay_show {
  display: block;
}

#noti_Counter {
  display: block;
  position: absolute;
  background: var(--main_color);
  color: #fff;
  font-size: 12px;
  font-weight: normal;
  padding: 1px 6px;
  margin: -8px 0 0 25px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  z-index: 1;
  border-radius: 11px;
}

/* THE NOTIFICAIONS WINDOW. THIS REMAINS HIDDEN WHEN THE PAGE LOADS. */
.notifications {
  display: none;
  width: 430px;
  position: absolute;
  top: 51px;
  right: 0;
  background: #fff;
  border: solid 1px rgba(100, 100, 100, 0.2);
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  z-index: 2;

  border-radius: 7px;
}

.winner_icon {
  height: 28px;
  float: right;
  margin: 11px 10px 0;
}

/* AN ARROW LIKE STRUCTURE JUST OVER THE NOTIFICATIONS WINDOW */
.notifications:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  color: transparent;
  border: 10px solid #ccc;
  border-color: transparent transparent #fff;
  margin-top: -20px;
  margin-left: 10px;
  right: 17px;
  position: absolute;
}

.notifications h3 {
  display: block;
  color: #333;
  font-weight: bold;
  font-size: 15px;
  padding: 11px;
  margin: 0;
  border-bottom: solid 1px rgba(183, 183, 183, 0.3);
  text-align: left;
}

.seeAll {
  padding: 8px;
  font-size: 12px;
  font-weight: bold;
  border-top: solid 1px rgba(183, 183, 183, 0.3);
  text-align: center;
}

.seeAll a {
  color: #3b5998;
}

.seeAll a:hover {
  background: #f6f7f8;
  color: #3b5998;
  text-decoration: underline;
}

.noti_cn {
  height: 300px;
  overflow: auto;
}

.noti_row {
  padding: 10px 10px 7px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.noti_row:hover {
  background: #f0f0f0;
}

.noti_row img {
  height: 30px;
  float: left;
  margin-right: 0;
  width: 30px;
  border-radius: 50%;
}

.noti_row h2 {
  font-size: 13px;
  position: relative;
  top: 1px;
  float: left;
  text-align: left;
  width: 80%;
  padding-left: 7px;
}

.noti_row h2.n_not_read {
  font-weight: bold;
}

.z2index {
  z-index: 2;
}

.main_noti_container {}

.main_noti_container>h3 {
  padding-top: 50px;
  font-size: 18px;
  font-weight: bold;
}

.main_noti_container .noti_cn {
  height: 700px;
}

.profile_logo {
  float: left;
  margin-right: 50px;
}

.profile_logo img {
  height: 50px;
}

.top_nav {
  margin-left: 40px;
}

.ul_profile_nav li {
  display: inline-block;
  padding: 4px 15px;
  position: relative;
}

.ul_profile_nav li a {
  padding: 13px 0px;
  display: block;
  color: #1a1a1a;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  position: relative;
}

.ul_profile_nav li a:after {
  display: block;
  content: '';
  border-bottom: solid 1px var(--main_color);
  transform: scaleX(0);
  transition: transform 200ms ease-in-out;
  padding-top: 7px;
  position: absolute;
  top: 49px;
  left: 0;
  width: 100%;
}

.ul_profile_nav li a:hover:after {
  transform: scaleX(1);
}

.ul_profile_nav li .badget_invite {
  background: #05b169;
  display: block;
  text-align: center;
  font-size: 13px;
  color: white;
  border-radius: 5px;
  padding: 3px 5px;
  position: absolute;
  top: 14px;
  right: -57px;
  font-weight: bold;
}

.ul_nav_right {
  margin: 5px;
}

.ul_nav_right li {
  display: inline-block;
  margin-left: 12px;
  position: relative;
}

.main_btn {
  display: block;
  padding: 10px 15px;
  font-weight: bold;
  text-align: center;
  background: var(--main_color);
  color: white;
  border-radius: 5px;
  border: 1px solid var(--main_color);
}

.main_btn:hover {
  color: #ffffff;
  background-color: var(--hover_color);
  border-color: var(--hover_color);
}

.sm_main {
  padding: 5px 13px;
  font-size: 12px;
}

.btn_joner_cn {
  width: 170px;
  display: flex;
  justify-content: center;
}

.btn_main_white {
  display: block;
  padding: 10px 16px;
  font-weight: bold;
  text-align: center;
  background: #fff;
  color: var(--main_color);
  border-radius: 5px;
  border: 1px solid var(--main_color);
  font-size: 14px;
}

.btn_joner_cn a:first-of-type {
  border-right: 0px;
  border-radius: 5px 0px 0px 5px;
  width: 50%;
}

.btn_joner_cn a:last-of-type {
  border-radius: 0px 5px 5px 0;
  width: 50%;
}

.alert_btn {
  border: 2px solid #eee;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: gray;
  font-size: 20px;
  cursor: pointer;
  background: white;
  position: relative;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}

.alert_btn:hover {
  color: var(--main_color);
  background: #e0e0e0;
}

.profile_btn {
  position: relative;
}

.profile_btn>img {
  width: 35px;
  height: 35px;
  border-radius: 21px;
  border: 1px solid #eee;
  margin: -8px 4px 0;
  display: inline-block;
}

.pref_size {
  font-size: 13px;
  color: #e0802a;
  position: absolute;
  right: 0;
}

.pref_size2 {
  font-size: 13px;
  color: #e0802a;
  position: absolute;
  left: 0;
  top: -21px;
}

.acc_emty-img {
  margin-top: 0 !important;
  position: relative;
  top: -5px;
}

#profile_context {
  width: 200px;
}

#profile_context .prof_context_header {
  text-align: left;
  border-bottom: 1px solid #eee;
  padding: 0px 0 15px;
}

#profile_context .prof_context_header h2 {
  font-size: 17px;
  padding: 8px 11px 0 12px;
  margin: 4px 0;
  color: black;
  font-weight: bold;
}

#profile_context .prof_context_header h4 {
  font-size: 14px;
  margin: 0;
  padding: 1px 13px;
  color: #545353;
}

.prof_menu li {
  display: block;
  text-align: left;
  margin: 0;
}

.prof_menu li a {
  display: block;
  color: #2d2d2d;
  font-weight: bold;
  height: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}

.prof_menu li a:hover {
  color: var(--main_color);
}

.prof_menu li .mn_last_item {
  color: red;
  border-top: 1px solid #eee;
  text-align: center;
  padding-bottom: 27px;
  padding-left: 0px;
}

/* end of header  */

/* start of user balance  */

.main_panel {
  border: 1px solid #eee;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  border-radius: 4px;
  position: relative;
}

.main_panel_header {
  padding: 15px 15px 12px;
  font-size: 17px;
  font-weight: bold;
  border-bottom: 1px solid #eee;
  margin-bottom: 0;
}

.blnce_box {}

.main_panel .main_content_header {
  font-size: 21px;
  padding: 22px;
}

.main_panel .main_content_text {
  font-size: 13px;
  padding: 0 22px 20px;
  color: gray;
  line-height: 26px;
  text-align: justify;
}

.main_panel ul {
  margin-bottom: 30px;
}

.main_content_text2 {
  font-size: 14px;
  padding: 0 2px 17px;
  color: #565555;
  line-height: 26px;
  text-align: justify;
}

.main_panel ul li a {
  padding: 8px 14px;
  display: block;
  font-size: 15px;
}

.main_panel ul li a i {
  color: rgba(17, 51, 83, 0.6);
}

.blnce_box h3 {
  margin: 20px 10px 0 20px;
  font-size: 15px;
  font-weight: bold;
  color: gray;
  float: left;
}

.blnce_box h2 {
  margin: 8px 10px 0 20px;
  font-size: 26px;
}

.blue_line {
  width: 100%;
  margin: 12% auto 0;
  border-top: 2px solid var(--main_color);
}

.blnc_down {
  height: 30px;
  border-top: 1px solid #eee;
  position: absolute;
  bottom: 6px;
  width: 100%;
}

/* end of user balance */

/* start of invite freinds */

.gift_box img {
  margin: 10px;
}

.gift_box h2 {
  font-size: 19px;
  font-weight: bold;
  margin: 20px 0 0 0;
}

.gift_box h5 {
  font-size: 13px;
  margin: 8px 0 0 0;
  color: gray;
}

.gift_box h5 a {
  color: gray;
}

.git_form {
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
}

.git_form input {
  padding: 23px;
  font-size: 17px;
  height: 49px;
}

.git_form button {
  position: absolute;
  right: -1px;
  top: 0px;
}

.btn_green {
  background: #05b169;
  color: white;
  border: 1px solid #05b169;
  border-radius: 0px 5px 5px 0;
  padding: 13px;
  font-size: 14px;
  font-weight: bold;
}

.gift_btn_join a {
  float: left;
  width: 127px;
  border: 1px solid #dedbdb;
  padding: 13px 0px;
  margin: 19px 0px;
  text-align: center;
  color: #4e4e4e;
  font-size: 15px;
  font-weight: bold;
  border-radius: 5px;
}

.gift_btn_join a:first-of-type {
  border-radius: 5px 0px 0px 5px;
  border-right: 0;
}

.gift_btn_join a:last-of-type {
  border-radius: 0px 5px 5px 0;
}

/* end of invite freinds */

/* start of section watch list */

.header_main_panel {
  padding: 14px 0 6px 0;
  border-bottom: 1px solid #eee;
}

.header_main_panel h2 {
  font-size: 17px;
  font-weight: bold;
  padding: 5px 0;
}

.header_ul {
  padding-top: 5px;
}

.header_ul li {
  float: right;
  margin-left: 10px;
}

.header_ul li a {
  color: #93a5b1;
}

.header_ul li a i {
  color: #b7c5d6;
  font-size: 19px;
}

.header_ul li a i.pnl_active {
  color: var(--main_color);
}

.watch_box {
  padding: 7px;
  /* border: 1px solid #f5f5f5; */
}

.watch_heder>div {
  display: flex;
  align-items: center;
  padding-top: 7px;
}

.watch_heder img {
  width: 30px;
  height: 30px;

  border-radius: 23px;
}

.watch_heder h2 {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 0;
  padding-left: 5px;
}

.watch_heder .currency_time {
  font-size: 11px;
  background: #f3f3f3;
  padding: 3px 6px;
  border-radius: 8px;
  color: gray;
}

.watch_price h2 {
  margin: 10px 0;
  font-size: 24px;
  font-weight: bold;
}

.currency_change {
  padding: 10px 0;
  display: block;
  font-weight: bold;
}

.currency_up {
  color: #05b169;
}

.currency_down {
  color: #f34545;
}

.watch_more_box {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.watch_more_box a {
  color: var(--main_color);
  font-weight: bold;
  font-size: 19px;
}

/* end of section watch list */

/* start of portfolio  */

.mp_simple_content {
  padding: 10px 15px 10px;
  font-size: 14px;
  border-bottom: 1px solid #eeeeee;
}

.main_a {
  color: var(--main_color);
  font-size: 15px;
}

.main_a i {
  font-size: 22px;
  background: var(--main_color);
  padding: 9px;
  color: white;
  border-radius: 20px;
  margin-right: 14px;
}

.noBorder {
  border: 0px;
}

.transaction_row {
  padding: 12px 0 7px;
  border-bottom: 1px solid #eee;
}

.transaction_row img {
  height: 40px;
  height: 40px;
}

.transaction_row h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.transaction_row h6 {
  font-size: 14px;
  color: gray;
}

.tbl_assets thead tr th {
  border-bottom: 1px solid #eee;
  font-size: 16px;
  color: #afafaf;
  font-weight: normal;
  border-top: 0;
  padding-left: 20px;
}

.tbl_assets tbody tr td {
  padding-left: 20px;
}

.assets_title {
  position: relative;
}

.assets_title img {
  width: 50px;
  height: 35px;
}

.assets_title span {
  font-weight: bold;
  padding-left: 4px;
  color: black;
}

.assets_bln {
  font-size: 14px;
  font-weight: bold;
  /* float: left; */
  position: relative;
  top: 2px;
  width: 24px;
  display: inline-block;
  text-align: center;
  position: relative;
  top: 1px;
}

.assets_title .dater {
  width: 11px;
  height: 11px;
  position: absolute;
  left: -15px;
  border: 1px solid #eee;
  top: 14px;
  border-radius: 7px;
}

.assets_title .fater_greeen {
  background: #3bff3b;
}

.assets_title .fater_red {
  background: #ff4242;
}

.assets_title .fater_yellow {
  background: #ffdf00;
  border: 1px solid #fbcf0e;
}

.assets_equivalent {
  font-size: 12px;
  color: #989898;
}

.assets_alloc_sircle {
  font-size: 11px;
  color: #1652f0;
  float: left;
  margin: 9px 9px 0 0;
}

.assets_alloc_percent {
  font-size: 22px;
  float: left;
}

/* end of portfolio  */

/* start of token Deposit */

.tokenDepHeader h2 {
  display: inline-block;
  line-height: 12px;
  padding-top: 8px;
}

.tokenDepHeader h2 a {
  font-weight: bold;
  font-size: 20px;
  color: black;
}

.tokenDepHeader img {
  float: left;
  margin-right: 5px;
  width: 56px;
  border-radius: 50%;
  height: 56px;
  border: 2px solid #bfbfbf;
}

.tokenDepHeader h2 span {
  color: gray;
  font-weight: normal;
  margin-left: 13px;
  font-size: 18px;
}

.tokenDepHeader h5 {
  font-size: 12px;
  color: gray;
}

.btn_icon {
  background: white;
  border: 1px solid #eee;
  padding: 10px;
  color: #313131;
  font-size: 14px;
  border-radius: 5px;
}

.btn_icon i {
  color: #b7b6b6;
  font-size: 18px;
}

.btn_icon i.icn_active {
  color: #e0802a;
}

.big_simple_loading {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
}

.nav_overview_cn {
  position: relative;
}

.nav_overview_cn .tab_btn_line {
  position: absolute;
  height: 53px;
  border-bottom: 1px solid #e6e6e6;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.nav_overview {
  border-bottom: 0px;
}

.nav_overview li {
  padding: 16px 6px 4px 0px;
  display: block;
  width: 50%;
  text-align: center;
}

.nav_blocked li {
  width: 33.3%;
}

.nav_overview li a {
  color: gray;
}

.nav_overview li a.active {
  color: #8e4524;
  font-weight: bold;
  border-bottom: 3px solid #8e4524;
  padding: 0px 0 10px;
  display: block;
}

.title_gray {
  padding: 11px;
  background: #eaeaea;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  border: 1px solid #ccc6c6;
}

.trans_gray {
  font-size: 14px;
  margin: 9px;
  color: gray;
}

.transfer_form_box {
  margin: 0;
  border: 1px solid #eee;
  padding: 0px 0;
  border-radius: 7px;
}

.transfer_form_box h4 {
  color: #a5a5a5;
  font-size: 14px;
  display: flex;
  align-items: center;
  height: 100%;
}

.transfer_form_box .trans_form_icon {
  background: #f1f1f1;
  padding: 3px;
  border-radius: 20px;
  color: #b5b4b4;
  position: absolute;
  width: 24px;
  height: 24px;
  top: 9px;
  text-align: center;
  font-size: 12px;
}

.transfer_form_box .trans_form_img {
  padding: 3px;
  border-radius: 20px;
  color: #b5b4b4;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 2px;
  text-align: center;
  font-size: 12px;
  left: 7px;

  display: flex;
  align-items: center;
}

.transfer_form_box .trans_form_img img {
  width: 25px;
}

.transfer_form_box .am_switch_cn {
  position: absolute;
  top: -15px;
  left: 19px;
}

.transfer_form_box .am_switch_cn a {
  width: 25px;
  height: 25px;
  border: 1px solid #eae8e8;
  background: white;
  text-align: center;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.transfer_form_box .am_switch_cn a i {
  transform: rotate(-90deg);
  color: #c3c3c3;
  font-size: 13px;
}

.transfer_form_box .trans_form_input {
  border: 0px;
  padding: 10px 0 10px 35px;
  width: 100%;
  color: #4c4c4c;
  font-size: 14px;
}

.row_border_bottom {
  border-bottom: 1px solid #e8e8e8;
}

.transfer_form_box .trans_label {
  float: left;
  margin: 9px 8px 8px 33px;
  width: 85%;
}

.transfer_form_box .trans_label a {
  color: #4c4c4c;
  width: 100%;
  display: block;
}

.transfer_form_box .trans_label a i {
  float: right;
  margin-top: 4px;
  color: gray;
}

.btn_send {
  background: var(--main_color);
  border: 1px solid var(--main_color);
  width: 100%;
  height: 45px;
  color: white;
  font-weight: bold;
  border-radius: 8px;
}

.trans_black {
  color: black;
  text-align: right;
  font-size: 14px;
}

.amount_cn {
  position: relative;
  text-align: center;
}

.amount_cn input {
  text-align: center;
  border: 0px;
  font-size: 56px;
  width: 75%;
  color: #b7c1cb;

  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}

.amount_cn input::placeholder {
  color: #b7c1cb;
}

.amount_simble {
  position: absolute;
  font-size: 30px;
  color: #b7c1cb;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}

.amount_cn input:placeholder-shown+.amount_simble {
  left: 36%;
  top: 13px;
}

.amount_cn input:not(:placeholder-shown)+.amount_simble {
  left: 0%;
  top: 20px;
  color: var(--main_color);
}

.amount_cn input:not(:placeholder-shown) {
  color: var(--main_color);
}

.amount_cn .am_buy_limit {
  font-size: 13px;
  padding: 5px 0 11px;
  color: gray;
}

.amount_cn .am_time_purhase {
  font-size: 12px;
  padding: 8px 12px 9px 15px;
  color: var(--main_color);
  display: inline-block;
  background: rgb(233, 246, 255);
  border-radius: 10px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.amount_cn .am_time_purhase i {
  font-size: 19px;
  float: left;
  margin-right: 10px;
}

.amount_type_cn a {
  position: absolute;
  right: 9px;
  top: 19px;
  color: gray;
  display: block;
  height: 50px;
  width: 40px;
  font-size: 13px;
}

.amount_type_cn a i {
  transform: rotate(-90deg);
  position: relative;
  top: 2px;
}

.amount_type_cn span {
  position: relative;
  left: 12px;
  top: 0px;
}

.no_tran_box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 30%;
  text-align: center;
}

.no_tran_box i {
  background: #d3e8f7;
  font-size: 90px;
  padding: 10px 30px;
  border-radius: 50%;
  color: #a0d2f5;
  margin-bottom: 20px;
}

.no_tran_box h4 {
  font-size: 25px;
  margin-bottom: 20px;
}

.no_tran_box h6 {
  font-size: 15px;
}

.trans_rec_copy {
  left: auto;
  right: 4px;
  color: black !important;
  font-size: 15px !important;
  width: 29px !important;
  height: 29px !important;
  top: 6px !important;
}

.transfer_form_send_box input {
  padding: 10px 0px !important;
  width: 78% !important;
  font-size: 14px !important;
  position: relative !important;
}

.transfer_form_send_box input:after {
  content: '2';
  position: absolute !important;
  top: 0;
  right: 0px;
  left: auto;
  width: 50px;
  height: 30px;
}

/* end of token deposit  */

/* start of trade modal  */
.sm_modal {
  max-width: 370px;
  display: inline-block;
}

.modal-dialog {
  padding-top: 1%;
  min-width: 350px;
}

.transfer_box {
  border: 1px solid #eee;
  border-top: 0;
}

.nav_trade_modal {
  border-bottom: 0px;
}

.nav_trade_modal li {
  padding: 1px 0px 0px 0px;
  display: block;
  width: 33.33%;
  background: rgba(17, 51, 83, 0.02);
  text-align: center;
}

.nav_trade_modal li a {
  color: gray;
  padding: 14px;
  display: block;
  border: 1px solid #efefef;
  border-bottom: 0;
  border-right: 0;

  border-radius: 5px;
}

.nav_trade_modal li a.active {
  color: var(--main_color);
  font-weight: bold;
  background: white;

  border-radius: 5px 5px 0 0;
  border-top: 2px solid var(--main_color);
}

/* end of trade modal  */

/* start of edit profile nav  */

.topUserNav {
  list-style: none;
  margin: 0px;
  padding: 0px;
  display: block;
  border: 1px solid #eee;
  height: 67px;
  margin-top: 37px;
  border-radius: 5px 5px 0 0;
  display: flex;
  justify-content: space-around;
}

.topUserNav li {
  float: left;
}

.topUserNav li a {
  display: block;
  padding: 20px 0px 21px 0px;
  color: gray;
}

.topUserNav li.nav_active a {
  color: var(--main_color);
  border-bottom: 2px solid var(--main_color);
}

.topUserNav li a:hover {
  color: var(--main_color);
}

.padding_container { 
}

.edit_profile .right_border { 
}

.edit_profile .img_edt_profile {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  margin-right: 10px;
}

.edit_profile h5 {
  font-size: 16px;
  font-weight: bold;
}

.edit_profile h6 {
  font-size: 14px;
  margin-bottom: 0;
}

.edit_profile a {
  font-size: 13px;
}

.edit_profile .upload_pic_cn {
  position: absolute;
  right: 28px;
  top: 6px;
}

.edit_profile .upload_pic_cn .simple_btn input[type='file'] {
  display: none;
}

.simple_btn {
  font-size: 15px !important;
  display: block;
  border: 1px solid #dcdbdb;
  padding: 10px;
  color: #191818;
  border-radius: 5px;
  background: white;
  cursor: pointer;
}

.simple_btn:hover {
  border: 1px solid var(--main_color);
  color: var(--main_color);
}

.group_li {
  width: 100%;
  margin-bottom: 10px;
  text-align: center;
}

.btn_group {}

.border_bottom_gray {
  border-bottom: 1px solid #eee;
  font-size: 20px;
  font-weight: bold;
}

.sm_font {
  font-size: 13px !important;
}

.form-control:not(input[type='file']) {
  /* font-size: 14px;
  color: gray;
  padding: 7px; */
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type='number'] {
  -moz-appearance: textfield;
}

.padding_3px {
  padding: 3px !important;
}

.form-group label {
  font-size: 14px;
}

.col-form-label {
  line-height: 2.5;
}

.ul_simple li {
  display: inline-block;
  padding: 0px 0 1px 12px;

  border-left: 1px solid #dadada;
}

.ul_simple li:first-of-type {
  border-left: 0px;
  padding-left: 0;
  padding-right: 12px;
}

.ul_simple li a {
  color: gray;
}

.simlpe_box {
  border: 1px solid rgb(236, 239, 241);
  border-radius: 5px;
  padding: 10px;
}

.simlpe_box i {
  font-size: 38px;
  color: var(--main_color);
  padding-top: 20px;
}

.simlpe_box img {
  padding-top: 20px;
  max-height: 54px;
  max-width: 51px;
}

.simlpe_box h2 {
  font-size: 16px;
  padding-top: 20px;
}

.simlpe_box h6 {
  font-size: 12px;
  color: gray;
}

.simlpe_box span {
  font-size: 14px;
}

.text_bold {
  font-size: 14px;
  font-weight: bold;
}

.text_normal {
  font-size: 13px;
}

.simple_box_top {
  border-radius: 5px 5px 0 0;
  border-bottom: 0px;
}

.simple_box_down {
  border-radius: 0px 0px 5px 5px;
}

.main_color {
  color: var(--main_color);
}

.gray_color {
  font-size: 13px;
  color: gray;
}

.simple_table {
  width: 100%;
}

.simple_table thead tr {
  border: 1px solid #eee;
  border-right: 0;
  border-left: 0;
}

.simple_table thead tr th {
  padding: 7px 0;
  font-size: 14px;
}

.simple_table tbody tr {
  border-bottom: 1px solid #eee;
}

.simple_table tbody tr td {
  padding: 6px 0;
  font-size: 13px;
}

.simple_table tbody tr td i {
  color: black;
}

.verify_cn {}

.verify_cn i {
  font-size: 52px;
  color: #05b169;
}

.verify_cn .verify_status {
  font-size: 14px;
  color: rgba(17, 51, 83, 0.6);
}

.verify_cn .verify_level {
  color: rgb(5, 15, 25);
  font-size: 22px;
}

.verify_cn .verify_comment {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  color: rgb(5, 15, 25);
}

.verify_cn .verify_items {
  padding: 20px 0;
}

.verify_cn .verify_items ul li {
  font-size: 14px;
  color: rgb(5, 15, 25);
  margin-bottom: 5px;
  font-weight: bold;
  position: relative;
}

.verify_cn .verify_items ul li:before {
  font-family: 'FontAwesome';
  content: '\f00c';
  display: inline-block;
  padding-right: 3px;
  vertical-align: middle;
  font-weight: 900;
  color: #05b169;
}

.acc_limits_cn {
  padding: 30px 15px 30px 32px;
  border-left: 1px solid #eee;
}

.acc_limits_cn h3 {
  font-size: 23px;
}

.acc_limit_row {
  padding: 29px 0 2px 0;
  border-bottom: 1px solid #eee;
}

.acc_limit_row i {
  float: left;
  margin-right: 13px;
  color: #3c90df;
  font-size: 19px;
}

.acc_limit_row h4 {
  font-size: 16px;
}

.acc_limit_row h5 {
  font-size: 16px;
  font-weight: normal;
  text-align: right;
}

.acc_limit_row h5 span {
  font-size: 12px;
  color: #b3b1b1;
}

.sm_simple_btn {
  display: inline-block;
  padding: 3px 10px;
  font-size: 13px !important;
}

.font_17 {
  font-size: 17px;
}

/* end of edit profile nav  */

/* start of new Game  */

.header_game {
  margin-top: 86px;
  border: 1px solid #eee;
  padding: 10px;
  border-radius: 5px 5px 0 0;
  border-bottom: 0px;
}

.header_game h4 {
  font-size: 19px;
}

.header_game h4 i {
  color: var(--main_color);
  font-size: 13px;
}

.game_new_cn {
  padding: 30px;
  border: 1px solid #eee;
  margin-bottom: 50px;
}

.game_content {
  max-width: 450px;
  margin: 20px auto;
}

.guide_cn {
  padding: 26px 10px 0 10px;
  border-left: 1px solid #eee;
  margin-top: 29px;
}

.guide_cn h5 {
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
}

.guide_cn h5 i {
  color: #2d94ff;
  font-size: 23px;
}

.guide_cn .guide_content {
  font-size: 14px;
  line-height: 31px;
  color: gray;
  max-height: 385px;
  overflow: auto;
  padding: 7px 7px 0 0;
  text-align: justify;
}

.review_alert {
  padding: 10px 0;
  background: #fffc9f;
  margin-top: 20px;
  font-size: 13px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #eee;
  font-weight: bold;
}

.ngw_success_registerd {
  padding: 10px;
  background: #baffc2;
  width: 100%;
  max-width: 500px;
  margin: 40px auto;
  border-radius: 10px;
  font-size: 19px;
}

.review_div {
  font-size: 13px;
  border: 1px solid #eee;
  width: 62px;
  border-radius: 5px;
  text-align: center;
  background: #f7f7f7;
}

.form-group {
  position: relative;
}

dp-day-calendar.dp-material .dp-current-day {
  border: 1px solid #f9f9f9;
}

.box {
  font-size: 1.25rem;
  /* 20 */
  background-color: #c8dadf;
  position: relative;
  padding: 100px 20px;
}

.box.has-advanced-upload {
  outline: 2px dashed #92b0b3;
  outline-offset: -10px;

  -webkit-transition: outline-offset 0.15s ease-in-out, background-color 0.15s linear;
  transition: outline-offset 0.15s ease-in-out, background-color 0.15s linear;
}

.box.is-dragover {
  outline-offset: -20px;
  outline-color: #c8dadf;
  background-color: #fff;
}

.box__dragndrop,
.box__icon {
  display: none;
}

.box.has-advanced-upload .box__dragndrop {
  display: inline;
}

.box.has-advanced-upload .box__icon {
  width: 100%;
  height: 80px;
  fill: #92b0b3;
  display: block;
  margin-bottom: 40px;
}

.box.is-uploading .box__input,
.box.is-success .box__input,
.box.is-error .box__input {
  visibility: hidden;
}

.box__input {
  text-align: center;
}

.box__uploading,
.box__success,
.box__error {
  display: none;
}

.box.is-uploading .box__uploading,
.box.is-success .box__success,
.box.is-error .box__error {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;

  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.box__uploading {
  font-style: italic;
}

.box__success {
  -webkit-animation: appear-from-inside 0.25s ease-in-out;
  animation: appear-from-inside 0.25s ease-in-out;
}

@-webkit-keyframes appear-from-inside {
  from {
    -webkit-transform: translateY(-50%) scale(0);
  }

  75% {
    -webkit-transform: translateY(-50%) scale(1.1);
  }

  to {
    -webkit-transform: translateY(-50%) scale(1);
  }
}

@keyframes appear-from-inside {
  from {
    transform: translateY(-50%) scale(0);
  }

  75% {
    transform: translateY(-50%) scale(1.1);
  }

  to {
    transform: translateY(-50%) scale(1);
  }
}

.box__restart {
  font-weight: 700;
}

.box__restart:focus,
.box__restart:hover {
  color: #39bfd3;
}

.js .box__file {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.js .box__file+label {
  max-width: 80%;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
}

.js .box__file+label:hover strong,
.box__file:focus+label strong,
.box__file.has-focus+label strong {
  color: #39bfd3;
}

.js .box__file:focus+label,
.js .box__file.has-focus+label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
}

.js .box__file+label * {
  /* pointer-events: none; */
  /* in case of FastClick lib use */
}

.no-js .box__file+label {
  display: none;
}

.no-js .box__button {
  display: block;
}

.box__button {
  font-weight: 700;
  color: #e5edf1;
  background-color: #39bfd3;
  display: none;
  padding: 8px 16px;
  margin: 40px auto 0;
}

.box__button:hover,
.box__button:focus {
  background-color: #0f3c4b;
}

/* end of upload video  */

/* start of step form  */

#msform {
  position: relative;
  margin-top: 20px;
}

#msform fieldset {
  background: white;
  border: 0 none;
  border-radius: 0.5rem;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding-bottom: 20px;
  position: relative;
}

.action-button-previous {
  width: 100px;
  background: #f3f3f3;
  font-weight: bold;
  color: #7d7c7c;
  border: 0 none;
  border-radius: 0px;
  cursor: pointer;
  padding: 10px 5px;
  float: right;
  border: 1px solid #eee;
  border-radius: 5px;
}

.action-button-previous:hover,
.action-button-previous:focus {
  background-color: #000000;
}

.card {
  z-index: 0;
  border: none;
  position: relative;
}

.fs-title {
  font-size: 25px;
  color: #673ab7;
  margin-bottom: 15px;
  font-weight: normal;
  text-align: left;
}

.purple-text {
  color: #673ab7;
  font-weight: normal;
}

.steps {
  font-size: 25px;
  color: gray;
  margin-bottom: 10px;
  font-weight: normal;
  text-align: right;
}

.fieldlabels {
  color: gray;
  text-align: left;
}

.horizontal.large-empty-symbols ul.steps-indicator li.done:after {
  border-color: var(--main_color) !important;
  color: #ffffff !important;
  background: var(--main_color);
  font-size: 22px !important;
}

/* end of new game  */

dp-time-select .dp-time-select-control-down:before,
dp-time-select .dp-time-select-control-up:before {
  left: 0;
}

dp-time-select .dp-time-select-control-down:hover,
dp-time-select .dp-time-select-control-up:hover {
  background: #e0e0e0;
}

dp-day-calendar .dp-calendar-day,
dp-day-calendar .dp-calendar-month {
  box-sizing: border-box;
  background: #fff;
  border-radius: 50%;
  border: none;
  outline: none;
}

dp-day-calendar .dp-calendar-weekday {
  height: 25px;
  width: 30px;
  line-height: 25px;
  color: #7a7a7a;
  border: none;
}

dp-calendar-nav .dp-nav-header-btn {
  height: 20px;
  width: 80px;
  border: none;
  background: #fff;
  outline: none;
}

dp-calendar-nav .dp-calendar-nav-left,
dp-calendar-nav .dp-calendar-nav-right,
dp-calendar-nav .dp-calendar-secondary-nav-left,
dp-calendar-nav .dp-calendar-secondary-nav-right {
  border: none;
  background: #fff;
  outline: none;
  font-size: 16px;
  padding: 0;
}

dp-day-calendar .dp-calendar-day:hover,
dp-day-calendar .dp-calendar-month:hover {
  background: #e0e0e0;
}

dp-day-calendar .dp-selected {
  background: #106cc8;
  color: #fff;
}

dp-time-select .dp-time-select-control-down,
dp-time-select .dp-time-select-control-up {
  box-sizing: border-box;
  background: transparent;
  border: none;
  outline: none;
  border-radius: 50%;
}

dp-day-time-calendar dp-time-select {
  border: 1px solid #e0e0e0;
  border-top: 0;
}

dp-day-calendar .dp-calendar-wrapper {
  box-sizing: border-box;
  border: 1px solid #e0e0e0;
}

dp-calendar-nav .dp-calendar-nav-container {
  position: relative;
  box-sizing: border-box;
  height: 25px;
  border: 1px solid #e0e0e0;
  border-bottom: none;
}

/* start of vide uploading file  */

.video_file_uploading {
  width: 100%; 
}

.video_file_uploading>span {
  background: #e0802a;
  padding: 10px;
  font-size: 13px;
  color: white;
  border: 1px solid #c56b1b;
}

.file_up_progress {
  width: 0;
  height: 10px;
  position: relative;
  background: #157a96;
}

.upload_percentage {
  position: relative;
  top: -33px;
  left: 5px;
  /* float: left; */
  width: 35px;
  height: 20px;
  background: #fff70b;
  font-size: 13px;
  text-align: center;
  border-radius: 11px;
}

.video_file_name {
  padding: 4px; 
  font-size: 13px;
  word-break: break-all;
}

/* end of video uploading file  */
.h_video_player {
  position: relative;
  text-align: center;
  padding: 10px;
}

.h_video_play {}

.h_video_pla_prev_img {
  width: 100%;
  height: 400px;
}

.h_video_pla_start {
  position: absolute;
  left: 41%;
  top: 36%;
}

.blnce_box h1 {
  margin: 20px 10px 0 20px;
  font-size: 15px;
  font-weight: bold;
  color: gray;
}

.blnce_box h1 i {
  color: #e0802a;
  font-size: 27px;
}

.blnce_box h2 {
  margin: 22px 10px 0 3px;
  font-size: 13px;
  color: gray;
  float: left;
}

.blue_line {
  width: 100%;
  margin: 2% auto 0;
  border-top: 2px solid var(--main_color);
}

.balance_switch_cn {
  border: 1px solid #e5e5e5;
  padding: 0;
  border-radius: 10px;
}

.balance_inner_box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 11px 0 2px;
  color: #2d2b2b;
}

.balance_inner_box>h4 {
  font-size: 14px;
  font-weight: bold;
}

.balance_inner_box>h5 {
  font-size: 15px;
  padding-left: 10px;
}

.balance_inactive {
  color: #393939;
}

.blnc_down {
  height: 30px;
  border-top: 1px solid #eee;
  position: absolute;
  bottom: 6px;
  width: 100%;
}

/* start of gmae box */

.game_sm_box {
  border: 1px solid #eee;
  padding: 5px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px 0 rgba(47, 37, 66, 0.14);
  border-radius: 5px;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}

.game_sm_box:hover {
  box-shadow: 0 4px 0px 0 rgb(224 128 42);
}

.game_video_img_box {
  width: 100%;
  height: 185px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.game_video_empty_box {
  width: 100%;
  height: 185px;
  background: #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 14px;
}

.game_vide_img {
  width: 100%;
  height: 100%;
  margin-top: 0;
  max-height: 185px;
  inset: 0px;
  height: 100%;
  opacity: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}

.game_video_img_info {}

.game_video_img_info h4 {
  font-size: 15px;
  padding: 14px 2px;
  color: black;
  text-align: center;
  border-bottom: 1px solid #eaeaea;
  line-height: 23px;
  height: 92px;
}

.game_video_img_info h5 {
  font-size: 13px;
  margin: 4px;
  color: #484646;
}

.game_video_img_info h6 {
  margin: 15px 5px;
  font-size: 16px;
  color: gray;
}

.game_video_img_info .game_participant_cn {
  font-size: 16px;
  color: gray;
  margin: 0 8px;
  text-align: right;
  padding: 11px 0;
  display: block;
}

.game_video_img_info .game_participant_cn i {
  color: var(--main_color);
  font-size-adjust: 13px;
}

.game_video_img_info .winner_row {}

.game_video_img_info .winner_row .winner_title {
  color: #05b169;
  font-size: 14px;
}

/* end of game box */

.transfer_box {
  border: 1px solid #eee;
  border-top: 0;
}

.nav_transfer {
  border-bottom: 0px;
}

.nav_transfer li {
  padding: 1px 0px 0px 0px;
  display: block;
  width: 50%;
  background: #f9f9f9;
  text-align: center;
}

.nav_transfer li a {
  color: gray;
  padding: 14px;
  display: block;
  border: 1px solid #efefef;
  border-bottom: 0;
  border-right: 0;
}

.nav_transfer li a.active {
  color: #000;
  font-weight: bold;
  border-top: 3px solid var(--main_color);
  background: white;
}

.trans_container {
  padding: 20px;
}

.margin_color_box {
  margin-top: 85px;
}

.color_box {
  border: 1px solid #eee;
  padding: 0px;
  border-radius: 5px;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
}

.color_box .color_box_header {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  border-top: 1px solid #eee;
  padding: 10px;
  border-top: 3px solid #e0802a;
  border-radius: 5px 5px 0 0;
  border-bottom: 1px solid #eee;
}

.color_box .color_box_content {
  padding: 10px;
}

.color_box .color_box_content h4 {
  font-size: 14px;
  padding: 8px;
}

.color_box .color_box_content h4 i {
  font-size: 15px;
  color: #6f6e6e;
}

.color_box .color_box_content h4 b {
  color: #8e4524;
  font-size: 20px;
  position: relative;
  top: 2px;
}

/* start of count down timer  */

.countdown-container {
  position: relative;
}

.countdown {
  display: flex;
  height: 100%;
  align-items: center;
}

.cnt_timer {
  font-size: 22px;
  font-weight: 100;
  color: #333333;
}

.cnt_timer div {
  display: inline-block;
  background: #efefef;
  margin: 1px;
  padding: 0px 6px;
  border-radius: 16px;
}

.cnt_timer div span {
  color: #e0802a;
  /* display: block; */
  font-size: 12px;
  font-weight: 400;
  padding-left: 0px;
}

.steps-indicator li a {
  word-break: break-all;
  padding: 2px 5px;
}

.no_items_cn {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  color: #666666;
  border: 1px solid #eee;
  margin-bottom: 2rem;
}

.no_items_cn>div {}

.particpant_ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.particpant_ul li {
  display: block;
  width: 100%;
  height: auto;
  overflow: auto;
  border-bottom: 1px solid #fbfbfb;
}

.particpant_ul li img {
  float: left;
  width: 60px;
  height: 60px;
  margin: 13px;
  border: 3px solid #dcd8d4;
  border-radius: 30px;
}

.particpant_ul li h3 {
  font-size: 14px;
  padding-top: 24px;
  color: black;
}

.particpant_ul li h5 {
  font-size: 13px;
  color: gray;
}

.particpant_ul li h4 {
  font-size: 10px;
  color: gray;
}

/* end of count down timer  */
video {
  width: 100% !important;
  height: auto !important;
  max-height: 400px;
}

/* start of TFA Auth */

.general_ul {
  list-style: inside;
}

.general_ul li {
  margin: 5px 5px 10px 5px;
  font-size: 13px;
}

.tfa_content .tfa_inner {
  padding: 5px 20px 10px 20px;
  border-bottom: 1px solid #eee;
}

.tfa_content b {
  font-size: 14px;
}

.tfa_content .tfa_form_cn {
  text-align: center;
  margin-top: 18px;
}

.tfa_content .tfa_form_cn img {
  width: 45px;
  height: 45px;
}

.simple_card {
  border: 1px solid #eee;
  padding: 3px;
  border-radius: 6px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tfa_input_code {
  letter-spacing: 8px;
  font-size: 20px;
  text-align: left;
  width: 138px;
  height: 60px;
  border: 1px solid #eee;
}

.tfa_input_code::placeholder {
  color: #b7c1cb;
}

/* end of TFA Auth */

.video_modal_container {
  padding: 0px;
  padding-bottom: 8px;
}

.filter_box {
  margin-top: 35px;
}

.filter_box h4 {
  font-size: 14px;
  border-bottom: 1px solid #eee;
  padding-bottom: 7px;
  color: #545050;
}

.filter_box .filter_content {
  padding-top: 4px;
  font-size: 14px;
}

.simple_btn {
  font-size: 15px !important;
  display: block;
  border: 1px solid #dcdbdb;
  padding: 10px;
  color: #191818;
  border-radius: 5px;
}

.simple_btn:hover {
  border: 1px solid var(--main_color);
  color: var(--main_color);
}

.border_bottom_gray {
  border-bottom: 1px solid #eee;
  font-size: 20px;
  font-weight: bold;
}

.ul_stickers li {
  display: inline-block;
}

/* sharing pane */

.modal {
  background-color: rgba(0, 0, 0, 0.4);
  bottom: 0;
  height: 100%;
  left: 0;
  overflow: hidden;
  padding: 0 16px;
  position: fixed;
  right: 0;
  top: 0;
  text-align: center;
  z-index: 10;
  /* Adjust according to your needs */
}

.modal.fade-anim {
  transition: opacity 400ms ease-in-out;
  will-change: opacity;
  opacity: 0;
}

.modal.fade-anim.in {
  opacity: 1;
}

.modal-open {
  overflow: hidden;
}

.modal-content {
  background-color: #ffffff;
  border-radius: 4px;
  margin: 16px auto;
  position: relative;
  transition: opacity 400ms ease-in-out;
  width: 100%;
  will-change: opacity;
  display: inline-block;
  border: 0px solid rgba(0, 0, 0, 0.2);
}

.modal-content-size-m {
  max-width: 992px;
}

.modal-content-size-l {
  max-width: 1200px;
}

.modal-footer,
.modal-header {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 56px;
  padding: 0 16px;
}

.modal-header {
  border-bottom: 1px solid #ededed;
}

.modal-header h5 {
  font-size: 13px;
}

.modal-header img {
  margin-top: 6px;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  border: 1px solid #eee;
  max-width: 39px;
}

.modal-body {
  padding: 16px;
}

.modal-footer {
  border-top: 1px solid #ededed;
}

.modal-dialog {
  margin-top: 10px;
  display: inline-block;
  margin-left: 0;
}

.modal-header .close {
  padding: 1rem 1rem;
  margin: 0;
  font-size: 27px;
  color: #020202;
  position: absolute;
  right: -25px;
  top: 0;
}

.modal-titr {
  font-size: 14px;
  text-align: center;
  font-weight: bold;
}

.moda-share-color {
  background: red;
  width: 43px;
  height: 37px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  color: white !important;
  cursor: pointer;
}

.moda-share-color.twitter {
  background: #4dcceb;
  border: 1px solid #4dcceb;
}

.moda-share-color.facebook {
  background: #4d8deb;
  border: 1px solid #4d8deb;
}

.moda-share-color.whatsapp {
  background: #1bd741;
  border: 1px solid #1bd741;
}

.moda-share-color.email {
  background: #ef5662;
  border: 1px solid #ef5662;
}

.moda-share-color.copy {
  width: 100%;
  background: white;
  color: gray !important;
  border: 1px solid #b7b7b7;
}

.moda-share-color.copy span {
  font-size: 14px;
  padding-right: 6px;
  display: inline-block;
  margin-top: 3px;
}

.moda-share-color.copy i {
  margin-right: 7px;
}

.pr-share-container {
  position: absolute;
  right: 10px;
  top: 20%;
  height: 100px;
  width: 50px;
  z-index: 8;
}

.rtl .pr-share-container {
  left: 10px;
  right: auto;
}

.pr-share-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pr-share-container ul li {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

.pr-share-container ul li a {
  cursor: pointer;
}

.pr-share-container ul li a i {
  font-size: 21px;
  color: gray;
}

/* end of sharing  */

/* start of like  */

.siteIcon {
  background-repeat: no-repeat;
  height: 24px;
  width: 24px;
  background-image: url('/assets/Theme/images/icon/icons.png');
  display: inline-block;
}

.siteIcon2 {
  background-repeat: no-repeat;
  height: 24px;
  width: 24px;
  background-image: url('/assets/Theme/images/icon/icons2.png');
  display: inline-block;
}

.siteIcon3 {
  background-repeat: no-repeat;
  height: 24px;
  width: 24px;
  background-image: url('/assets/Theme/images/icon/neIcons.png');
  display: inline-block;
}

.likeIcon {
  background-position: -132px -2px;
}

.LikedIcon {
  background-position: -107px -2px;
}

.notAvailable {
  background-position: 0 -63px;
  width: 31px;
}

.cmIcon {
  background-position: -104px -194px;
}

.shareIcon {
  background-position: -221px -50px;
}

.saveIcon {
  background-position: -195px -130px;
}

.dots3 {
  background-position: -50px -169px;
}

.comment_cmp_icon {
  background-position: -30px -3px;
}

.comment_cmp_icon_liked {
  background-position: -55px -3px;
}

.report_item_cn {
  position: relative;
  top: 33px;
  right: -12px;
}

.report_item_cn i a {}

.savedIcon {
  background-position: -195px -52px;
}

.exploreIcon {
  background-position: -458px -112px;
}

.userIcon {
  background-position: -458px -294px;
}

.basketIcon {
  background-position: 3px -33px;
  height: 24px;
  width: 24px;
}

.helpIcon {
  background-position: 3px -7px;
  height: 24px;
  width: 24px;
}

.markerIcon {
  background-position: -128px -142px;
}

.fl-liked {
  background-position: -171px -407px;
  height: 19px;
  width: 19px;
}

.fl-comment {
  background-position: -192px -407px;
  height: 19px;
  width: 19px;
}

.fl-eye {
  background-position: -168px -430px;
  height: 18px;
  width: 29px;
}

.sp-buy {
  float: left;
}

.homeIcon {
  background-position: -51px -142px;
}

.searchIcon {
  background-position: -26px -193px;
}

.plusIcon {
  background-position: -156px -194px;
}

.lt-cardheader {
  background-color: transparent;
  border-bottom: none;
  padding: 0.3rem 0 0 0;
}

.lt-ulcard2 li {
  margin-right: 13px !important;
}

.pointer {
  cursor: pointer;
}

.follow_item {
  display: inline-block;
  margin-left: 10px;
  font-size: 15px;
  font-weight: bold;
  position: relative;
  top: -2px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.lt-cm {
  width: 100%;
  border: 0;
  text-align: left;
  outline: 0;
  font-size: 0.7rem;
  border: 1px solid #eee;
  padding: 10px;
}

.btn-send-com {
  position: absolute;
  bottom: 37px;
  right: 18px;
  background: #f3f3f3;
  border: 1px solid #d4caca;
  font-size: 14px;
}

.box_comments_list {
  max-height: 410px;
  overflow: auto;
  margin-bottom: 20px;
}

.comments_reply_cn {
  padding-top: 13px;
  padding-bottom: 10px;
}

.comments_reply_cn a {
  color: #8e8e8e !important;
  font-size: 12px !important;
}

.comments_reply_lines {
  width: 23px;
  display: inline-block;
  border-bottom: 1px solid #a3a3a3;
  margin-right: 19px;
}

.comments_reply_items {
  padding-left: 3rem;
}

.noDisplay {
  display: none;
}

.btn-send-com i {
  color: gray;
  font-size: 11px;
}

.cmt_header {}

.cmt_header span {
  font-size: 15px;
  font-weight: bold;
}

.cmt_header i {
  font-size: 15px;
}

.comment_row {
  position: relative;
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.comment_row img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.comment_row a {
  font-size: 13px;
  font-weight: bold;
  color: black;
}

.comment_row span.likeComment {
  position: absolute;
  right: 16px;
  top: 5px;
  font-size: 13px;
  color: gray;
}

.comment_row label {
  font-size: 13px;
  padding: 5px;
  text-align: justify;
  display: flex;
}

.viewAllComments {
  height: 39px;
  width: 100%;
  border: 1px solid #eee;
  margin: 12px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #5f5f5f;
  font-size: 13px;
}

.like_comment {
  position: relative;
  top: 5px;
}

.like_comment img {
  width: 20px;
  height: 20px;
  border-radius: 0;
  padding: 2px;
}

.comments_bottom_items {
  display: flex;
  width: 100%;
  height: 24px;
}

.comment_items {
  display: flex;
}

.comment_items li {
  font-size: 13px;
  margin-right: 10px;
  color: #464444;
}

.game_static_cn {
  margin: 10px 0 0 0;
  font-size: 13px;
  font-weight: bold;
}

.min_height_500 {
  min-height: 412px;
}

.main_panel_2 {}

.main_panel_2 .main_content_header {
  font-size: 15px;
  font-weight: bold;
}

/* end of like  */
.player_profile {
  padding: 0px 0 0 0;
  margin: 0px 0;
}

.player_static_cn {
  width: 210px;
  margin-top: 12px;
}

.player_profile h2 {
  font-size: 21px;
  font-weight: bold;
  padding-left: 6px;
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
}

.player_profile h5 {
  font-size: 12px;
  color: #616161;
}

.player_static_cn h3 {
  font-size: 12px;
  font-weight: bold;
  margin-top: 0;
  text-align: center;
  color: #525252;
}

.player_static_cn h4 {
  font-size: 13px;
  text-align: center;
}

.user_statistic {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
}

.user_statistic li {
  float: left;
  margin-left: 0px;
  text-align: center;
  margin-right: 18px;
}

.user_statistic li a {}

.user_statistic li a h3 {
  font-size: 13px;
  font-weight: bold;
}

.user_statistic li a h4 {
  font-size: 12px;
}

/* start of my game detail  */
.det_main {
  width: 100%;
  height: 700px;
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: auto;
}

.det_main h1 {
  font-size: 18px;
  text-align: center;
  padding: 10px;
  background: #eee;
}

.det_main .game_sent_box {
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

.det_main .game_sent_box:hover {
  background: #eee;
}

.game_sent_user img {
  width: 40px;
  border-radius: 40px;
  height: 40px;
  border: 2px solid #eee;
  padding: 1px;
}

.det_main .game_sent_box .game_sent_user a span {
  font-size: 14px;
  color: black;
}

.det_main .game_sent_box .game_sent_date {
  font-size: 15px;
  margin-top: 10px;
}

.game_sent_user {
  padding-top: 5px;
}

.game_sent_user a {
  color: black;
}

.det_main .game_sent_box .video_btn_show {
  font-size: 15px;
  margin-top: 10px;
  float: right;
  border: 1px solid #e0802a;
  padding: 4px;
  background: #e0802a;
  color: white;
}

.btn_dis_no_video {
  font-size: 15px;
  margin-top: 10px;
  float: right;
  border: 1px solid #afafaf;
  padding: 4px;
  background: #bbbbbb;
  color: white;
}

/* end of my game detail  */

.btn_dots {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: gray;
}

.footer_user_video {
  height: auto;
  line-height: 45px;
  text-align: center;
  padding-bottom: 20px;
}

/* start of report modal  */
.report_item {
  display: block;
  padding: 10px 13px;
  color: #3c3c3c;
  font-size: 14px;
  border-bottom: 1px solid #fbfbfb;
}

.report_item span {}

.report_item img {}

.report_item i {
  font-size: 13px;
  display: inline-block;
  width: 26px;
  color: gray;
  text-align: center;
}

/* end of report modal  */
.dash_item_title {
  padding: 18px 25px 0 22px;
}

.trans_container {
  padding: 0px;

  width: 100%;
}

.trans_container>h1 {
  font-size: 18px;
  padding: 4px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  text-align: center;
}

.trans_container>h4 {
  font-size: 14px;
  padding: 8px;
}

.trans_container>h4 i {
  font-size: 15px;
  color: #6f6e6e;
}

.trans_container>h4 b {
  color: #8e4524;
  font-size: 20px;
  position: relative;
  top: 2px;
}

.mod_st_search_cn {
  position: relative;
}

.mod_st_search_cn input {
  padding-right: 40px;
  font-size: 13px;
}

.mod_st_search_cn i {
  position: absolute;
  top: 7px;
  right: 10px;
  font-size: 22px;
  color: #ffc93c;
}

.mod_st_search_cn input:focus,
.mod_st_search_cn input:focus {
  border-color: #07689f;
  outline: 0 !important;
  box-shadow: 0 0 0px #471288;
}

.trans_gray {
  font-size: 14px;
  margin: 9px 0;
  color: gray;
  background: #efefef;
  padding: 10px;
  border: 1px solid #e8e3e3;
  border-radius: 5px;
}

.transfer_form_box {
  margin: 0;
  border: 1px solid #eee;
  padding: 0px 0;
  border-radius: 7px;
}

.transfer_form_box h4 {
  color: #a5a5a5;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  height: 100%;
}

.transfer_form_box .trans_form_icon {
  background: #f1f1f1;
  padding: 3px;
  border-radius: 20px;
  color: #b5b4b4;
  position: absolute;
  width: 24px;
  height: 24px;
  top: 9px;
  text-align: center;
  font-size: 12px;
}

.transfer_form_box .trans_form_img {
  padding: 3px;
  border-radius: 20px;
  color: #b5b4b4;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 2px;
  text-align: center;
  font-size: 12px;
  left: 7px;

  display: flex;
  align-items: center;
}

.model_list_cn {
  max-height: 300px;
  overflow: auto;
}

.city_item_row a {
  display: block;
  border-bottom: 1px solid #eee;
  height: 45px;
  padding-top: 10px;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}

.city_item_row a:hover {
  background: #efefef;
}

.city_item_title {
  float: left;
  color: #4e4e4e;
  font-size: 14px;
}

.city_item_icon {
  float: left;
  padding-top: 7px;
  color: #6d6a6a;
  font-size: 13px;
}

.city_item_active .city_item_title {
  color: black;
  font-size: 15px;
}

.city_item_active .city_item_icon {
  color: #087cbd;
}

.transfer_form_box .trans_form_input {
  border: 0px;
  padding: 10px 0 10px 35px;
  width: 100%;
  color: #4c4c4c;
  font-size: 14px;
}

.row_border_bottom {
  border-bottom: 1px solid #e8e8e8;
}

.transfer_form_box .trans_label {
  float: left;
  margin: 9px 38px;
}

.img_identity_prev {
  width: 250px;
  margin: 10px auto;
  border: 1px solid #eee;
  padding: 5px;
  border-radius: 5px;
}

.empty_participant {
  margin: 50px auto;
  width: 70%;
  text-align: center;
  border: 1px solid #ffffff;
  padding: 50px;
  border-radius: 10px;
  background: #ffffff;
  font-size: 15px;
  color: #939393;
}

#FilterIconClick {
  margin: 10px 0;
  color: #ffffff;
  width: 100%;
  display: block;
  padding-left: 1rem;
  position: fixed;
  background: #e0802a;
  width: 92px;
  height: 39px;
  top: 78px;
  z-index: 8;
  border: 1px solid #c76813;
  display: flex;
  align-items: center;
  border-radius: 5px;
  left: 23px;
}

.no_game_chalange_box {
  margin: 0 auto;
}

.no_2gamescn {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}

.no_games_content {
  font-size: 17px;
  font-weight: bold;
  max-width: 32%;
  text-align: center;
}

.no_games_line {
  width: 2px;
  height: 200px;
  background: #8e4524;
  margin: 50px 0;
}

.no_games_line span {
  position: relative;
  display: block;
  width: 55px;
  height: 24px;
  top: 46%;
  background: white;
  left: -26px;
  font-weight: bold;
  text-align: center;
}

.no_2games_left {}

.no_games_content a {
  color: gray;
}

.no_2games_active a {
  color: #8f4626;
}

.one_2game_empty {
  margin: 50px auto;
}

.ngw_game_save_cn {
  background: #f7f7f7;
  padding: 40px;
  text-align: center;
  border: 1px solid #d6d5c5;
  border-radius: 10px;
}

.tras_btn {
  font-size: 13px;
  font-weight: bold;
  color: black;
}

.tras_btn:hover {
  color: black;
}

.tras_loading {
  font-size: 13px;
  color: #3a3a3a;
}

.btn_search_nav {
  border: 2px solid #eee;
  width: 41px;
  height: 41px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 21px;
  position: relative;
  top: -1px;
  background: white;
}

.btn_search_nav i {
  font-size: 17px;
  color: gray;
}

.btn_search_nav:hover {}

.dash_wrapper {
  min-height: 500px;
}

.new-box {
  border: 1px solid #eee;
  padding: 9px;
  border-radius: 15px;
  background: #ffffff;
  margin: 6px 0rem;
}

.img-new {
  height: 50px;
}

.new-title {
  font-size: 17px;
  font-weight: bold;
  color: #4b4b4b;
  padding-left: 6px;
}

.new-desc {
  font-size: 12px;
  padding-left: 7px;
  color: gray;
}

.wp_body {
  min-height: 100vh;
  padding: 15px;
  position: relative;
  padding-top: 3px;
  max-width: 100%;
  margin: 0 auto;
  background: #f7f7f7;
}

.profile_wrapper {}

.listview-title {

  color: #242424;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 700;
}

.listview {
  display: block;
  padding: 0;
  margin: 0;
  color: #27173E;
  background: #fff;
  border-top: 1px solid #DCDCE9;
  border-bottom: 1px solid #DCDCE9;
  line-height: 1.3em;
}

.listview.inset {
  direction: rtl;
  margin-left: 16px;
  margin-right: 16px;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.09);
}

.listview>li {
  padding: 11px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-height: 50px;
}

.listview>li .pr_badge {
  position: absolute;
  left: 43px;
  top: 14px;
  background: red;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 50%;
  padding-top: 4px;
}

.with-listview>li {
  flex-direction: column;
  align-items: stretch;
}

.image-listview>li {
  padding: 0;
  min-height: auto;
}

.image-listview>li .item {
  padding: 11px 16px;
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  direction: ltr;
}

.image-listview>li a.item {

  color: #27173E !important;
  padding-right: 25px;
  font-size: 15px;
}

.image-listview>li a.item_red {

  color: #ff0000 !important;
}

.listview>li:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #DCDCE9;
}

.image-listview>li:after {
  left: 18px;
}

.image-listview.text>li:after {
  right: 32px;
}

.listview>li:last-child:after {
  display: none
}

.image-listview>li .item .in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.image-listview>li a.item:after {
  content: "\f105";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 18px;
  position: absolute;
  right: 16px;
  color: #A9ABAD;
  opacity: 0.6;
  line-height: 1em;
  height: 18px;
  top: 50%;
  margin-top: -9px;
}

.image-listview.media>li:last-child {
  border-bottom: 0
}

/* ----------  root helpers  ---------- */
.story-card {
  background: #ffffff;
  border: 1px solid #dbdbdb;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  overflow: hidden;
}

.story-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.story-btn-primary {
  background: #0095f6;
  color: #fff;
}

.story-btn-primary:hover {
  background: #0074cc;
}

.story-btn-success {
  background: #27c24a;
  color: #fff;
}

.story-btn-success:hover {
  background: #1e9e3c;
}

.story-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* ----------  upload area  ---------- */
.story-upload-box {
  padding: 40px 20px;
  text-align: center;
}

.story-upload-icon {
  font-size: 48px;
  color: #0095f6;
  margin-bottom: 12px;
}

.story-upload-text {
  font-size: 16px;
  color: #262626;
  margin-bottom: 16px;
}

/* ----------  preview  ---------- */
.story-preview-wrap {
  position: relative;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.story-preview-img,
.story-preview-video {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

/* ----------  caption  ---------- */
.story-caption-area {
  width: 100%;
  resize: none;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  padding: 12px;
  font-size: 15px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  transition: border-color 0.2s;
}

.story-caption-area:focus {
  outline: none;
  border-color: #0095f6;
}

/* ----------  actions  ---------- */
.story-actions {
  display: flex;
  justify-content: flex-end;
  padding: 0 16px 16px 0;
}

/* ----------  spinner  ---------- */
.story-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.live-wrapper {
  width: 100%;
  max-width: 900px;
  margin: auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.video-section {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 768px) {
  .video-section {
    flex-direction: column;
  }
}

.video-box {
  flex: 1;
  background: #f9fafb;
  padding: 15px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.video-box video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  background: #000;
}

.video-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #4a5568;
}

.controls {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.mode-btn {
  width: 200px;
  padding: 10px;
  font-size: 15px;
  border-radius: 10px;
  border: none;
  background: #edf2f7;
  color: #4a5568;
  cursor: pointer;
  transition: 0.2s;
  font-weight: 600;
}

.mode-btn.active {
  background: #3182ce;
  color: #fff;
}

.mode-btn:hover {
  background: #e2e8f0;
}

.record-controls {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

.btn:active {
  transform: scale(0.97);
}

.action-btn {
  background: #ff9800;
  color: #fff;
}

.action-btn:hover {
  background: #fb8c00;
}

.success-btn {
  background: #48bb78;
  color: #fff;
}

.success-btn:hover {
  background: #38a169;
}

.cancel-btn {
  background: #e53e3e;
  color: #fff;
}

.cancel-btn:hover {
  background: #c53030;
}



/*
  Story Board Component CSS
  Achieving Instagram-like story appearance with a focus on the avatar border.
*/

.story-board-container {
  max-width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #dbdbdb;
  position: relative;
}

.story-scroll-container {
  /* Hide the scrollbar for a cleaner look, but keep scrolling functionality */
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  padding-bottom: 10px;
  justify-content: center;
  /* Add some padding for visual comfort */
}

.story-scroll-container::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.story-item {
  cursor: pointer;
  flex: 0 0 auto;
  width: 69px;
}

/* --- Avatar Styling --- */

.story-avatar-wrapper {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  padding: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background: #833ab4;
  background: linear-gradient(to right,
      #833ab4, #fd1d1d, #fcb045);
}

.story-unread {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.story-read {
  border: 1px solid #dbdbdb;
  padding: 3px;
}

.story-avatar-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.story-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* --- Username Styling --- */

.story-username {
  font-size: 12px;
  color: #262626;
  /* Dark text color */
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Optional: Material ripple effect for better UX (requires MatRippleModule) */
/* .story-item {
  position: relative;
  overflow: hidden;
}
.story-item:active {
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
} */


.avatar-full {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.swiper_wrapper {
  direction: ltr !important;
  position: relative;
}

.story-video {
  width: 100%;
  max-height: 70vh;
}

:host {
  display: block;
  height: 100vh;
  width: 100vw;
  background: #000;
  color: #fff;
  user-select: none;
}

.viewer {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  max-width: 550px;
  margin: 0 auto;
}

.viewer video {
  flex: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100% !important;
}

.progress-row {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  gap: 4px;
  z-index: 2;
}

.bar {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, .35);
  border-radius: 2px;
  overflow: hidden;
}

.bar.active {
  background: rgba(255, 255, 255, .55);
}

.bar.finished .fill {
  width: 100% !important;
}

.fill {
  height: 100%;
  background: #fff;
  transition: width .03s linear;
}

.header {
  position: absolute;
  top: 16px;
  left: 12px;
  right: 52px;
  display: flex;
  align-items: center;
  z-index: 2;
  width: 96%;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 8px;
  border: 2px solid rgba(255, 255, 255, .8);
}

.username {
  font-weight: 500;
  font-size: 14px;
  color: #dddddd;
}

button[mat-icon-button] {
  position: absolute;
  right: 0px;
  top: -3px;
  color: #fff;
}

.media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1;
}

.full-screen-dialog .mat-dialog-container {
  padding: 0;
  border-radius: 0;
  overflow: hidden;
}



.m-progress {
  position: relative;
  opacity: .8;
  color: transparent !important;
  text-shadow: none !important;
  pointer-events: none;
  cursor: default;
}

.m-progress:hover,
.m-progress:active,
.m-progress:focus {
  cursor: default;
  color: transparent;
  outline: none !important;
  box-shadow: none;
}

.m-progress:before {
  content: '';
  display: inline-block;
  position: absolute;
  background: transparent;
  border: 1px solid #FFC107;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  box-sizing: border-box;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -10px;
  width: 17px;
  height: 17px;
  -webkit-animation: ld 1s ease-in-out infinite;
  -moz-animation: ld 1s ease-in-out infinite;
  -o-animation: ld 1s ease-in-out infinite;
  animation: ld 1s ease-in-out infinite;
}

.btn-default.m-progress:before {
  border-left-color: #333333;
  border-right-color: #333333;
}

.btn-lg.m-progress:before {
  margin-top: -16px;
  margin-left: -16px;
  width: 32px;
  height: 32px;
}

.btn-sm.m-progress:before {
  margin-top: -9px;
  margin-left: -9px;
  width: 18px;
  height: 18px;
}

.btn-xs.m-progress:before {
  margin-top: -7px;
  margin-left: -7px;
  width: 14px;
  height: 14px;
}

@-webkit-keyframes ld {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.1);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

@-moz-keyframes ld {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.1);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

@-o-keyframes ld {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.1);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes ld {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.1);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

@media only screen and (min-width: 769px) {}

@media only screen and (max-width: 768px) {
  video {
    max-height: 202px !important;
    background: black;
  }

  .modal-footer,
  .modal-header {
    height: 52px;
    padding: 0 16px;
  }

  .modal-header .close {
    padding: 0rem 1rem;
    top: 10px;
  }

  .empty_participant {
    padding: 50px 7px;
    width: 99%;
  }

  .no_games_content {
    max-width: 82%;
  }

  .btn_search_nav:hover {}

  .dash_wrapper {
    padding-top: 0rem;
  }

  .moda-share-color.copy span {
    font-size: 12px;
  }

  .video-js {
    height: 200px !important;
  }

  .btn_dots {
    position: relative;
    top: -8px;
  }

  .margin_color_box {
    margin-top: 15px;
  }

  .guide_cn {
    border-left: 0px solid #eee;
  }

  .blue_line {
    margin: 6% auto 0;
  }

  #FilterIconClick {
    top: 59px;
    left: 18px;
  }

  .watch_box {
    padding: 0;
  }

  .header_profile {
    height: 65px;
  }

  .assets_title span {
    font-size: 12px;
  }

  .tbl_assets thead tr th {
    font-size: 13px;
  }

  .sm_main {
    padding: 5px 3px;
  }
 
  .padding_container {
    padding: 10px;
  }

  .game_new_cn {
    padding: 0;
  }

  .ul_nav_right {
    top: -59px;
    right: 8px;
    left: auto;
    z-index: 9;
  }

  .profile_btn {}

  .ul_nav_right {
    margin: 0;
    margin-right: 10px;
  }

  .ul_nav_right li {
    margin-top: 12px;
  }

  .new_game_sm_btn {
    padding: 7px 10px;
    border-radius: 30px;
    position: relative;
    top: -3px;
  }

  .ul_nav_right li {
    margin-left: 6px;
  }

  .profile_logo {
    float: right;
    margin-right: 0;
  }

  .notifications {
    width: 309px;
  }

  .pref_size {
    top: -17px;
  }

  .player_profile {
    padding: 0px;
    margin: 6px 0;
  }

  .player_static_cn {
    width: 170px;
  }

  .tokenDepHeader h2 {
    font-size: 19px;
  }
}

.filter_gamesCount {
  font-size: 13px;
  font-weight: bold;
  padding-top: 13px;
  text-align: center;
  position: fixed;
  width: 327px;
  background: #f9f9f9;
  left: 0;
  top: 0;
  padding-bottom: 9px;
  z-index: 9;
}

.filterNav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 9;
  top: 0;
  background-color: #f9f9f9;
  overflow-x: hidden;
  padding-top: 60px;
  transition: 0.5s;
  border-left: 1px solid #eee;
  text-align: left;
  padding-right: 0px !important;
  z-index: 1111;
  padding-left: 0;
}

/* The navigation menu links */
/* When you mouse over the navigation links, change their color */
.filterNav a:hover {
  color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.filterNav .closebtn {
  position: fixed;
  top: 5px;
  left: 240px;
  font-size: 36px;
  margin-left: 50px;
  color: gray;
  line-height: 29px;
  z-index: 9999;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
.mgProduct {
  transition: margin-left 0.5s;
  padding: 0px;
  top: 0;
  z-index: 30;
  display: block;
  height: 100%;
  width: 100%;
  cursor: pointer;
  left: 1px;
  background: #fafafa;
}

.rg-animation {
  transition: margin-left 0.5s;
}

.filterNav {
  left: 0;
}

.link_blue {
  color: blue;
}