.apexcharts-canvas {
         position: relative;
         user-select: none;
         /* cannot give overflow: hidden as it will crop tooltips which overflow outside chart are */
         /* overflow: hidden; */
         }
         .apexcharts-inner {
         position: relative;
         }
         .apexcharts-legend-series {
         cursor: pointer;
         }
         .apexcharts-legend-series.no-click {
         cursor: auto;
         }
         .inactive-legend {
         opacity: 0.45;
         }
         .legend-mouseover-inactive {
         transition: 0.15s ease all;
         opacity: 0.20;
         }
         .apexcharts-series-collapsed {
         opacity: 0;
         }
         .apexcharts-gridline, .apexcharts-text {
         pointer-events: none;
         }
         .apexcharts-tooltip {
         border-radius: 5px;
         box-shadow: 2px 2px 6px -4px #999;
         cursor: default;
         font-size: 14px;
         left: 62px;
         opacity: 0;
         pointer-events: none;
         position: absolute;
         top: 20px;
         overflow: hidden;
         white-space: nowrap;
         z-index: 12;
         transition: 0.15s ease all;
         }
         .apexcharts-tooltip.light {
         border: 1px solid #e3e3e3;
         background: rgba(255, 255, 255, 0.96);
         }
         .apexcharts-tooltip.dark {
         color: #fff;
         background: rgba(30,30,30, 0.8);
         }
         .apexcharts-tooltip .apexcharts-marker,
         .apexcharts-area-series .apexcharts-area,
         .apexcharts-line {
         pointer-events: none;
         }
         .apexcharts-tooltip.active {
         opacity: 1;
         transition: 0.15s ease all;
         }
         .apexcharts-tooltip-title {
         padding: 6px;
         font-size: 15px;
         margin-bottom: 4px;
         }
         .apexcharts-tooltip.light .apexcharts-tooltip-title {
         background: #ECEFF1;
         border-bottom: 1px solid #ddd;
         }
         .apexcharts-tooltip.dark .apexcharts-tooltip-title {
         background: rgba(0, 0, 0, 0.7);
         border-bottom: 1px solid #222;
         }
         .apexcharts-tooltip-text-value,
         .apexcharts-tooltip-text-z-value {
         display: inline-block;
         font-weight: 600;
         margin-left: 5px;
         }
         .apexcharts-tooltip-text-z-label:empty,
         .apexcharts-tooltip-text-z-value:empty {
         display: none;
         }
         .apexcharts-tooltip-text-value, 
         .apexcharts-tooltip-text-z-value {
         font-weight: 600;
         }
         .apexcharts-tooltip-marker {
         width: 12px;
         height: 12px;
         position: relative;
         top: 1px;
         margin-right: 10px;
         border-radius: 50%;
         }
         .apexcharts-tooltip-series-group {
         padding: 0 10px;
         display: none;
         text-align: left;
         justify-content: left;
         align-items: center;
         }
         .apexcharts-tooltip-series-group.active .apexcharts-tooltip-marker {
         opacity: 1;
         }
         .apexcharts-tooltip-series-group.active, .apexcharts-tooltip-series-group:last-child {
         padding-bottom: 4px;
         }
         .apexcharts-tooltip-y-group {
         padding: 6px 0 5px;
         }
         .apexcharts-tooltip-candlestick {
         padding: 4px 8px;
         }
         .apexcharts-tooltip-candlestick > div {
         margin: 4px 0;
         }
         .apexcharts-tooltip-candlestick span.value {
         font-weight: bold;
         }
         .apexcharts-xaxistooltip {
         opacity: 0;
         padding: 9px 10px;
         pointer-events: none;
         color: #373d3f;
         font-size: 13px;
         text-align: center;
         border-radius: 2px;
         position: absolute;
         z-index: 10;
         background: #ECEFF1;
         border: 1px solid #90A4AE;
         transition: 0.15s ease all;
         }
         .apexcharts-xaxistooltip:after, .apexcharts-xaxistooltip:before {
         left: 50%;
         border: solid transparent;
         content: " ";
         height: 0;
         width: 0;
         position: absolute;
         pointer-events: none;
         }
         .apexcharts-xaxistooltip:after {
         border-color: rgba(236, 239, 241, 0);
         border-width: 6px;
         margin-left: -6px;
         }
         .apexcharts-xaxistooltip:before {
         border-color: rgba(144, 164, 174, 0);
         border-width: 7px;
         margin-left: -7px;
         }
         .apexcharts-xaxistooltip-bottom:after, .apexcharts-xaxistooltip-bottom:before {
         bottom: 100%;
         }
         .apexcharts-xaxistooltip-bottom:after {
         border-bottom-color: #ECEFF1;
         }
         .apexcharts-xaxistooltip-bottom:before {
         border-bottom-color: #90A4AE;
         }
         .apexcharts-xaxistooltip-top:after, .apexcharts-xaxistooltip-top:before {
         top: 100%;
         }
         .apexcharts-xaxistooltip-top:after {
         border-top-color: #ECEFF1;
         }
         .apexcharts-xaxistooltip-top:before {
         border-top-color: #90A4AE;
         }
         .apexcharts-xaxistooltip.active {
         opacity: 1;
         transition: 0.15s ease all;
         }
         .apexcharts-yaxistooltip {
         opacity: 0;
         padding: 4px 10px;
         pointer-events: none;
         color: #373d3f;
         font-size: 13px;
         text-align: center;
         border-radius: 2px;
         position: absolute;
         z-index: 10;
         background: #ECEFF1;
         border: 1px solid #90A4AE;
         }
         .apexcharts-yaxistooltip:after, .apexcharts-yaxistooltip:before {
         top: 50%;
         border: solid transparent;
         content: " ";
         height: 0;
         width: 0;
         position: absolute;
         pointer-events: none;
         }
         .apexcharts-yaxistooltip:after {
         border-color: rgba(236, 239, 241, 0);
         border-width: 6px;
         margin-top: -6px;
         }
         .apexcharts-yaxistooltip:before {
         border-color: rgba(144, 164, 174, 0);
         border-width: 7px;
         margin-top: -7px;
         }
         .apexcharts-yaxistooltip-left:after, .apexcharts-yaxistooltip-left:before {
         left: 100%;
         }
         .apexcharts-yaxistooltip-left:after {
         border-left-color: #ECEFF1;
         }
         .apexcharts-yaxistooltip-left:before {
         border-left-color: #90A4AE;
         }
         .apexcharts-yaxistooltip-right:after, .apexcharts-yaxistooltip-right:before {
         right: 100%;
         }
         .apexcharts-yaxistooltip-right:after {
         border-right-color: #ECEFF1;
         }
         .apexcharts-yaxistooltip-right:before {
         border-right-color: #90A4AE;
         }
         .apexcharts-yaxistooltip.active {
         opacity: 1;
         }
         .apexcharts-xcrosshairs, .apexcharts-ycrosshairs {
         pointer-events: none;
         opacity: 0;
         transition: 0.15s ease all;
         }
         .apexcharts-xcrosshairs.active, .apexcharts-ycrosshairs.active {
         opacity: 1;
         transition: 0.15s ease all;
         }
         .apexcharts-ycrosshairs-hidden {
         opacity: 0;
         }
         .apexcharts-zoom-rect {
         pointer-events: none;
         }
         .apexcharts-selection-rect {
         cursor: move;
         }
         .svg_select_points, .svg_select_points_rot {
         opacity: 0;
         visibility: hidden;
         }
         .svg_select_points_l, .svg_select_points_r {
         cursor: ew-resize;
         opacity: 1;
         visibility: visible;
         fill: #888;
         }
         .zoomable .hovering-zoom {
         cursor: crosshair
         }
         .zoomable .hovering-pan {
         cursor: move
         }
         .apexcharts-xaxis,
         .apexcharts-yaxis {
         pointer-events: none;
         }
         .apexcharts-zoom-icon, 
         .apexcharts-zoom-in-icon,
         .apexcharts-zoom-out-icon,
         .apexcharts-reset-zoom-icon, 
         .apexcharts-pan-icon, 
         .apexcharts-selection-icon,
         .apexcharts-download-icon {
         cursor: pointer;
         width: 20px;
         height: 20px;
         text-align: center;
         }
         .apexcharts-zoom-icon svg, 
         .apexcharts-zoom-in-icon svg,
         .apexcharts-zoom-out-icon svg,
         .apexcharts-reset-zoom-icon svg,
         .apexcharts-download-icon svg {
         fill: #6E8192;
         }
         .apexcharts-selection-icon svg {
         fill: #444;
         transform: scale(0.86)
         }
         .apexcharts-zoom-icon.selected svg, 
         .apexcharts-selection-icon.selected svg, 
         .apexcharts-reset-zoom-icon.selected svg {
         fill: #008FFB;
         }
         .apexcharts-selection-icon:not(.selected):hover svg,
         .apexcharts-zoom-icon:not(.selected):hover svg, 
         .apexcharts-zoom-in-icon:hover svg, 
         .apexcharts-zoom-out-icon:hover svg, 
         .apexcharts-reset-zoom-icon:hover svg {
         fill: #333;
         }
         .apexcharts-selection-icon, .apexcharts-download-icon {
         margin-right: 3px;
         position: relative;
         top: 1px;
         }
         .apexcharts-reset-zoom-icon {
         margin-left: 7px;
         }
         .apexcharts-zoom-icon {
         transform: scale(1);
         }
         .apexcharts-download-icon {
         transform: scale(0.9)
         }
         .apexcharts-zoom-in-icon, .apexcharts-zoom-out-icon {
         transform: scale(0.8)
         }
         .apexcharts-zoom-out-icon {
         margin-right: 3px;
         }
         .apexcharts-pan-icon {
         transform: scale(0.72);
         position: relative;
         left: 1px;
         top: 0px;
         }
         .apexcharts-pan-icon svg {
         fill: #fff;
         stroke: #6E8192;
         stroke-width: 2;
         }
         .apexcharts-pan-icon.selected svg {
         stroke: #008FFB;
         }
         .apexcharts-pan-icon:not(.selected):hover svg {
         stroke: #333;
         }
         .apexcharts-toolbar {
         position: absolute;
         z-index: 11;
         top: 0px;
         right: 3px;
         max-width: 176px;
         text-align: right;
         border-radius: 3px;
         padding: 5px 6px 2px 6px;
         display: flex;
         justify-content: space-between;
         align-items: center; 
         }
         .apexcharts-toolbar svg {
         pointer-events: none;
         }
         @media screen and (min-width: 768px) {
         .apexcharts-toolbar {
         /*opacity: 0;*/
         }
         .apexcharts-canvas:hover .apexcharts-toolbar {
         opacity: 1;
         } 
         }
         .apexcharts-datalabel.hidden {
         opacity: 0;
         }
         .apexcharts-pie-label,
         .apexcharts-datalabel, .apexcharts-datalabel-label, .apexcharts-datalabel-value {
         cursor: default;
         pointer-events: none;
         }
         .apexcharts-pie-label-delay {
         opacity: 0;
         animation-name: opaque;
         animation-duration: 0.3s;
         animation-fill-mode: forwards;
         animation-timing-function: ease;
         }
         .hidden {
         opacity: 0;
         }
         .apexcharts-hide .apexcharts-series-points {
         opacity: 0;
         }
         .apexcharts-area-series .apexcharts-series-markers .apexcharts-marker.no-pointer-events,
         .apexcharts-line-series .apexcharts-series-markers .apexcharts-marker.no-pointer-events {
         pointer-events: none;
         }
		 img.exchange_icon {
			 border-radius: 3px;
			 margin: 0px 2px;
		 }
         /* markers */
         .apexcharts-marker {
         transition: 0.15s ease all;
         }
         @keyframes opaque {
         0% {
         opacity: 0;
         }
         100% {
         opacity: 1;
         }
         }

