* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
::-webkit-scrollbar {
    width: 8px;
    height: 4px;
    background: rgba(255,255,255,.1);
    border-radius: 2px;
}
::-webkit-scrollbar-thumb {
    background: #9832cc;
    border-radius: 4px;
}
::placeholder {
    color: #aeb1d0;
    opacity: .6;
}
:-ms-input-placeholder {
    color: #aeb1d0;
    opacity: .6;
}
::-ms-input-placeholder {
    color: #aeb1d0;
    opacity: .6;
}
html, body {
    height: auto;
    width: 100%;
}
body {
    width: 100%;
    min-width: 100%;
    height: auto;
    color: #f0f0f0;
    font-family: 'Ubuntu', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 18px;
    line-height: 1.5;
    background: #1b1e23 url(../images/bg-main.png) top center no-repeat;
    overflow-x: hidden;
    position: relative;
    top: 0 !important;
}
label {
    color: #f0f0f0;
    font-weight: 500;
}
button:focus {
    outline: none;
}
input[type=text],
input[type=password],
input[type=number],
input[type=email],
textarea,
select,
input[type=date] {
    font-family: 'Ubuntu', sans-serif;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.2);
    font-size: 18px;
    box-sizing: border-box;
    display: block;
    font-weight: normal;
    outline: none;
    padding: 0 10px;
    height: 50px;
    line-height: 50px;
    position: relative;
    text-align: left;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    color: #fff;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=email]:focus,
textarea:focus,
select:focus,
input[type=date]:focus {
    border-bottom: 1px solid rgba(255,255,255,.4);
}
select option {
    color: #1b1e23;
}
textarea {
    min-height: 180px;
    resize: none;
}
::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.4);
}
::-moz-placeholder {
    color: rgba(255, 255, 255, 0.4);
    opacity: 1;
}
::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.4);
}
:-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.4);
}
input[type=date]::-webkit-calendar-picker-indicator {
	opacity: 0;
    cursor: pointer;
}
input[type=date] {
    margin: 0;
    background: url("../images/calendar.svg") no-repeat 90% 50%;
    background-size: 15px;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
input[type='number'],
input[type="number"]:hover,
input[type="number"]:focus {
    appearance: none;
    -moz-appearance: textfield;
}
select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}

.ext-cross:before, .checkbox__checker:before, .checkbox__cross:before, .checkbox__ok:before, .ext-cross:after, .checkbox__checker:after, .checkbox__cross:after, .checkbox__ok:after {
    content: "";
    display: block;
    position: absolute;
    width: 14px;
    height: 2px;
    margin: 0 auto;
    top: 20px;
    left: 0;
    right: 0;
    background-color: #e2574c;
    border-radius: 5px;
    transition-duration: 0.3s;
  }
  .ext-cross:before, .checkbox__checker:before, .checkbox__cross:before, .checkbox__ok:before {
    transform: rotateZ(45deg);
  }
  .ext-cross:after, .checkbox__checker:after, .checkbox__cross:after, .checkbox__ok:after {
    transform: rotateZ(-45deg);
  }
  
  .ext-ok:before, .checkbox__ok:before, .checkbox__toggle:checked + .checkbox__checker:before, .ext-ok:after, .checkbox__ok:after, .checkbox__toggle:checked + .checkbox__checker:after {
    background-color: #53ae94;
  }
  .ext-ok:before, .checkbox__ok:before, .checkbox__toggle:checked + .checkbox__checker:before {
    width: 6px;
    top: 23px;
    left: -7px;
  }
  .ext-ok:after, .checkbox__ok:after, .checkbox__toggle:checked + .checkbox__checker:after {
    width: 12px;
    left: 5px;
  }
  
  .checkbox {
    width: 100px;
  }
  .checkbox__container {
    display: block;
    position: relative;
    height: 42px;
    cursor: pointer;
  }
  .checkbox__toggle {
    display: none;
  }
  .checkbox__toggle:checked + .checkbox__checker {
    left: calc(100% - 43px);
    transform: rotateZ(360deg);
  }
  .checkbox__checker, .checkbox__cross, .checkbox__ok {
    display: block;
    position: absolute;
    height: 43px;
    width: 43px;
    top: -1px;
    left: 0px;
    z-index: 1;
  }
  .checkbox__checker {
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.5);
    transition: 0.3s;
    z-index: 2;
  }
  .checkbox__checker:before, .checkbox__checker:after {
    transition-duration: 0.3s;
  }
  .checkbox__cross:before, .checkbox__cross:after, .checkbox__ok:before, .checkbox__ok:after {
    background-color: #ddd;
  }
  .checkbox__ok {
    left: calc(100% - 43px);
  }
  .checkbox__txt-left, .checkbox__txt-right {
    display: block;
    position: absolute;
    width: 42px;
    top: 15px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    z-index: 1;
  }
  .checkbox__txt-right {
    right: 0px;
  }
  .checkbox__bg {
    position: absolute;
    top: 0;
    left: 0;
    fill: rgba(255,255,255,.03);
    width: 100%;
    height: 100%;
  }

