<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* COMING SOON WIDGET */
[data-mb="soon"] {
    position: relative;
}
[data-mb="soon"] &gt; * {
    opacity: 0.6;
    pointer-events: none;
}
[data-mb="soon"]::before, [data-mb="soon"]::after {
    transition: opacity 0.3s ease 0s;
}
[data-mb="soon"]::before {
    opacity: 0;
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -4px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 4px 4px 4px;
    border-color: transparent transparent #fc6b66 transparent;
    z-index: 2;
}
[data-mb="soon"]::after {
    opacity: 0;
    content: attr(data-soon-text);
    color: #ffffff;
    background-color: #FF2F6C;
    font-size: 12px;
    white-space: nowrap;
    padding: 3px 10px;
    border-radius: 20em;
    height: auto;
    line-height: 1.2;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
[data-mb="soon"]:hover::before, [data-mb="soon"]:hover::after {
    opacity: 1;
}

.svgcoin.usdctrc,
.svgcoin.usdcbsc,
.svgcoin.usdc, 
[data-option=usdcbsc] .svgcoin,
[data-option=usdctrc] .svgcoin {
    background-image: url('../images/crypto_icons/usdc.svg');
}

/* CHARTS */
.charts-col {
    flex: 1 0 100%;
    margin-bottom: 40px;
}
.charts-col &gt; .label {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 50px;
}
@media (min-width: 1040px) {
    .charts-col &gt; .inner-col {
        padding-right: 665px;
        min-height: 450px;
        position: relative;
    }
}
.chart-box {
    display: block;
}
.chart-trigger {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eeecf6;
}
@media (min-width: 1040px) {
    .chart-trigger {
        padding-left: 20px;
    }
}
.chart-trigger .chart-icon {
    flex: 0 0 32px;
    margin-right: 20px;
}
.chart-trigger .chart-icon img {
    width: 100%;
    height: auto;
}
.chart-trigger .chart-name {
    flex: 1 0 auto;
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding-right: 10px;
}
.chart-trigger .chart-rate {
    flex: 0 0 auto;
    position: relative;
    display: block;
    padding-right: 17px;
    margin-right: 20px;
}
.chart-trigger .chart-rate::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
}
.chart-trigger .chart-rate.-up {
    color: #7ae148;
}
.chart-trigger .chart-rate.-up::after {
    border-width: 0 5px 9px 5px;
    border-color: transparent transparent #7be148 transparent;
}
.chart-trigger .chart-rate.-down {
    color: #fc6a66;
}
.chart-trigger .chart-rate.-down::after {
    border-width: 9px 5px 0 5px;
    border-color: #fc6b66 transparent transparent transparent;
}
.chart-trigger .chart-expand a {
    display: block;
    position: relative;
    height: 24px;
    line-height: 22px;
    width: 24px;
    border: 1px solid #828282;
    border-radius: 50%;
    font-size: 12px;
    color: #828282;
}
.chart-trigger .chart-expand a .fas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
}
.chart-trigger .chart-expand a:hover {
      color: #1b42cb;
      border-color: #1b42cb;
}
.chart-trigger .chart-expand.active a {
    color: #ffffff;
    background-color: #1b42cb;
    border-color: #1b42cb;
}
.chart-info {
  display: none;
}
@media (min-width: 1040px) {
    .chart-info {
        position: absolute;
        top: 0;
        right: 0;
        width: 570px;
    }
}
.open &gt; .chart-info {
    display: block;
}
.chart-info .chart-name {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    margin-bottom: 10px;
}
@media (min-width: 1040px) {
    .chart-info .chart-name {
        margin-bottom: 30px;
    }
}
.chart-info .chart-name .chart-icon {
    flex: 0 0 32px;
    margin-right: 20px;
}
.chart-info .chart-name .sub-label {
    flex: 1 0 auto;
    font-size: 18px;
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
@media (min-width: 1040px) {
    .chart-info .chart-name .sub-label {
        font-size: 26px;
    }
}
.chart-info .chart-rate {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
@media (min-width: 1040px) {
    .chart-info .chart-rate {
        margin-bottom: 35px;
    }
}
.chart-info .chart-price {
    font-size: 28px;
    color: #1b42cb;
}
.chart-info .chart-stock {
    border: 1px solid #d8d8d8;
    border-radius: 20em;
    height: 40px;
    line-height: 38px;
    padding: 0 40px 0 30px;
    display: block;
    position: relative;
}
.chart-info .chart-stock::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
}
.chart-info .chart-stock.-up {
    color: #7ae148;
}
.chart-info .chart-stock.-up::after {
    border-width: 0 5px 9px 5px;
    border-color: transparent transparent #7be148 transparent;
}
.chart-info .chart-stock.-down {
    color: #fc6a66;
}
.chart-info .chart-stock.-down::after {
    border-width: 9px 5px 0 5px;
    border-color: #fc6b66 transparent transparent transparent;
}
@media (max-width: 1039px) {
    .chart-info .chart {
        margin-bottom: 20px;
    }
}

/* FAKE UPLOAD */
.fake-upload .btn.btn-upload {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: #263238;
    background-color: #D7E0E6;
    min-height: 148px;
}
.fake-upload .btn.btn-upload:hover {
    background-color: #c8ddee;
}
.fake-upload .btn.btn-upload .sub-label {
    display: block;
    max-width: 100%;
    white-space: normal;
    flex: 1 0 100%;
    word-break: break-all;
    line-height: 1.4;
    text-transform: lowercase;
}
.fake-upload input[type="file"] {
    display: none;
}

/* DOCUMENTS TABLE */
.user-documents-col table  {
    width: 100%;
    margin-bottom: 10px;
    border-collapse: collapse;
}

/* ORDERS LIST */
.order-col {
    flex: 1 0 100%;
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    .order-col {
        overflow-x: auto;
    }
}
.orders-list thead tr {
    border-bottom: 0;
}
.orders-list th {
    background-color: #F2F4F5;
    height: 60px;
    line-height: 60px;
    color: #263238;
    font-size: 18px;
    font-weight: 500;
    padding: 0 10px;
    white-space: nowrap;
}
@media (min-width: 1040px) {
    .orders-list th {
        padding: 0 30px;
    }
}
.orders-list th:last-child {
    text-align: right;
}
.orders-list td {
    padding: 10px;
    vertical-align: top;
}
@media (min-width: 1040px) {
    .orders-list td {
        padding: 20px 30px;
    }
}
.orders-list td:last-child {
    text-align: right;
}
.order-status {
  display: block;
}
.order-status.-send {
    color: #7ae148;
}
.order-status.-received {
    color: #4fa4f3;
}
.order-status.-moved {
    color: #fc6a66;
}
.order-date {
    display: block;
    vertical-align: top;
    white-space: nowrap;
}
@media (min-width: 1040px) {
    .order-date {
        display: inline-block;
    }
    .order-date + .order-date {
        margin-left: 15px;
    }
}
.order-date svg {
    margin-right: 10px;
}
.order-date .sub-label {
    display: inline-block;
    vertical-align: top;
}
.order-type .sub-label {
    display: inline-block;
    position: relative;
    vertical-align: top;
    margin-right: 40px;
    white-space: nowrap;
}
.order-type .sub-label::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -30px;
    height: 1px;
    width: 20px;
    background-color: #1b42cb;
}
@media (min-width: 1040px) {
    .order-type .sub-label {
        margin-right: 100px;
    }
    .order-type .sub-label::after {
        width: 40px;
        right: -70px;
    }
}
.order-type .sub-desc {
    display: inline-block;
    vertical-align: top;
    color: #828282;
    white-space: nowrap;
}
.order-from {
    display: block;
}
.order-to {
    display: block;
    color: #828282;
}
.order-account-number {
    display: block;
    line-height: 1.2;
}
.order-account-ovner {
    display: block;
    line-height: 1.2;
    color: #828282;
}

