/* Copy Animation */
.base-color {
  color: hsl(var(--main)) !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #FF7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}




.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1E2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  background: #d1d1d1;
  border-radius: 5px;
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #6e6f70;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}


.navbar-brand::before{
  display: none;
}


@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}


.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 285px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: '';
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: '';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}



.show-filter {
  display: none;
}

@media(max-width:767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}

.btn--dark,
.btn--dark:hover {
  background-color: #10163A !important;
  color: #fff;
}

.modal-footer .btn--primary {
  color: #fff;
}

.single-message.admin-message .message-content {
  border: 1px solid #fad8d8 !important;
  background-color: #fff1f1 !important;
}


/* new added */
label.required:after {
  content: '*';
  color: #DC3545 !important;
  margin-left: 2px;
}

.cursor-pointer {
  cursor: pointer !important;
}

/* trade request start css start */
.trade-request-details-list {
  padding: 30px;
  background-color: #f9f9f9;
}

.trade-request-details-list li {
  padding: 15px 0;
  font-size: 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px dashed #d0d0d0;
}

.trade-request-details-list li:first-child {
  padding-top: 0;
}

.trade-request-details-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.trade-request-details-list li .caption {
  font-weight: 700;
  width: 40%;
  position: relative;
}

@media (max-width: 575px) {
  .trade-request-details-list li .caption {
    width: 100%;
  }
}

.trade-request-details-list li .caption::after {
  position: absolute;
  content: ':';
  top: 1px;
  right: 0;
}

@media (max-width: 575px) {
  .trade-request-details-list li .caption::after {
    position: static;
    margin-left: 3px;
  }
}

.trade-request-details-list li .value {
  width: 60%;
  padding-left: 20px;
}

@media (max-width: 575px) {
  .trade-request-details-list li .value {
    width: 100%;
    padding-left: 0;
  }
}

.trade-request-form {
  padding: 30px;
  background-color: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

@media (max-width: 575px) {
  .trade-request-form {
    padding: 15px;
  }
}

/* trade request start css end */

/* terms-sidebar css start */
.terms-sidebar {
  padding: 30px;
  background-color: #ffffff;
  height: 100%;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border: 1px solid #ebebeb;
}

.terms-sidebar__widget {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.terms-sidebar__widget:first-child {
  padding-top: 0;
}

.terms-sidebar__widget:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.terms-sidebar__widget .title {
  margin-bottom: 10px;
}

.terms-sidebar__widget p {
  color: #6f6f6f;
}

/* terms-sidebar css end */

.user-details-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.user-details-top .thumb {
  width: 70px;
  height: 70px;
  overflow: hidden;
}

.user-details-top .thumb img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
}

.user-details-top .content {
  width: calc(100% - 100px);
  padding-left: 20px;
}

.user-review {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
}

.user-details-list {
  display: flex;
  flex-wrap: wrap;
  margin: -5px -10px;
  flex-direction: column;
}

.user-details-list li {
  padding: 5px 10px;
}

.user-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 5px
}

.trade-chat-file-upload ::file-selector-button,
::-webkit-file-upload-button {
  border: 0 !important;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 3px;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  margin-bottom: 0;
  font-size: 14px;
}

.trade-chat-file-upload input {
  max-width: 400px;
}

.trade-chat-file-upload label {
  position: relative;
  visibility: hidden;
}

.review-item {
  padding: 15px;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.fs--13px {
  font-size: 13px;
}

.fs--14px {
  font-size: 14px;
}

.btn-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
}

.btn-list li a {
  border: 1px solid #e5e5e5;
  height: 100%;
  padding-left: 12px !important;
}

.btn-list li a.active {
  background-color: hsl(var(--base)) !important;
  color: #fff !important;
  border-color: hsl(var(--base)) !important;
}

.btn-list li a span {
  padding-right: 6px;
  border-radius: 2px;
  position: relative;
  z-index: 1;
  color: #fff;
  margin-right: 8px;
}

.btn-list li a span::before {
  position: absolute;
  content: '';
  top: -9px;
  left: -12px;
  width: calc(100% + 13px);
  height: calc(100% + 18px);
  background-color: #312318;
  z-index: -1;
  border-radius: 0.2rem 0 0 0.2rem;
}

.d-widget__icon i.success {
  color: hsl(var(--success));
}

.d-widget__icon i.warning {
  color: hsl(var(--warning));
}

.d-widget__icon i.dark {
  color: hsl(var(--dark));
}

.d-widget {
  height: 100%;
}


/* profile-sidebar css start */
.profile-setting-sidebar {
  background-color: #f0f1f1;
  padding: 25px;
  position: sticky;
  top: 100px;
}

.profile-setting-sidebar .fileinput-new.thumbnail {
  width: 150px;
  height: 150px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
  border-radius: 10px;
}

.profile-setting-sidebar .fileinput-new.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

.profile-sidebar__widget {
  padding: 30px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background-color: #ffffff;
  border: 1px solid #ebebeb;
}

.profile-sidebar__title {
  font-size: 18px;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 30px;
}

.profile-sidebar__title::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 25px;
  height: 3px;
  background-color: #000000;
}

