@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Exo:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Secular+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Exo:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Nunito+Sans:opsz,wght@6..12,200&family=Nunito:wght@200&family=Secular+One&display=swap");

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}
body,
html {
  height: 100%;
}

.toggle-theme {
  height: 40px;
  width: 40px;
  background-color: var(--primary-color);
  color: var(--body);
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  font-size: 16px;
  text-align: center;
}
.toggle-theme i {
  line-height: 40px;
}
#list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#container {
  width: 50%;
  margin: 0 auto;
  margin-top: 20px;
}

.field-icon {
  position: absolute;
  top: 70%;
  right: 15px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.9); }

.mb-6 {
  margin-bottom: 25px;
}
.pe-0 {
  padding-left: 0 !important;
  padding-right: 12px !important;
}
.m-0 {
  margin: 0px !important;
}
.p-0 {
  padding: 0px;
}
.pull-right {
  float: left;
}

.tf-spacing-12 {
  height: 12px;
}
label,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
}
p {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 0;
}
.on_surface_color {
  color: var(--t-text);
  font-family: "Nunito Sans", sans-serif;
}
label {
  margin-bottom: 5px;
}
.fw_4 {
  font-weight: 400;
}
.mt-2 {
  margin-top: 8px !important;
}
.mt-5 {
  margin-top: 20px !important;
}
.fw_6 {
  font-weight: 600;
}
body {
  background: var(--body);
  color: #858792;
  font-family: Poppins, sans-serif;
  transition: all 0.3s ease 0s;
  scroll-behavior: smooth;
}

:root {
  --menuDark: #ffffff;
  --body: #ffffff;
  --primary-color: #ff0000;
  --not-color: #222223;
  --white-color: #fff;
  --t-text: #1f2f3e;
  --card-bg: #ffffff;
  --light-text: rgb(149, 143, 159);
  --box-bg: rgb(159, 168, 190);
  --dark-text: rgba(23, 22, 27);
  --border-color: #dcdce9;
  --box-color: #000;
  --group-color: #9fa8be;
  --chain-color:#000;
}
body.dark {
  --menuDark: #161129;
  --body: #030108;
  --primary-color: #ff0000;
  --not-color: #ffffff1a;
  --white-color: #fff;
  --t-text: #ffffff;
  --card-bg: #161129;
  --light-text: rgba(155, 163, 170);
  --box-bg: rgba(162, 160, 177);
  --dark-text: rgba(255, 255, 255);
  --border-color: #2d1f3b;
  --box-color: #2d1f3b;
  --group-color: #212529;
  --chain-color:#fff;
}
ul {
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
}
ol,
ul {
  list-style: none;
}
li {
  list-style: none;
  display: inline-block;
  font-size: 14px;
}