.transactions-entry .order-details, 
.transactions-entry .payment-type {
    text-align: center;
}
.transactions-entry .order-type .sub-label {
    margin-right: 60px;
}
.transactions-entry .order-type .sub-label::after {
    width: 30px;
    right: -46px;
}

/* TRANSACTIONS TABLE NAV */
.wallet-table-nav {
    display: flex;
}
.wallet-table-nav ul {
    display: flex;
    flex-flow: row nowrap;
}
.wallet-table-nav ul li {
    padding: 0 15px;
}
.wallet-table-nav ul li:first-child {
    font-weight: bold;
}
.wallet-table-nav a {
    color: #22557B;
    line-height: 40px;
    font-size: 16px;
}
.wallet-table-nav a:hover {
    color: #007bff;
}
@media screen and (max-width: 805px) {
    .wallet-table-nav ul {
        margin: 0 auto;
    }
    .wallet-table-nav .header-search {
        flex: 1 0 100%;
    }
}

/* TRANSACTIONS TABLE SEARCH */
.header-search {
    flex: 1 0 100%;
    margin-top: 10px;
}
@media (min-width: 768px) {
    .header-search {
      flex: 0 0 330px;
      margin-top: 0;
      max-width: 330px;
      margin-left: auto;
    }
}
.header-search .search-wrap {
    display: block;
    position: relative;
}
.header-search input[type="text"] {
    border-color: #d8d8d8;
    padding-right: 42px;
}
.header-search .btn-search {
    position: absolute;
    right: 0;
    top: 0;
    height: 43px;
    line-height: 43px;
    padding: 0 10px;
    color: #1b42cb;
}
.header-search .btn-search:hover {
    color: #0f2571;
}
.header-search .btn-search svg {
    display: inline-block;
    vertical-align: middle;
}