.profile-sidebar__widget+.profile-sidebar__widget {
  margin-top: 30px;
}

.profile-author .thumb {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
}

.profile-author .thumb img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-author .content {
  margin-top: 20px;
}

.profile-verify-list li+li {
  margin-top: 15px;
}

.profile-verify-list li {
  padding: 6px 15px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.profile-verify-list li.verified {
  background-color: rgba(40, 223, 153, 0.15);
  color: #08925d;
}

.profile-verify-list li.unverified {
  background-color: rgba(255, 75, 92, 0.15);
  color: #ff4b5c;
}

.profile-verify-list li i {
  font-size: 18px;
  margin-right: 8px;
}

.profile-info-list li {
  padding: 10px 0;
  border-bottom: 1px dashed #e5e5e5;
}

.profile-info-list li:first-child {
  padding-top: 0;
}

.profile-info-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.profile-info-list .caption {
  font-weight: 700;
}

.profile-info-list .caption::after {
  content: ':';
  margin-left: 5px;
  margin-right: 5px;
}

.custom-input-field {
  position: relative;
}

.custom-input-field[type=file]::file-selector-button {
  color: hsl(var(--white)) !important;
  font-size: 14px;
}

/* profile-sidebar css end */



.caption-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}



.caption-list {
  position: relative;
}

.caption-list__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.caption-list__item .caption {
  position: relative;
  color: hsl(var(--heading-color));
  font-size: 15px;
  font-weight: 500;
  width: 40%;
}

.caption-list__item .caption::after {
  position: absolute;
  content: ':';
  top: 0;
  right: 0;
}

.caption-list__item .value {
  font-size: 15px;
  margin-left: 15px;
}

.instructions .heading {
  font-size: 0.938rem;
  text-decoration: underline;
  margin-bottom: 10px;
  font-weight: 500;
}

.instructions .title {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 500;
}

.instructions .instruction_list {
  margin-bottom: 10px;
}

.instructions .instruction_list:last-child {
  margin-bottom: 0px;
}

.instructions .instruction_list p {
  font-size: 0.813rem;
}

.alert-section p {
  font-size: 0.813rem;
}


/* alert design */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.alert--info {
  border: 1px solid rgb(0 147 255 / 30%);
  background-color: rgb(0 147 255 / 5%);
}

.alert--info .alert__icon {
  color: rgb(0 147 255);
}

.alert--primary {
  border: 1px solid rgb(70 52 255 / 30%);
  background-color: rgb(70 52 255 / 5%);
}

.alert--primary .alert__icon {
  color: rgb(70 52 255);
}

.alert--danger {
  border: 1px solid rgb(220 53 69 / 50%);
  background-color: rgb(220 53 69 / 5%);
}

.alert--danger .alert__icon {
  color: rgb(220 53 69);
}

.alert--warning {
  border: 1px solid rgba(220, 206, 53, 0.5);
  background-color: rgba(220, 206, 53, 0.05);
}

.alert--warning .alert__icon {
  color: rgba(220, 206, 53);
}


/* new css */

.select2 .selection {
  display: block;
}

.select2 .dropdown-wrapper {
  display: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff !important;
  line-height: 55px !important;
}


.select2-container--default .select2-selection--single {
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 4px;
  height: 48px;
  background: transparent;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 48px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  margin-bottom: 6px;
  color: #fff;
}


.select2-results__option--selectable {
  cursor: pointer;
  color: #fff;
}

.select2-container--default .select2-results__option--selected {
  background-color: rgb(255 255 255 / 10%);
  color: black;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: rgb(255 255 255 / 6%);
  color: black;
}

.coin-search-area .form-control {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: #fff;
  height: 55px;
}

.coin-search-area .btn--base {
  padding: 13px 35px;
}


.select2-container--default .select2-selection--single {
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  height: 48px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #000 !important;
  line-height: 48px !important;
}

.select2-dropdown {
  background-color: #fff !important;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
}

.select2-results__option--selectable {
  cursor: pointer;
  color: #000;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: rgb(0 0 0 / 10%);
  color: #000;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #000;
  outline: none;
}


.sell-card .input-group-text {
  border: 0;
}


.select2 .dropdown-wrapper {
  display: none;
}

.select2-container:has(.select2-selection--single) {
  width: 100% !important;
}




/* ===== Account Banner Wrapper ===== */
.account-setting-banner {
    position: relative;
    padding: 28px 0 26px;
    background: rgba(255, 195, 51, 0.16);
    /*background: radial-gradient(circle at top left, rgba(255, 195, 51, 0.16), rgba(27, 27, 29, 0.02) 55%, #ffffff 100%);*/
    border-bottom: 1px solid rgba(27, 27, 29, 0.08);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* offset for fixed header on desktop/laptop – adjust if needed */
    margin-top: 48px;
}

/* Optional subtle shape image */
.account-setting-banner .banner-section__shape {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.05;
    mix-blend-mode: multiply;
}
.account-setting-banner .banner-section__shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Layout */
.account-setting-banner .container {
    position: relative;
    z-index: 1;
}