a,
button {
  text-decoration: none;
  outline: none;
  color: var(--white);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover,
a:focus,
a.active {
  text-decoration: none;
  outline: none;
  color: var(--white-color);
}
button {
  outline: 0 !important;
  box-shadow: none;
  border: none;
  padding: 0;
}
button:focus {
  box-shadow: none;
}
ul,
ol {
  padding: 0;
}
section,
.section-t-space {
  padding-top: 25px;
}

.section-b-space {
  padding-bottom: 25px;
}
.panel-space {
  padding-top: 100px !important;
}
input,
select {
  font-size: 100%;
  margin: 0;
  max-width: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Secular One", sans-serif;
}
select,
textarea,
input[type="text"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"] {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #dddddd;
  color: var(--dark-text);
  background: var(--group-color);
  padding: 13px 14px;
  border-radius: 8px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-family: "Secular One", sans-serif;
}
.input-field {
  position: relative;
}
.input-field .search-field {
  padding-left: 40px;
  background: var(--group-color);
  border-color: var(--border-color);
}
.input-field .search-field:focus {
  border-color: var(--border-color);
}
input[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.tf-checkbox {
  position: relative;
  border: 1px solid #dddddd;
  border-radius: 6px;
  background: none;
  cursor: pointer;
  outline: 0;
  height: 24px;
  width: 24px;
  opacity: 0.5;
}
.tf-checkbox:hover {
  opacity: 1;
}
.tf-checkbox:checked {
  background-color: #000;
  opacity: 1;
}
.tf-checkbox::before {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  margin: -1px -1px 0 -1px;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
}
.custom-container {
  padding: 0 20px;
}
.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 15px;
}
.title {
  border-bottom: 1px dashed var(--group-color);
  padding-bottom: 12px;
}
.title h2 {
  color: var(--dark-text);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
  font-family: "Secular One", sans-serif;
}
.title a {
  color: rgb(98, 44, 253);
  font-size: 14px;
  font-weight: 400;
}
.section-mt-165 {
  margin-top: 75px;
}
@media (min-width: 992px) {
  .section-mt-165 {
    margin-top: 115px;
  }
}
@media (min-width: 1400px) {
  .section-mt-165 {
    margin-top: 135px;
  }
}
@media (min-width: 1800px) {
  .section-mt-165 {
    margin-top: 160px;
  }
}
.section-gap-tb-165 {
  padding-top: 75px;
  padding-bottom: 75px;
}
@media (min-width: 992px) {
  .section-gap-tb-165 {
    padding-top: 115px;
    padding-bottom: 115px;
  }
}
@media (min-width: 1400px) {
  .section-gap-tb-165 {
    padding-top: 135px;
    padding-bottom: 135px;
  }
}
@media (min-width: 1800px) {
  .section-gap-tb-165 {
    padding-top: 160px;
    padding-bottom: 160px;
  }
}

/*=====================
    Button CSS start
==========================*/
.btn {
  margin-top: 30px;
  padding: calc(10px + 4 * (100vw - 320px) / 1600);
}

.theme-btn {
  background: linear-gradient(142.56deg, #ff0000 -1.68%, #622cfd 62.12%);
  color: rgb(255, 255, 255);
  font-weight: 600;
  font-size: calc(16px + 2 * (100vw - 320px) / 1600);
  border-radius: 6px;
  font-family: "Secular One", sans-serif;
}
.theme-btn:hover {
  color: rgb(255, 255, 255);
}
.theme-btn:active {
  background-color: var(--primary-color);
  color: rgb(255, 255, 255) !important;
  border: 1px solid var(--primary-color);
}
.gray-btn { background: var(--card-bg);
  color: var(--light-text);
  border-radius: 6px;
  font-weight: 400;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  font-family: "Secular One", sans-serif;
}
.gray-btn:active {
  border: none;
}
.gray-btn:hover {
  background-color: var(--card-bg);
  color: var(--light-text);
}
.btn-link {
  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;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: var(--light-text);
  
}
.btn-link:hover {
  color: var(--light-text);
}
/**======Bottom Menu start ======**/

.navbar-menu {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-box-shadow: -10px 1px 40px var(--dark-text);
  box-shadow: -10px 1px 40px var(--dark-text);
  z-index: 2;
}
.navbar-menu:after {
  content: "";
  background: var(--menuDark);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-mask-image: radial-gradient(
    circle at top,
    transparent 31px,
    black 32px
  );
  border-radius: 10px 10px 0 0;
}
@media (max-width: 767px) {
  .navbar-menu {
    max-width: 100%;
  }
}
.navbar-menu .scanner-bg {
  position: absolute;
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 100%;
  left: 50%;
  top: -50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  z-index: 0;
}
.navbar-menu .scanner-bg .scanner-btn {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: linear-gradient(142.56deg, red -1.68%, #622cfd 62.12%);
  border-radius: 100%;
  z-index: 1;
  color: var(--white-color);
}
.navbar-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px;
}
.navbar-menu ul:after,
.navbar-menu ul::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: calc(50% - 32px);
  height: 100%;
  z-index: -1;
  background-color: rgba(var(--white-color), 1);
  border-radius: 10px 10px 0 0;
}
.navbar-menu ul::before {
  left: unset;
  right: 0;
}
.navbar-menu ul li {
  position: relative;
  color: var(--light-text);
  text-align: center;
  width: 20%;
}
.navbar-menu ul li a {
  color: var(--light-text);
}
.navbar-menu ul li a .icon {
  width: 20px;
  font-size: 26px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  color: var(--t-text);
  justify-content: center;
}
.navbar-menu ul li a .icon .active {
  display: none;
}
.navbar-menu ul li a .icon .unactive {
  display: block;
}
.navbar-menu ul li a span {
  font-size: 14px;
  font-weight: 500;
}
.navbar-menu ul li.active::after {
  content: "";
  position: absolute;
  top: -17px;
  left: 50%;
  width: 30px;
  height: 4px;
  background: var(--primary-color);
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  border-radius: 10px;
}
.navbar-menu ul li.active .icon {
  color: var(--primary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.navbar-menu ul li.active .icon .active {
  display: block;
}
.navbar-menu ul li.active .icon .unactive {
  display: none;
}
.navbar-menu ul li.active h5 {
  margin-top: 4px;
  display: block;
  color: var(--primary-color);
  font-weight: 400;
  font-size: 14px;
}
.navbar-menu ul li h5 {
  margin-top: 4px;
  display: block;
  color: var(--t-text);
  font-weight: 400;
  font-size: 14px;
  font-family: "Secular One", sans-serif;
}

/**======Bottom Menu End ======**/
/**======Main Header css start ======**/
.page-wrapper .page-header .header-wrapper .nav-right > ul > li i {
  background-color: var(--not-color);
  padding: 10px 12px;
  border-radius: 5px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 17px;
  color: var(--white-color);
  margin-right: 15px;
}

.page-wrapper.compact-small .page-header .header-wrapper .header-logo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-wrapper.compact-small .page-header .header-wrapper .logo-wrapper {
  display: block !important;
  margin-right: 15px;
}
.page-wrapper.compact-small .page-header .header-wrapper .logo-wrapper {
  margin-left: 20px;
  margin-right: unset;
}
.page-wrapper.compact-small .page-header .header-wrapper .logo-wrapper img {
  height: 50px;
  background-color: var(--not-color);
  padding: 10px 12px;
  border-radius: 5px;
}
.page-wrapper {
  position: relative;
}
.page-wrapper .page-header {
  max-width: 100vw;
  position: fixed;
  top: 0;
  z-index: 9;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: var(--menuDark);
  border-bottom: 10px solid var(--border-color);
}
.page-wrapper .page-header .header-wrapper {
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 22px 4px;
  position: relative;
  gap: 53px;
}
@media (max-width: 1399px) {
  .page-wrapper .page-header .header-wrapper {
    padding: 22px 15px;
    gap: 0px;
  }
}

.page-wrapper .page-header .header-wrapper .nav-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right.right-header
  ul
  li
  .profile-media
  .flex-grow-1 {
  margin-left: 15px;
  font-family: "Nunito Sans", sans-serif;
  color: #fff;
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right.right-header
  ul
  li
  .profile-media
  .flex-grow-1
  span {
  font-weight: 700;
}
.page-wrapper
  .page-header
  .header-wrapper
  .nav-right.right-header
  ul
  li
  .profile-media
  .flex-grow-1
  p {
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  font-family: "Nunito Sans", sans-serif;
  color: #fff;
}
.page-wrapper.material-icon
  .page-header
  .header-wrapper
  .nav-right.right-header
  ul
  li
  .profile-media
  img {
  border-radius: 50px;
}
.page-wrapper.material-icon
  .page-header
  .header-wrapper
  .nav-right.right-header
  ul
  li
  .profile-media
  .flex-grow-1
  p {
  color: rgba(255, 255, 255, 0.7);
}
.page-wrapper .page-header .header-wrapper .nav-right > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.page-wrapper .page-header .header-wrapper .nav-right > ul > li {
  padding: 6px 10px;
  display: inline-block;
  position: relative;
}
.page-wrapper .page-header .header-wrapper .nav-right > ul > li .badge {
  position: absolute;
  right: 0px;
  top: -1px;
  padding: 2px;
  border: 1.5px solid #fff;
  background-color: #ff6150 !important;
  font-family: work-Sans, sans-serif;
}
.page-wrapper .page-header .header-wrapper .nav-right > ul > li span ul {
  left: inherit;
  right: -10px;
  width: 130px;
}
.page-wrapper .page-header .header-wrapper .nav-right > ul > li span ul:before,
.page-wrapper .page-header .header-wrapper .nav-right > ul > li span ul:after {
  left: inherit;
  right: 10px;
}
.page-wrapper .page-header .header-wrapper .nav-right > ul > li span ul li {
  display: block;
}
.page-wrapper .page-header .header-wrapper .nav-right > ul > li span ul li a {
  font-size: 14px;
  color: #31322d;
}
.page-wrapper .page-header .header-wrapper .nav-right > ul > li span ul li a i {
  margin-left: 10px;
  font-size: 13px;
  color: #31322d;
}
.page-wrapper .page-header .header-wrapper .nav-right .notification-box {
  position: relative;
}
.page-wrapper.compact-small .page-header {
  width: calc(100% - 0px);
}
.onhover-dropdown {
  cursor: pointer;
  position: relative;
}
/**======Main Header css Ends ======**/

/**======wallet css start ======**/
.wallet-card-section {
  position: relative;
}
.section {
  padding: 0 16px;
}
.section.full {
  padding: 0;
}
.wallet-card-section:before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  content: "";
  display: block;
  height: 140px;
}
.wallet-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 20px 24px;
  margin-top: 50px;
  border: 1px solid var(--border-color);
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 4px 4px 0px -1px var(--box-color);
  box-shadow: 4px 4px 0px -1px var(--box-color);
  border-color: var(--border-color);
}
.wallet-card .balance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  height: 100px;
}
.wallet-card .balance .left {
  padding-right: 10px;
}
.wallet-card .balance .right {
  padding: 0;
}
.wallet-card .balance .right .button {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1em;
  color: #6236ff;
  background: rgba(98, 54, 255, 0.1);
  width: 50px;
  height: 64px;
  font-size: 26px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  -webkit-box-shadow: 4px 4px 0px -1px var(--box-color);
  box-shadow: 4px 4px 0px -1px var(--box-color);
  border-color: var(--border-color);
}
.wallet-card .balance .right .button:hover {
  background: #6236ff !important;
  color: #fff !important;
}
.wallet-card .balance .title {
  color: var(--t-text);
  font-weight: 500;
  display: block;
  font-family: "Secular One", sans-serif;
  margin-bottom: 8px;
}
.wallet-card .balance .total {
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--t-text);
  font-family: "Secular One", sans-serif;
  line-height: 1em;
  font-size: 32px;
}
.wallet-card .wallet-footer {
  border-top: 1px solid #dcdce9;
  padding-top: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.wallet-card .wallet-footer .item {
  flex: 1;
  text-align: center;
}
.wallet-card .wallet-footer .item a {
  display: block;
}
.wallet-card .wallet-footer .item a:active {
  transform: scale(0.94);
}
.wallet-card .wallet-footer .item .icon-wrapper {
  background: #6236ff;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #fff;
  font-size: 24px;
  margin-bottom: 14px;
  border: 1px solid var(--border-color);
  -webkit-box-shadow: 4px 4px 0px -1px var(--box-color);
  box-shadow: 4px 4px 0px -1px var(--box-color);
  border-color: var(--border-color);
}
.wallet-card .wallet-footer .item strong {
  display: block;
  color: var(--t-text);
  font-weight: 700;
  font-family: "Nunito Sans", sans-serif;
  font-size: 11px;
  line-height: 1.2em;
}
/**======wallet css Ends ======**/

/**======service css Ends ======**/
.service-box {
  width: 56px;
  height: 56px;
  background: var(--card-bg);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  -webkit-box-shadow: 4px 4px 0px -1px var(--box-color);
  box-shadow: 4px 4px 0px -1px var(--box-color);
  border-color: var(--border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

  margin-left: auto;
  margin-right: auto;
}
.service-box .service-icon {
  --Iconsax-Color: var(--dark-text);
  color: var(--dark-text);
}
.service-section h5 {
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 0;
}
/**======service css Ends ======**/

/**======tf-panel css start ======**/
.tf-panel .panel-box {
  position: fixed;
  z-index: 1300;
  opacity: 0;
  visibility: hidden;
  background: var(--card-bg);
  will-change: transform;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.tf-panel .panel-up {
  width: 100%;
  left: 0;
  bottom: 0;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -moz-tranform: translateY(100%);
}
.tf-panel .panel-noti {
  z-index: 1000;
  top: 0;
  max-width: 800px;
  margin: 0 auto;
}
.tf-panel .panel-noti #app-wrap {
  height: 100vh;
  overflow-x: hidden;
  background: var(--card-bg);
  scrollbar-width: thin;
  scrollbar-color: #ffffff;
}
.tf-panel .panel-noti #app-wrap::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}
.tf-panel .panel-noti #app-wrap::-webkit-scrollbar-thumb,
.tf-panel .panel-noti #app-wrap:-webkit-scrollbar-track {
  background-color: transparent;
}
.tf-panel .header .clear-panel {
  position: absolute;
  left: 16px;
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
}
.tf-container {
  max-width: 1320px;
  padding-left: 16px;
  padding-right: 16px;
  margin-left: auto;
  margin-right: auto;
}

#app-wrap {
  padding: 50px 0px 62px;
}
#app-wrap.style1 {
  padding-bottom: 0px;
}

