/*!
 * Theme Name: Default
 * Package : Banky
 * Author: Fixsweb
 * Author URI: http://fixsweb.net/
 * Version	 :	1.0.0
 * Updated	 :	07.23.2024
**/

@-webkit-keyframes notyf-fadeinup {
    0% {
      opacity: 0;
      transform: translateY(25%);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes notyf-fadeinup {
    0% {
      opacity: 0;
      transform: translateY(25%);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @-webkit-keyframes notyf-fadeinleft {
    0% {
      opacity: 0;
      transform: translateX(25%);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @keyframes notyf-fadeinleft {
    0% {
      opacity: 0;
      transform: translateX(25%);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @-webkit-keyframes notyf-fadeoutright {
    0% {
      opacity: 1;
      transform: translateX(0);
    }
    to {
      opacity: 0;
      transform: translateX(25%);
    }
  }
  @keyframes notyf-fadeoutright {
    0% {
      opacity: 1;
      transform: translateX(0);
    }
    to {
      opacity: 0;
      transform: translateX(25%);
    }
  }
  @-webkit-keyframes notyf-fadeoutdown {
    0% {
      opacity: 1;
      transform: translateY(0);
    }
    to {
      opacity: 0;
      transform: translateY(25%);
    }
  }
  @keyframes notyf-fadeoutdown {
    0% {
      opacity: 1;
      transform: translateY(0);
    }
    to {
      opacity: 0;
      transform: translateY(25%);
    }
  }
  @-webkit-keyframes ripple {
    0% {
      transform: scale(0) translateY(-45%) translateX(13%);
    }
    to {
      transform: scale(1) translateY(-45%) translateX(13%);
    }
  }
  @keyframes ripple {
    0% {
      transform: scale(0) translateY(-45%) translateX(13%);
    }
    to {
      transform: scale(1) translateY(-45%) translateX(13%);
    }
  }
  .notyf {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    color: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
    box-sizing: border-box;
    padding: 20px;
  }
  .notyf__icon--error,
  .notyf__icon--success {
    height: 21px;
    width: 21px;
    background: #fff;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    position: relative;
  }
  .notyf__icon--error:after,
  .notyf__icon--error:before {
    content: "";
    background: currentColor;
    display: block;
    position: absolute;
    width: 3px;
    border-radius: 3px;
    left: 9px;
    height: 12px;
    top: 5px;
  }
  .notyf__icon--error:after {
    transform: rotate(-45deg);
  }
  .notyf__icon--error:before {
    transform: rotate(45deg);
  }
  .notyf__icon--success:after,
  .notyf__icon--success:before {
    content: "";
    background: currentColor;
    display: block;
    position: absolute;
    width: 3px;
    border-radius: 3px;
  }
  .notyf__icon--success:after {
    height: 6px;
    transform: rotate(-45deg);
    top: 9px;
    left: 6px;
  }
  .notyf__icon--success:before {
    height: 11px;
    transform: rotate(45deg);
    top: 5px;
    left: 10px;
  }
  .notyf__toast {
    display: block;
    overflow: hidden;
    pointer-events: auto;
    -webkit-animation: notyf-fadeinup 0.3s ease-in forwards;
    animation: notyf-fadeinup 0.3s ease-in forwards;
    box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.25);
    position: relative;
    padding: 0 15px;
    border-radius: 2px;
    max-width: 300px;
    transform: translateY(25%);
    box-sizing: border-box;
    flex-shrink: 0;
  }
  .notyf__toast--disappear {
    transform: translateY(0);
    -webkit-animation: notyf-fadeoutdown 0.3s forwards;
    animation: notyf-fadeoutdown 0.3s forwards;
    -webkit-animation-delay: 0.25s;
    animation-delay: 0.25s;
  }
  .notyf__toast--disappear .notyf__icon,
  .notyf__toast--disappear .notyf__message {
    -webkit-animation: notyf-fadeoutdown 0.3s forwards;
    animation: notyf-fadeoutdown 0.3s forwards;
    opacity: 1;
    transform: translateY(0);
  }
  .notyf__toast--disappear .notyf__dismiss {
    -webkit-animation: notyf-fadeoutright 0.3s forwards;
    animation: notyf-fadeoutright 0.3s forwards;
    opacity: 1;
    transform: translateX(0);
  }
  .notyf__toast--disappear .notyf__message {
    -webkit-animation-delay: 0.05s;
    animation-delay: 0.05s;
  }
  .notyf__toast--upper {
    margin-bottom: 20px;
  }
  .notyf__toast--lower {
    margin-top: 20px;
  }
  .notyf__toast--dismissible .notyf__wrapper {
    padding-right: 30px;
  }
  .notyf__ripple {
    height: 400px;
    width: 400px;
    position: absolute;
    transform-origin: bottom right;
    right: 0;
    top: 0;
    border-radius: 50%;
    transform: scale(0) translateY(-51%) translateX(13%);
    z-index: 5;
    -webkit-animation: ripple 0.4s ease-out forwards;
    animation: ripple 0.4s ease-out forwards;
  }
  .notyf__wrapper {
    display: flex;
    align-items: center;
    padding-top: 17px;
    padding-bottom: 17px;
    padding-right: 15px;
    border-radius: 3px;
    position: relative;
    z-index: 10;
  }
  .notyf__icon {
    width: 22px;
    text-align: center;
    font-size: 1.3em;
    opacity: 0;
    -webkit-animation: notyf-fadeinup 0.3s forwards;
    animation: notyf-fadeinup 0.3s forwards;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    margin-right: 13px;
  }
  .notyf__dismiss {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 26px;
    margin-right: -15px;
    -webkit-animation: notyf-fadeinleft 0.3s forwards;
    animation: notyf-fadeinleft 0.3s forwards;
    -webkit-animation-delay: 0.35s;
    animation-delay: 0.35s;
    opacity: 0;
  }
  .notyf__dismiss-btn {
    background-color: rgba(0, 0, 0, 0.25);
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease, background-color 0.2s ease;
    outline: none;
    opacity: 0.35;
    height: 100%;
    width: 100%;
  }
  .notyf__dismiss-btn:after,
  .notyf__dismiss-btn:before {
    content: "";
    background: #fff;
    height: 12px;
    width: 2px;
    border-radius: 3px;
    position: absolute;
    left: calc(50% - 1px);
    top: calc(50% - 5px);
  }
  .notyf__dismiss-btn:after {
    transform: rotate(-45deg);
  }
  .notyf__dismiss-btn:before {
    transform: rotate(45deg);
  }
  .notyf__dismiss-btn:hover {
    opacity: 0.7;
    background-color: rgba(0, 0, 0, 0.15);
  }
  .notyf__dismiss-btn:active {
    opacity: 0.8;
  }
  .notyf__message {
    vertical-align: middle;
    position: relative;
    opacity: 0;
    -webkit-animation: notyf-fadeinup 0.3s forwards;
    animation: notyf-fadeinup 0.3s forwards;
    -webkit-animation-delay: 0.25s;
    animation-delay: 0.25s;
    line-height: 1.5em;
  }
  @media only screen and (max-width: 480px) {
    .notyf {
      padding: 0;
    }
    .notyf__ripple {
      height: 600px;
      width: 600px;
      -webkit-animation-duration: 0.5s;
      animation-duration: 0.5s;
    }
    .notyf__toast {
      max-width: none;
      border-radius: 0;
      box-shadow: 0 -2px 7px 0 rgba(0, 0, 0, 0.13);
      width: 100%;
    }
    .notyf__dismiss {
      width: 56px;
    }
  }
  .btn.is-loading {
    color: rgba(0,0,0,0) !important;
    pointer-events: none;
    opacity: .4;
    cursor: default !important;
}

.btn.is-loading::after {
    position: absolute;
    left: calc(50% - (1em * 0.5));
    top: calc(50% - (1em * 0.5));
    position: absolute !important
}

.has-loader .h-loader-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    width: 100%;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    z-index: 5
}

.has-loader .h-loader-wrapper .loader {
    height: 3rem;
    width: 3rem
}

.has-loader .h-loader-wrapper .loader.is-small {
    height: 2rem;
    width: 2rem
}

.has-loader .h-loader-wrapper .loader.is-large {
    height: 5rem;
    width: 5rem
}

.has-loader .h-loader-wrapper .loader.is-xl {
    height: 7rem;
    width: 7rem
}

body.is-dark .has-loader .h-loader-wrapper {
    background: #323236
}

@-webkit-keyframes spinAroundLoader {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes spinAroundLoader {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.huro-demo-wrapper:after,.btn.is-loading::after,.loader,.select.is-loading::after,.control.is-loading::after {
    -webkit-animation: spinAroundLoader 500ms infinite linear;
    animation: spinAroundLoader 500ms infinite linear;
    border: 2px solid #dbdbdb;
    border-radius: 9999px;
    border-right-color: rgba(0,0,0,0);
    border-top-color: rgba(0,0,0,0);
    content: "";
    display: block;
    height: 1em;
    position: relative;
    width: 1em
}


 .cards-carousel {
    max-width: 520px
}

 .cards-carousel .slick-dots {
    text-align: right;
    position: absolute;
    top: -45px;
    right: 0;
    height: auto;
    max-height: 30px;
    width: auto
}

 .cards-carousel .slick-dots li {
    margin: 0
}

 .cards-carousel .cards-carousel-inner {
    margin-bottom: 0
}

 .cards-carousel .cards-carousel-inner .cards-carousel-item {
    margin: 0 1.5rem 1.5rem 0;
    outline: none !important
}

 .cards-carousel .cards-carousel-inner .cards-carousel-item.slick-current .ccard {
    background-image: linear-gradient(-225deg, var(--bt) 0%, var(--dark-bt) 48%, var(--bt) 100%);
    -webkit-box-shadow: 0 14px 26px -12px rgba(103,28,201,.42),0 4px 23px 0px rgba(0,0,0,.12),0 8px 10px -5px rgba(103,28,201,.2);
    box-shadow: 0 14px 26px -12px rgba(103,28,201,.42),0 4px 23px 0px rgba(0,0,0,.12),0 8px 10px -5px rgba(103,28,201,.2)
}

 .cards-carousel .cards-carousel-inner .cards-carousel-item.slick-current .ccard .shape {
    opacity: .15
}

 .cards-carousel .cards-carousel-inner .cards-carousel-item.slick-current .ccard .top img.active {
    display: block
}

 .cards-carousel .cards-carousel-inner .cards-carousel-item.slick-current .ccard .top img.inactive, .cards-carousel .cards-carousel-inner .cards-carousel-item.slick-current .ccard .top img.inactive.light-image {
    display: none !important
}

 .cards-carousel .cards-carousel-inner .cards-carousel-item.slick-current .ccard .bottom span {
    color: #fcfcfc
}

 .cards-carousel .cards-carousel-inner .cards-carousel-item .ccard {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-family: "Roboto",sans-serif;
    width: 240px;
    height: 144px;
    border-radius: 14px;
    background: #ededed;
    padding: 18px;
    margin: 0 auto;
    overflow: hidden;
    -webkit-transition: all .3s;
    transition: all .3s
}

 .cards-carousel .cards-carousel-inner .cards-carousel-item .ccard .shape {
    position: absolute;
    bottom: -10px;
    right: -10px;
    height: 70px;
    width: 70px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    -webkit-transition: opacity .3s;
    transition: opacity .3s
}

 .cards-carousel .cards-carousel-inner .cards-carousel-item .ccard .top img {
    display: block;
    max-width: 35px
}

 .cards-carousel .cards-carousel-inner .cards-carousel-item .ccard .top img.active {
    display: none
}

 .cards-carousel .cards-carousel-inner .cards-carousel-item .ccard .top img.inactive {
    display: block
}

 .cards-carousel .cards-carousel-inner .cards-carousel-item .ccard .bottom {
    margin-top: auto
}

 .cards-carousel .cards-carousel-inner .cards-carousel-item .ccard .bottom span {
    display: block;
    color: #283252
}

 .cards-carousel .cards-carousel-inner .cards-carousel-item .ccard .bottom span:first-child {
    font-weight: 600;
    font-size: 1.3rem
}

 .cards-carousel .cards-carousel-inner .cards-carousel-item .ccard .bottom span:nth-child(2) {
    font-size: .9rem
}
.carousel-container {
    width: 400px;
    overflow: hidden;
    position: relative;
    margin: 50px auto;
  }



.tranx-list { font-size: 0.8125rem; }

.tranx-item { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem; }

.tranx-item:not(:last-child) { border-bottom: 1px solid #dbdfea; }

.tranx-col { display: inline-flex; flex-direction: column; }

.tranx-info { display: inline-flex; align-items: center; }

.tranx-badge { flex-shrink: 0; }

.tranx-badge + .tranx-data { margin-left: 10px; }

.tranx-icon { display: flex; justify-content: center; align-items: center; height: 36px; width: 36px; font-size: 20px; border-radius: 50%; }

.tranx-icon.sm { height: 20px; width: 20px; font-size: 14px; }

.tranx-icon[class*="btc"] { color: #f9841e; background: rgba(249, 132, 30, 0.2); }

.tranx-icon[class*="eth"] { color: #6174b9; background: rgba(97, 116, 185, 0.2); }

.status-success .tranx-icon { color: #1ee0ac; background-color: rgba(30, 224, 172, 0.15); }

.tranx-data { flex-grow: 1; }

.tranx-label { font-size: 0.9375em; font-weight: 500; color: #364a63; margin-bottom: 0.25rem; display: inline-flex; align-items: center; }

.tranx-label .tranx-icon { margin-left: 0.5rem; }

.tranx-date { font-size: 11px; color: #8094ae; }

.tranx-amount { text-align: right; }

.tranx-amount .number { font-size: 1.125em; color: #364a63; font-weight: 500; }

.tranx-amount .number span { color: #526484; font-weight: 400; }

.tranx-amount .number-sm { font-size: 11px; color: #526484; }

.tranx-amount .number-sm span { color: #8094ae; }

@media (max-width: 575.98px) { .tranx-list.is-stretch { margin-left: -18px; margin-right: -18px; border-left: 0; border-right: 0; border-radius: 0; } }

@media (min-width: 576px) { .tranx-item { padding: 1.25rem 1.5rem; }
  .tranx-list { font-size: 1rem; }
  .tranx-badge + .tranx-data { margin-left: 16px; }
  .tranx-icon { height: 44px; width: 44px; font-size: 24px; }
  .tranx-icon.sm { height: 24px; width: 24px; font-size: 16px; }
  .tranx-date { font-size: 12px; }
  .tranx-amount .number-sm { font-size: 12px; } }

.is-compact .tranx-item { padding-top: .75rem; padding-bottom: .75rem; }

.is-compact .tranx-label { margin-bottom: 0; }

.is-compact .tranx-badge + .tranx-data { margin-left: 16px; }

.is-compact .tranx-icon { height: 36px; width: 36px; font-size: 20px; }

.is-compact .tranx-amount .number { font-size: 1rem; }

.nk-wg1-item { min-width: 300px; max-width: 100%; }

.nk-wg1-title { font-size: 1.125rem; color: #526484; margin-bottom: 0.25rem; }

.nk-wg1-title .dropdown > a { font-size: 78%; color: #8094ae; }

.nk-wg1-amount .amount { font-size: 1.75rem; line-height: 1.4; color: var(--body-bg); font-weight: 700; letter-spacing: -0.025em; }

.nk-wg1-amount .amount small { font-size: 66.66%; font-weight: 400; }

.nk-wg1-amount .amount-sm { font-size: 12px; color: #8094ae; }

.nk-wg1-amount .amount-sm span { color: #364a63; font-weight: 700; }

.nk-wg1-sub { min-width: 140px; }

.nk-wg1-group { display: flex; flex-wrap: wrap; }

@media (min-width: 420px) { .nk-wg1-amount .amount { font-size: 2.25rem; } }

@media (max-width: 419px) { .nk-wg1 { overflow: hidden; } }

.nk-wg4:not(:first-child) { margin-top: 1.75rem; }

.nk-wg4:not(:last-child) { margin-bottom: 1.75rem; }

.nk-wg4-sub { width: 185px; }

.nk-wg4-group { display: flex; flex-wrap: wrap; }

.nk-wg4-switcher { display: flex; margin: 0 -0.25rem .5rem; }

.nk-wg4-switcher > li { padding: 0 .25rem; }

.nk-wg4-switcher > li > .dropdown > a { font-size: 0.875rem; border: 1px solid #dbdfea; padding: .25rem .75rem; border-radius: 3px; }

.nk-wg4-note { font-size: 11px; font-style: italic; font-weight: 400; color: #8094ae; }

.nk-wg4-note span { color: var(--body-bg); font-weight: 700; }

@media (max-width: 575.98px) { .card-head.ui-v2 + .nk-wg4:not(:first-child) { margin-top: 0.75rem; } }

.nk-wg5-title { margin-bottom: 0.5rem; }

.nk-wg5-text:not(:last-child) { padding-bottom: 1.75rem; }

.nk-wg5-amount { line-height: 1.3; }

.nk-wg5-amount .amount { font-size: 1.5rem; font-weight: 500; color: #364a63; margin-bottom: 0.25rem; }

.nk-wg5-amount .amount-sm { font-size: 13px; font-weight: 700; color: #526484; }

.nk-wg5-amount .currency { font-weight: 400; }

.nk-wg5-foot { font-size: 12px; }

.nk-wg7 { display: flex; flex-wrap: wrap; }

.nk-wg7 > * { flex-grow: 1; width: 100%; }

.nk-wg7-stats { line-height: 1.3; }

.nk-wg7-stats-group { display: flex; align-items: flex-start; margin-top: 1.5rem; }

.nk-wg7-stats .number { font-size: 1rem; font-weight: 700; }

.nk-wg7-stats .number-lg { font-size: 2.25rem; letter-spacing: -0.03em; font-weight: 400; }

.nk-wg7-stats .number-lg:first-child { margin-top: -.125rem; }

.nk-wg7-title, .nk-wg7-note { font-size: 13px; font-weight: 500; color: #526484; }

.is-dark .nk-wg7-title, .is-dark .nk-wg7-note { color: #6baafe; }

.number + .nk-wg7-title, .number + .nk-wg7-note { margin-top: 0.625rem; }

.nk-wg7-title + .number, .nk-wg7-note + .number { margin-top: 0.4375rem; }

.number-lg + .nk-wg7-title, .number-lg + .nk-wg7-note { margin-top: 0.25rem; }

.nk-wg7-title + .number-lg, .nk-wg7-note + .number-lg { margin-top: 0.25rem; }

.nk-wg7-foot { width: 100%; margin-top: 0.75rem; }

.nk-wg7-note { font-weight: 400; font-style: italic; }

@media (min-width: 992px) { .nk-wg7 > * { width: 100%; }
  .nk-wg7-foot { margin-top: .75rem; } }

.nk-wgw { position: relative; }

.nk-wgw-inner { padding: 1.25rem; display: block; }

.sm.nk-wgw .nk-wgw-inner { padding: 1.25rem; }

.nk-wgw-name { display: flex; align-items: center; }

.nk-wgw-icon { position: relative; height: 32px; width: 32px; font-size: 20px; border-radius: 50%; background: #8094ae; color: #fff; margin-right: 0.0rem; display: inline-flex; align-items: center; justify-content: center; }

.is-dark .nk-wgw-icon { background: #6baafe; }

.nk-wgw-icon.is-default:after { position: absolute; bottom: -8px; right: -8px; font-family: "Nioicon"; content: ""; height: 20px; width: 20px; font-size: 13px; border-radius: 50%; background: #fff; color: #ffa353; display: inline-flex; align-items: center; justify-content: center; }

.is-dark .nk-wgw-icon.is-default:after { background: #0b3175; }

.nk-wgw-title { font-family: Roboto, sans-serif; font-weight: 500; font-size: 1rem; margin-bottom: 0; color: #526484; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.is-dark .nk-wgw-title { color: #fff; }

.nk-wgw-more { position: absolute; top: 1.25rem; right: 1.25rem; }

.is-dark .nk-wgw-more .btn-trigger { color: #a9cdff; }

.is-dark .nk-wgw-more .btn-trigger:before { background-color: #071d46; }

.nk-wgw-balance { line-height: 1.3; padding-top: 1.25rem; }

.nk-wgw-balance .amount { font-size: 1.5rem; font-weight: 500; color: #364a63; }

.is-dark .nk-wgw-balance .amount { color: #fff; }

.nk-wgw-balance .amount span { font-weight: 400; opacity: 0.6; }

.nk-wgw-balance .amount-sm { font-size: 13px; color: #526484; font-weight: 700; padding-top: .125rem; }

.is-dark .nk-wgw-balance .amount-sm { color: #6baafe; }

.nk-wgw-balance .amount-sm span { font-weight: 400; }

.nk-wgw-balance .currency { padding-left: 0.25rem; }

.nk-wgw-actions { padding: .75rem 1.25rem; border-top: 1px solid #e5e9f2; }

.is-dark .nk-wgw-actions { border-color: rgba(9, 113, 254, 0.4); }

.nk-wgw-actions ul { display: flex; align-items: center; flex-wrap: wrap; }

.nk-wgw-actions ul li:not(:last-child) { padding-right: 1.5rem; }

.nk-wgw-actions a { display: inline-flex; align-items: center; font-size: 12px; padding: .5rem 0; color: #526484; }

.nk-wgw-actions a .icon { font-size: 1.25em; margin-right: 0.5rem; color: #8094ae; margin-top: -1px; }

.nk-wgw-actions a .icon, .nk-wgw-actions a span { transition: color .3s; }

.is-dark .nk-wgw-actions a { color: #a9cdff; }

.is-dark .nk-wgw-actions a .icon { color: #6baafe; }

.is-dark .nk-wgw-actions a:hover span, .is-dark .nk-wgw-actions a:hover .icon { color: #fff; }

.nk-wgw-actions a:hover span, .nk-wgw-actions a:hover .icon { color: var(--body-bg); }

.nk-wgw-add { display: flex; flex-direction: column; justify-content: center; height: 100%; text-align: center; }

.nk-wgw-add a { display: block; }

.nk-wgw-add a .add-icon { display: inline-flex; position: relative; z-index: 1; font-size: 24px; height: 36px; width: 36px; align-items: center; justify-content: center; }

.nk-wgw-add a .add-icon:before { position: absolute; z-index: -1; height: 20px; width: 20px; top: 50%; left: 50%; transform: translate(-50%, -50%); transform-origin: 50% 50%; content: ''; background-color: #ebeef2; border-radius: 50%; opacity: 0; transition: all .3s; }

.is-dark .nk-wgw-add a .add-icon:before { background-color: #071d46; }

.is-dark .nk-wgw-add a .add-icon .icon { color: #fff; }

.nk-wgw-add a:hover .add-icon:before { opacity: 1; height: 120%; width: 120%; }

.nk-wgw-add a .title { color: var(--body-bg); font-size: 1rem; margin-top: 1.25rem; margin-bottom: 0.75rem; }

.is-dark .nk-wgw-add a .title { color: #fff; }

.nk-wgw-add .sub-text { padding: 0 1.5rem; }

@media (min-width: 576px) { .nk-wgw { position: relative; }
  .nk-wgw-inner { padding: 1.5rem; }
  .sm.nk-wgw .nk-wgw-inner { padding: 1rem 1.25rem; }
  .nk-wgw-actions { padding-left: 1.5em; padding-right: 1.5rem; }
  .nk-wgw-actions a { font-size: 13px; } }

.nk-wgw.sm .nk-wgw-icon { height: 24px; width: 24px; font-size: 14px; margin-right: 0.5rem; }

.nk-wgw.sm .nk-wgw-icon.is-default:after { bottom: -8px; right: -8px; height: 20px; width: 20px; font-size: 13px; }

.nk-wgw.sm .nk-wgw-title { font-weight: 700; font-size: 13px; }

.nk-wgw.sm .nk-wgw-balance { padding-top: 0.75rem; }

.nk-wgw.sm .nk-wgw-balance .amount { font-size: 1rem; }

.nk-wgwh { display: flex; align-items: center; }

.nk-block-head-sub + .nk-wgwh { padding-top: .5rem; }

.nk-wgwh > .icon { margin-right: 1rem; }

.nk-wgwh-title { font-size: 1.5rem; color: #364a63; font-weight: 700; }

.nk-wgwh-title .title { margin-bottom: 0; font-size: inherit; }

.nk-wgwh-title small { font-size: 70%; color: #8094ae; }

.nk-wgwh-title small a { color: inherit; }

.asterisk a { position: relative; color: #8094ae; display: inline-flex; }

.asterisk a:hover, .asterisk a.active { color: #ffa353; }

.asterisk a:hover .asterisk-on, .asterisk a.active .asterisk-on { opacity: 1; }

.asterisk a.active:hover .asterisk-on { opacity: 0; }

.asterisk-on { opacity: 0; position: absolute; left: 0; color: #ffa353; z-index: 1; transition: opacity .2s; }

.nk-reply { height: 100%; max-height: 100%; overflow: auto; }

.nk-reply-item { padding: 2rem 1.25rem; }

.nk-reply-item + .nk-reply-item { padding-top: 0; }

.nk-reply-item > div:not(.nk-reply-header) { margin-left: 48px; }

.nk-reply-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; }

.nk-reply-header .user-name { margin-left: 1rem; font-size: .875rem; }

.nk-reply-header .user-name span { color: #8094ae; font-weight: 400; }

.nk-reply-header .date-time { color: #8094ae; font-size: 12px; }

.nk-reply-entry.note { background: #f5f6fa; padding: 1.25rem; border-radius: 4px; }

.nk-reply-from { margin-top: 1.25rem; padding: .375rem .75rem; background: #f5f6fa; border-radius: 4px; display: inline-block; font-size: 13px; }

.nk-reply-meta { overflow: hidden; text-align: center; margin: 0 1.25rem; padding: 0 2rem; }

.nk-reply-meta-info { position: relative; display: inline-block; padding: 0 .75rem; color: #8094ae; font-size: 13px; line-height: 1.4; }

.nk-reply-meta-info span, .nk-reply-meta-info strong, .nk-reply-meta-info .who { color: #526484; }

.nk-reply-meta-info .whom { color: var(--body-bg); }

.nk-reply-meta-info:before, .nk-reply-meta-info:after { position: absolute; height: 1px; background: #e5e9f2; content: ''; width: 100vw; top: 50%; }

.nk-reply-meta-info:before { right: 100%; }

.nk-reply-meta-info:after { left: 100%; }

.nk-reply-form { border-top: 1px solid #e5e9f2; }

.nk-reply-form-dropdown { margin-left: -0.5rem; margin-right: 0.75rem; }

.nk-reply-form-header { display: flex; align-items: center; justify-content: space-between; padding: 0 1.25rem; border-bottom: 1px solid #e5e9f2; }

.nk-reply-form-title { display: flex; align-items: center; }

.nk-reply-form-title .title { color: #8094ae; margin-right: .75rem; }

.nk-reply-form-field { padding: .5rem 1.25rem; }

.nk-reply-form-field:not(:last-child) { border-bottom: 1px solid #e5e9f2; }

.nk-reply-form-field .form-control, .nk-reply-form-field div.dataTables_wrapper div.dataTables_filter input, div.dataTables_wrapper div.dataTables_filter .nk-reply-form-field input, .nk-reply-form-field .dual-listbox .dual-listbox__search, .dual-listbox .nk-reply-form-field .dual-listbox__search { font-size: 0.875rem; }

.nk-reply-form-field textarea.form-control, .nk-reply-form-field .dual-listbox textarea.dual-listbox__search, .dual-listbox .nk-reply-form-field textarea.dual-listbox__search { min-height: 78px; }

.nk-reply-form-field textarea.form-control.ex-large, .nk-reply-form-field .dual-listbox textarea.ex-large.dual-listbox__search, .dual-listbox .nk-reply-form-field textarea.ex-large.dual-listbox__search { min-height: 160px; }

.nk-reply-form-field + .nk-reply-form-tools { border-top: 0; }

.nk-reply-form-tools { padding: 1.25rem; border-top: 1px solid #e5e9f2; display: flex; justify-content: space-between; }

.nk-reply-form-actions { display: inline-flex; align-items: center; }

.nk-reply-form-options { display: inline-flex; }

.nk-reply-form-input { display: flex; }

.nk-reply-form-input .label { margin: .3rem .5rem .3rem 0; width: 1.25rem; color: #8094ae; }

.nk-reply-form-input-group { width: 100%; }

.nk-reply-form-input-cc, .nk-reply-form-input-bcc { display: none; }

.nk-reply-form-input-cc.expanded, .nk-reply-form-input-bcc.expanded { display: flex; }

.nk-reply-form-input .toggle-opt { display: inline-flex; align-items: center; color: #364a63; }

.nk-reply-form-input .toggle-opt:hover { color: var(--body-bg); }

.nk-reply-form-group { position: relative; padding: 1rem 0; flex-grow: 1; display: flex; align-items: flex-start; }

.nk-reply-form-nav { position: absolute; display: flex; align-items: center; align-self: flex-start; padding: 1.0625rem 0 0; right: 0; top: 0; margin: 0 -.375rem; }

.nk-reply-form-nav li a { font-size: 12px; color: #8094ae; display: block; line-height: 1.5rem; padding: .25rem .375rem; }

.nk-reply-form-nav li a:hover { color: var(--body-bg); }

.is-collapsed .nk-reply-msg-info { display: none; }

.nk-reply-msg-excerpt { color: #526484; display: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.is-collapsed .nk-reply-msg-excerpt { display: block; }

.nk-reply-msg-meta { padding: .75rem; }

.nk-reply-msg-meta li { display: flex; line-height: 1.125rem; padding: .1875rem 0; }

.coin-item { display: flex; align-items: center; padding: 16px 20px; }

.coin-icon { display: inline-flex; flex-shrink: 0; }

.coin-icon .icon { font-size: 31px; height: 32px; width: 32px; color: #8094ae; }

.coin-btc .coin-icon .icon { color: #f9841e; }

.coin-icon + .coin-info { margin-left: 12px; }

.coin-name { font-size: 14px; color: #364a63; display: block; }

.coin-text { font-size: 12px; color: #8094ae; display: block; }

.invoice { position: relative; }

.buysell-title { margin-bottom: 1.5rem; }

.buysell-title .title { font-weight: 400; }

.buysell-nav { margin-bottom: 2rem; }

.buysell-cc-dropdown { width: 100%; }

.buysell-cc-dropdown .dropdown-indicator:after { position: absolute; top: 0; right: 0; bottom: 0; width: 56px; font-size: 24px; display: inline-flex; align-items: center; justify-content: center; color: #8094ae; opacity: 0.5; }

.buysell-cc-dropdown .dropdown-menu { top: -78px !important; }

.buysell-cc-item:not(:last-child) { border-bottom: 1px solid #e5e9f2; }

.buysell-cc-choosen, .buysell-cc-chosen { display: block; width: 100%; border: 1px solid #dbdfea; border-radius: 4px; background: #fff; }

.buysell-cc-opt { display: block; }

.buysell-pm-list { border: 1px solid #dbdfea; background: #fff; border-radius: 4px; }

.buysell-pm-item { position: relative; }

.buysell-pm-item:not(:last-child) { border-bottom: 1px solid #e5e9f2; }

.buysell-pm-label { position: relative; display: flex; align-items: center; justify-content: space-between; margin-bottom: 0; padding: 16px 20px 16px 60px; cursor: pointer; }

.buysell-pm-label:before, .buysell-pm-label:after { position: absolute; top: 50%; left: 20px; transform: translateY(-50%); height: 24px; width: 24px; border-radius: 50%; }

.buysell-pm-label:before { content: ''; border: 2px solid #dbdfea; }

.buysell-pm-label:after { font-family: "Nioicon"; content: ""; display: inline-flex; align-items: center; justify-content: center; color: #fff; background: var(--body-bg); transition: opacity .3s; opacity: 0; }

.buysell-pm-label .pm-name { font-size: 14px; color: #364a63; }

.buysell-pm-label .pm-icon { display: inline-flex; font-size: 24px; color: #8094ae; }

.buysell-pm-control { position: absolute; top: 0; height: 1px; width: 1px; opacity: 0; }

.buysell-pm-control:checked ~ .buysell-pm-label { cursor: default; }

.buysell-pm-control:checked ~ .buysell-pm-label:after { opacity: 1; }

.buysell-overview { padding: 1rem 0 1.5rem; }

.buysell-overview-list { border: 1px solid #dbdfea; border-radius: 4px; }

.buysell-overview-list + .sub-text-sm { margin-top: 0.5rem; }

.buysell-overview-item { position: relative; display: flex; align-items: center; justify-content: space-between; padding: 16px; }

.buysell-overview-item:not(:last-of-type) { border-bottom: 1px solid #e5e9f2; }

.buysell-overview-item .pm-currency { align-items: center; display: flex; }

.buysell-overview-item .pm-currency .icon { font-size: 24px; margin-right: 0.5rem; color: #8094ae; }

.buysell-field:not(:last-child) { margin-bottom: 1.75rem; }

.buysell-field.form-action { padding-top: .5rem; }

.wallet-item a { position: relative; display: flex; align-items: center; padding: 0.75rem 0; z-index: 1; }

.wallet-item a:before, .wallet-item a:after { position: absolute; opacity: 0; transition: opacity .3s; }

.wallet-item a:after { font-family: "Nioicon"; transform: translateY(-50%); content: ""; right: -0.25rem; top: 50%; color: #dbdfea; font-size: 1.25rem; }

.wallet-item a:before { content: ''; top: 0; bottom: 0; left: -24px; right: -24px; background-color: #fff; border-radius: 100px; z-index: -1; }

.is-dark .wallet-item a:before { background-color: #0b1219; }

.is-theme .wallet-item a:before { background-color: #071d46; }

.wallet-item a:hover:before, .wallet-item a:hover:after { opacity: 1; }

.wallet-item-add a:after { display: none; }

.wallet-item-add a:hover .wallet-icon, .wallet-item-add a:hover .wallet-name { color: var(--body-bg); }

.is-dark .wallet-item-add a:hover .wallet-icon, .is-theme .wallet-item-add a:hover .wallet-icon, .is-dark .wallet-item-add a:hover .wallet-name, .is-theme .wallet-item-add a:hover .wallet-name { color: #fff; }

.wallet-icon { width: 40px; color: #8094ae; flex-shrink: 0; display: inline-flex; }

.wallet-icon .icon { font-size: 24px; }

.wallet-icon img { width: 24px; }

.is-theme .wallet-icon { color: #a9cdff; }

.wallet-text { display: inline-flex; flex-direction: column; }

.wallet-name { font-size: 14px; font-weight: 700; color: #526484; margin-bottom: .25rem; }

.is-dark .wallet-name { color: #8094ae; }

.is-theme .wallet-name { color: #a9cdff; }

.wallet-balance { font-size: 13px; color: #364a63; line-height: 1; margin-top: 0.25rem; }

.wallet-balance span { color: #8094ae; }

.is-dark .wallet-balance { color: #fff; }

.is-dark .wallet-balance span { color: #8094ae; }

.is-theme .wallet-balance { color: #fff; }

.is-theme .wallet-balance span { color: #a9cdff; }

@media (max-width: 1199.98px) { .nk-sidebar .wallet-item a:before { display: none; } }

.tranx-list { font-size: 0.8125rem; }

.tranx-item { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem; }

.tranx-item:not(:last-child) { border-bottom: 1px solid #dbdfea; }

.tranx-col { display: inline-flex; flex-direction: column; }

.tranx-info { display: inline-flex; align-items: center; }

.tranx-badge { flex-shrink: 0; }

.tranx-badge + .tranx-data { margin-left: 10px; }

.tranx-icon { display: flex; justify-content: center; align-items: center; height: 36px; width: 36px; font-size: 20px; border-radius: 50%; }

.tranx-icon.sm { height: 20px; width: 20px; font-size: 14px; }

.tranx-icon[class*="btc"] { color: #f9841e; background: rgba(249, 132, 30, 0.2); }

.tranx-icon[class*="eth"] { color: #6174b9; background: rgba(97, 116, 185, 0.2); }

.status-success .tranx-icon { color: #1ee0ac; background-color: rgba(30, 224, 172, 0.15); }

.tranx-data { flex-grow: 1; }

.tranx-label { font-size: 0.9375em; font-weight: 500; color: #364a63; margin-bottom: 0.25rem; display: inline-flex; align-items: center; }

.tranx-label .tranx-icon { margin-left: 0.5rem; }

.tranx-date { font-size: 11px; color: #8094ae; }

.tranx-amount { text-align: right; }

.tranx-amount .number { font-size: 1.125em; color: #364a63; font-weight: 500; }

.tranx-amount .number span { color: #526484; font-weight: 400; }

.tranx-amount .number-sm { font-size: 11px; color: #526484; }

.tranx-amount .number-sm span { color: #8094ae; }


.form-icon { position: absolute; display: inline-flex; justify-content: center; align-items: center; top: 0; width: calc(1rem + 24px); height: calc(2.125rem + 2px); }

.form-icon.sm { height: calc(1.75rem + 2px); }

.form-icon.lg { height: calc(2.625rem + 2px); }

.form-icon.xl { height: calc(3.25rem + 2px); }

.form-icon .icon { font-size: 16px; color: #8094ae; }

.form-icon + .form-control, div.dataTables_wrapper div.dataTables_filter .form-icon + input, .dual-listbox .form-icon + .dual-listbox__search { padding-left: calc(1rem + 24px); }

.form-icon-right { left: auto; right: -1px; }

.form-icon-right + .form-control, div.dataTables_wrapper div.dataTables_filter .form-icon-right + input, .dual-listbox .form-icon-right + .dual-listbox__search { padding-left: 1rem; padding-right: calc(1rem + 24px); }

.form-info { position: absolute; display: inline-flex; justify-content: center; align-items: center; border-left: 1px solid #dbdfea; right: 0; top: 50%; padding: .125rem 1.25rem; transform: translateY(-50%); color: #8094ae; }

.form-info + .form-control, div.dataTables_wrapper div.dataTables_filter .form-info + input, .dual-listbox .form-info + .dual-listbox__search { padding-right: calc(1rem + 24px); }

.form-label { font-size: 0.875rem; font-weight: 500; color: #344357; margin-bottom: .5rem; }

.form-label-group { display: flex; align-items: center; justify-content: space-between; margin-bottom: .5rem; }

.form-label-group .form-label { margin-bottom: 0; }

.form-label + .form-note { margin-top: -0.35rem; }

.form-label-outlined { position: absolute; top: 0.4375rem; left: 0.66667rem; transform-origin: left; padding: 0 0.4rem; font-weight: 400; line-height: 1.25rem; color: #3c4d62; background-color: #fff; z-index: 1; transition: all .3s ease; margin-bottom: 0; font-size: 0.8125rem; }

.form-control-lg ~ .form-label-outlined { top: 0.6875rem; padding: 0 0.37736rem; font-size: 0.9375rem; }

.form-control-sm ~ .form-label-outlined { font-size: 0.75rem; top: 0.25rem; left: 0.4rem; }

.focused .form-control-sm ~ .form-label-outlined, .form-select.form-control-sm ~ .form-label-outlined { font-size: 11px; }

.focused .form-label-outlined, .form-select ~ .form-label-outlined { top: calc(-0.4375rem + -2px); font-size: 11px; }

.form-control-xl ~ .form-label-outlined { font-size: 0.9375rem; line-height: 2rem; top: 0.625rem; padding: 0 0.5rem; left: 0.83333rem; }

.focused .form-control-xl ~ .form-label-outlined, .form-select.form-control-xl ~ .form-label-outlined { top: calc(-0.625rem + -5px); }

.focused .form-control-lg ~ .form-label-outlined, .focused .form-control-xl ~ .form-label-outlined, .form-select.form-control-lg ~ .form-label-outlined, .form-select.form-control-xl ~ .form-label-outlined { font-size: 12px; }

.form-note { font-size: 12px; color: #8094ae; font-style: italic; display: block; }

.form-note-alt { font-size: 12px; color: #8094ae; }

.form-note-group { display: flex; justify-content: space-between; margin-top: 0.5rem; margin-bottom: -0.25rem; }

.form-control-xl { height: calc(3.25rem + 2px); padding: 0.625rem 1.25rem; font-size: 0.9375rem; line-height: 2rem; border-radius: 5px; }

.form-control-outlined { cursor: pointer; }

.focused .form-control-outlined { cursor: auto; }

.form-control-wrap, .form-control-group { position: relative; }

.form-control-wrap + .form-note, .form-control-group + .form-note { margin-top: 0.5rem; }

.form-control-noborder { border-color: transparent; }

.form-control-noborder:focus { border-color: #dbdfea; box-shadow: none; }

.form-control-solid { border-color: #fff; }

.form-control-solid:focus { box-shadow: none; border-color: #dbdfea; }

.form-control-number { font-size: 20px; padding: 20px; height: 74px; }

.form-control-password-big { font-size: 44px; height: calc(1rem*2 + 1.25rem + 1px); padding: 1rem 1rem; }

.form-control.error, div.dataTables_wrapper div.dataTables_filter input.error, .dual-listbox .error.dual-listbox__search { border-color: #e85347; }

.form-control.error:focus, div.dataTables_wrapper div.dataTables_filter input.error:focus, .dual-listbox .error.dual-listbox__search:focus { box-shadow: 0 0 0 3px rgba(232, 83, 71, 0.1); }

.form-control.focus, div.dataTables_wrapper div.dataTables_filter input.focus, .dual-listbox .focus.dual-listbox__search { border-color: var(--body-bg); box-shadow: 0 0 0 3px rgba(9, 113, 254, 0.1); }

.form-control-simple { border: none; padding: 0; }

.form-control-simple:focus { box-shadow: none; }

.form-group { position: relative; margin-bottom: 1.25rem; }

.form-group:last-child { margin-bottom: 0; }

.form-select { height: calc(2.125rem + 2px); }

.form-select:not(.form-control) { opacity: 0; }

.form-select-sm, .form-select[data-ui*="sm"] { height: calc(1.75rem + 2px); }

.form-select-lg, .form-select[data-ui*="lg"] { height: calc(2.625rem + 2px); }

.form-select-xl, .form-select[data-ui*="xl"] { height: calc(3.25rem + 2px); }

.form-focus-none:focus { border-color: transparent; box-shadow: none; }

.form-action .btn + .btn, .form-action .dual-listbox .dual-listbox__button + .btn, .dual-listbox .form-action .dual-listbox__button + .btn, .form-action .dual-listbox .btn + .dual-listbox__button, .dual-listbox .form-action .btn + .dual-listbox__button, .form-action .dual-listbox .dual-listbox__button + .dual-listbox__button, .dual-listbox .form-action .dual-listbox__button + .dual-listbox__button { margin-left: 1.25rem; }

.form-round { border-radius: 100px; }

.custom-select, div.dataTables_wrapper div.dataTables_length select { appearance: none; -webkit-appearance: none; }

.custom-select option, div.dataTables_wrapper div.dataTables_length select option { border-radius: 3px; padding: 5px .5rem; margin: 2px -.5rem; cursor: pointer; color: #526484; }

.custom-select option:last-child, div.dataTables_wrapper div.dataTables_length select option:last-child { margin-bottom: -0.5rem; }

.form-control-select { position: relative; }

.form-control-select .form-control, .form-control-select div.dataTables_wrapper div.dataTables_filter input, div.dataTables_wrapper div.dataTables_filter .form-control-select input, .form-control-select .dual-listbox .dual-listbox__search, .dual-listbox .form-control-select .dual-listbox__search { appearance: none; -webkit-appearance: none; }

.form-control-select-multiple .custom-select, .form-control-select-multiple div.dataTables_wrapper div.dataTables_length select, div.dataTables_wrapper div.dataTables_length .form-control-select-multiple select { padding-top: 0.375rem; padding-bottom: 0.875rem; }

.form-control-select-multiple .custom-select option, .form-control-select-multiple div.dataTables_wrapper div.dataTables_length select option, div.dataTables_wrapper div.dataTables_length .form-control-select-multiple select option { border-radius: 3px; padding: 5px .5rem; margin: 2px -.5rem; cursor: pointer; color: #526484; }

.form-control-select-multiple .custom-select option:last-child, .form-control-select-multiple div.dataTables_wrapper div.dataTables_length select option:last-child, div.dataTables_wrapper div.dataTables_length .form-control-select-multiple select option:last-child { margin-bottom: -0.5rem; }

.form-control-select:after { font-family: "Nioicon"; content: ""; pointer-events: none; position: absolute; display: inline-flex; justify-content: center; align-items: center; right: 0; top: 50%; transform: translateY(-50%); width: calc(1rem + 12px); height: calc(1rem + 12px); }

textarea.no-resize { resize: none; }

textarea.form-control, .dual-listbox textarea.dual-listbox__search { min-height: 122px; padding-top: 0.65625rem; }

textarea.textarea-sm { min-height: 92px; }

textarea.textarea-lg { min-height: 208px; }

textarea.textarea-auto { min-height: 0; }

.custom-file-input ~ .error, .custom-file-input ~ .invalid, .form-control ~ .error, div.dataTables_wrapper div.dataTables_filter input ~ .error, .dual-listbox .dual-listbox__search ~ .error, .form-control ~ .invalid, div.dataTables_wrapper div.dataTables_filter input ~ .invalid, .dual-listbox .dual-listbox__search ~ .invalid, .input-group ~ .error, .input-group ~ .invalid { color: #e85347; font-size: 11px; font-style: italic; }

.custom-btn-check { position: relative; }

.custom-btn-check input { position: absolute; opacity: 0; height: 1px; width: 1px; }

.custom-btn-check input:checked ~ label { color: #fff; border-color: var(--body-bg); background-color: var(--body-bg); }

.custom-btn-check label { display: inline-block; border: 2px solid #ebeef2; background-color: #ebeef2; font-weight: 500; color: #526484; text-align: center; padding: 0.4375rem 1.125rem; font-size: 0.8125rem; line-height: 1.25rem; border-radius: 4px; transition: all .3s; margin-bottom: 0 !important; }

.custom-btn-sm label { padding: 0.25rem 1rem; font-size: 0.75rem; line-height: 1.25rem; }

.custom-btn-round label { border-radius: 60px; }

.custom-btn-outline label { background-color: transparent; }

.custom-control { display: inline-flex; min-height: 1.5rem; }

.custom-control.notext { margin-left: -0.75rem; }

.font-wigh {font-weight: bold;}
.font-16 {font-size: 14px;}

.font-30 {font-size: 30px;}



.h-avatar .avatar.is-more .inner span {
  line-height: 1;
  position: relative;
  left: -3px;
  display: block;
  font-size: .9rem;
  font-weight: 500;
  color: #a2a5b9
}

.h-avatar .badge {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 16px;
  width: 16px;
  border: 1px solid #fff
}

.h-avatar img {
  display: block;
  border-radius: 50%
}

.h-avatar.is-small {
  max-width: 32px;
  min-width: 32px;
  max-height: 32px
}

.h-avatar.is-small.has-dot:after {
  content: "";
  top: 0;
  right: 0;
  height: 8px;
  width: 8px;
  border-width: 1.4px
}

.h-avatar.is-small.has-dot.has-dot-squared:after {
  top: -2px;
  right: -2px
}

.h-avatar.is-small .avatar {
  width: 32px;
  min-width: 32px;
  height: 32px
}

.h-avatar.is-small .avatar.is-squared {
  border-radius: 8px !important
}

.h-avatar.is-small .avatar.is-fake,.h-avatar.is-small .avatar.is-more {
  width: 32px;
  min-width: 32px;
  height: 32px
}

.h-avatar.is-small .avatar.is-fake .inner,.h-avatar.is-small .avatar.is-more .inner {
  width: 30px;
  min-width: 30px;
  height: 30px
}

.h-avatar.is-small .avatar.is-fake span,.h-avatar.is-small .avatar.is-more span {
  font-size: .85rem
}

.h-avatar.is-small .badge {
  border-width: 1px;
  width: 12px;
  height: 12px
}

.h-avatar.is-medium {
  max-width: 50px;
  min-width: 50px
}

.h-avatar.is-medium.has-dot:after {
  content: "";
  top: 1px;
  right: 1px;
  height: 12px;
  width: 12px;
  border-width: 2px
}

.h-avatar.is-medium.has-dot.has-dot-squared:after {
  top: -3px;
  right: -3px
}

.h-avatar.is-medium .avatar {
  width: 50px;
  min-width: 50px;
  height: 50px
}

.h-avatar.is-medium .avatar.is-squared {
  border-radius: 12px !important
}

.h-avatar.is-medium .avatar.is-fake,.h-avatar.is-medium .avatar.is-more {
  width: 50px;
  min-width: 50px;
  height: 50px
}

.h-avatar.is-medium .avatar.is-fake .inner,.h-avatar.is-medium .avatar.is-more .inner {
  width: 50px;
  min-width: 50px;
  height: 50px
}

.h-avatar.is-medium .avatar.is-fake span,.h-avatar.is-medium .avatar.is-more span {
  font-size: 1.2rem
}

.h-avatar.is-medium .badge {
  border-width: 2px;
  height: 20px;
  width: 20px
}

.h-avatar.is-large {
  max-width: 68px;
  min-width: 68px
}

.h-avatar.is-large.has-dot:after {
  content: "";
  top: 4px;
  right: 4px;
  height: 14px;
  width: 14px;
  border-width: 2.6px
}

.h-avatar.is-large.has-dot.has-dot-squared:after {
  top: -4px;
  right: -1px
}

.h-avatar.is-large .avatar {
  width: 68px;
  min-width: 68px;
  height: 68px
}

.h-avatar.is-large .avatar.is-squared {
  border-radius: 16px !important
}

.h-avatar.is-large .avatar.is-fake {
  width: 68px;
  min-width: 68px;
  height: 68px
}

.h-avatar.is-large .avatar.is-fake span {
  font-size: 1.4rem
}

.h-avatar.is-large .badge {
  border-width: 2px;
  height: 24px;
  width: 24px
}

.h-avatar.is-big {
  max-width: 80px;
  min-width: 80px
}

.h-avatar.is-big.has-dot:after {
  content: "";
  top: 4px;
  right: 4px;
  height: 16px;
  width: 16px;
  border-width: 2.8px
}

.h-avatar.is-big.has-dot.has-dot-squared:after {
  top: -4px;
  right: -1px
}

.h-avatar.is-big .avatar {
  width: 80px;
  min-width: 80px;
  height: 80px
}

.h-avatar.is-big .avatar.is-squared {
  border-radius: 18px !important
}

.h-avatar.is-big .avatar.is-fake {
  width: 80px;
  min-width: 80px;
  height: 80px
}

.h-avatar.is-big .avatar.is-fake span {
  font-size: 1.4rem
}

.h-avatar.is-big .badge {
  border-width: 2.4px;
  height: 28px;
  width: 28px
}

.h-avatar.is-xl {
  max-width: 100px;
  min-width: 100px
}

.h-avatar.is-xl.has-dot:after {
  content: "";
  top: 6px;
  right: 5px;
  height: 18px;
  width: 18px;
  border-width: 2.8px
}

.h-avatar.is-xl.has-dot.has-dot-squared:after {
  top: -3px;
  right: -3px
}

.h-avatar.is-xl .avatar {
  width: 100px;
  min-width: 100px;
  height: 100px
}

.h-avatar.is-xl .avatar.is-squared {
  border-radius: 22px !important;
}

.h-avatar.is-xl .avatar.is-fake {
  width: 100px;
  min-width: 100px;
  height: 100px
}

.h-avatar.is-xl .avatar.is-fake span {
  font-size: 1.6rem
}

.h-avatar.is-xl .badge {
  border-width: 3px;
  height: 34px;
  width: 34px
}

.avatar-stack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.avatar-stack .h-avatar {
  border-radius: 50%
}

.avatar-stack .h-avatar.is-small {
  border-radius: 50%
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(1) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(2) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(3) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(4) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(5) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(6) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(7) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(8) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(9) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(10) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(11) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(12) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(13) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(14) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(15) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(16) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(17) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(18) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(19) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(20) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(21) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(22) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(23) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(24) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(25) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(26) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(27) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(28) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(29) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(30) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(31) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(32) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(33) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(34) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(35) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(36) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(37) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(38) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(39) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(40) {
  margin-left: -12px
}

.avatar-stack .h-avatar.is-small:not(:first-child):nth-child(41) {
  margin-left: -12px
}


.alertify .ajs-dialog {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: auto;
  border-radius: 8px !important
}

.ajs-dimmer {
  background-color: #232326 !important
}

.ajs-header {
  font-weight: 600 !important;
  font-family: "Montserrat",sans-serif !important;
  border-radius: 8px 8px 0 0 !important
}

.ajs-footer {
  border-radius: 0 0 6px 6px !important;
  border: none !important;
  background: transparent !important
}

.ajs-content {
  padding: 16px 0 !important;
  font-family: "Roboto",sans-serif !important
}

.ajs-content b {
  font-weight: 500 !important;
  color: var(--bt) !important
}

.ajs-buttons {
  padding: 6px 10px
}

.ajs-close {
  outline: none !important
}

.ajs-ok {
  padding: 8px 22px 8px 22px;
  font-weight: 600;
  height: 33px;
  min-width: 82px !important;
  line-height: 0;
  text-transform: capitalize !important;
  font-weight: 500 !important;
  font-size: .75rem;
  border-radius: 3px;
  background: var(--bt) !important;
  color: #fff !important;
  border: 1px solid var(--bt);
  border-radius: 6px;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
  outline: none !important
}

.ajs-ok:hover {
  -webkit-box-shadow: 0 14px 26px -12px rgba(103,28,201,.42),0 4px 23px 0px rgba(0,0,0,.12),0 8px 10px -5px rgba(103,28,201,.2);
  box-shadow: 0 14px 26px -12px rgba(103,28,201,.42),0 4px 23px 0px rgba(0,0,0,.12),0 8px 10px -5px rgba(103,28,201,.2)
}

.ajs-cancel {
  padding: 8px 22px 8px 22px;
  font-weight: 600;
  height: 33px;
  min-width: 82px !important;
  line-height: 0;
  text-transform: capitalize !important;
  font-weight: 500 !important;
  font-size: .75rem;
  border-radius: 3px;
  background: #fff !important;
  color: var(--bt) !important;
  border: 1px solid var(--bt) !important;
  border-radius: 6px;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
  outline: none !important
}


.column {
  display: block;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  padding: .75rem
}

.columns.is-mobile>.column.is-narrow {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: unset
}

.columns.is-mobile>.column.is-full {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 100%
}

.columns.is-mobile>.column.is-three-quarters {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 75%
}

.columns.is-mobile>.column.is-two-thirds {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 66.6666%
}

.columns.is-mobile>.column.is-half {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 50%
}

.columns.is-mobile>.column.is-one-third {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 33.3333%
}

.columns.is-mobile>.column.is-one-quarter {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 25%
}

.columns.is-mobile>.column.is-one-fifth {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 20%
}

.columns.is-mobile>.column.is-two-fifths {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 40%
}

.columns.is-mobile>.column.is-three-fifths {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 60%
}

.columns.is-mobile>.column.is-four-fifths {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 80%
}

.columns.is-mobile>.column.is-offset-three-quarters {
  margin-left: 75%
}

.columns.is-mobile>.column.is-offset-two-thirds {
  margin-left: 66.6666%
}

.columns.is-mobile>.column.is-offset-half {
  margin-left: 50%
}

.columns.is-mobile>.column.is-offset-one-third {
  margin-left: 33.3333%
}

.columns.is-mobile>.column.is-offset-one-quarter {
  margin-left: 25%
}

.columns.is-mobile>.column.is-offset-one-fifth {
  margin-left: 20%
}

.columns.is-mobile>.column.is-offset-two-fifths {
  margin-left: 40%
}

.columns.is-mobile>.column.is-offset-three-fifths {
  margin-left: 60%
}

.columns.is-mobile>.column.is-offset-four-fifths {
  margin-left: 80%
}

.columns.is-mobile>.column.is-0 {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 0%
}

.columns.is-mobile>.column.is-offset-0 {
  margin-left: 0%
}

.columns.is-mobile>.column.is-1 {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 8.33333337%
}

.columns.is-mobile>.column.is-offset-1 {
  margin-left: 8.33333337%
}

.columns.is-mobile>.column.is-2 {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 16.66666674%
}

.columns.is-mobile>.column.is-offset-2 {
  margin-left: 16.66666674%
}

.columns.is-mobile>.column.is-3 {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 25%
}

.columns.is-mobile>.column.is-offset-3 {
  margin-left: 25%
}

.columns.is-mobile>.column.is-4 {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 33.33333337%
}

.columns.is-mobile>.column.is-offset-4 {
  margin-left: 33.33333337%
}

.columns.is-mobile>.column.is-5 {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 41.66666674%
}

.columns.is-mobile>.column.is-offset-5 {
  margin-left: 41.66666674%
}

.columns.is-mobile>.column.is-6 {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 50%
}

.columns.is-mobile>.column.is-offset-6 {
  margin-left: 50%
}

.columns.is-mobile>.column.is-7 {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 58.33333337%
}

.columns.is-mobile>.column.is-offset-7 {
  margin-left: 58.33333337%
}

.columns.is-mobile>.column.is-8 {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 66.66666674%
}

.columns.is-mobile>.column.is-offset-8 {
  margin-left: 66.66666674%
}

.columns.is-mobile>.column.is-9 {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 75%
}

.columns.is-mobile>.column.is-offset-9 {
  margin-left: 75%
}

.columns.is-mobile>.column.is-10 {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 83.33333337%
}

.columns.is-mobile>.column.is-offset-10 {
  margin-left: 83.33333337%
}

.columns.is-mobile>.column.is-11 {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 91.66666674%
}

.columns.is-mobile>.column.is-offset-11 {
  margin-left: 91.66666674%
}

.columns.is-mobile>.column.is-12 {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 100%
}

.columns.is-mobile>.column.is-offset-12 {
  margin-left: 100%
}

@media screen and (max-width: 768px) {
  .column.is-narrow-mobile {
      -webkit-box-flex:0;
      -ms-flex: none;
      flex: none;
      width: unset
  }

  .column.is-full-mobile {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 100%
  }

  .column.is-three-quarters-mobile {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 75%
  }

  .column.is-two-thirds-mobile {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 66.6666%
  }

  .column.is-half-mobile {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 50%
  }

  .column.is-one-third-mobile {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 33.3333%
  }

  .column.is-one-quarter-mobile {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 25%
  }

  .column.is-one-fifth-mobile {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 20%
  }

  .column.is-two-fifths-mobile {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 40%
  }

  .column.is-three-fifths-mobile {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 60%
  }

  .column.is-four-fifths-mobile {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 80%
  }

  .column.is-offset-three-quarters-mobile {
      margin-left: 75%
  }

  .column.is-offset-two-thirds-mobile {
      margin-left: 66.6666%
  }

  .column.is-offset-half-mobile {
      margin-left: 50%
  }

  .column.is-offset-one-third-mobile {
      margin-left: 33.3333%
  }

  .column.is-offset-one-quarter-mobile {
      margin-left: 25%
  }

  .column.is-offset-one-fifth-mobile {
      margin-left: 20%
  }

  .column.is-offset-two-fifths-mobile {
      margin-left: 40%
  }

  .column.is-offset-three-fifths-mobile {
      margin-left: 60%
  }

  .column.is-offset-four-fifths-mobile {
      margin-left: 80%
  }

  .column.is-0-mobile {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 0%
  }

  .column.is-offset-0-mobile {
      margin-left: 0%
  }

  .column.is-1-mobile {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 8.33333337%
  }

  .column.is-offset-1-mobile {
      margin-left: 8.33333337%
  }

  .column.is-2-mobile {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 16.66666674%
  }

  .column.is-offset-2-mobile {
      margin-left: 16.66666674%
  }

  .column.is-3-mobile {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 25%
  }

  .column.is-offset-3-mobile {
      margin-left: 25%
  }

  .column.is-4-mobile {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 33.33333337%
  }

  .column.is-offset-4-mobile {
      margin-left: 33.33333337%
  }

  .column.is-5-mobile {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 41.66666674%
  }

  .column.is-offset-5-mobile {
      margin-left: 41.66666674%
  }

  .column.is-6-mobile {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 50%
  }

  .column.is-offset-6-mobile {
      margin-left: 50%
  }

  .column.is-7-mobile {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 58.33333337%
  }

  .column.is-offset-7-mobile {
      margin-left: 58.33333337%
  }

  .column.is-8-mobile {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 66.66666674%
  }

  .column.is-offset-8-mobile {
      margin-left: 66.66666674%
  }

  .column.is-9-mobile {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 75%
  }

  .column.is-offset-9-mobile {
      margin-left: 75%
  }

  .column.is-10-mobile {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 83.33333337%
  }

  .column.is-offset-10-mobile {
      margin-left: 83.33333337%
  }

  .column.is-11-mobile {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 91.66666674%
  }

  .column.is-offset-11-mobile {
      margin-left: 91.66666674%
  }

  .column.is-12-mobile {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 100%
  }

  .column.is-offset-12-mobile {
      margin-left: 100%
  }
}

@media screen and (min-width: 769px),print {
  .column.is-narrow,.column.is-narrow-tablet {
      -webkit-box-flex:0;
      -ms-flex: none;
      flex: none;
      width: unset
  }

  .column.is-full,.column.is-full-tablet {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 100%
  }

  .column.is-three-quarters,.column.is-three-quarters-tablet {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 75%
  }

  .column.is-two-thirds,.column.is-two-thirds-tablet {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 66.6666%
  }

  .column.is-half,.column.is-half-tablet {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 50%
  }

  .column.is-one-third,.column.is-one-third-tablet {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 33.3333%
  }

  .column.is-one-quarter,.column.is-one-quarter-tablet {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 25%
  }

  .column.is-one-fifth,.column.is-one-fifth-tablet {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 20%
  }

  .column.is-two-fifths,.column.is-two-fifths-tablet {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 40%
  }

  .column.is-three-fifths,.column.is-three-fifths-tablet {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 60%
  }

  .column.is-four-fifths,.column.is-four-fifths-tablet {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 80%
  }

  .column.is-offset-three-quarters,.column.is-offset-three-quarters-tablet {
      margin-left: 75%
  }

  .column.is-offset-two-thirds,.column.is-offset-two-thirds-tablet {
      margin-left: 66.6666%
  }

  .column.is-offset-half,.column.is-offset-half-tablet {
      margin-left: 50%
  }

  .column.is-offset-one-third,.column.is-offset-one-third-tablet {
      margin-left: 33.3333%
  }

  .column.is-offset-one-quarter,.column.is-offset-one-quarter-tablet {
      margin-left: 25%
  }

  .column.is-offset-one-fifth,.column.is-offset-one-fifth-tablet {
      margin-left: 20%
  }

  .column.is-offset-two-fifths,.column.is-offset-two-fifths-tablet {
      margin-left: 40%
  }

  .column.is-offset-three-fifths,.column.is-offset-three-fifths-tablet {
      margin-left: 60%
  }

  .column.is-offset-four-fifths,.column.is-offset-four-fifths-tablet {
      margin-left: 80%
  }

  .column.is-0,.column.is-0-tablet {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 0%
  }

  .column.is-offset-0,.column.is-offset-0-tablet {
      margin-left: 0%
  }

  .column.is-1,.column.is-1-tablet {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 8.33333337%
  }

  .column.is-offset-1,.column.is-offset-1-tablet {
      margin-left: 8.33333337%
  }

  .column.is-2,.column.is-2-tablet {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 16.66666674%
  }

  .column.is-offset-2,.column.is-offset-2-tablet {
      margin-left: 16.66666674%
  }

  .column.is-3,.column.is-3-tablet {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 25%
  }

  .column.is-offset-3,.column.is-offset-3-tablet {
      margin-left: 25%
  }

  .column.is-4,.column.is-4-tablet {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 33.33333337%
  }

  .column.is-offset-4,.column.is-offset-4-tablet {
      margin-left: 33.33333337%
  }

  .column.is-5,.column.is-5-tablet {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 41.66666674%
  }

  .column.is-offset-5,.column.is-offset-5-tablet {
      margin-left: 41.66666674%
  }

  .column.is-6,.column.is-6-tablet {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 50%
  }

  .column.is-offset-6,.column.is-offset-6-tablet {
      margin-left: 50%
  }

  .column.is-7,.column.is-7-tablet {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 58.33333337%
  }

  .column.is-offset-7,.column.is-offset-7-tablet {
      margin-left: 58.33333337%
  }

  .column.is-8,.column.is-8-tablet {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 66.66666674%
  }

  .column.is-offset-8,.column.is-offset-8-tablet {
      margin-left: 66.66666674%
  }

  .column.is-9,.column.is-9-tablet {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 75%
  }

  .column.is-offset-9,.column.is-offset-9-tablet {
      margin-left: 75%
  }

  .column.is-10,.column.is-10-tablet {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 83.33333337%
  }

  .column.is-offset-10,.column.is-offset-10-tablet {
      margin-left: 83.33333337%
  }

  .column.is-11,.column.is-11-tablet {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 91.66666674%
  }

  .column.is-offset-11,.column.is-offset-11-tablet {
      margin-left: 91.66666674%
  }

  .column.is-12,.column.is-12-tablet {
      /* -webkit-box-flex: 0; */
      -ms-flex: none;
      /* flex: none; */
      /* width: 100%; */
  }

  .column.is-offset-12,.column.is-offset-12-tablet {
      margin-left: 100%
  }
}

@media screen and (max-width: 1023px) {
  .column.is-narrow-touch {
      -webkit-box-flex:0;
      -ms-flex: none;
      flex: none;
      width: unset
  }

  .column.is-full-touch {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 100%
  }

  .column.is-three-quarters-touch {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 75%
  }

  .column.is-two-thirds-touch {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 66.6666%
  }

  .column.is-half-touch {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 50%
  }

  .column.is-one-third-touch {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 33.3333%
  }

  .column.is-one-quarter-touch {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 25%
  }

  .column.is-one-fifth-touch {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 20%
  }

  .column.is-two-fifths-touch {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 40%
  }

  .column.is-three-fifths-touch {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 60%
  }

  .column.is-four-fifths-touch {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 80%
  }

  .column.is-offset-three-quarters-touch {
      margin-left: 75%
  }

  .column.is-offset-two-thirds-touch {
      margin-left: 66.6666%
  }

  .column.is-offset-half-touch {
      margin-left: 50%
  }

  .column.is-offset-one-third-touch {
      margin-left: 33.3333%
  }

  .column.is-offset-one-quarter-touch {
      margin-left: 25%
  }

  .column.is-offset-one-fifth-touch {
      margin-left: 20%
  }

  .column.is-offset-two-fifths-touch {
      margin-left: 40%
  }

  .column.is-offset-three-fifths-touch {
      margin-left: 60%
  }

  .column.is-offset-four-fifths-touch {
      margin-left: 80%
  }

  .column.is-0-touch {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 0%
  }

  .column.is-offset-0-touch {
      margin-left: 0%
  }

  .column.is-1-touch {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 8.33333337%
  }

  .column.is-offset-1-touch {
      margin-left: 8.33333337%
  }

  .column.is-2-touch {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 16.66666674%
  }

  .column.is-offset-2-touch {
      margin-left: 16.66666674%
  }

  .column.is-3-touch {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 25%
  }

  .column.is-offset-3-touch {
      margin-left: 25%
  }

  .column.is-4-touch {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 33.33333337%
  }

  .column.is-offset-4-touch {
      margin-left: 33.33333337%
  }

  .column.is-5-touch {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 41.66666674%
  }

  .column.is-offset-5-touch {
      margin-left: 41.66666674%
  }

  .column.is-6-touch {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 50%
  }

  .column.is-offset-6-touch {
      margin-left: 50%
  }

  .column.is-7-touch {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 58.33333337%
  }

  .column.is-offset-7-touch {
      margin-left: 58.33333337%
  }

  .column.is-8-touch {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 66.66666674%
  }

  .column.is-offset-8-touch {
      margin-left: 66.66666674%
  }

  .column.is-9-touch {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 75%
  }

  .column.is-offset-9-touch {
      margin-left: 75%
  }

  .column.is-10-touch {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 83.33333337%
  }

  .column.is-offset-10-touch {
      margin-left: 83.33333337%
  }

  .column.is-11-touch {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 91.66666674%
  }

  .column.is-offset-11-touch {
      margin-left: 91.66666674%
  }

  .column.is-12-touch {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 100%
  }

  .column.is-offset-12-touch {
      margin-left: 100%
  }
}

@media screen and (min-width: 1024px) {
  .column.is-narrow-desktop {
      -webkit-box-flex:0;
      -ms-flex: none;
      flex: none;
      width: unset
  }

  .column.is-full-desktop {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 100%
  }

  .column.is-three-quarters-desktop {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 75%
  }

  .column.is-two-thirds-desktop {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 66.6666%
  }

  .column.is-half-desktop {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 50%
  }

  .column.is-one-third-desktop {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 33.3333%
  }

  .column.is-one-quarter-desktop {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 25%
  }

  .column.is-one-fifth-desktop {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 20%
  }

  .column.is-two-fifths-desktop {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 40%
  }

  .column.is-three-fifths-desktop {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 60%
  }

  .column.is-four-fifths-desktop {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 80%
  }

  .column.is-offset-three-quarters-desktop {
      margin-left: 75%
  }

  .column.is-offset-two-thirds-desktop {
      margin-left: 66.6666%
  }

  .column.is-offset-half-desktop {
      margin-left: 50%
  }

  .column.is-offset-one-third-desktop {
      margin-left: 33.3333%
  }

  .column.is-offset-one-quarter-desktop {
      margin-left: 25%
  }

  .column.is-offset-one-fifth-desktop {
      margin-left: 20%
  }

  .column.is-offset-two-fifths-desktop {
      margin-left: 40%
  }

  .column.is-offset-three-fifths-desktop {
      margin-left: 60%
  }

  .column.is-offset-four-fifths-desktop {
      margin-left: 80%
  }

  .column.is-0-desktop {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 0%
  }

  .column.is-offset-0-desktop {
      margin-left: 0%
  }

  .column.is-1-desktop {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 8.33333337%
  }

  .column.is-offset-1-desktop {
      margin-left: 8.33333337%
  }

  .column.is-2-desktop {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 16.66666674%
  }

  .column.is-offset-2-desktop {
      margin-left: 16.66666674%
  }

  .column.is-3-desktop {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 25%
  }

  .column.is-offset-3-desktop {
      margin-left: 25%
  }

  .column.is-4-desktop {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 33.33333337%
  }

  .column.is-offset-4-desktop {
      margin-left: 33.33333337%
  }

  .column.is-5-desktop {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 41.66666674%
  }

  .column.is-offset-5-desktop {
      margin-left: 41.66666674%
  }

  .column.is-6-desktop {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 50%
  }

  .column.is-offset-6-desktop {
      margin-left: 50%
  }

  .column.is-7-desktop {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 58.33333337%
  }

  .column.is-offset-7-desktop {
      margin-left: 58.33333337%
  }

  .column.is-8-desktop {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 66.66666674%
  }

  .column.is-offset-8-desktop {
      margin-left: 66.66666674%
  }

  .column.is-9-desktop {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 75%
  }

  .column.is-offset-9-desktop {
      margin-left: 75%
  }

  .column.is-10-desktop {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 83.33333337%
  }

  .column.is-offset-10-desktop {
      margin-left: 83.33333337%
  }

  .column.is-11-desktop {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 91.66666674%
  }

  .column.is-offset-11-desktop {
      margin-left: 91.66666674%
  }

  .column.is-12-desktop {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 100%
  }

  .column.is-offset-12-desktop {
      margin-left: 100%
  }
}

@media screen and (min-width: 1216px) {
  .column.is-narrow-widescreen {
      -webkit-box-flex:0;
      -ms-flex: none;
      flex: none;
      width: unset
  }

  .column.is-full-widescreen {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 100%
  }

  .column.is-three-quarters-widescreen {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 75%
  }

  .column.is-two-thirds-widescreen {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 66.6666%
  }

  .column.is-half-widescreen {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 50%
  }

  .column.is-one-third-widescreen {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 33.3333%
  }

  .column.is-one-quarter-widescreen {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 25%
  }

  .column.is-one-fifth-widescreen {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 20%
  }

  .column.is-two-fifths-widescreen {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 40%
  }

  .column.is-three-fifths-widescreen {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 60%
  }

  .column.is-four-fifths-widescreen {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 80%
  }

  .column.is-offset-three-quarters-widescreen {
      margin-left: 75%
  }

  .column.is-offset-two-thirds-widescreen {
      margin-left: 66.6666%
  }

  .column.is-offset-half-widescreen {
      margin-left: 50%
  }

  .column.is-offset-one-third-widescreen {
      margin-left: 33.3333%
  }

  .column.is-offset-one-quarter-widescreen {
      margin-left: 25%
  }

  .column.is-offset-one-fifth-widescreen {
      margin-left: 20%
  }

  .column.is-offset-two-fifths-widescreen {
      margin-left: 40%
  }

  .column.is-offset-three-fifths-widescreen {
      margin-left: 60%
  }

  .column.is-offset-four-fifths-widescreen {
      margin-left: 80%
  }

  .column.is-0-widescreen {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 0%
  }

  .column.is-offset-0-widescreen {
      margin-left: 0%
  }

  .column.is-1-widescreen {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 8.33333337%
  }

  .column.is-offset-1-widescreen {
      margin-left: 8.33333337%
  }

  .column.is-2-widescreen {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 16.66666674%
  }

  .column.is-offset-2-widescreen {
      margin-left: 16.66666674%
  }

  .column.is-3-widescreen {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 25%
  }

  .column.is-offset-3-widescreen {
      margin-left: 25%
  }

  .column.is-4-widescreen {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 33.33333337%
  }

  .column.is-offset-4-widescreen {
      margin-left: 33.33333337%
  }

  .column.is-5-widescreen {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 41.66666674%
  }

  .column.is-offset-5-widescreen {
      margin-left: 41.66666674%
  }

  .column.is-6-widescreen {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 50%
  }

  .column.is-offset-6-widescreen {
      margin-left: 50%
  }

  .column.is-7-widescreen {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 58.33333337%
  }

  .column.is-offset-7-widescreen {
      margin-left: 58.33333337%
  }

  .column.is-8-widescreen {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 66.66666674%
  }

  .column.is-offset-8-widescreen {
      margin-left: 66.66666674%
  }

  .column.is-9-widescreen {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 75%
  }

  .column.is-offset-9-widescreen {
      margin-left: 75%
  }

  .column.is-10-widescreen {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 83.33333337%
  }

  .column.is-offset-10-widescreen {
      margin-left: 83.33333337%
  }

  .column.is-11-widescreen {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 91.66666674%
  }

  .column.is-offset-11-widescreen {
      margin-left: 91.66666674%
  }

  .column.is-12-widescreen {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      width: 100%
  }

  .column.is-offset-12-widescreen {
      margin-left: 100%
  }
}

.columns {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-top: -0.75rem
}

.columns:last-child {
  margin-bottom: -0.75rem
}

.columns:not(:last-child) {
  margin-bottom: calc(1.5rem - 0.75rem)
}

.columns.is-centered {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.columns.is-gapless {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0
}

.columns.is-gapless>.column {
  margin: 0;
  padding: 0 !important
}

.columns.is-gapless:not(:last-child) {
  margin-bottom: 1.5rem
}

.columns.is-gapless:last-child {
  margin-bottom: 0
}

.columns.is-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.columns.is-multiline {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.columns.is-vcentered {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.action-link {
  position: relative;
  display: inline-block;
  font-weight: 500;
  color: var(--bt);
  -webkit-transition: opacity .3s;
  transition: opacity .3s
}

.action-link:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1.6px dotted var(--bt);
}

.action-link:hover {
  color: var(--bt);
  opacity: .6
}

body.is-dark .action-link {
  color: var(--dark-bt)
}

body.is-dark .action-link:after {
  border-bottom-color: var(--dark-bt)
}

.account-wrapper .account-box.is-form .form-body .fieldset .fieldset-heading {
  margin-bottom: 20px
}

.account-wrapper .account-box.is-form .form-body .fieldset .fieldset-heading h4 {
  font-family: "Montserrat",sans-serif;
  font-weight: 600;
  font-size: 1rem
}

.is-hidden {
  display: none !important
}

.is-vhidden {
  visibility: hidden !important
}

.no-click {
  pointer-events: none;
  cursor: not-allowed;
}


.file-upload-content {
  display: none;
  text-align: center;
}

.file-upload-input {
  position: absolute;
  outline: none;
  opacity: 0;
  cursor: pointer;
}

.image-upload-wrap {
  margin-top: 20px;
  border: 4px dashed #671cc9;
  position: relative;
  cursor: pointer;
}

.image-dropping,
.image-upload-wrap:hover {
  background-color: #671cc954;
  border: 4px dashed #ffffff;
}

.image-title-wrap {
  padding: 0 15px 15px 15px;
  color: #222;
}

.drag-text {
  text-align: center;
}

.drag-text h3 {
  font-weight: 100;
  text-transform: uppercase;
  color: #15824B;
  padding: 60px 0;
}

.file-upload-image {
  max-height: 200px;
  max-width: 200px;
  margin: auto;
  padding: 20px;
}

.remove-image {
  width: 200px;
  margin: 0;
  color: #fff;
  background: #cd4535;
  border: none;
  padding: 10px;
  border-radius: 4px;
  border-bottom: 4px solid #b02818;
  transition: all .2s ease;
  outline: none;
  text-transform: uppercase;
  font-weight: 700;
}

.remove-image:hover {
  background: #c13b2a;
  color: #ffffff;
  transition: all .2s ease;
  cursor: pointer;
}

.remove-image:active {
  border: 0;
  transition: all .2s ease;
}

.font-inherit {
  font-size: inherit!important;
} 




.letspace{
  letter-spacing: 35px;
  text-align: center;
  font-size: 25px;
}

.merr{
  text-align: center;
}

.rounded-20 {
  border-radius: 25px;
}
.card-bordered {
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease-in-out;
}

.card-bordered:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.left {
  width: 50%;
  padding: 20px 40px;
  position: relative;
  border-right: 1px solid #e5e5e5;
}

.right {
  width: 50%;
  padding: 20px 40px;
}

@media (max-width: 575.98px) {
  .is-light-header{
   background: #fff;
  }
}

.deposit-success-container {
  max-width: 600px;
  margin: 50px auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.success-icon {
  font-size: 80px;
  color: #28a745;
  margin-bottom: 20px;
}

.success-title {
  font-size: 28px;
  color: #333;
  margin-bottom: 10px;
}

.success-message {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

.transaction-details {
  background-color: #f8f9fa;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 30px;
  text-align: left;
}

.transaction-details h2 {
  font-size: 22px;
  color: #333;
  margin-bottom: 15px;
}

.transaction-details ul {
  list-style-type: none;
  padding: 0;
}

.transaction-details li {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}


.svg-lighter {
  fill: var(--bt);
    background-color: var(--bt);

  filter: brightness(120%); /* Lighter color (increase brightness) */
}

.svg-deep {
  fill: var(--bt);
    background-color: var(--bt);
  filter: brightness(90%); /* Deep color (slightly darker) */
}

.svg-deeper {
  fill: var(--bt);
  background-color: var(--bt);
  filter: brightness(70%); /* Deeper color (even darker) */
}


@media (max-width: 568px) {
  .nk-header-tools {
      margin-left: 0;
  }
}



@media (min-width: 1200px) {
  .is-compact:not(:hover) .nk-menu-text {
      opacity:0;
      transition: .4s linear
  }

  .is-compact:not(:hover) .nk-menu-badge,.is-compact:not(:hover) .nk-menu-toggle:after {
      transition: none;
      opacity: 0;
      pointer-events: none
  }

  .is-compact:not(:hover) .nk-menu-sub {
      display: none!important
  }

  .is-compact:not(:hover) .nk-menu-heading {
      position: relative;
  }

  .is-compact:not(:hover) .nk-menu-heading .overline-title {
      opacity: 0
  }

  .is-compact:not(:hover) .nk-menu-heading:not(:first-child):before {
      position: absolute;
      content: "";
      height: 1px;
      width: 100%;
      left: 0;
      top: 50%;
      background-color: #e5e9f2
  }

  .is-compact.is-theme:not(:hover) .nk-menu-heading:not(:first-child):before {
      background-color: #4a2b91
  }

  .is-compact.is-dark:not(:hover) .nk-menu-heading:not(:first-child):before {
      background-color: #203247
  }

  .is-compact .nk-menu-badge {
      transition: opacity .3s ease .3s
  }

  .is-compact .nk-menu-text {
      white-space: nowrap
  }
}

.card-ibx {
  position: relative;
  display: flex;
  overflow: hidden;
  border-radius: 4px;
  min-height: calc(100vh - (65px + 86px + 60px));
  /* max-height: calc(100vh - (65px + 86px + 60px)); */
}


.card-ibx-aside {
  position: absolute;
  background: #fff;
  width: 100%;
  overflow: hidden;
  height: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  /* border-right: 1px solid #e5e9f2; */
  transform: translateX(-100%);
  transition: transform 0.4s linear;
  z-index: 99;
}

.card-ibx-aside.content-active {
  transform: none;
  /* z-index: 99; */
}

.card-ibx-nav {
  overflow: auto;
  flex-grow: 1;
  height: 100%;
  max-width: 100%;
}

.card-ibx-nav .simplebar-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-ibx-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 1.5rem 0.75rem;
}

.card-ibx-nav-head .title {
  font-size: 1rem;
  margin-bottom: 0;
}

.card-ibx-nav-head .dropdown>a,
.card-ibx-nav-head>.licard {
  color: #8094ae;
  font-size: 0.875rem;
}

.card-ibx-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid #e5e9f2;
  min-height: 61px;
}

.card-ibx-head .title {
  font-size: 1rem;
  margin-bottom: 0;
}

.card-ibx-head-actions,

.card-ibx-head .search-wrap {
  padding: 0 1.365rem 0 1rem;
}

.card-ibx-head .search-wrap .icon {
  font-size: 1.25rem;
}

.card-ibx-head .search-back {
  transform: translate(-0.5rem, -50%);
}

.card-ibx-head-check {
  display: flex;
  margin-right: 0.325rem;
}

.card-ibx-action {
  position: relative;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e5e9f2;
}

.card-ibx-action-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-ibx-action-item a {
  display: flex;
  align-items: center;
}

.card-ibx-action-item .icon {
  font-size: 1.5rem;
}

.card-ibx-action-item .icon+span {
  margin-left: 0.5rem;
}

.card-ibx-action-item .search-toggle .icon {
  font-size: 1.125rem;
}

.card-ibx-menu li {
  margin: 2px 0;
}

.card-ibx-menu li:hover {
  background: #f5f6fa;
  border-radius: 3px;
}

.card-ibx-menu li.active {
  background: #e3d8fb;
  border-radius: 3px;
}

.card-ibx-menu-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
}

.card-ibx-menu-item .icon {
  font-size: 1.25rem;
  line-height: 1.5rem;
  width: 2rem;
  color: #8094ae;
}

.card-ibx-menu-item .badge {
  margin-left: auto;
  min-width: 2.25rem;
  justify-content: center;
}

.active .card-ibx-menu-item .icon {
  color: #733aea;
}

.card-ibx-menu-text {
  font-size: 0.875rem;
  color: #526484;
  font-weight: 500;
  line-height: 1.5rem;
}

.active .card-ibx-menu-text {
  color: #733aea;
}

.card-ibx-contact>li,
.card-ibx-label>li {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 4px;
  margin: 2px 0;
  transition: background-color 0.3s;
}

.card-ibx-contact>li>a,
.card-ibx-label>li>a {
  display: flex;
  padding: 0.5rem 0.75rem;
  flex-grow: 1;
}

.card-ibx-contact>li .dropdown,
.card-ibx-label>li .dropdown {
  opacity: 0;
}

.card-ibx-contact>li .dropdown>a,
.card-ibx-label>li .dropdown>a {
  color: #526484;
  padding: 0.6875rem;
}

.card-ibx-contact>li:hover,
.card-ibx-label>li:hover {
  background: #f5f6fa;
}

.card-ibx-contact>li:hover .dropdown,
.card-ibx-label>li:hover .dropdown {
  opacity: 1;
}

.card-ibx-contact>li.active,
.card-ibx-label>li.active {
  background: #ab89f2;
}

.card-ibx-label-text {
  line-height: 1;
  margin-left: 1rem;
  font-size: 0.875rem;
  color: #526484;
  font-weight: 500;
}

.card-ibx-contact,
.card-ibx-label,
.card-ibx-menu {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.card-ibx-menu {
  padding-top: 0.75rem;
}

.card-ibx-contact {
  padding-bottom: 1.75rem;
}

.card-ibx-status {
  margin-top: auto;
  background: #f5f6fa;
  padding: 1.5rem 1.5rem;
}

.card-ibx-status-info {
  margin-bottom: 0.5rem;
}

.card-ibx-status-info .icon {
  width: 1.25rem;
  display: inline-block;
}

.card-ibx-body {
  position: relative;
  display: flex;
  flex-direction: column;
  /* overflow: hidden; */
  flex-grow: 1;
  flex-shrink: 1;
}

.card-ibx-list {
  display: flex;
  flex-direction: column;
  max-height: 100%;
  height: 100%;
  overflow: auto;
}

.card-ibx-item {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 1rem 1.25rem;
  transition: background-color 0.3s;
  cursor: pointer;
}

.card-ibx-item:not(:last-child) {
  border-bottom: 1px solid #e5e9f2;
}

.card-ibx-item.active,
.card-ibx-item:not(.no-hover):hover {
  background: #f5f6fa;
}

.card-ibx-item.is-unread {
  background: rgba(245, 246, 250, 0.6);
}

.card-ibx-item-elem {
  padding: 0 8px;
  flex-shrink: 0;
}

.card-ibx-item-elem:first-child {
  padding-left: 0;
}

.card-ibx-item-check {
  width: 28px;
  display: inline-flex;
}

.card-ibx-item-fluid {
  flex-grow: 1;
  flex-shrink: 1;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.card-ibx-item-user .user-name {
  max-width: calc(100% - 50px);
}

.card-ibx-item-user .user-name .lead-text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 400;
}

.is-unread .card-ibx-item-user .user-name .lead-text {
  font-weight: 500;
}

.card-ibx-item-count {
  width: 3.25rem;
}

.card-ibx-item-time {
  width: 80px;
  text-align: right;
}

.card-ibx-item-attach {
  width: 2.25rem;
  text-align: center;
}

.card-ibx-item-star .asterisk {
  padding: 0 0.25rem;
}

.card-ibx-item-star .asterisk a {
  display: flex;
}

.card-ibx-item-star .asterisk .icon {
  line-height: 1;
  font-size: 1.125rem;
}

.card-ibx-item-tools {
  padding-right: 0;
  margin-left: auto;
  text-align: right;
}

.card-ibx-item-attach,
.card-ibx-item-check,
.card-ibx-item-star {
  position: relative;
  z-index: 2;
}

.card-ibx-item-tools {
  position: relative;
}

.card-ibx-licard {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.card-ibx-licard+.card-ibx-item-elem {
  padding-left: 0;
}

.card-ibx-view {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card-ibx-view.show-ibx {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.card-ibx-reply-head {
  padding: 1.5rem 1.25rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.card-ibx-reply-head .title {
  margin-bottom: 0.75rem;
}

.card-ibx-reply-header {
  margin-right: -0.5rem;
}

.card-ibx-reply-item {
  position: relative;
}

.card-ibx-reply-item>div:not(.card-reply-header) {
  margin-left: 0;
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
}

.card-ibx-reply-item:not(:last-child):after {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  height: 1px;
  bottom: 1rem;
  content: "";
  background: #e5e9f2;
}

@media (min-width: 576px) {

  .card-ibx-head,
  .card-ibx-item {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .card-ibx-head .search-wrap {
    padding: 0 2.375rem 0 2rem;
  }

  .card-ibx-reply-head {
    padding: 2em 2.25rem 0;
  }

  .card-ibx-reply-item {
    padding-bottom: 2.75rem;
  }

  .card-ibx-reply-item>div:not(.card-reply-header) {
    margin-left: 56px;
  }

  .card-ibx-reply-item:not(:last-child):after {
    bottom: 1.375rem;
    left: 2.25rem;
    right: 2.25rem;
  }

  .card-ibx-reply-form,
  .card-ibx-reply-quick-btns {
    margin-left: 5.75rem;
  }
}

@media (min-width: 768px) {
  .card-ibx-item-user {
    width: 180px;
  }
}

@media (min-width: 992px) {
  .card-ibx-aside {
    position: static;
    transform: none;
    transition: none;
    height: calc(100vh - 128px);
  }

  .card-ibx-contact,
  .card-ibx-label,
  .card-ibx-menu {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .card-ibx-menu {
    padding-top: 1rem;
  }

  .card-ibx-contact {
    padding-bottom: 1rem;
  }

  .card-ibx-nav-head {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .card-ibx-head,
  .card-ibx-item {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .card-ibx-head .search-wrap {
    padding: 0 2.25rem 0 1.5rem;
  }

  .card-ibx-body {
    max-width: calc(100% - 260px);
  }

  .card-ibx-reply-form,
  .card-ibx-reply-quick-btns {
    margin-left: 5.25rem;
  }

  .card-ibx-reply-head,
  .card-ibx-reply-item {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}

@media (min-width: 1200px) {
  .card-ibx-aside {
    width: 350px;
  }

  .card-ibx-item-user {
    width: 200px;
  }

  .card-ibx-item-time {
    margin-right: 5rem;
  }
}

@media (min-width: 1540px) {
  .card-ibx-item-user {
    width: 260px;
  }

  .card-ibx-item-tools {
    margin-left: 5rem;
  }
}

@media (max-width: 1199.98px) {
  .card-ibx-item-attach {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .card-ibx-item {
    flex-wrap: wrap;
  }

  .card-ibx-item-elem {
    padding: 0 4px;
  }

  .card-ibx-item-fluid {
    padding-left: 32px;
    padding-right: 48px;
    margin-top: 6px;
    width: calc(100% - 2.5rem);
  }

  .card-ibx-item-fluid .heading {
    display: block;
  }

  .card-ibx-item-attach,
  .card-ibx-item-count {
    display: none;
  }

  .card-ibx-item-user {
    flex-grow: 1;
  }

  .card-ibx-item-user .user-avatar {
    height: 28px;
    width: 28px;
    font-size: 12px;
  }

  .card-ibx-item-time {
    position: absolute;
    right: 32px;
    top: 19px;
  }

  .card-ibx-item-tools {
    position: absolute;
    text-align: right;
    right: 28px;
    bottom: 18px;
  }

  .card-ibx-item-star {
    position: absolute;
    left: 28px;
    top: 50px;
  }

  .card-ibx-context-badges {
    display: none;
  }

  .ibx-actions-hidden {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .card-ibx-item-star {
    left: 12px;
  }

  .card-ibx-item-time {
    right: 12px;
  }

  .card-ibx-item-tools {
    right: 8px;
  }

  .card-ibx-reply-head .title {
    font-size: 1.125rem;
  }

  .dt-buttons .card-ibx-reply .btn-trigger.btn-secondary,
  .card-ibx-reply .btn-icon.btn-trigger,
  .card-ibx-reply .dt-buttons .btn-trigger.btn-secondary {
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
  }

  .dt-buttons .card-ibx-reply .btn-trigger.btn-secondary .icon,
  .card-ibx-reply .btn-icon.btn-trigger .icon,
  .card-ibx-reply .dt-buttons .btn-trigger.btn-secondary .icon {
    width: 1.875rem;
  }
}

@media (max-width: 359px) {

  .dt-buttons .card-ibx-head .btn-trigger.btn-secondary,
  .card-ibx-head .btn-icon.btn-trigger,
  .card-ibx-head .dt-buttons .btn-trigger.btn-secondary {
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
  }

  .dt-buttons .card-ibx-head .btn-trigger.btn-secondary .icon,
  .card-ibx-head .btn-icon.btn-trigger .icon,
  .card-ibx-head .dt-buttons .btn-trigger.btn-secondary .icon {
    width: 1.875rem;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .card-ibx-aside {
    width: 320px;
  }

  .card-ibx-contact,
  .card-ibx-label,
  .card-ibx-menu {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .card-ibx-nav-head,
  .card-ibx-status {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
  .card-ibx {
    min-height: calc(100vh - (65px + 78px + 30px));
    max-height: calc(100vh - (65px + 78px + 30px));
  }
}

.card-fmg {
  position: relative;
  background-color: #fff;
  border-radius: 4px;
  min-height: calc(100vh - (65px + 78px + 60px));
}

.card-fmg-aside {
  position: fixed;
  width: 260px;
  overflow: hidden;
  height: 100%;
  max-height: 100%;
  background: #fff;
  flex-shrink: 0;
  z-index: 9999;
  left: 0;
  transform: translateX(-100%);
  border-right: 1px solid #e5e9f2;
  top: 0;
  transition: transform 0.4s linear;
  min-height: 100vh;
  max-height: 100vh;
  overflow-y: auto;
}

.p-relative {
  position: relative;
}

.chakra-wrqbg1 {
  position: relative;
  z-index: 2;
}

.card-cover {
  border-radius: 4% / 6%;
  mask-image: radial-gradient(rgb(255, 255, 255), rgb(0, 0, 0));
  overflow: hidden;
  padding-top: 63.15%;
  position: relative;
}

.chakra-171ofr0 {
  display: block;
  font-size: 0px;
  left: 0px;
  position: absolute;
  top: 0px;
  transform: translate3d(0px, 0px, 0px);
  width: 100%;
}

.chakra-1ab1f0c {
  position: absolute;
  width: 105%;
  height: 110%;
  top: 0px;
  left: -5%;
  z-index: -1;
  transition: transform 0.3s ease-out;
  background-size: contain;
}

.card-envelope {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -1%;
  z-index: 2;
}

.svg-envelope {
  width: 100%;
  height: 100%;
}

.chakra-1o1gpgf {
  overflow: visible;
  height: 100%;
  width: 100%;
}

.card-address {
  bottom: 1.4rem;
  position: absolute;
  left: 1.4rem;
}

.card-address-link {
  color: rgba(43, 43, 43, 0.7);
  text-decoration: underline;
  white-space: nowrap;
  display: inline-block;
  font-size: 1rem;
  margin-top: 1.4rem;
}

.card-list {
  max-width: 600px;
  margin: 0 auto;
}

.cards {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 40px;
  height: 30px;
  background-color: #d93025;
  border-radius: 4px;
  margin-right: 15px;
}

.card-icon.new::before {
  content: "NEW";
  display: inline-block;
  background-color: #00c853;
  color: white;
  padding: 2px 5px;
  border-radius: 4px;
  font-size: 10px;
  margin-right: 5px;
}

.card-info {
  flex: 1;
}

.card-number {
  display: block;
  font-weight: bold;
  font-size: 16px;
}

.card-name {
  display: block;
  font-size: 14px;
  color: #777;
}

.card-status {
  font-size: 14px;
  color: #777;
}

.card-status.activate {
  color: #00c853;
  cursor: pointer;
}

.card-status.activate:hover {
  text-decoration: underline;
}

.card-number {
  display: block;
  font-weight: bold;
  font-size: 14px;
}

.card-name {
  display: block;
  font-size: 10px;
  color: #777;
}

.card-status {
  font-size: 12px;
  color: #777;
}

.card-image {
  font-size: 40px;
  border-radius: 4px;
  margin-right: 15px;
}

.lock-image {
  font-size: 20px;
  border-radius: 4px;
  margin-right: 15px;
}

.uppercase-text {
  text-transform: uppercase;
  font-size: 14px;
}

.chakra-15frpu0 {
  position: absolute;
  top: 0%;

  opacity: 0.9;
  z-index: 3;
  background-color: rgb(255, 255, 255);
  /* text-align: center; */
  /* transform: skew(-45deg) scale(1.02); */
}

.back-icon {
  font-size: 25px;
  border-radius: 4px;
  margin-right: 15px;
  color: #777;
}

.space-between-cards {
  margin-left: auto;
  margin-right: auto;
}


.help-svg-path {
  fill: var(--body-bg);
}
.help-svg-rect-white {
  fill: #fff;
}
.help-svg-rect-blue {
  fill: rgba(var(--body-bg-rgb), 0.2);
}
.help-svg-path-primary {
  fill: var(--body-bg);
}
.help-svg-path-secondary {
  fill: var(--body-bg);
}
.help-svg-stroke-secondary {
  fill: none;
  stroke: var(--body-bg);
  stroke-miterlimit: 10;
  stroke-width: 2;
}
.help-svg-line-white {
  fill: none;
  stroke: #fffffe;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.help-svg-line-accent {
  fill: none;
  stroke: #9cabff;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.help-svg-circle {
  fill: none;
  stroke: var(--body-bg);
  stroke-miterlimit: 10;
}

@media only screen and (max-width: 767px) {
  .is-split {
      -webkit-box-orient:vertical;
      /* -webkit-box-direction: normal; */
      -ms-flex-direction: column;
      flex-direction: column;
      padding-right: 0;
      padding-left: 0
  }
  .right {
      width: 100%;
      padding-right: 30px;
      padding-left: 30px
  }
  .left {
      width: 100%;
      border-right: none;
      border-bottom: 1px solid #e5e5e5;
      padding-bottom: 40px;
  }
}



.choices{position:relative;overflow:hidden;margin-bottom:24px;font-size:16px}.choices:focus{outline:0}.choices:last-child{margin-bottom:0}.choices.is-open{overflow:visible}.choices.is-disabled .choices__inner,.choices.is-disabled .choices__input{background-color:#eaeaea;cursor:not-allowed;-webkit-user-select:none;user-select:none}.choices.is-disabled .choices__item{cursor:not-allowed}.choices [hidden]{display:none!important}.choices[data-type*=select-one]{cursor:pointer}.choices[data-type*=select-one] .choices__inner{padding-bottom:7.5px}.choices[data-type*=select-one] .choices__input{display:block;width:100%;padding:10px;border-bottom:1px solid #ddd;background-color:#fff;margin:0}.choices[data-type*=select-one] .choices__button{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);padding:0;background-size:8px;position:absolute;top:50%;right:0;margin-top:-10px;margin-right:25px;height:20px;width:20px;border-radius:10em;opacity:.25}.choices[data-type*=select-one] .choices__button:focus,.choices[data-type*=select-one] .choices__button:hover{opacity:1}.choices[data-type*=select-one] .choices__button:focus{box-shadow:0 0 0 2px #005f75}.choices[data-type*=select-one] .choices__item[data-placeholder] .choices__button{display:none}.choices[data-type*=select-one]::after{content:"";height:0;width:0;border-style:solid;border-color:#333 transparent transparent;border-width:5px;position:absolute;right:11.5px;top:50%;margin-top:-2.5px;pointer-events:none}.choices[data-type*=select-one].is-open::after{border-color:transparent transparent #333;margin-top:-7.5px}.choices[data-type*=select-one][dir=rtl]::after{left:11.5px;right:auto}.choices[data-type*=select-one][dir=rtl] .choices__button{right:auto;left:0;margin-left:25px;margin-right:0}.choices[data-type*=select-multiple] .choices__inner,.choices[data-type*=text] .choices__inner{cursor:text}.choices[data-type*=select-multiple] .choices__button,.choices[data-type*=text] .choices__button{position:relative;display:inline-block;margin:0-4px 0 8px;padding-left:16px;border-left:1px solid #003642;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);background-size:8px;width:8px;line-height:1;opacity:.75;border-radius:0}.choices[data-type*=select-multiple] .choices__button:focus,.choices[data-type*=select-multiple] .choices__button:hover,.choices[data-type*=text] .choices__button:focus,.choices[data-type*=text] .choices__button:hover{opacity:1}.choices__inner{display:inline-block;vertical-align:top;width:100%;background-color:#f9f9f9;padding:7.5px 7.5px 3.75px;border:1px solid #ddd;border-radius:2.5px;font-size:14px;min-height:44px;overflow:hidden}.is-focused .choices__inner,.is-open .choices__inner{border-color:#b7b7b7}.is-open .choices__inner{border-radius:2.5px 2.5px 0 0}.is-flipped.is-open .choices__inner{border-radius:0 0 2.5px 2.5px}.choices__list{margin:0;padding-left:0;list-style:none}.choices__list--single{display:inline-block;padding:4px 16px 4px 4px;width:100%}[dir=rtl] .choices__list--single{padding-right:4px;padding-left:16px}.choices__list--single .choices__item{width:100%}.choices__list--multiple{display:inline}.choices__list--multiple .choices__item{display:inline-block;vertical-align:middle;border-radius:20px;padding:4px 10px;font-size:12px;font-weight:500;margin-right:3.75px;margin-bottom:3.75px;background-color:#005f75;border:1px solid #004a5c;color:#fff;word-break:break-all;box-sizing:border-box}.choices__list--multiple .choices__item[data-deletable]{padding-right:5px}[dir=rtl] .choices__list--multiple .choices__item{margin-right:0;margin-left:3.75px}.choices__list--multiple .choices__item.is-highlighted{background-color:#004a5c;border:1px solid #003642}.is-disabled .choices__list--multiple .choices__item{background-color:#aaa;border:1px solid #919191}.choices__list--dropdown,.choices__list[aria-expanded]{display:none;z-index:1;position:absolute;width:100%;background-color:#fff;border:1px solid #ddd;top:100%;margin-top:-1px;border-bottom-left-radius:2.5px;border-bottom-right-radius:2.5px;overflow:hidden;word-break:break-all}.is-active.choices__list--dropdown,.is-active.choices__list[aria-expanded]{display:block}.is-open .choices__list--dropdown,.is-open .choices__list[aria-expanded]{border-color:#b7b7b7}.is-flipped .choices__list--dropdown,.is-flipped .choices__list[aria-expanded]{top:auto;bottom:100%;margin-top:0;margin-bottom:-1px;border-radius:.25rem .25rem 0 0}.choices__list--dropdown .choices__list,.choices__list[aria-expanded] .choices__list{position:relative;max-height:300px;overflow:auto;-webkit-overflow-scrolling:touch;will-change:scroll-position}.choices__list--dropdown .choices__item,.choices__list[aria-expanded] .choices__item{position:relative;padding:10px;font-size:14px}[dir=rtl] .choices__list--dropdown .choices__item,[dir=rtl] .choices__list[aria-expanded] .choices__item{text-align:right}@media (min-width:640px){.choices__list--dropdown .choices__item--selectable[data-select-text],.choices__list[aria-expanded] .choices__item--selectable[data-select-text]{padding-right:100px}.choices__list--dropdown .choices__item--selectable[data-select-text]::after,.choices__list[aria-expanded] .choices__item--selectable[data-select-text]::after{content:attr(data-select-text);font-size:12px;opacity:0;position:absolute;right:10px;top:50%;transform:translateY(-50%)}[dir=rtl] .choices__list--dropdown .choices__item--selectable[data-select-text],[dir=rtl] .choices__list[aria-expanded] .choices__item--selectable[data-select-text]{text-align:right;padding-left:100px;padding-right:10px}[dir=rtl] .choices__list--dropdown .choices__item--selectable[data-select-text]::after,[dir=rtl] .choices__list[aria-expanded] .choices__item--selectable[data-select-text]::after{right:auto;left:10px}}.choices__list--dropdown .choices__item--selectable.is-highlighted,.choices__list[aria-expanded] .choices__item--selectable.is-highlighted{background-color:#f2f2f2}.choices__list--dropdown .choices__item--selectable.is-highlighted::after,.choices__list[aria-expanded] .choices__item--selectable.is-highlighted::after{opacity:.5}.choices__item{cursor:default}.choices__item--selectable{cursor:pointer}.choices__item--disabled{cursor:not-allowed;-webkit-user-select:none;user-select:none;opacity:.5}.choices__heading{font-weight:600;font-size:12px;padding:10px;border-bottom:1px solid #f7f7f7;color:gray}.choices__button{text-indent:-9999px;appearance:none;border:0;background-color:transparent;background-repeat:no-repeat;background-position:center;cursor:pointer}.choices__button:focus,.choices__input:focus{outline:0}.choices__input{display:inline-block;vertical-align:baseline;background-color:#f9f9f9;font-size:14px;margin-bottom:5px;border:0;border-radius:0;max-width:100%;padding:4px 0 4px 2px}.choices__input::-webkit-search-cancel-button,.choices__input::-webkit-search-decoration,.choices__input::-webkit-search-results-button,.choices__input::-webkit-search-results-decoration{display:none}.choices__input::-ms-clear,.choices__input::-ms-reveal{display:none;width:0;height:0}[dir=rtl] .choices__input{padding-right:2px;padding-left:0}.choices__placeholder{opacity:.5}