input[type=submit] {
    color: #fff;
    display: inline-flex;
    border: none;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #4891e0;
    border-radius: 35px;
    padding: 15px 30px;
    font-size: 19px;
    font-weight: 400;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
input:hover[type=submit] {
    color: #fff;
    border: none;
    box-shadow: 0 8px 25px rgba(35,102,214,.5);
}
ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 7px;
    background: #eee;
    border-radius: 5px;
    background-repeat: no-repeat;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #2E86DE;
    cursor: ew-resize;
    transition: background .3s ease-in-out;
}
input[type=range]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    box-shadow: none;
    border: none;
    background: transparent;
}
h1, h2, h3, h4, h5 {
    margin-bottom: 0;
}
h1 {
    text-transform: capitalize;
}
h1 {
    font-size: 36px;
    font-weight: bold;
}
h2 {
    font-size: 24px;
    font-weight: normal;
}
h3 {
    font-size: 22px;
    font-weight: bold;
}
h4 {
    font-size: 20px;
    font-weight: bold;
}
h5 {
    font-size: 18px;
    font-weight: bold;
}
a {
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    color: #2E86DE;
    font-size: 1em;
    font-weight: 400;
    box-sizing: border-box;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
a:hover {
    color: #347AF0;
}
span {
    color: #fff9;
}
.button {
    display: inline-flex;
    border-radius: 30px;
    font-size: 18px;
    padding: 0 30px;
    height: 60px;
    line-height: 60px;
    background: #4891e0;
    color: #fff;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 10px 20px rgba(72,145,224,.6);
}
.button:hover {
    color: #fff;
    box-shadow: 0 10px 20px rgba(72,145,224,.8);
}
.b-violet {
    background: #9832cc;
    box-shadow: 0 10px 20px rgba(152,50,204,.6);
}
.b-violet:hover {
    box-shadow: 0 10px 20px rgba(152,50,204,.8);
}
.button-border-tab {
    color: #fff;
    text-align: center;
    border-radius: 35px;
    border: 1px solid rgba(255,255,255,.1);
    padding: 10px 15px;
}
.button-border-tab.active,
.button-border-tab:hover {
    background: #fff;
    color: #1b1e23;
}
.button-border {
    display: inline-block;
    color: #fff9;
    text-align: center;
    border: 2px solid rgba(255,255,255,.9) !important;
    background: none !important;
    border-radius: 35px !important;
    height: 70px !important;
    line-height: 67px !important;
    padding: 0 20px !important;
    font-weight: 400 !important;
    min-width: 200px;
    font-size: 19px;
}
.button-border:hover {
    border: 2px solid rgba(255,255,255,1) !important;
    box-shadow: 0 10px 20px rgba(0,0,0,.2);
    color: #fff;
}
.button-border:disabled {
    opacity: .1;
}
.button-border:disabled:hover {
    box-shadow: none;
}
.button-border-mini {
    display: inline-block;
    color: #fff8;
    text-align: center;
    border: 1px solid #fff3 !important;
    background: none !important;
    border-radius: 35px !important;
    height: 50px !important;
    line-height: 47px !important;
    padding: 0 20px !important;
    font-weight: 400 !important;
    min-width: 120px;
    font-size: 16px;
}
.button-border-mini:hover {
    color: #fff;
    border: 1px solid #fff5 !important;
}

img {
    max-width: 100%;
    height: auto;
    margin: 0px;
    padding: 0px;
}
.container {
    max-width: 1440px;
}
.title h3 {
    position: relative;
    padding-left: calc(10% + 20px);
}
.title h3:before {
    position: absolute;
    content: '';
    left: 0;
    top: calc(50% - 2px);
    height: 4px;
    width: 10%;
    background: rgba(255,255,255,.2);
    border-radius: 2px;
}
.mt-10 {
    margin-top: 8rem;
}

/* container-how-works */
.container-how-works .container {
    background: url(../images/ai-robot.png) right top no-repeat;
}
.circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    position: relative;
    border-radius: 50%;
    background-image: linear-gradient(-30deg, #4891e0 50%, transparent 50%),
    linear-gradient(90deg, #4891e0 50%, rgba(255,255,255,.1) 50%);
}
.circle-2 {
    background-image: linear-gradient(0deg, #53ae94 50%, transparent 50%),
    linear-gradient(90deg, #53ae94 50%, rgba(255,255,255,.1) 50%);
}
.circle-3 {
    background-image: linear-gradient(40deg, #aea053 50%, transparent 50%),
    linear-gradient(90deg, #aea053 50%, rgba(255,255,255,.1) 50%);
}
.circle h2 {
    z-index: 2;
    margin-bottom: 0;
}
.circle::before {
    border-radius: 50%;
    display: block;
    content: "";
    text-align: center;
    background: #1b1e23;
    position: absolute;
    left: 4px;
    top: 4px;
    height: 52px;
    width: 52px;
}

.close-modal {
    height: 40px;
    width: 40px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    content: '';
    top: -50px;
    right: calc(50% - 20px);
    text-align: center;
    line-height: 40px;
    display: block;
    z-index: 2;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.close-modal:hover {
    box-shadow: 0 8px 25px rgba(35,102,214,.5);
}
.close-modal i {
    color: #1b1e23;
    font-size: 20px;
}
.modal-body {
    padding: 2rem;
}
.modal-dialog .modal-content {
    border: 1px solid transparent;
    border-radius: 15px;
    -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.08), 0 4px 15px 0 rgba(0, 0, 0, 0.05);
    box-shadow: rgba(72,145,224,.25) 0px 25px 20px -20px;
    background:
    url(../images/modal-footer-bg.png) bottom center no-repeat,
    linear-gradient(#1b1e23, #1b1e23) padding-box,
    linear-gradient(to top, rgba(72,145,224,.4), #fff2) border-box
    ;
}
.modal-dialog .modal-content a {
    color: #fff;
}

.countdown-events {
    justify-content: center;
    display: flex;
    align-items: center;
}
.countdown-events > div {
    margin: 0 15px;
    justify-content: space-between;
    align-items: center;
}
.countdown-events .countdown-label {
    font-size: .8rem;
    color: #fff8;
}
.countdown-events .countdown-value {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-size: 24px;
    border: 1px solid rgba(255,255,255,.15);
    height: 60px;
    min-width: 70px;
    border-radius: 15px;
    margin-top: 5px;
    color: #53ae94;
    font-weight: 600;
}
.balance_disable-icon {
    width: 60px;
    height: 60px;
}

.navbar {
    position: inherit !important;
}
.navbar-toggler {
    padding: 0;
    border: 0;
    background-color: none;
    border-radius: none;
    box-shadow: 0 !important;
}
.navbar-toggler:focus,
.navbar-toggler:focus:not(:focus-visible) {
    background: none;
    outline: 0 !important;
    box-shadow: none !important;
}
.navbar-toggler span {
    display: block;
    width: 30px;
    height: 2px;
    margin: 6px auto;
    background: #ccc;
    transition: all .6s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
.navbar-toggler:hover span,
.navbar-toggler:focus span {
    background: #ccc;
}
 
/* rotate first span */
.navbar-toggler[aria-expanded="true"] span:first-of-type {
    transform: rotate(45deg) translate(6px, 6px);
}
 
/* hide second span */
.navbar-toggler[aria-expanded="true"] span:nth-of-type(2) {
    opacity: 0;
}
 
/* rotate third span */
.navbar-toggler[aria-expanded="true"] span:last-of-type {
    transform: rotate(-45deg) translate(5px, -5px);
}
 
.navbar-toggler[aria-expanded="false"] span {
    transform: none;
    opacity: 1;
}
.skiptranslate {
    display: none !important;
    height: 0 !important;
}
.lang-list {
    margin-bottom: -16px !important;
}
.lang-list li {
    width: calc(50% - 16px);
    margin-right: 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}
.lang-list li a {
    display: block;
    width: 100%;
    padding: 10px 16px;
    border-radius: 6px;
}
.lang-list li a:hover,
.lang-list li a.language_active {
    background: #fff1;
}
.lang-list li a img {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    margin-top: -2px;
}

.weather-folder img {
    max-height: 30px;
}

/* container-offers */
.offer-card {
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 15px;
    background: rgba(255,255,255,.01);
    transition: all ease-in .25s;
}
.container-offers .offer-card-folder:nth-child(1) .offer-card:hover {
    box-shadow: 0 10px 20px rgba(75,142,224,.2);
}
.container-offers .offer-card-folder:nth-child(2) .offer-card:hover {
    box-shadow: 0 10px 20px rgba(83,174,148,.2);
}
.container-offers .offer-card-folder:nth-child(3) .offer-card:hover {
    box-shadow: 0 10px 20px rgba(174,160,83,.2);
}
.container-offers .offer-card-folder:nth-child(2) .offer-card {
    padding: 3rem 1.5rem !important;
}
.offer-card small {
    color: rgba(255,255,255,.4);
}
.popular {
    background: #53ae94 url(../images/popular.svg) 10px center no-repeat;
    background-size: 15px;
    border-radius: 30px;
    padding: 5px 15px 5px 30px;
    box-shadow: 0 4px 10px rgba(83,174,148,.5);
}
.popular small {
    color: #fff !important;
}
#process-list label,
#account-list label {
    padding: 10px 15px;
    border-radius: 35px;
    border: 1px solid rgba(255,255,255,.06);
    cursor: pointer;
}
#process-list label:hover,
#account-list label:hover {
    border: 1px solid rgba(255,255,255,.2);
}
#process-list input[type=radio]:checked +  label,
#account-list input[type=radio]:checked + label {
    border: 1px solid #9832cc;
}
#process-list input[type=radio]:disabled +  label,
#account-list input[type=radio]:disabled + label {
    border: 1px solid rgba(255,255,255,.06);
    opacity: .5;
}
.offer-card a,
.offer-card label {
    cursor: pointer;
    display: block;
    width: 100%;
    height: 50px;
    line-height: 49px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.04);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
}
.offer-card a:hover,
.offer-card label:hover {
    background: rgba(255,255,255,.07);
}
.container-offers .offer-card-folder:nth-child(1) .offer-card input[type=radio]:checked + label {
    background: #4891e0;
    box-shadow: 0 4px 10px rgba(75,142,224,.2);
}
.container-offers .offer-card-folder:nth-child(2) .offer-card input[type=radio]:checked + label {
    background: #53ae94;
    box-shadow: 0 4px 10px rgba(83,174,148,.5);
}
.container-offers .offer-card-folder:nth-child(3) .offer-card input[type=radio]:checked + label {
    background: #aea053;
    box-shadow: 0 4px 10px rgba(174,160,83,.5);
}
.container-offers .offer-card-folder:nth-child(2) .offer-card a {
    background: #53ae94;
    box-shadow: 0 4px 10px rgba(83,174,148,.5);
}
.container-offers .offer-card-folder:nth-child(2) .offer-card a:hover {
    box-shadow: 0 4px 10px rgba(83,174,148,.7);
}
.container-offers .offer-card-folder:nth-child(3) .offer-card a:hover {
    box-shadow: 0 4px 10px rgba(174,160,83,.7);
}
.offer-card ul li {
    position: relative;
    padding: 10px 0 10px 35px;
    color: rgba(255,255,255,.4);
}
.offer-card ul li:before {
    position: absolute;
    content: '';
    left: 0;
    top: calc(50% - 10px);
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #fff;
}
.container-offers .offer-card-folder:nth-child(1) .offer-card ul li:before {
    background: #4891e0 url(../images/check2.svg) center center no-repeat;
    background-size: 10px;
}
.container-offers .offer-card-folder:nth-child(2) .offer-card ul li:before {
    background: #53ae94 url(../images/check2.svg) center center no-repeat;
    background-size: 10px;
}
.container-offers .offer-card-folder:nth-child(3) .offer-card ul li:before {
    background: #aea053 url(../images/check2.svg) center center no-repeat;
    background-size: 10px;
}
.offer-card ul li strong {
    color: rgba(255,255,255,.7);
}
.offer-card ul li:not(:last-of-type) {
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.amount-card h1 {
    font-size: 38px;
    color: #fff !important;
}
.container-offers .offer-card-folder:nth-child(1) h1 {
    color: #4891e0;
}
.container-offers .offer-card-folder:nth-child(2) h1 {
    color: #53ae94;
}
.container-offers .offer-card-folder:nth-child(3) h1 {
    color: #aea053;
}
.container-offers .offer-card-folder:nth-child(1) .offer-card {
    background: url(../images/offer1-bg.png) top left no-repeat;
}
.container-offers .offer-card-folder:nth-child(2) .offer-card {
    background: url(../images/offer2-bg.png) top left no-repeat;
}
.container-offers .offer-card-folder:nth-child(3) .offer-card {
    background: url(../images/offer3-bg.png) top left no-repeat;
}

/* container-psys */
.explore-rates {
    border-top: 1px solid rgba(255,255,255,.06);
}
.explore-rates img {
    max-height: 60px;
}
.psys-box {
    margin: -15px;
}
.psys-block {
margin: 10px;
    border-radius: 15px;
    background: rgba(255,255,255,.02);
    border-bottom: 1px solid rgba(152,50,204,.2);
    transition: box-shadow 0.3s ease-in-out;
}
.psys-block:not(:last-of-type) {
    margin-right: 15px;
}
.psys-block:hover {
    box-shadow: 0px 10px 20px rgba(152,50,204,.2);
}
.psys-block img {
    max-height: 60px;
}
.psys-block a {
    color: rgba(255,255,255,.4);
    font-size: 13px;
}
.psys-block a:hover {
    color: rgba(255,255,255,.6);
}

.logo img {
    max-height: 40px;
}

.title h1 {
    background: -webkit-linear-gradient(45deg, #fff, rgba(255,255,255,.2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

header {
    background: url(../images/header-lines.png) right bottom no-repeat;
}
.header-top {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.logo-main img {
    height: 40px;
}
.logo-main a h1 {
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 4px;
}
.header-top nav ul li,
footer nav ul li {
    padding: 0 20px;
}
.header-top nav ul li,
footer nav ul li {
    color: #fff9;
}
.header-top nav ul li a,
footer nav ul li a {
    color: #fff9;
}
.header-top nav ul li a:hover,
.header-top nav ul li:hover,
footer nav ul li a:hover,
footer nav ul li:hover {
    color: #fff;
}
.header-middle {
    padding: 5rem 0 0 0;
}
.header-middle .small-title {
    color: #2E86DE;
}
.header-middle .header-title {
    font-size: 50px;
}
.header-middle h1 span {
    background: -webkit-linear-gradient(45deg, #4891e0, rgba(152,50,204,1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.header-middle .header-statistics ul li {
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,.06);
    padding: 1rem 1.5rem;
}
.header-middle .header-statistics ul li h1 {
    font-weight: 400;
    font-size: 30px;
}
.header-middle .header-statistics ul li img {
    height: 40px;
    width: 40px;
}
.header-middle .header-statistics ul li small {
    color: rgba(255,255,255,.4);
}
.header-middle .header-statistics ul li:nth-child(1) {
    background: url(../images/offer1-bg.png) left top no-repeat;
}
.header-middle .header-statistics ul li:nth-child(2) {
    background: url(../images/offer2-bg.png) left top no-repeat;
}
.header-middle .header-statistics ul li:nth-child(3) {
    background: url(../images/offer4-bg.png) left top no-repeat;
}
.get-started-button {
    background: #9832cc !important;
    color: #fff;
}
.folder__funds-card {
    position: absolute;
    content: '';
    justify-content: center;
}
.folder__funds-card h5 {
    background: rgba(0,0,0,.4);
    backdrop-filter: blur(10px);
    padding: .5rem 1rem;
    border-radius: 15px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.folder__funds-card:nth-child(1) {
    top: 0px;
    left: 0px;
    z-index: 2;
}
.folder__funds-card:nth-child(2) {
    top: 110px;
    left: 320px;
    z-index: 2;
}
.folder__funds-card:nth-child(3) {
    top: 210px;
    left: 305px;
    z-index: 2;
}
.folder__funds-card:nth-child(4) {
    top: 380px;
    left: 50px;
    z-index: 2;
}
.folder__funds-card h5 {
    color: #fff;
    padding-left: 20px;
}
.folder__funds-card h5::before {
    content: '';
    position: absolute;
    left: -2px;
    top: calc(50% - 3px);
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: #53ae94;
    box-shadow: 0 0 0 4px rgba(83,174,148,.3);
}
.folder__funds-card:nth-child(3) h5::before {
    background: #ff4250;
    box-shadow: 0 0 0 4px rgba(255,60,80,.3);
}
.fc-image-folder {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,.15);
    backdrop-filter: blur(10px);
    width: 70px;
    height: 70px;
    animation: morph 4.1s linear infinite;
}
.fc-image-folder img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    animation: morph 4.1s linear infinite;
}
.phone-bg {
    position: relative;
    z-index: 1;
}

.apps-block li {
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,.06);
}
.apps-block li small {
    color: #fff8;
}
.apps-block li span {
    color: #2E86DE;
    font-weight: 600;
}
.apps-block li img {
    height: 30px;
}
.apps-block li strong {
    color: #fff;
}

#community_modal ul img {
    height: 40px;
}
#community_modal ul small {
    transition: all ease-in-out .3s;
    color: #fff8;
}
#community_modal ul a:hover small {
    color: #fff;
}

.trustpilot {
    color: #53ae94;
}

/* container-affiliate */

.container-affiliate {
    background: url(../images/map.png) right center no-repeat;
}
.container-affiliate .small-title small {
    color: #4891e0;
}
.container-affiliate--list img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 4px solid rgba(0,0,0,.2);
}
.container-affiliate--list li {
    margin-right: -15px;
    z-index: 13;
}
.ap-card {
    border-radius: 15px;
    border-left: 1px solid rgba(72,145,224,.2);
    border-top: 1px solid rgba(72,145,224,.1);
    border-bottom: 1px solid rgba(72,145,224,.2);
    border-right: 1px solid rgba(152,50,204,.2);
    min-height: 380px;
    backdrop-filter: blur(5px);
    background: url(../images/af-bg.png) bottom center no-repeat rgba(255,255,255,.02);
}
.ap-card li {
    content: '';
    width: 80px;
    text-align: center;
}
.ap-card li:nth-child(1) h1 {
    font-size: 60px;
}
.ap-card li:nth-child(2) h1 {
    font-size: 55px;
    color: rgba(255,255,255,.6);
}
.ap-card li:nth-child(3) h1 {
    font-size: 50px;
    color: rgba(255,255,255,.4);
}
.ap-card li:nth-child(4) h1 {
    font-size: 45px;
    color: rgba(255,255,255,.2);
}
.ap-card li:nth-child(1) {
    top: 130px;
    left: calc(50% - 40px);
}
.ap-card li:nth-child(2) {
    top: 185px;
    left: calc(50% - 40px);
}
.ap-card li:nth-child(3) {
    top: 242px;
    left: calc(50% - 40px);
}
.ap-card li:nth-child(4) {
    top: 295px;
    left: calc(50% - 40px);
}

/* container-features */

.container-features {
    background: url(../images/bg-features3.html) center right no-repeat;
}
.container-features h1 {
    background: -webkit-linear-gradient(45deg, #fff, rgba(255,255,255,.2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.feature-card {
    border-radius: 15px;
    background: rgba(255,255,255,.02);
    border-right: 1px solid rgba(152,50,204,.2);
}
.feat-img {
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    object-fit: cover;
}
.fi_f {
    animation: morph 4.1s linear infinite;
}
.fi_s {
    animation: morph 3.5s linear infinite;
}
.fi_t {
    animation: morph 2.7s linear infinite;
}
.feat-img img {
    width: 50px;
    height: 50px;
}

/* news-home */

.news-img img {
    border-radius: 15px;
}
.news-card {
    margin-top: -1rem;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 0 0 15px 15px;
    background: url(../images/bg-blue.png) top right no-repeat;
}
.news-card span {
    transition: all ease-in-out .3s;
}
.news-card:hover span {
    color: #fff;
}
.news-card > small {
    color: rgba(255,255,255,.4);
}

/* container-join-us */

.container_join-us {
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,.1);
    background: url(../images/modal-footer-bg.png) bottom center no-repeat, url(../images/jn-bg.png) bottom center no-repeat, rgba(255,255,255,.02);
}
/* footer */

footer {
    position: relative;
}
footer:before {
    position: absolute;
    content: '';
    background: url(../images/bg-footer.png) center center no-repeat;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 529px;
    z-index: -1;
}
footer .copyright {
    color: rgba(255,255,255,.5);
}

/* container-home-faq */
.container-home-faq .small-title small {
    color: #4891e0;
}
.accordion-button,
.accordion-item {
    background: none !important;
    box-shadow: none !important;
    color: #fff !important;
}
.accordion-item {
    border: none !important;
}
.accordion-button {
    margin-bottom: 1.5rem;
    cursor: pointer;
    border-radius: 15px !important;
    border: 1px solid rgba(255,255,255,.04);
}
.accordion-button:after {
    color: #fff !important;
}
.accordion-body {
    padding: 0 1.5rem 1.5rem 1.5rem !important;
}
.accordion-body img {
    max-width: 300px;
    border-radius: 15px;
}
.play-ai {
    position: absolute;
    cursor: pointer;
    content: '';
    background: rgba(0,0,0,.3) url(../images/play.svg) center center no-repeat;
    border-radius: 50%;
    background-size: 50px;
    width: 70px;
    height: 70px;
    top: calc(70% - 25px);
    right: calc(10% - 25px);
}
.play-ai:hover {
    background: rgba(0,0,0,.4) url(../images/play.svg) center center no-repeat;
    background-size: 50px;
}
/* faq-faq */
.faq-anchor li a {
    padding: 1rem;
    display: flex;
    align-items: center;
}
.anchor-title h1 {
    background: -webkit-linear-gradient(45deg, #fff, rgba(255,255,255,.2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.anchor {
    max-height: 20px;
}
.faq-anchor li:not(:last-of-type) {
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.faq-anchor h2 {
    background: -webkit-linear-gradient(45deg, #fff, rgba(255,255,255,.2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.weather-folder {
    background: rgba(255,255,255,.03);
    border-radius: 15px;
}
.bg-form {
    background: #1b1e23 url(../images/bg1.png) left top no-repeat;
}

.form-container {
    margin-top: 50px;
}
.form-container input[type=text],
.form-container input[type=password] {
    display: inline-block;
    width: auto;
    background: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.04);
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    padding: 0 4px;
}
.popup_ok {
    position: fixed;
    z-index: 1056;
    content: '';
    bottom: 6rem;
    right: 1rem;
    background: rgba(27,30,35,.95);
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(83,174,148,.8);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.popup_ok span {
    color: #53ae94;
}
.popup_ok img {
    max-height: 20px;
}
.important {
    background: rgba(255,255,255,.03);
    border-radius: 15px;
}
.important img {
    max-height: 30px;
}
.connect-acc div {
    background: rgba(255,255,255,.03);
    border-radius: 15px;
}
.connect-acc a {
    white-space: nowrap;
}
.connect-acc a:not(:first-of-type) {
    margin-left: 15px;
}

.connect-acc a span {
    transition: all 0.3s ease-in-out;

}
.connect-acc a:hover span {
    color: #fff;
}
.connect-acc img {
    width: 25px;
    max-height: 25px;
    margin-right: .5rem;
}
.qr_code img {
    width: 30px;
}
#showQR img {
    max-width: 400px;
    border-radius: 15px;
}

/* select avater */
.my-avatar-block > img {
    border-radius: 50%;
    width: 88px;
    height: 88px;
    border: 3px solid #fff;
    box-shadow: 0 8px 25px rgba(35,102,214,.5);
    object-fit: cover;
    animation: morph 3.5s linear infinite;
}
@keyframes morph {
    0%,
    100% {
        border-radius: 40% 60% 70% 30% /
        40% 40% 60% 50%;
    }
    34% {
        border-radius: 70% 30% 50% 50% /
        30% 30% 70% 70%;  
    }
    67% {
        border-radius: 100% 60% 60% 100% /
        100% 100% 60% 60%;
    }
}
.select_avatar_list img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    min-height: 80px;
    min-width: 80px;
    cursor: pointer;
    border: 2px solid #fff3;
    margin: 10px;
}
.select_avatar_list img.selected {
    border: 2px solid #fff;
}

/* select avater */
.my_avatar--change-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    content: '';
    top: 8px;
    right: -8px;
    background: #fff;
    border-radius: 50%;
    height: 30px;
    width: 30px;
}
.my_avatar--change-avatar img {
    width: 23px;
    height: 23px;
}
.p-bar {
    width: 100%;
    height: 6px;
    background: #fff2;
    border-radius: 3px;
}
.user_info_box {
    border: 2px solid transparent;
    border-radius: 80px 15px 15px 80px;
    background: url(../images/round-blur1-half.png) right center no-repeat, linear-gradient(#1b1e23, #1b1e23) padding-box,
    linear-gradient(to right, #4891e0, #9832cc) border-box;
}
.user_info--location img {
    max-height: 15px;
}
.user_info_box--data {
    color: #fff5;
}

.wrap_border-green {
    background: url(../images/bg-green.png) top right no-repeat;
}
.wrap_border-blue {
    background: url(../images/bg-blue.png) top right no-repeat;
}
.wrap_border-red {
    background: url(../images/bg-red.png) top right no-repeat;
}
.wrap_border {
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 15px;
}
.wrap_border small {
    color: #fff5;
    transition: all 0.3s ease-in-out;
}
.wrap_border:hover small {
    color: #fff;
}

.table--all {
    color: inherit;
    width: 100%;
}
.table--all tr {
    vertical-align: middle;
}
.table--all tr th {
    padding: 0 0 20px 0;
    font-weight: 300;
    color: #fff5;
}
.table--all tr td {
    padding: 10px 0;
    white-space: nowrap;
    vertical-align: middle;
}
.table--all tr td:first-of-type {
    color: #fff5;
}
.table--all tr:last-of-type td {
    padding: 10px 0 0 0;
}
.table--all tr:not(:last-of-type) {
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.table--all tr td.ps-icon {
    
}
.table--all tr td.ps-icon img {
    height: 30px;
    width: 30px;
    min-width: 30px;
    border-radius: 50%;
}
.table--all tr td img {
    height: 40px;
    width: 40px;
    min-width: 40px;
    border-radius: 50%;
}
.table--all tr td .status {
    transition: opacity 0.5s ease;
    border-radius: 8px;
    padding: 0.2rem 1rem;
    border: 1px solid #fff3;
    color: #fff8;
    font-size: .875em;
}
.table--all tr td .status.status--active {
    border: 1px solid #53ae94;
    color: #53ae94;
}
.table--all tr td .status.status--unactive {
    border: 1px solid #e2574c;
    color: #e2574c;
}
.partnersInfo img {
    width: 200px;
    height: 200px;
    max-width: 200px;
    border-radius: 50%;
    border: 2px solid #fff3;
}
.user_deposit--info {
    border-top: 1px solid rgba(255,255,255,.1);
}
.pagination {
    display: flex;
    justify-content: center;
    margin: 2rem 0 0 0;
}
.pagination .page-item {
    margin: 0 .5rem;
}
.pagination .page-item a {
    border: none;
    color: #fff;
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255,255,255,.1);
    padding: 0;
}
.pagination .page-item a.prev,
.pagination .page-item a.next {
    transition: all .3s ease-in-out;
}
.pagination .page-item a.prev {
    background: url(../images/next.svg) center center no-repeat;
    background-size: 30px;
    opacity: .6;
    rotate: 180deg;
}
.pagination .page-item a.prev:hover {
    background: url(../images/next.svg) center center no-repeat;
    background-size: 30px;
    opacity: 1;
    rotate: 180deg;
}
.pagination .page-item a.next {
    background: url(../images/next.svg) center center no-repeat;
    background-size: 30px;
    opacity: .6;
}
.pagination .page-item a.next:hover {
    background: url(../images/next.svg) center center no-repeat;
    background-size: 30px;
    opacity: 1;
}
.pagination .page-item.active a,
.pagination .page-item a:hover {
    background: rgba(255,255,255,.2);
}

.table--session {
    color: inherit;
}
.table--session tr {
    vertical-align: middle;
}
.table--session tr th {
    background: rgba(255,255,255,.1);
}
.table--session tr th:first-of-type {
    border-radius: 10px 0 0 10px;
}
.table--session tr th:last-of-type {
    border-radius: 0 10px 10px 0;
}
.table--session tr th,
.table--session tr td {
    border-bottom: none;
    box-shadow: none;
}
.table--session tr td {
    color: #fff5;
    font-size: .875em;
    padding-top: .5rem;
    padding-bottom: .5rem;
    transition: all 0.3s ease-in-out;
}
.table--session tr td:not(:first-of-type, :last-of-type) {
    padding-left: 1rem;
    padding-right: 1rem;
}
.user-session:hover .table--session tr td {
    color: #fff;
}
.with_close_session a i {
    color: #e2574c;
}

.security_status,
.deposit_status {
    border-radius: 8px;
    padding: .2rem 1rem;
}
.security_status--active,
.deposit_status--active {
    border: 1px solid #53ae94;
}
.security_status--active span,
.deposit_status--active span {
    color: #53ae94;
    font-size: .875em;
}
.security_status--unactive,
.deposit_status--unactive {
    border: 1px solid #e2574c;
}
.security_status--unactive span,
.deposit_status--unactive span {
    color: #e2574c;
    font-size: .875em;
}
.google-2fa--icon {
    height: 30px;
}

.need_help_button {
    display: inline-block;
    transition: opacity 0.5s ease;
    border-radius: 8px;
    padding: 0.2rem 1rem;
    border: 1px solid #fff3;
    color: #fff8;
    font-size: .875em;
    cursor: pointer;
}
.need_help_button a {
    color: #fff;
}

.input__wrapper {
    position: relative;
    margin-bottom: 1em;
}
.input__label img {
    width: 30px;
    max-width: 30px;
    margin-right: .5rem;
}
.error--text {
    display: block !important;
    color: #e2574c !important;
}
.input__wrapper--error label,
.input__wrapper--error small {
    color: #e2574c !important;
}
.input__wrapper--error input {
    border-bottom: 1px solid #e2574c;
}
.circle-input {
    max-width: 50px !important;
    height: 50px !important;
    line-height: 50px;
    border-radius: 15px;
    text-align: center !important;
    font-size: 30px !important;
    border: 1px solid rgba(255,255,255,.2) !important;
    display: inline-block;
    margin-right: 5px;
    font-weight: 600 !important;
    padding: 0 5px !important;
}
.number_round {
    height: 80px;
    width: 80px;
    min-width: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,.03);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255,255,255,.6);
}


.dashboard {
    background: url(../images/bg1.png) left center no-repeat, #1b1e23;
}
.dashboard .container-fluid {
    padding-left: 8rem;
    padding-right: 3rem;
}
/* nav-left sidebar */

.left-nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    background: rgba(0,0,0,.25);
    box-shadow: 10px 0 20px rgba(0,0,0,.2);
    backdrop-filter: blur(10px);
    width: 18rem;
    padding: 1.8rem .85rem;
    display: flex;
    flex-direction: column;
    transition: width .5s ease-in-out;
    z-index: 3;
    overflow: hidden;
    border-radius: 0 0 15px 0;
}
body.collapsed .left-nav {
    width: 80px;
}
body.collapsed .hide {
    position: absolute;
    display: none;
    pointer-events: none;
}
  /*? sidebar top */
.sidebar-top {
    position: relative;
    display: flex;
    margin-bottom: 32px;
    margin-top: 17px;
}
body.collapsed .sidebar-top {
    display: flex;
    flex-direction: column;
    padding: 0;
    justify-content: center;
}
.logo__wrapper {
    display: flex;
    justify-content: start;
    align-items: center;
}
.logo {
    width: 52px;
    height: 52px;
    background-color: rgba(0,0,0,.2);
    border-radius: 15px;
    padding: 10px;
}
.expand-btn {
    position: absolute;
    top: 75px;
    left: 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: .3s;
}
.expand-btn img {
    transform: rotate(180deg);
    width: 16px;
    height: 16px;
}
body.collapsed .expand-btn img {
    transform: rotate(360deg);
}
.sidebar-links {
    margin-top: 24px;
    padding: 8px 0px;
    border-top: 1px solid rgba(255,255,255,.1);
}
/*? menu links */
.sidebar-links ul {
    list-style-type: none;
    position: relative;
}
.sidebar-links li {
    position: relative;
}
.sidebar-links li a {
    margin: 8px 0px;
    color: #fff;
    display: flex;
    justify-content: start;
    align-items: center;
    border-radius: 15px;
    font-size: 1.1rem;
    height: 50px;
    transition: all 0.5s ease-in-out;
    padding: 0 15px;
}
.sidebar-links li a span {
    color: #fff;
    white-space: nowrap;
}
.sidebar-links li a img {
    height: 20px;
    width: 20px;
}
.sidebar-links .link {
    transition: all 1.5s ease-in-out;
    margin-left: 30px;
    opacity: 1;
}
.sidebar-links li a:hover, 
.sidebar-links li a:focus, 
.sidebar-links .active {
    width: 100%;
    text-decoration: none;
    background-color: rgba(0,0,0,.15);
    transition: all 100ms ease-in;
    border-radius: 10px;
    outline: none;
    color: #fff;
}
.sidebar-links .tooltip {
    opacity: 1 !important;
}
.sidebar-links .active {
    color: white;
}
  /*? bottom sidebar */
.sidebar-bottom {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: auto;
}
  /*? account part */
.sidebar__profile {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-direction: row;
    margin-top: 16px;
}
.avatar__wrapper {
    position: relative;
    display: flex;
}
.avatar {
    display: block;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(
      -20px 0 10px rgba(0, 0, 0, 0.1)
    );
}
.avatar__name {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.user-name {
    font-size: 0.95rem;
    font-weight: 800;
    text-align: left;
    white-space: nowrap;
}
.email {
    font-size: 0.9rem;
    white-space: nowrap;
    color: #fff9;
}
.online__status {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #53ae94;
    bottom: 2px;
    right: 2px;
}
  /* * Tooltip */
.tooltip {
    position: relative;
}
.tooltip .tooltip__content {
    visibility: hidden;
    background-color: #1b1e23;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 6px 12px;
    position: absolute;
    z-index: 1;
    left: 75px;
}
body.collapsed .tooltip:hover .tooltip__content,
body.collapsed .tooltip:focus .tooltip__content {
    visibility: visible;
}

#sourceInput {
    color: #fff5;
}
#sourceInput:hover {
    color: #fff;
}
.inviter--name img {
    width: 35px;
    max-width: 35px;
    border-radius: 50%;
}
.text-copy img {
    opacity: .7;
    cursor: pointer;
    position: absolute;
    top: calc(50% - 10px);
    right: 0;
    width: 20px;
    max-width: 20px;
    transition: all .2s ease-in-out;
}
.text-copy img:hover {
    opacity: 1;
}