.element-share-sm .group{
  display: inline-block;
  position: relative;
  cursor:pointer;
  margin: 0 5px;
}

.element-share-sm button{
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 2px;
  cursor: inherit;
  border:0;
  color:#ffffff;
  width: 150px;
  outline: 0;
  font-family: inherit;
  -webkit-transition: background-color 0.2s ease-in-out;
  -moz-transition: background-color 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}

.fb{
  background-color: #306199;
}

.fb:hover{
  background-color: #244872;
}


.gp{
  background-color: #e93f2e;
}

.gp:hover{
  background-color: #ce2616;
}

.linkedin{
  background-color: #007bb6;
}

.linkedin:hover{
  background-color: #005983;
}

.twitter{
  background-color: #26c4f1;
}

.twitter:hover{
  background-color: #0eaad6;
}

.pinterest{
  background-color: #b81621;
}

.pinterest:hover{
  background-color: #8a1119;
}
.telegram{
  background-color: #389ce9;
}

.telegram:hover{
  background-color: #0b74c5;
}
img.exchange_icon:hover {
    box-shadow: 0 0 0 1px rgb(0 0 0 / 20%);
    transition: all 200ms ease-out;
    filter: brightness(115%);
}
		.table .thead-dark th, .text-wrap table .thead-dark th {
    color: #ffffff;
    border: none;
    background-color: transparent;
    font-weight: 500;
    font-size: 11px;
    padding: 0 32px 0px;
    height: 52px;
    line-height: 1.5em;
    vertical-align: middle;
}
thead.thead-dark {
  color: #272626;
  font-weight: 800;
  padding: 13px 0;
  font-size: 1.2em !important;
  font-style: italic;
  text-shadow: 0 0 2px rgb(0 0 0 / 10%);
  background: #dce6f0;
}
.table .thead-dark th, .text-wrap table .thead-dark th {
    color: #4c5864;
}
[data-theme="dark"] thead.thead-dark {
    background: #0c1029;
}
[data-theme="dark"] .table .thead-dark th, [data-theme="dark"]  .text-wrap table .thead-dark th {
  color: #f8f8f8;
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.text-dark tr td {
    font-size: 12px;
    padding: 0 32px;
    height: 56px;
    line-height: 56px;
}
.pricing {
  background-color: #fff;
  border: 1px solid #eee;
  margin: 4px;
  text-align: center;
  width: 32.2%;
  float: left;
  box-shadow: 0px 1px 11px 0 rgb(81 36 220 / 15%);
  transition: all 250ms ease;
}
.pricing:hover {
  transform: scale(1.05);
  box-shadow: 1px 2px 15px 1px #a7a9f3;
}
.pricing {
  color: #84797b;
  border-radius: 7px;
}
.pricing h4 {
  margin: 20px 0 0;
}
.pricing h1 {
  color: #887ccb;
  margin: 30px 0 0;
}
.pricing small {
  color: #777;
}
.pricing button {
  background-color: #5CAEFE;
  border: 0;
  border-radius: 2px;
  color: #fff;
  padding: 12px 20px;
  margin-bottom: 30px;
}
button.btn.btn-primary {
  text-decoration: none;
  background: white;
  padding: 13px 70px;
  border-radius: 50px;
  position: relative;
  color: #8893D3;
  box-shadow: none;
  border: solid 1px #bfb9f1;
}
button.btn.btn-primary:hover {
  background: #a7a9f3;
}
.pricing h4 {
  margin: 20px 0 0;
  font-weight: 300;
  letter-spacing: 1px;
  font-size: 17px;
  font-weight: 300;
}
.pricing {
  background-color: #fff;
  border: 1px solid #eee;
  margin: 4px;
  text-align: center;
  width: 32.2%;
  float: left;
  box-shadow: 0px 1px 11px 0 rgb(81 36 220 / 15%);
  transition: all 250ms ease;
}
.pricing:hover {
  transform: scale(1.05);
  box-shadow: 1px 2px 15px 1px #a7a9f3;
}
.pricing {
  color: #84797b;
  border-radius: 7px;
}
.pricing h4 {
  margin: 20px 0 0;
}
.pricing h1 {
  color: #887ccb;
  margin: 30px 0 0;
}
.pricing small {
  color: #777;
}
.pricing button {
  background-color: #5CAEFE;
  border: 0;
  border-radius: 2px;
  color: #fff;
  padding: 12px 20px;
  margin-bottom: 30px;
}
button.btn.btn-primary {
  text-decoration: none;
  background: white;
  padding: 13px 70px;
  border-radius: 50px;
  position: relative;
  color: #8893D3;
  box-shadow: none;
  border: solid 1px #bfb9f1;
}
button.btn.btn-primary:hover {
  background: #a7a9f3;
}
.pricing h4 {
  margin: 20px 0 0;
  font-weight: 300;
  letter-spacing: 1px;
  font-size: 17px;
  font-weight: 300;
}
.bt-n.btn-primary {
  text-decoration: none;
  background: white;
  padding: 13px 70px;
  border-radius: 50px;
  position: relative;
  color: #8893D3;
  box-shadow: none;
  border: solid 1px #bfb9f1;
transition: all 150ms ease;
}
.bt-n.btn-primary:hover {
  background: #a7a9f3;
}
a.skip_button {
  font-size: 12px;
  color: #a1a1a1;
  text-decoration: overline;
}
.website_bottom {
  padding: 4px 10px 4px 0px;
  font-size: 12px;
  text-align: right;
  background: #bfb9f1;
  border-radius: 0px 0px 6px 6px;
  margin-top: 10px;
}
.website_bottom a {
  color: white;
transition: all 250ms ease;
}
.website_bottom a:hover {
  color: #8928bb;
}
.x-small-circle-or-sm01 {
  margin-top: 13px;
  font-size: 10px;
  margin-bottom: 2px;
}
	.fmc-small{
		display: block;
    padding: 3px 3px;
    margin: 0px 10px;
    max-width: 215px;
    background: #fbfbfd;
    color: #444;
    font-size: 11px;
    /*border: 1px solid #cfcbf5;*/
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
	}
	.fmc-small span{
    color: #db9c02;
	}
	.pricing div img {
    border-radius: 50%;
    max-width: 100px;
}
.website_block {
    background-color: #fff;
    border: 1px solid #eee;
    margin: 4px;
    text-align: center;
    width: 32.2%;
    float: left;
    box-shadow: 0px 1px 11px 0 rgb(81 36 220 / 15%);
    transition: all 250ms ease;
color: #84797b;
    border-radius: 7px;
}

.website_title {
    margin: 20px 0 0;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 17px;
    font-weight: 300;
}
.website_block img {
    border-radius: 50%;
    max-width: 100px;
}
.website_block img {
    border-radius: 50%;
    max-width: 100px;
    margin-top: 10px;
}
.website_block .coins {
  display: block;
  padding: 3px 3px;
  margin: 0px 10px 23px 10px;
  background: #fbfbfd;
  color: #444;
  font-size: 13px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
}
.website_block .coins span {
    color: #db9c02;
}
.website_block a.visit_button {
    text-decoration: none;
    background: white;
    padding: 13px 70px;
    border-radius: 50px;
    position: relative;
    color: #8893D3;
    box-shadow: none;
    border: solid 1px #bfb9f1;
    transition: all 150ms ease;
}
.x-small-circle-or {
    margin-top: 13px;
    font-size: 10px;
    margin-bottom: 2px;
}
.website_block:hover {
  transform: scale(1.05);
  box-shadow: 1px 2px 15px 1px #a7a9f3;
}
a.visit_button:hover {
  background: #a7a9f3;
  color: white;
}
.website_block .yt-video img {
  border-radius: 5px;
  max-width: 90%;
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #9370DB;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #BA55D3;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}
#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #FF00FF;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
  0%   {
      -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      transform: rotate(0deg);
  }
  100% {
      -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      transform: rotate(360deg);
  }
}
@keyframes spin {
  0%   {
      -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      transform: rotate(0deg);
  }
  100% {
      -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      transform: rotate(360deg);
  }
}
[data-theme="dark"] .text-dark {
  color: #fff !important;
}
[data-theme="dark"] .table thead th {
  vertical-align: bottom;
  border-bottom: 1px solid rgb(254 254 255 / 8%);
  font-size: 11px;
  padding: 0 32px 0px;
  vertical-align: middle !important;
  height: 52px;
  line-height: 1.5em;
}
[data-theme="dark"] .aff_block_p2 {
  color: #e3e3e3;
  background: #3e425f;
  border-color: #595e77;
}
@media only screen and (max-width: 800px) {
.badge-warning-light {
    text-align: center;
    white-space: break-spaces;
    position: initial;
    margin-bottom: 10px;
}
#dailyLimitSelect {
    position: inherit;
    margin-top: -20px;
}
form#totalLimitSelect {
    position: inherit;
    margin-top: -25px;
    height: 42px;
}
  img.exchange_icon {
    width: 20%;
    margin: 4px;
}
.element-share-sm button {
  margin: 3px 0px;
  width: 124px;
  font-size: 12px;
}
.element-share-sm {
  text-align: center;
}
input.form-control.w-75.mt-1 {
  text-align: center;
  width: 100% !important;
}
.page-header .page-rightheader div div div {
  display: none;
}
.pricing,.website_block {
  width: 100% !important;
}
.card .card-body .d-flex div {
  text-align: center !important;
}
}
        /* common */
        .ribbon-fmx {
          width: 150px;
          height: 150px;
          overflow: hidden;
          position: absolute;
          z-index: 1;
          scale: 0.6;
          background: transparent !important;
          margin: 0px 10px 18px 0px !important;
      }
      .ribbon-fmx::before,
      .ribbon-fmx::after {
        position: absolute;
        z-index: -1;
        content: '';
        display: block;
        border: 5px solid #9b2b00;
      }
      /* Añadir animación de brillo */