.is-fixed {
  position: fixed;
  top: 0;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  z-index: 999;
}

.tes-noti .nav-tab {
  width: fit-content;
}
.tes-noti .nav-tab a {
  white-space: nowrap;
  padding: 4px 12px;
  border: 1px solid #ededed;
  border-radius: 95px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}

.tes-noti .nav-tab.active a {
  background: #533dea;
  color: #ffffff;
}
.nav-tabs {
  border-bottom: 0;
}
.nav-tabs .nav-item {
  width: 100%;
  flex: 1;
  text-align: center;
}
.nav-tabs .nav-item .nav-link {
  border: 0;
  color: #1e1e1e;
  font-size: 14px;
  line-height: 22px;
  border-bottom: 1px solid transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.nav-tabs .nav-item .nav-link .icon {
  font-size: 15px;
}
.nav-tabs .nav-item .nav-link.active,
.nav-tabs .nav-item .nav-link:hover {
  border: 0;
}
.nav-tabs .nav-item .nav-link.active {
  color: #533dea;
}
.nav-tabs.lined .nav-link.active {
  border-bottom: 1px solid #533dea;
}
.nav-tabs.tab-icon .nav-link .icon {
  font-size: 20px;
}

.noti-list {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.noti-list .icon-box {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
}
.noti-list .content-right {
  flex: 1;
}
.noti-list .content-right .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.noti-list .content-right .title h3,
.noti-list .content-right .title a {
  font-size: 16px;
  line-height: 24px;
  color: var(--t-text);
  font-family: "Secular One", sans-serif;
}
.noti-list .content-right .title span {
  font-size: 10px;
  line-height: 16px;
}
.noti-list .content-right .desc {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.noti-list .content-right .desc .dot {
  padding: 4px;
  display: inline-block;
  border-radius: 1000px;
  background: #ea3434;
}

.tf-panel .panel_overlay,
.tf-panel .overlay-inner {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1200;
  background: rgba(2, 22, 56, 0.3);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.tf-panel.panel-open .panel-box,
.tf-panel.panel-open .panel_overlay,
.tf-panel.panel-open .overlay-inner {
  opacity: 1;
  visibility: visible;
}
.tf-panel.panel-open .panel-top-up,
.tf-panel.panel-open .panel-down,
.tf-panel.panel-open .panel-up {
  transform: translateY(0%);
  -webkit-transform: translateY(0%);
  -moz-tranform: translateY(0%);
}
.tf-statusbar {
  background: var(--card-bg);
  padding: 0px 16px;
  margin: 0px -16px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  height: 50px;
}
/**======tf-panel css Ends ======**/

/**======onboarding css start ======**/
.onboarding-section {
  padding-top: 145%;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  background: linear-gradient(162.09deg, #24136c -9.71%, #17161b 107.99%);
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}
.onboarding-section .button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.onboarding-section.highlight {
  padding-top: 0;
  overflow: hidden;
}

.onboarding-section .poster-wapper {
  width: 100%;
  position: relative;
  z-index: 1;
  padding-bottom: 70px;
  overflow: hidden;
}
.onboarding-section .poster-wapper:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: calc(240vw + -80 * (100vw - 320px) / 1600);
  height: 280%;
  background-color: var(--body);
  z-index: -1;
  border-radius: 100%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.onboarding-section .poster-wapper .poster-box-chain {
  height: 190px;
  width: 135px;
  margin: 0 auto;
  position: relative;
}
.onboarding-section .poster-wapper .poster-box-chain.poster-box-chain1 {
  height: 90px;
}
.onboarding-section .poster-wapper .poster-box-chain .left-chain {
  border-left: 1px dashed var(--chain-color);
  height: 100%;
  position: absolute;
  left: 0;
  top: -5px;
  -webkit-transform: rotate(2deg);
  transform: rotate(2deg);
}
.onboarding-section .poster-wapper .poster-box-chain .left-chain::after {
  content: "";
  border-radius: 100%;
  background-color: var(--chain-color);
  width: 10px;
  height: 10px;
  position: absolute;
  left: -5px;
}
.onboarding-section .poster-wapper .poster-box-chain .right-chain {
  border-right: 1px dashed var(--chain-color);
  height: 100%;
  position: absolute;
  right: 0;
  top: -5px;
  -webkit-transform: rotate(350deg);
  transform: rotate(350deg);
}
.onboarding-section .poster-wapper .poster-box-chain .right-chain::after {
  content: "";
  border-radius: 100%;
  background-color: var(--chain-color);
  width: 10px;
  height: 10px;
  position: absolute;
  right: -5px;
}
.onboarding-section .poster-wapper .poster-box {
  width: 200px;
  height: 62px;
  border: 1px solid #ffffff;
  position: relative;
  text-align: center;
  margin: 20px auto;
  font-family: "Secular One", sans-serif;
}
.onboarding-section .poster-wapper .poster-box.poster-box1 {
  width: 245px;
  height: 72px;
}
.onboarding-section .poster-wapper .poster-box.color1 {
  background: linear-gradient(142.56deg, #ff0000 -1.68%, #622cfd 62.12%);
  -webkit-box-shadow: 5px 5px 0px black;
  box-shadow: 5px 5px 0px black;
}
.onboarding-section .poster-wapper .poster-box.color1 h2 {
  color: #ffffff;
}
.onboarding-section .poster-wapper .poster-box.color1 h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
}
.onboarding-section .poster-wapper .poster-box.color2 {
  background-color: rgb(244, 238, 255);
  -webkit-box-shadow: 5px 5px 0px rgb(186, 175, 205);
  box-shadow: 5px 5px 0px rgb(186, 175, 205);
}
.onboarding-section .poster-wapper .poster-box.color2 h2 {
  color: #000000;
}
.onboarding-section .poster-wapper .poster-box.box1 {
  margin-top: -10px;
}
.onboarding-section .poster-wapper .poster-box.box1 .top-line {
  position: relative;
  top: -93px;
  left: -115px;
}
.onboarding-section .poster-wapper .poster-box.box2 {
  -webkit-transform: rotate(5deg);
  transform: rotate(5deg);
}
.onboarding-section .poster-wapper .poster-box.box3 {
  -webkit-transform: rotate(-4deg);
  transform: rotate(-4deg);
}
.onboarding-section .poster-wapper .poster-box.box4 .bottom-line {
  position: relative;
  top: -90px;
  right: -125px;
}
.onboarding-section .poster-wapper h2 {
  font-size: 32px;
  font-weight: 600;
  padding: 12px 30px;
}
.onboarding-section .poster-wapper .card-list {
  margin: 100px auto 160px;
  max-width: 13%;
}
@media (max-width: 1400px) {
  .onboarding-section .poster-wapper .card-list {
    max-width: 20%;
  }
}
@media (max-width: 991px) {
  .onboarding-section .poster-wapper .card-list {
    max-width: 40%;
  }
}
@media (max-width: 576px) {
  .onboarding-section .poster-wapper .card-list {
    max-width: 60%;
  }
}
@media (max-width: 460px) {
  .onboarding-section .poster-wapper .card-list {
    max-width: 100%;
  }
}
.onboarding-section .poster-wapper .card-list li {
  margin: -100px 0;
  z-index: 1;
  position: relative;
}
.onboarding-section .poster-wapper .card-list li .card-img.card5 {
  -webkit-transform: scale(0.6);
  transform: scale(0.6);
}
.onboarding-section .poster-wapper .card-list li .card-img.card4 {
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
}
.onboarding-section .poster-wapper .card-list li .card-img.card3 {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}
.onboarding-section .poster-wapper .card-list li .card-img.card2 {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.onboarding-section .poster-wapper .card-list li .card-img.card {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.onboarding-section p {
  width: 85%;
  margin: 0 auto;
  padding: 30px 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--light-text);
  text-align: center;
  font-family: "Secular One", sans-serif;
}
.onboarding-section .onboarding-next {
  width: 53px;
  height: 53px;
  border: 2px dashed rgb(98, 44, 253);
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.onboarding-section .onboarding-next .bx {
  width: 45px;
  height: 45px;
  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;
  background: linear-gradient(142.56deg, #ff0000 -1.68%, #622cfd 62.12%);
  border-radius: 100%;
  padding: 8px;
  color: var(--white-color);
}
.onboarding-section .onboarding-next::after {
  content: none;
}
.onboarding-section .onboarding-prev {
  width: 53px;
  height: 53px;
  border: 2px dashed rgb(98, 44, 253);
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
 
}
.onboarding-section .onboarding-prev .bx {
  width: 45px;
  height: 45px;
  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;
  background: linear-gradient(142.56deg, #ff0000 -1.68%, #622cfd 62.12%);
  border-radius: 100%;
  padding: 8px;
  color: var(--white-color);
}
.onboarding-section .onboarding-prev::after {
  content: none;
}
/**======onboarding css Ends ======**/

/**======send css Start ======**/
.header-panel {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
  z-index: 1;
}
.header-panel .back-btn {
  width: 40px;
  height: 40px;
  padding: 10px;
  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;
  font-size: 18px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  -webkit-box-shadow: 4px 4px 0px -1px var(--box-color);
  box-shadow: 4px 4px 0px -1px var(--box-color);
  border-color: var(--border-color);
  border-radius: 6px;
  z-index: 1;
}
.header-panel .back-btn i {
  color: var(--dark-text);
}
.header-panel h2 {
  position: absolute;
  font-weight: 600;
  font-size: calc(18px + 2 * (100vw - 320px) / 1600);
  width: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--dark-text);
  font-family: "Secular One", sans-serif;
}

.tab-style1 {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 100%;
  margin: 30px auto 40px;
  border-radius: 6px;
  overflow: hidden;
}
.tab-style1 .nav-item {
  color: var(--white-color);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style-type: none;
  cursor: pointer;
  border-radius: 0px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 6px;
}
.tab-style1 .nav-item .nav-link {
  width: 100%;
  padding: 10px;
  font-weight: 500;
  border-radius: 0;
  color: var(--t-text);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background-color: var(--border-color);
  font-family: "Secular One", sans-serif;
}
.tab-style1 .nav-item .nav-link.active {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.tab-style1 .nav-item .nav-link.active:hover {
  color: var(--white-color);
}
.tf-form .group-input {
  position: relative;
  margin-bottom: 37px;
}
.tf-form .group-input label {
  position: absolute;
  top: -28px;
  padding: 0px 5px;
  left: 12px;
  font-family: "Secular One", sans-serif;
}

.box-custom-select {
  background-color: var(--group-color);
  font-family: "Secular One", sans-serif;
}
.box-custom-select .default-select {
  display: none;
}
.box-custom-select #box-select {
  padding-left: 0px;
}
.box-custom-select #box-select img,
.box-custom-select .btn-select img {
  width: 28px;
  height: 28px;
}
.box-custom-select #box-select li {
  list-style: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-text);
  padding: 13px 14px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  background: var(--group-color);
  font-family: "Secular One", sans-serif;
}
.box-custom-select #box-select li:hover {
  background-color: var(--card-bg);
}
.box-custom-select #box-select li span,
.box-custom-select .btn-select li span {
  margin-left: 16px;
  color: var(--dark-text);
}
.box-custom-select .banks-select {
  display: none;
  border: 1px solid #dddddd;
  border-radius: 5px;
  margin-top: 2px;
}
.box-custom-select .open {
  display: show !important;
}
.box-custom-select .btn-select {
  width: 100%;
}
.box-custom-select .lang-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 19px;
  font-weight: 500;
  border: 1px solid #dddddd;
  color: var(--primary-color);
  padding: 8px 14px;
  border-radius: 8px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.group-input .credit-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 4px;
  top: 12px;
  right: 14px;
  color: var(--primary-color);
  font-size: 15px;
  line-height: 16px;
  font-family: "Secular One", sans-serif;
}
.group-input .credit-card i {
  font-size: 19px;
}
.group-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Secular One", sans-serif;
}
.group-checkbox .tf-checkbox.st1 {
  width: 16px;
  height: 16px;
}
.group-checkbox .tf-checkbox.st1:checked {
  background-color: #533dea;
}
.group-checkbox .tf-checkbox.st1::before {
  right: 42%;
  top: 52%;
  width: 5px;
  height: 7px;
}
.bottom-navigation-bar.bottom-btn-fixed {
  padding: 16px 0px;
  box-shadow: none;
}
.bottom-navigation-bar.st2 {
  width: unset;
  left: 16px;
  right: 16px;
}
.error-modal .modal-content {
  border: none;
  background: transparent;
}
.error-modal .modal-content .modal-header {
  border-bottom: 1px solid var(--box-bg);
  background-color: var(--body);
}
.error-modal .modal-content .modal-header .modal-title {
  margin-left: auto;
  margin-right: auto;
  color: var(--dark-text);
}
.error-modal .modal-content .modal-body .error-img {
  text-align: center;
  margin-top: 25px;
  width: calc(115px + 10 * (100vw - 320px) / 447);
  margin-left: 35%;
}

.error-modal .modal-content .close-btn {
  position: absolute;
  left: 50%;
  bottom: -24px;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  width: 50px;
  height: 50px;
  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;
  background-color: var(--body);
  border-radius: 100%;
  border: 1px solid var(--border-color);
  -webkit-box-shadow: 4px 4px 0px -1px var(--box-color);
  box-shadow: 4px 4px 0px -1px var(--box-color);
  border-color: var(--border-color);
}
.error-modal .modal-content .close-btn i {
  color: var(--primary-color);
  font-size: 19px;
}
.error-modal .modal-content .modal-body {
  padding: 0 15px 40px;
  position: relative;
  -webkit-mask-image: radial-gradient(
    circle at bottom,
    transparent 31px,
    black 32px
  );
  background-color: var(--body);
  border-radius: 0 0 7px 7px;
}

.error-modal .modal-content .modal-body h3 {
  text-align: center;
  margin-top: 20px;
  color: var(--dark-text);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}
.app-header {
  background: url(../img/banner-home.png);
  padding: 16px 0px 84px;
  margin: 0px -16px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.app-header h4 {
  font-size: 14px;
  line-height: 22px;
  color: var(--white-color);
}
.app-header h1 {
  font-size: 32px;
  line-height: 40px;
  color: var(--white-color);
}
.app-header.st1 {
  padding: 12px 0px 96px;
}

.transfer-section .tf-balance-box {
  padding: 16px;
}
.transfer-confirm .tf-card-block {
  margin-top: 4px;
  padding: 0;
  box-shadow: none;
  gap: 16px;
}
.tf-balance-box {
  padding: 12px 0px;
  background: var(--card-bg);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  -webkit-box-shadow: 4px 4px 0px -1px var(--box-color);
  box-shadow: 4px 4px 0px -1px var(--box-color);
  border-color: var(--border-color);
}
.transfer-confirm .line {
  width: 100%;
  height: 1px;
  border: 1px solid #ededed;
  margin: 10px 0px;
}
.transfer-confirm .bottom .tf-card-block {
  gap: 12px;
}
.transfer-confirm .bottom .tf-card-block img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.tf-card-block {
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: 0px 8px 15px 0px rgba(24, 25, 27, 0.05);
  background: var(--card-bg);
}

.tf-card-block .logo-img {
  width: 48px;
  height: 32px;
  border: 1px solid var(--border-color);
  -webkit-box-shadow: 4px 4px 0px -1px var(--box-color);
  box-shadow: 4px 4px 0px -1px var(--box-color);
  border-color: var(--border-color);
}
.tf-card-block img {
  width: 100%;
  height: auto;
}
.tf-card-block .info h4 {
  font-size: 14px;
  line-height: 22px;
  color: var(--t-text);
}
.card-secton {
  position: relative;
  margin-top: -63px;
}

.transfer-list {
  padding-bottom: 10px;
}
.transfer-list .list-view {
  margin-bottom: 50px;
}
.list-view {
  padding: 12px;
  border: 1px solid var(--border-color);
  -webkit-box-shadow: 4px 4px 0px -1px var(--box-color);
  box-shadow: 4px 4px 0px -1px var(--box-color);
  border-color: var(--border-color);
  background: var(--card-bg);
  border-radius: 8px;
}
.list-view li {
  padding-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: var(--t-text);
}
.list-view li:not(:last-child) {
  border-bottom: 1px solid #ededed;
  margin-bottom: 8px;
}
.list-view li span {
  color: var(--t-text);
  font-weight: 600;
}

.pin-modal .modal-content {
  border: none;
  background: transparent;
}
.pin-modal .modal-content .modal-header {
  border-bottom: 1px solid var(--box-bg);
  background-color: var(--body);
}
.pin-modal .modal-content .modal-header .modal-title {
  margin-left: auto;
  margin-right: auto;
  color: var(--dark-text);
}
.pin-modal .modal-content .close-btn {
  position: absolute;
  left: 50%;
  bottom: -24px;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  width: 50px;
  height: 50px;
  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;
  background-color: var(--body);
  border-radius: 100%;
  border: 1px solid var(--border-color);
  -webkit-box-shadow: 4px 4px 0px -1px var(--box-color);
  box-shadow: 4px 4px 0px -1px var(--box-color);
  border-color: var(--border-color);
}
.pin-modal .modal-content .close-btn i {
  color: var(--primary-color);
  font-size: 19px;
}
.pin-modal .modal-content .modal-body {
  padding: 0 15px 40px;
  position: relative;
  -webkit-mask-image: radial-gradient(
    circle at bottom,
    transparent 31px,
    black 32px
  );
  background-color: var(--body);
  border-radius: 0 0 7px 7px;
}

.pin-modal .modal-content .modal-body h3 {
  text-align: center;
  margin-top: 20px;
  color: var(--dark-text);
}

.tf-form-verify .tf-title {
  font-size: 16px;
  line-height: 24px;
}
.tf-form-verify .group-input-verify {
  margin: 20px 0px 19px;
  justify-content: center;
}
.tf-form-verify .group-input-verify .input-verify {
  display: block;
  width: 58px;
  height: 58px;
  margin-right: 12px;
  text-align: center;
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  -webkit-box-shadow: 4px 4px 0px -1px var(--box-color);
  box-shadow: 4px 4px 0px -1px var(--box-color);
  border-color: var(--border-color);
}
.tf-form-verify .group-input-verify .input-verify:last-child {
  margin-right: 0;
}
.tf-form-verify .group-input-verify .input-verify:focus {
  border-color: #1e1e1e;
}
.tf-form-verify .text-send-code p {
  font-size: 14px;
  line-height: 22px;
  display: flex;
  justify-content: center;
}
.successful-modal .modal-content {
  border: none;
  background-color: var(--body);
}
.successful-modal .modal-content .modal-header {
  border-bottom: 1px solid var(--box-bg);
  background-color: var(--body);
}
.successful-modal .modal-content .modal-header .modal-title {
  margin-left: auto;
  margin-right: auto;
  color: var(--dark-text);
}
.successful-modal .modal-content .close-btn {
  position: absolute;
  left: 50%;
  bottom: -24px;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  width: 50px;
  height: 50px;
  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;
  background-color: var(--body);
  border-radius: 100%;
}
.successful-modal .modal-content .close-btn i {
  color: var(--primary-color);
  font-size: 19px;
}
.successful-modal .modal-content .modal-body {
  padding: 0 15px 40px;
  position: relative;
  -webkit-mask-image: radial-gradient(
    circle at bottom,
    transparent 31px,
    black 32px
  );
  background-color: var(--body);
  border-radius: 0 0 7px 7px;
}
.successful-modal .modal-content .modal-body .done-img {
  text-align: center;
  margin-top: 25px;
}
.successful-modal .modal-content .modal-body .saving-img {
  width: 105px;
  height: 105px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px;
  margin: 20px auto 0;
  background-color: var(--box-bg);
}
.successful-modal .modal-content .modal-body h2 {
  text-align: center;
  font-size: 28px;
  margin-top: 15px;
  color: rgba(var(--theme-color), 1);
}
.successful-modal .modal-content .modal-body h3 {
  text-align: center;
  color: var(--t-text);
}
.successful-modal .modal-content .modal-body h5 {
  text-align: center;
  padding-bottom: 15px;
  margin-top: 5px;
  color: var(--t-text);
}
.successful-modal .modal-content .modal-body .details-list {
  padding-top: 20px;
}
.successful-modal .modal-content .modal-body .details-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 15px;
}
.successful-modal .modal-content .modal-body .details-list li:last-child {
  padding-bottom: 0;
}
.successful-modal .modal-content .modal-body .details-list li .details-part {
  color: rgb(23, 22, 27);
}
.successful-modal.transfer-details .details-list .amount {
  padding: 15px 0;
  border-top: 1px dashed var(--box-bg);
}
/**======send css Ends ======**/

/**======virtual-card css Start ======**/
.v-atm {
  margin-top: 30px;
  align-items: center;
  justify-content: center;
}

.atmcard {
  height: 300px;
  color: #fff;
  cursor: pointer;
  perspective: 1000px;
  
}

.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 1s;
  transform-style: preserve-3d;
}

.front,
.back {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #0045c7, #ff2c7d);
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px 30px;
  border-radius: 15px;
  overflow: hidden;
  z-index: 1;
  backface-visibility: hidden;
}

.row1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.map-img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
  z-index: -1;
}

.card-no {
  font-size: 35px;
  margin-top: 60px;
}

.card-holder {
  font-size: 12px;
  margin-top: 40px;
}

.name {
  font-size: 22px;
  margin-top: 20px;
}

.bar {
  background: #222;
  margin-left: -30px;
  margin-right: -30px;
  height: 60px;
  margin-top: 10px;
}

.card-cvv {
  margin-top: 20px;
}

.card-cvv div {
  flex: 1;
}

.card-cvv img {
  width: 100%;
  display: block;
  line-height: 0;
}

.card-cvv p {
  background: #fff;
  color: #000;
  font-size: 22px;
  padding: 10px 20px;
}

.card-text {
  margin-top: 30px;
  font-size: 14px;
}

.signature {
  margin-top: 30px;
}

.back {
  transform: rotateY(180deg);
}

.atmcard:hover .card-inner {
  transform: rotateY(-180deg);
}

/**======virtual-card css Ends ======**/

/**======profile-section css Start ======**/
.profile-section .profile-banner {
  background-image: url(../img/statistics-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 60px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  z-index: -1;
  margin-top: 30px;
}
.profile-section .profile-banner .profile-image {
  position: relative;
}
.profile-section .profile-banner .profile-image .profile-pic {
  position: relative;
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 20px;
  border-radius: 6px;
  z-index: 1;
}
.profile-section .profile-banner .profile-image::after {
  content: "";
  position: absolute;
  width: 88px;
  height: 88px;
  border: 1px solid var(--border-color);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border-radius: 10px;
  left: 50%;
  top: 15px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  z-index: 0;
}
.profile-section .profile-banner .profile-image .camera {
  position: absolute;
  padding: 7px;
  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;
  color: var(--theme-color);
  background-color: var(--white);
  -webkit-box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  font-size: 20px;
  height: 30px;
  width: 30px;
  bottom: 10px;
  left: 50%;
  z-index: 1;
  -webkit-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
}
.profile-section h2 {
  text-align: center;
  margin-top: 55px;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-text);
}
.profile-section h5 {
  text-align: center;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 400;
  color: var(--light-text);
}
.profile-list {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  -webkit-box-shadow: 5px 5px 0px -2px var(--box-color);
  box-shadow: 9px 9px 0px -2px var(--box-color);
  border-color: var(--border-color);
  border-radius: 10px;
  padding: 15px;
  margin-top: 30px;
}
.profile-list li {
  padding: 15px 0;
  width: 100%;
  border-bottom: 1px solid var(--border-color);
}
.profile-list li:first-child {
  padding-top: 0;
}
.profile-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.profile-list li .profile-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.profile-list li .profile-box .profile-img {
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--body);
  border-radius: 14px;
  padding: 10px;
  border: 1px solid var(--border-color);
  -webkit-box-shadow: 4px 4px 0px -1px var(--box-color);
  box-shadow: 4px 4px 0px -1px var(--box-color);
  border-color: var(--border-color);
  border-radius: 6px;
}
.profile-list li .profile-box .profile-img i {
  color: var(--dark-text);
}
.profile-list li .profile-details {
  width: calc(100% - 12px - 44px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.profile-list li .profile-details h4 {
  color:var(--dark-text);
  line-height: 1.2;
}
.profile-list li .profile-details h5 {
  color: var(--light-text);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 400;
  line-height: 1.5;
}
.profile-list li .profile-details .arrow {
  width: 24px;
}
/**======profile-section css Ends ======**/



/**======notification css Start ======**/

.notification-list .notification-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  width: 100%;
  padding: 15px;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  -webkit-box-shadow: 0px 4px 22px var(-dark-text);
          box-shadow: 0px 4px 22px var(-dark-text);
  border-radius: 10px;
  margin-top: 15px;
}
.notification-list .notification-box:first-child {
  margin-top: 0;
}
.notification-list .notification-box .icon-box {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
}
/* .notification-list .notification-box .notification-img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.notification-list .notification-box .notification-img .icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
}
.notification-list .notification-box .notification-img.img1 {
  background-color: var(--error-color);
}
.notification-list .notification-box .notification-img.img2 {
  background-color: var(--light-text);
} */
.notification-list .notification-box .notification-details {
  width: calc(100% - 50px);
}
.notification-list .notification-box .notification-details h5 {
  line-height: 1.3;
}
.notification-list .notification-box .notification-details .pay-btn {
  padding: 3px 10px;
  font-size: 13px;
}
.notification-setting {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  -webkit-box-shadow: 0px 4px 22px var(--dark-text);
          box-shadow: 0px 4px 22px var(--dark-text);
  border-radius: 8px;
  margin-top: 30px;
}
.notification-setting li {
  display: block;
  padding: 15px;
}
.notification-setting li.setting-title {
  border-bottom: 1px solid var(--border-color);
}
.notification-setting li .notification {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.notification-setting li .notification h5 {
  font-size: 15px;
}
.notification-setting li .notification input[type=checkbox] {
  position: relative;
  width: 37px;
  height: 22px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: var(--border-color);
  outline: none;
  border-radius: 50px;
  cursor: pointer;
}
.notification-setting li .notification input[type=checkbox]:checked {
  background: var(--primary-color);
}
.notification-setting li .notification input[type=checkbox]:checked::before {
  -webkit-transform: translateX(80%) translateY(-50%);
          transform: translateX(80%) translateY(-50%);
  background: var(--border-color);
}
.notification-setting li .notification input[type=checkbox]:before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--light-text);
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
/**======notification css Ends ======**/



/**====== Authentication  css Start ======**/
.auth-header {
  position: relative;
  background-image: url(../img/auth-bg.jpg);
  height: 200px;
  background-repeat: no-repeat;
  background-size: cover;
}
/* .auth-header a .back-btn {
  color: rgb(255, 255, 255);
  font-size: 22px;
  line-height: 1;
  position: absolute;
  left: 20px;
  top: 50px;
  z-index: 1;
}
[dir=rtl] .auth-header a .back-btn {
  left: unset;
  right: 20px;
} */


.auth-header .back-btn {
  width: 40px;
  height: 40px;
  padding: 10px;
  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;
  font-size: 18px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  -webkit-box-shadow: 4px 4px 0px -1px var(--box-color);
  box-shadow: 4px 4px 0px -1px var(--box-color);
  border-color: var(--border-color);
  border-radius: 6px;
  z-index: 1;
  left: 20px;
  top: 50px;
  line-height: 1;
  position: absolute;
}
.auth-header .back-btn i {
  color: var(--dark-text);
}
.auth-header .help-head h2 {
  color: rgb(255, 255, 255);
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  position: absolute;
  left: 50px;
  top: 53px;
}
[dir=rtl] .auth-header .help-head h2 {
  left: unset;
  right: 50px;
}
.auth-header .img {
  position: absolute;
  right: 20px;
  bottom: -20px;
  z-index: 1;
  width: calc(115px + 10 * (100vw - 320px) / 447);
}
[dir=rtl] .auth-header .img {
  left: 20px;
  right: unset;
}

.auth-header .auth-content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 0 20px 40px;
  font-family: "Secular One", sans-serif;
}
[dir=rtl] .auth-header .auth-content {
  left: unset;
  right: 0;
}
.auth-header .auth-bg {
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.auth-header h2 {
  font-size: 22px;
  color: rgb(255, 255, 255);
}
.auth-header h4 {
  color: rgb(255, 255, 255);
  margin-top: 4px;
}

/**====== Authentication  css Ends ======**/



/**======   form  css Start ======**/
.copy-text {
  position: relative;
  padding: 10px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  display: flex;
}
.copy-text input.text {
  padding: 10px;
  font-size: 18px;
  color: var(--dark-text);
  background: var(--card-bg);
  font-family: "Nunito Sans", sans-serif;
  border: none;
  outline: none;
  padding-right: 50px;
}
.copy-text button {
  padding: 10px;
  background: linear-gradient(142.56deg, #ff0000 -1.68%, #622cfd 62.12%);
  color: #fff;
  font-size: 18px;
  border: none;
  outline: none;
  border-radius: 10px;
  cursor: pointer;
}
.copy-text button:active {
  background: linear-gradient(142.56deg, #622cfd -1.68%, #ff0000 62.12%);
}
.copy-text button:before {
  content: "Copied";
  position: absolute;
  top: -45px;
  right: 0px;
  background: #44a08d;
  padding: 8px 10px;
  border-radius: 20px;
  font-size: 15px;
  display: none;
}
.copy-text button:after {
  content: "";
  position: absolute;
  top: -20px;
  right: 25px;
  width: 10px;
  height: 10px;
  background: #44a08d;
  transform: rotate(45deg);
  display: none;
}
.copy-text.active button:before,
.copy-text.active button:after {
  display: block;
}
.auth-form {
  background-color: var(--body);
  border-radius: 15px 15px 0px 0px;
  margin-top: -10px;
  padding-top: 35px;
  padding-bottom: 40px;
  position: relative;
  width: 100%;
}
.auth-form h2 {
  width: 90%;
  color: var(--dark-text);
}
.auth-form .form-group {
  position: relative;
  display: block;
  margin-top: 20px;
}
.auth-form .form-group:first-child {
  margin-top: 0;
}
.auth-form .form-group .form-label {
  color: var(--dark-text);
  font-family: "Nunito Sans", sans-serif;
}
.auth-form .form-group h5 {
  color: var(--light-text);
  margin-bottom: 20px;
  line-height: 1.2;
  font-size: 16px;
}
.auth-form .form-group .form-control {
  position: relative;
  padding: 12px;
  border-radius: 6px;
  border: none;
  color: var(--dark-text);
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  font-family: "Nunito Sans", sans-serif;
}
[dir=rtl] .auth-form .form-group .form-control {
  direction: rtl;
}
.auth-form .form-group .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: none;
}
.auth-form .form-group .form-control::-webkit-input-placeholder {
  color: var(--light-text);
}
.auth-form .form-group .form-control::-moz-placeholder {
  color: var(--light-text);
}
.auth-form .form-group .form-control:-ms-input-placeholder {
  color: var(--light-text);
}
.auth-form .form-group .form-control::-ms-input-placeholder {
  color: var(--light-text);
}
.auth-form .form-group .form-control::placeholder {
  color: var(--light-text);
}
.auth-form .form-group .form-select {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  padding: 12px 15px;
  background-color: var(--card-bg);
  color: var(--light-text);
}
.auth-form .form-group .form-select option {
  color: var(--dark-text);
  background-color: var(--card-bg);
}
[dir=dark] .auth-form .form-group .form-select option {
  background-color: rgb(34, 33, 37);
}
.auth-form .form-group .form-select option:hover {
  background-color: var(--box-bg);
}
.auth-form .remember-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-family: "Nunito Sans", sans-serif;
}
@media (max-width: 375px) {
  .auth-form .remember-option {
    font-size: 13px;
  }
}
.auth-form .remember-option .form-check {
  margin-bottom: 0;
}
.auth-form .remember-option .form-check .form-check-input {
  background-color: var(--box-bg);
  border: none;
  width: 20px;
  height: 20px;
}
.auth-form .remember-option .form-check .form-check-input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: none;
}
.auth-form .remember-option .form-check .form-check-label {
  color: var(--light-text);
  font-size: 16px;
  margin-left: 10px;
}
[dir=rtl] .auth-form .remember-option .form-check .form-check-label {
  margin-right: 10px;
  margin-left: unset;
}
.auth-form .remember-option .form-check .form-check-input:checked {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--primary-color);
}
.auth-form .remember-option .forgot {
  text-align: right;
  color: var(--primary-color);
}