/* ===== Top row: avatar + info ===== */
.account-setting-banner .author {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
    margin-bottom: 18px;
}

/* Avatar */
.author__thumb {
    width: 80px;
    height: 80px;
    border-radius: 999px;
    overflow: hidden;
    /*border: 3px solid rgba(0, 160, 130, 0.18);  green ring */
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
    flex-shrink: 0;
    background: #fff;
}
.author__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Name */
.author__hello {
    font-size: 1.45rem;
    font-weight: 600;
    margin: 0 0 4px;
    color: #1B1B1D;
}

/* Email as a pill card */
.author__email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 6px 12px;
    border-radius: 999px;
    background: #1B1B1D;
    color: #ffc333;
    font-size: 0.9rem;
    font-weight: 500;
    word-break: break-all;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* optional email icon if you add <i> */
.author__email i {
    font-size: 0.9rem;
    color: #ffc333;
}

/* Let text area grow */
.author > .author__hello,
.author > .author__email {
    flex: 1 1 100%;
}

@media (min-width: 576px) {
    .author {
        flex-wrap: nowrap;
        align-items: center;
    }
    .author > .author__hello,
    .author > .author__email {
        flex: 1;
    }
    .author__hello {
        font-size: 1.6rem;
    }
}

/* ===== Detail cards row ===== */
.author-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 14px;
    margin-top: 4px;
}

/* Each item as a soft card */
.author-details__item {
    background: #ffffff;
    border-radius: 14px;
    padding: 11px 14px;
    border: 1px solid rgba(27, 27, 29, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Titles (labels) */
.author-details__title {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 600;
    color: rgba(27, 27, 29, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Link inside title (e.g. Secure Now) */
.author-details__title a {
    font-size: 0.78rem;
    font-weight: 600;
    color: #00a082;
    text-decoration: none;
}
.author-details__title a:hover {
    text-decoration: underline;
}

/* Values */
.author-details__info {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1B1B1D;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Icons */
.author-details__info i {
    font-size: 0.85rem;
}

/* ===== Status variations ===== */

/* KYC verified */
.author-details__info.verified {
    color: #00a082;
}
.author-details__info.verified i {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 2px solid rgba(0, 160, 130, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 160, 130, 0.06);
}

/* Security - less secure (amber) */
.author-details__info.secure {
    color: #b87314; /* muted gold/brown */
}
.author-details__info.secure i {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 195, 51, 0.15);
}

/* Example future "strong" security state */
.author-details__info.strong {
    color: #00a082;
}
.author-details__info.strong i {
    background: rgba(0, 160, 130, 0.08);
}

/* Last login softer text */
.author-details__item:last-child .author-details__info {
    font-weight: 400;
    color: rgba(27, 27, 29, 0.7);
}

/* ===== Responsive tweaks ===== */
@media (max-width: 991.98px) {
    .account-setting-banner {
        margin-top: 110px; /* a bit more offset on tablet if header overlaps */
    }
}

@media (max-width: 575.98px) {
    .account-setting-banner {
        padding: 26px 0 18px;
        margin-top: 110px; /* ensure below fixed header on small phones */
    }

    .account-setting-banner .author {
        flex-wrap: nowrap;
        align-items: center;
        gap: 14px;
    }

    .author__thumb {
        width: 56px;
        height: 56px;
        margin-bottom: 4px; /* gap before cards */
    }

    .author__hello {
        font-size: 1.05rem;
        margin-bottom: 3px;
    }

    .author__email {
        font-size: 0.78rem;
        padding: 5px 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }

    .author-details {
        margin-top: 10px;
    }
  
/* Fix squeezed logo on login page */
.header.two .navbar-brand.logo img {
    max-height: 55px !important;   /* Adjust height */
    height: auto !important;
    width: auto !important;
    padding: 10px 0 !important;    /* Add upper & lower spacing */
}

/* Keep the header height stable even without language icon */
.header.two .account-header-inner {
    align-items: center !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}


  
  
/* Remove sidebar on account pages */
.account-setting-body .col-xl-3.col-lg-4 {
    display: none !important;
}

/* Expand the dashboard body to full width */
.account-setting-body .col-xl-9.col-lg-8 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
}


  /* Force normal table layout on mobile */
.table-responsive--sm {
    overflow-x: auto !important;
    display: block !important;
    white-space: nowrap !important;
}

/* Prevent table cells from stacking vertically */
.table-responsive--sm table td,
.table-responsive--sm table th {
    white-space: nowrap !important;
} 
  
}


/* Mobile header adjustments */
@media screen and (max-width: 1199px) {
    .header .header-right {
        align-items: center; /* vertically align items */
        gap: 15px; /* space between icons */
    }

    .header-right__button.account,
    .hamburger-btn {
        font-size: 1.5rem; /* same size for both icons */
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
    }

    /* Optional: adjust icon inside */
    .header-right__button.account i,
    .hamburger-btn i {
        font-size: 1.5rem; /* same size */
    }

    /* Make the logo align vertically */
    .navbar-brand.logo img {
        max-height: 40px;
        object-fit: contain;
    }
}