/* chart */
#hightcharts-axis-line {
    stroke: #fff !important;
}
.highcharts-legend-item text {
    font-size: 1rem !important;
}

.banner_folder > img {
    border: 1px solid rgba(255,255,255,.2);
    padding: 5px;
}
.copyButton {
    opacity: .7;
    width: 20px;
    max-width: 20px;
    transition: all .2s ease-in-out;
    cursor: pointer;
    white-space: nowrap;
}
.copyButton:hover {
    opacity: 1;
}
.share_social_links img {
    cursor: pointer;
    width: 20px;
    max-width: 20px;
}

/* deposits */
.active_deposits_list ul:not(:last-of-type) {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.active_deposits_list--list li:not(:last-of-type) {
    margin-right: 1.5rem;
}
@property --progress-value {
    syntax: "<integer>";
    initial-value: 0;
    inherits: false;
}
.progress-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: 
      radial-gradient(closest-side, #172c57 89%, transparent 90% 100%),
      conic-gradient(#9832cc calc(var(--progress-value) * 1%), #fff2 0);
    animation: progress 2s 1 forwards;
}
.progress-bar::before {
    counter-reset: percentage var(--progress-value);
    content: counter(percentage) '%';
    animation: progress 2s 1 forwards;
}
.table-deposits--list h2 {
    color: #fff;
}
.deposit-closed {
    opacity: .3;
}
.deposit_info_in_modal .progress-bar {
    width: 120px;
    height: 120px;
}
.dep_main_info {
    border-top: 1px solid rgba(255,255,255,.1);
}

/* dashboard main */
.total_balance li h1 {
    font-weight: 300;
    position: relative;
    padding-left: 20px;
}
.total_balance li h1:before {
    content: '';
    position: absolute;
    left: 0;
    top: calc(50% - 3px);
    height: 6px;
    width: 6px;
    border-radius: 50%;
}
.total_balance li:nth-child(1) h1:before {
    background: #4891e0;
    box-shadow: 0 0 0 4px rgba(72,145,224,.3);
}
.total_balance li:nth-child(2) h1:before {
    background: #aea053;
    box-shadow: 0 0 0 4px rgba(174,160,83,.3);
}
.total_balance li:nth-child(3) h1:before {
    background: #53ae94;
    box-shadow: 0 0 0 4px rgba(83,174,148,.3);
}

.balances_list ul {
    width: 100%;
}
.balances_list li {
    min-width: 65px;
    position: relative;
}
.balances_list li .wallet_avaliable-info {
    content: '';
    position: absolute;
    top: 20px;
    right: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(0,0,0,.9) url(../images/info2.svg) center center no-repeat;
    background-size: 10px;
}
.balances_list li h4 {
    font-weight: 300;
}
.balances_list li.amount-disabled {
    opacity: .4;
    cursor: default;
    transition: all .3s ease-in-out;
}
.balances_list li.amount-disabled:hover {
    opacity: .7;
}
.balances_list li.amount-disabled a {
    color: inherit;
}
.balances_list li img {
    width: 30px;
    max-width: 30px;
    height: 30px;
}
.wallet_bg_account {
    border-radius: 2px;
    height: 4px;
    width: 100%;
    margin-top: -2px;
}
.ps-48 .wallet_bg_account {
    background: #f7931a;
    box-shadow: 0 10px 30px 5px rgba(247,147,26,.6);
}
.ps-69 .wallet_bg_account {
    background: #6680e3;
    box-shadow: 0 10px 30px 5px rgba(102,128,227,.6);
}
.ps-82 .wallet_bg_account {
    background: #53ae94;
    box-shadow: 0 10px 30px 5px rgba(83,174,148,.6);
}
.ps-92 .wallet_bg_account {
    background: #53ae94;
    box-shadow: 0 10px 30px 5px rgba(83,174,148,.6);
}
.ps-102 .wallet_bg_account {
    background: #53ae94;
    box-shadow: 0 10px 30px 5px rgba(83,174,148,.6);
}
.ps-68 .wallet_bg_account {
    background: #bebebe;
    box-shadow: 0 10px 30px 5px rgba(190,190,190,.6);
}
.ps-94 .wallet_bg_account {
    background: #F0B90B;
    box-shadow: 0 10px 30px 5px rgba(240,185,11,.6);
}
.ps-79 .wallet_bg_account {
    background: #ba9f33;
    box-shadow: 0 10px 30px 5px rgba(186,159,51,.6);
}
.ps-85 .wallet_bg_account {
    background: #fe0013;
    box-shadow: 0 10px 30px 5px rgba(254,0,19,.6);
}
.ps-72 .wallet_bg_account,
.ps-72 .wallet_bg_account {
    background: #000;
    box-shadow: 0 10px 30px 5px rgba(0,0,0,.6);
}
.other_balance .wallet_bg_account {
    background: #9832cc;
    box-shadow: 0 10px 30px 5px rgba(152,50,204,.6);
}

.my_partners-info h1 {
    font-weight: 300;
    position: relative;
    padding-left: 20px;
}
.my_partners-info h1:before {
    content: '';
    position: absolute;
    left: 0;
    top: calc(50% - 3px);
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: #53ae94;
    box-shadow: 0 0 0 4px rgba(83,174,148,.3);
}
.partners_accounts li img {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,1);
}
.partners_accounts li:not(:last-of-type) {
    margin-right: -5px;

}

.account_balance-list ul li {
    border-radius: 15px;
    position: relative;
    background: rgba(0,0,0,.25);
    backdrop-filter: blur(10px);
}
.account_balance-list ul li .ps-icon {
    width: 40px;
    max-width: 40px;
    height: 40px;
}
.account_balance-list ul li:not(:last-of-type) {
    margin-right: 15px;
}

.statistics_balances h1 {
    font-weight: 300;
    position: relative;
    padding-left: 20px;
}
.statistics_balances h1:before {
    content: '';
    position: absolute;
    left: 0;
    top: calc(50% - 3px);
    height: 6px;
    width: 6px;
    border-radius: 50%;
}
.statistics_balances li:nth-child(1) h1:before {
    background: #53ae94;
    box-shadow: 0 0 0 4px rgba(83,174,148,.3);
}
.statistics_balances li:nth-child(2) h1:before {
    background: #ff4250;
    box-shadow: 0 0 0 4px rgba(255,60,80,.3);
}
.statistics_balances .bal-plus {
    color: #53ae94;
}
.statistics_balances .bal-minus {
    color: #ff4250;
}

.body__container{
    display: flex;
}
.left__container{
    width: 25%;
    display: flex;
    justify-content: center;
    border-right: 1px solid rgba(255,255,255,.1);
}

.side__titles{
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.title__name{
    padding: 0.6rem 0.1rem;
    margin-bottom: 0.25rem;
}
.title__name h3 {
    margin-bottom: 0.20rem;
    text-align: right;
}
.title__name p{
    text-align: right;
    color: var(--shadow-color);
    font-size: 0.75rem;
}
.progress__bar__container{
    padding-top: 0.6rem ;
}
.progress__bar__container ul .active{
    background-color: var(--secondery-color);
}
.progress__bar__container ul li{
    display: flex;
    align-items:center ;
    justify-content: center;
    list-style: none;
    background: var(--shadow-color);
    padding: 0.5rem 0.6rem;
    margin-bottom: 1.2rem;
    border-radius: 50%;
    font-size: 1.4rem;
    color: #ffffff;
    margin-left:2rem ;
}
.progress__bar__container ul li::before{
    content: '';
    width: 1px;
    height: 11vh;
    position: absolute;
    background-color: var(--shadow-color);

}
.progress__bar__container ul .active::before{
    content: '';
    width: 1px;
    height: 11vh;
    position: absolute;
    background-color: var(--secondery-color);
}
.right__container{
    width: 65%;
    display: flex;
}
.right__container fieldset{
    border: none;
}
.sub__title__container{
    padding: 1rem 0 1.2rem 0;
    border-bottom: 1px solid #42434e;
}
.sub__title__container h2{
    color: #ffffff;
    margin: 0.4rem 0;
}

.sub__title__container p{
    font-size: 0.75rem;
    color: var(--shadow-color);
}
.active__form {
    display: none;
}
.input__container {
    width: 100%;
    margin-top: 1.25rem;
}
.buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}
.button_deposit--next {
    display: inline-flex;
    height: 50px;
    line-height: 48px;
    padding: 0 30px;
    border-radius: 35px;
    margin: 1rem 0 0 0;
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    font-size: 19px;
}
.button_deposit--next:hover {
    border: 1px solid rgba(255,255,255,.5);
    color: #fff;
}

.prev__btn {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
}

/*------------------------------- form-2 design --------------------*/

.selection {
    display: flex;
    align-items: center;
    border: 1px solid var(--shadow-color);
    padding: 0.5rem 0.5rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    width: 100%;
}

.selection:hover {
    border: 1px solid var(--secondery-color);
    background-color: var(--primary-color);
    cursor: pointer;
}

.imoji {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.4rem;
    margin:0  0.2rem ;
    margin-right: 0.4rem;
    font-size: 2rem;
    font-weight: 900;
    color: yellow;
    border-radius: 50%;
    background: var(--shadow-color);
}


.descriptionTitle h3 {
    color: #ffffff;
    margin-bottom: 4px;
}
.descriptionTitle p {
    font-size: 0.75rem;
    color: var(--shadow-color);
}


/*-------------------------------------- form-4 design----------------------------------------- */
.slider{
    display: flex;
    align-items: center;
    /* justify-content: center; */
    -webkit-appearance: none;
  appearance: none;
  width: 100%; 
  height: 0.75rem;
  background: #d3d3d3; 
  outline: none; 
  opacity: 0.7; 
  -webkit-transition: .2s;
  transition: opacity .2s;
  position: relative;
  margin-top: 3rem;
  /* margin-right:5rem ; */
}



.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px; 
    height: 25px; 
    border-radius: 50%;
    background: var(--secondery-color);
    cursor: pointer; 
    position: relative;
}