/* PAGINATION */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 0;
}
.pagination a {
    font-weight: 900;
    padding: 0 10px;
    height: 25px;
    line-height: 25px;
    min-width: 25px;
}
.pagination a:hover {
      color: #ffffff;
      background-color: #1b42cb;
}
.pagination span {
    font-weight: 900;
    padding: 0 10px;
    height: 25px;
    line-height: 25px;
    min-width: 25px;
    color: #ffffff;
    background-color: #1b42cb;
}
  
/* OVERWRITES */
.purchase-value-options-box .radio#otherPrice {
    width: 60%;
}

.checkbox label input[type="checkbox"], 
.checkbox label input[type="radio"], 
.radio label input[type="checkbox"],
.radio label input[type="radio"] {
    width: 20px;
    height: 20px;
    opacity: 0;
    visibility: visible;
}

.btn.-prev .btn-arrow {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 28px;
    vertical-align: middle;
    margin-right: 10px;
}
.btn.-prev .btn-arrow .svg-inline--fa {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
}

.purchase-value-options-box  .radio.-buy.-best label .sub-label {
    border: 2px solid #ff2f6c;
    overflow: hidden;
}
.purchase-value-options-box .radio.-buy.-best label .sub-label::before {
    content: attr(data-label);
    display: block;
    position: absolute;
    top: 10px;
    left: auto;
    right: -20px;
    transform: rotate(45deg);
    background-color: #ff2f6c;
    color: #ffffff;
    width: auto;
    max-width: 80px;
    border-radius: 0;
    font-size: 10px;
    height: auto;
    line-height: 1.2;
    padding: 2px 15px;
    border: 0 none;
}

.ucp-list [data-mb="soon"]::before, .ucp-list [data-mb="soon"]::after {
    top: 70%;
}

.lang-col {
    flex: 0;
    padding-left: 0;
}

.ucp-col {
    padding-right: 0;
    margin-left: auto;
}

@media(max-width: 1365px) {
    .lang-col {
        margin-left: auto;
        padding-right: 0;
    }
}

.currency-sub-list .currency-link input[type=radio] {
    display: none;
}

.my-profile-form.-basic .fake-input {
    font-size: 14px;
}

.mt-10 {
    margin-top: 10px;
}
.mt-20 {
    margin-top: 20px;
}

.static-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.iti {
    width: 100%;
}


.static-col ul li {
    height: auto;
}</pre></body></html>