.ribbon-fmx span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 15px 0;
  background-color: #dd2a00 !important;
  box-shadow: 0 5px 10px rgba(0,0,0,.1);
  color: #fff;
  font: 700 18px/1 'Lato', sans-serif;
  text-shadow: 0 1px 1px rgba(0,0,0,.2);
  text-transform: uppercase;
  text-align: center;
  overflow: hidden; /* Necesario para la animación */
}

.ribbon-fmx span::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(227deg);
  animation: shine 2s infinite;
}

@keyframes shine {
  0% {
      left: -100%;
  }
  50% {
      left: 100%;
  }
  100% {
      left: 100%;
  }
}
      
      /* top left*/
      .ribbon-fmx-top-left {
          top: -36px;
          left: -36px;
      }
      .ribbon-fmx-top-left::before,
      .ribbon-fmx-top-left::after {
        border-top-color: transparent;
        border-left-color: transparent;
      }
      .ribbon-fmx-top-left::before {
        top: 0;
        right: 0;
      }
      .ribbon-fmx-top-left::after {
        bottom: 0;
        left: 0;
      }
      .ribbon-fmx-top-left span {
        right: -25px;
        top: 30px;
        transform: rotate(-45deg);
      }
      .website_block {
          position: relative;
      }
      .ribbon-fmx.ribbon-fmx-top-left.sPOINTS {
          display: none;
      }
      .coins.coins_sPOINTS span {
          color: #0473fc !important;
          font-weight: 600;
      }
      .coins.coins_famex span {
          color: #c92e0a !important;
          font-weight: 600;
      }