.signup {
  padding-top: 15px;
  color: var(--light-text);
  text-align: center;
  font-family: "Secular One", sans-serif;
}
.signup a {
  color: var(--dark-text);
}
.division {
  position: relative;
  text-align: center;
  margin: calc(20px + 20 * (100vw - 320px) / 447) 0;
  z-index: 0;
}
.division span {
  position: relative;
  background-color: var(--body);
  color: var(--light-text);
  padding: 0 10px;
  font-family: "Secular One", sans-serif;
}
.division::after {
  content: " ";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  background: -webkit-gradient(linear, right top, left top, color-stop(-2.05%, rgba(155, 166, 184, 0)), color-stop(50.93%, rgb(155, 166, 184)), color-stop(101.74%, rgba(155, 166, 184, 0)));
  background: linear-gradient(270deg, rgba(155, 166, 184, 0) -2.05%, rgb(155, 166, 184) 50.93%, rgba(155, 166, 184, 0) 101.74%);
  z-index: -1;
  height: 2px;
}
[dir=rtl] .division::after {
  left: unset;
  right: 0;
}

.auth-form .form-group .upload-image {
  position: relative;
  width: 100%;
  height: 180px;
  background-color: var(--card-bg);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border-radius: 6px;
  color: var(--white-color);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px;
}
.auth-form .form-group .upload-image .upload-file {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: var(--light-text);
  opacity: 0;
  z-index: 1;
}
.auth-form .form-group .upload-image .upload-icon {
  font-size: 30px;
  color: var(--dark-text);
  position: absolute;
}
.dark-text {
  color: var(--dark-text) !important;
}