.slider::-webkit-range-thumb {
    width: 50px; 
    height: 50px;
    background: var(--secondery-color);
    cursor: pointer;
    position: relative;
}

.output__value{
    
    display: flex;
    align-items: center;
    justify-content: center;
    color:#ffffff;
    border-radius: 2em;
    padding: 0.8rem 0.8rem;
    position: absolute;
    background-color:var(--secondery-color);    
}

.output__value::after{
    content: '';
    width: 1.5rem;
    height: 1.5rem;
    background-color: black;
    transform: rotate(45deg);
    position: absolute;
    margin-top:40px;
    background-color: var(--secondery-color);
}

.animate__delay-6s {
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
}
.animate__delay-7s {
    -webkit-animation-delay: 7s;
    animation-delay: 7s;
}


.dashboard .container-offers .offer-card-folder:nth-child(2) .offer-card {
    padding: 1.5rem !important;
}
.dashboard .container-offers .offer-card-folder .offer-card ul li {
    font-size: .8rem !important;
}
.container-offers .offer-card-folder:nth-child(2) .offer-card a {
    background: rgba(255,255,255,.04);
    box-shadow: none;
}
@media (max-width: 767px) {
    .more-link-header {
        display: none;
    }
    .container-home-faq .accordion-body {
        display: block !important;
    }
    .accordion-body img {
        max-width: 100%;
        border-radius: 15px;
    }
    .container-home-faq .accordion-body .ai-video {
        margin-bottom: 1rem;
    }
    .container-home-faq .accordion-body .d-block {
        margin-left: 0 !important;
    }
    .ap-card {
        margin-top: 1.5rem;
    }
    .container-how-works .container {
        background: url(../images/ai-robot.png) center bottom no-repeat;
        background-size: 80%;
        padding-bottom: 16rem;
    }
    .container-how-works .row .row .col-12:nth-child(2),
    .container-how-works .row .row .col-12:nth-child(3) {
        margin-top: 1.5rem;
    }
    .container-features .row .col-12 .row .col-12:nth-child(1) .feature-card {
        margin-top: 1.5rem;
    }
    .container-features .container .row > .col-12:nth-child(1) {
        order: 2;
    }
    .container-features .container .row > .col-12:nth-child(2) {
        order: 1;
    }
    .container-features .row .row .col-12:nth-child(2) {
        margin-top: 1.5rem;
    }
    .container-offers .title {
        width: 100% !important;
    }
    .folder__funds-card:nth-child(1) {
        top: 50px;
        left: 0px;
        z-index: 2;
    }
    .folder__funds-card:nth-child(2) {
        top: 140px;
        left: 50px;
        z-index: 2;
    }
    .folder__funds-card:nth-child(3) {
        top: 250px;
        left: 105px;
        z-index: 2;
    }
    .phone-bg {
        margin-top: 3rem;
    }
    .header-bottom .trustpilot {
        margin-top: 1rem;
        justify-content: center !important;
        text-align: center !important;
    }
    .header-statistics li {
        display: block !important;
        text-align: center;
    }
    .header-statistics li>div {
        margin-top: 1rem;
        margin-left: 0 !important;
    }
    .logo-main {
        z-index: 6;
    }
    .logo-main a h1 {
        font-size: 1.5rem;
    }
    .navbar-collapse {
        position: absolute !important;
        content: '';
        top: 0px;
        right: 0px;
        width: 100%;
        min-width: calc(100vw) !important;
        border-radius: 0 0 15px 15px;
        z-index: 5;
        -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.08), 0 4px 15px 0 rgba(0, 0, 0, 0.05);
        box-shadow: rgba(72,145,224,.25) 0px 25px 20px -20px;
        background: url(../images/modal-footer-bg.png) bottom center no-repeat, linear-gradient(#1b1e23, #1b1e23) padding-box, linear-gradient(to top, rgba(72,145,224,.4), #fff2) border-box;
    }
    .navbar-collapse ul {
        text-align: center;
        padding: 5rem 1rem 1rem 1rem;
        margin: 0 !important;
    }
    .navbar-collapse ul li,
    .navbar-collapse ul li a {
        font-size: 16px !important;
    }
    .navbar-collapse ul li {
        padding-bottom: 20px !important;
    }
    .user-nav {
        display: flex;
        justify-content: center;
        padding-bottom: 2rem;
    }
    .navbar-toggler {
        z-index: 6;
    }
    footer ul {
        flex-wrap: wrap;
    }
    footer nav.mb-5 {
        margin-bottom: 1.5rem !important;
    }
    footer ul li {
        padding: 10px !important;
    }
    footer a img {
        width: 40px;
    }
    footer a h1 {
        margin-top: .5rem;
        font-size: 20px;
    }
    .button-border {
        font-size: 15px !important;
    }
    .mt-10 {
        margin-top: 5rem;
    }
    .container-home-faq .col-12:nth-child(2) {
        margin-top: 1.5rem;
    }
    .container-join-us .w-25,
    .container-join-us .w-75 {
        width: 100% !important;
    }
    #settings .col-12 {
        margin-bottom: 1rem;
    }
    .form-filter .col-md-6:nth-child(2) {
        margin-top: 1rem;
    }
    .partners-b-list .ms-auto {
        margin-top: 1rem;
        margin-left: 0 !important;
        text-align: center;
        width: 100%;
        font-size: 15px;
    }
    input[type=text], input[type=password], input[type=number], input[type=email], textarea, select, input[type=date] {
        font-size: 15px;
    }
    input[type=submit] {
        font-size: 15px;
    }
    .offer-card-folder:not(:last-of-type){
        margin-bottom: 1rem;
    }
    .offer-card-folder a {
        font-size: 14px !important;
    }
    .countdown-events .countdown-value {
        height: 45px;
        min-width: 50px;
    }
    .my-avatar-block > img {
        width: 70px;
        height: 70px;
    }
    .button-border-mini {
        height: 40px !important;
        line-height: 40px !important;
    }
    .select_avatar_list img {
        border-radius: 50%;
        width: 50px;
        height: 50px;
        min-height: 50px;
        min-width: 50px;
        cursor: pointer;
        border: 2px solid #fff3;
        margin: 3px;
    }
    .partners_accounts li:not(:last-of-type) {
        margin-right: -10px;
    }
    .balances_list ul {
        width: 250%;
        padding-bottom: 1rem;
    }
    .balances_list ul li:not(:first-of-type) {
        margin-left: 2rem !important;
    }
    .total_balance ul {
        justify-content: space-between;
    }
    .total_balance li:not(:first-of-type) {
        margin-left: 1rem !important;
    }
    .total_balance li h1,
    .statistics_balances h1,
    .my_partners-info h1 {
        font-size: 18px;
        padding-left: 15px;
    }
    .total_balance li h1 small,
    .statistics_balances li h1 small,
    .my_partners-info li h1 small {
        font-size: .8rem;
    }
    .wrap-content > h1 {
        text-align: center;
    }
    .header-middle .partners_accounts li img {
        width: 35px;
        height: 35px;
        min-width: 35px;
        border: 1px solid rgba(255,255,255,1);
    }
    .partners_accounts li img {
        width: 25px;
        height: 25px;
        min-width: 25px;
        border: 1px solid rgba(255,255,255,1);
    }
    .partners_accounts li.ms-5 {
        margin-left: 2rem !important;
    }
    body {
        font-size: 13px;
    }
    a {
        font-size: 12px !important;
    }
    .p-4 {
        padding: 1rem !important;
    }
    .mt-5 {
        margin-top: 2rem !important;
    }
    h1 {
        font-size: 28px;
    }
    h2 {
        font-size: 20px;
    }
    h3 {
        font-size: 18px;
    }
    h4 {
        font-size: 16px;
    }
    h5 {
        font-size: 14px;
    }
    .dashboard .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 6rem;
    }
    .psys-box {
        margin: 1.5rem 0 0 0;
        justify-content: space-between;
    }
    .psys-box img {
        max-height: 40px;
    }
    .psys-box a {
        display: none;
    }

    .padding-5 {
        padding: 1rem;
    }
    .left-nav {
        display: none;
    }
    .device-nav {
        display: flex;
        position: fixed;
        bottom: 2%;
        left: 0;
        width: 96%;
        background: rgba(0,0,0,.25);
        box-shadow: 0 -10px 20px rgba(0,0,0,.2);
        backdrop-filter: blur(10px);
        height: 60px;
        margin: 0 0 0 2%;
        border-radius: 15px;
        z-index: 2;
    }
    .device-nav ul a img {
        width: 20px;
        max-width: 20px;
    }
    .device-nav ul li.centered {
        background: #4891e0;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .device-nav ul li.centered img {
        width: 30px;
        max-width: 30px;
    }
    .nav_in_list {
        border-top: 1px solid rgba(255,255,255,.1);
    }
    .nav_in_list li {
        width: 33.33%;
    }
    .nav_in_list a {
        display: block;
        background: rgba(255,255,255,.1);
        border-radius: 15px;
        padding: 10px;
        text-align: center;
        margin: 5px;
        transition: all .5s ease-in-out;
    }
    .nav_in_list a:hover {
        background: rgba(255,255,255,.18);
    }
    .nav_in_list a small {
        margin-top: .2rem;
        display: block;
        font-size: .7rem;
    }
    .nav_in_list img {
        width: 20px;
        height: 20px;
    }
    .table--all tr:last-of-type td {
        padding: 10px 10px 10px 10px;
    }
    .table--all tr td {
        padding: 10px;
        white-space: nowrap;
    }
    .pagination {
        margin: 1rem 0;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .dashboard .container-fluid {
        padding-bottom: 2rem;
    }
    .balances_list ul {
        width: 180%;
        padding-bottom: 1rem;
    }
    .total_balance li h1,
    .statistics_balances h1,
    .my_partners-info h1 {
        font-size: 26px;
    }
    .pagination {
        margin: 1rem 0;
    }
}
@media (min-width: 1024px) and (max-width: 1399px) {
    .user_info_box {
        margin-top: 1.5rem !important;
    }
    .right-md-user {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .right-md-user > div {
        width: 49%;
    }
    .left-nav {
        height: calc(100vh + 50px);
    }
    .dashboard .container-fluid {
        padding-bottom: 2rem;
    }
    .table--all tr:last-of-type td {
        padding: 10px 10px 10px 10px;
    }
    .table--all tr td {
        padding: 10px;
        white-space: nowrap;
    }
    .pagination {
        margin: 1rem 0;
    }
}