.auth-form .form-group .upload-image::after {
  content: "";
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px dashed var(--border-color);
  border-radius: 8px;
}
.auth-form .form-group .upload-image.rounded-image {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  margin-left: auto;
  margin-right: auto;
}
.auth-form .form-group .upload-image.rounded-image::after {
  width: 80px;
  height: 80px;
  border-radius: 100%;
}
.auth-form .info-id {
  text-align: center;
  padding: 12px 0 30px;
  color: var(--dark-text);
  border-bottom: 1px dashed var(--light-text);
}
/**======   form  css Ends ======**/


#preloader {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #010314;
  z-index: 999;
  width: 100%;
  height: 100%;
}
.loader {
  width: 50px;
  aspect-ratio: 1;
  box-shadow: inset 0 0 0 3px #ff0000, 
            inset 0 66px 15px 0px #622cfd;
  border-radius: 50%;
  position: relative;
}
.loader:before,
.loader:after {
  content: "";
  position: absolute;
  top: 5px;
  left: calc(50% - 12.5px);
  box-shadow: inherit;
  width: 25px;
  aspect-ratio: 1;
  border-radius: 50%;
  transform-origin: 50% calc(100% - 5px);
  animation: l7 1.5s linear infinite;
}
.loader:after {
  top: calc(100% + 2px);
  transform-origin: 50% -27px;
  animation-delay: -0.75s;
}
@keyframes l7 {
  to {
    transform: rotate(360deg);
  }
}