/* Start Init */
/* End Init */
/* Start Basic class */
.textColor-primary {
  color: var(--text-primary) !important;
}

.textColor-primary-title {
  color: var(--text-primary-title) !important;
}

.textColor-primary-gold {
  color: var(--bg-primary-gold) !important;
}

.bgPrimary-gold {
  background-color: var(--bg-primary-gold) !important;
}

.bgPrimary-gold-light {
  background-color: var(--bg-primary-gold-light) !important;
}

.bgPrimary-gold-extralight {
  background-color: var(--bg-primary-gold-extraLight) !important;
}

/* End Basic class */
/* start Animation */
@keyframes pulse-gold-small-sm {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 217, 0, 0.932);
  }
  100%, 30% {
    box-shadow: 0 0 0 12px transparent;
  }
}
@keyframes pulse-gold-medium-sm {
  0% {
    box-shadow: 0 0 0 0 rgba(250, 218, 37, 0.89);
  }
  100%, 30% {
    box-shadow: 0 0 0 20px transparent;
  }
}
@keyframes float {
  from {
    transform: translateY(-6px);
  }
  to {
    transform: translateY(6px);
  }
}
/* start Animation */
/* Start Toolbar */
.sc-bottom-bar {
  user-select: none !important;
  display: flex;
  padding: 16px 36px;
  justify-content: space-between;
  font-size: 26px;
  background-image: radial-gradient(circle at 36px 6px, transparent 36px, var(--background-color-toolbar) 37px);
  filter: drop-shadow(0px -1px 6px rgba(0, 0, 0, 0.08)) drop-shadow(0px -2px 12px rgba(0, 0, 0, 0.12));
  transition: cubic-bezier(0.57, 0.23, 0.08, 0.96) 0.45s;
}

.sc-nav-indicator {
  user-select: none !important;
  position: absolute;
  width: 49px;
  height: 47px;
  bottom: 50px;
  left: auto;
  background: linear-gradient(135deg, #ffd700, #e6b800, #b8860b);
  box-shadow: var(--main-cast-shadow);
  border-radius: 50%;
  transition: cubic-bezier(0.45, 0.73, 0, 0.59) 0.4s;
  z-index: 90;
}

.sc-menu-item {
  user-select: none !important;
  color: var(--fore-color);
  transition: ease-in-out 0.5s;
  cursor: pointer;
}

.sc-current {
  user-select: none !important;
  position: relative;
  color: #ffffff;
  z-index: 92;
}

.sc-current i {
  color: #f5f1e4 !important;
  transition: cubic-bezier(0.45, 0.73, 0, 0.59) 0.4s;
  /* right: 5px; */
  transform: translate3d(0px, -22px, 0px);
  position: relative;
}

.sc-current p {
  color: #cfb134 !important;
}

.toolbar p {
  color: rgb(117, 117, 113);
  font-weight: bold;
  margin-top: 5px !important;
}

.toolbar i {
  color: rgb(117, 117, 113);
}

/* End Toolbar */
/* Start Navbar */
.dark_btn {
  position: relative;
}

.dark_btn::before,
.dark_btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 42px;
  z-index: -1;
}

.dark_btn::before {
  animation: pulse-gold-medium-sm 3.5s infinite;
}

.dark_btn::after {
  animation: pulse-gold-small-sm 3.5s infinite;
}

/* End Navbar */
/* Start Class */
.container {
  width: 100%;
  margin: 0 auto;
}

.flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.mx-auto {
  margin: 0 auto;
}

.justify-between {
  justify-content: space-between;
}

.column {
  flex-direction: column;
}

.px-1 {
  padding-right: 1rem;
  padding-left: 1rem;
}

.pl-1 {
  padding-left: 1rem;
}

.pl-2 {
  padding-left: 2rem;
}

.pl-3 {
  padding-left: 3rem;
}

.pr-1 {
  padding-right: 1rem;
}

.absolute {
  position: absolute;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.ml-1 {
  margin-left: 1rem;
}

.ml-2 {
  margin-left: 2rem;
}

.ml-3 {
  margin-left: 3rem;
}

.ml-4 {
  margin-left: 4rem;
}

.ml-5 {
  margin-left: 5rem;
}

.ml-6 {
  margin-left: 6rem;
}

.ml-7 {
  margin-left: 7rem;
}

.mr-1 {
  margin-right: 1rem;
}

.mr-2 {
  margin-right: 2rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.p-1 {
  padding: 0.7rem;
}

.relative {
  position: relative;
}

.w-1 {
  width: 1rem;
}

.w-2 {
  width: 2rem;
}

.w-2-5 {
  width: 2.5rem;
}

.w-3 {
  width: 3rem;
}

.w-85 {
  width: 85%;
}

.w-90 {
  width: 90%;
}

.w-100 {
  width: 100%;
}

.h-1 {
  height: 1rem;
}

.h-2 {
  height: 2rem;
}

.h-2-5 {
  height: 2.5rem;
}

.h-3 {
  height: 3rem;
}

.position-none {
  position: unset;
}

.floating {
  animation: float 2s linear infinite alternate;
}

.justify-around {
  justify-content: space-around;
}

.background-gradient {
  background: -webkit-linear-gradient(45deg, #f8cd1f, #f39c12);
  background: linear-gradient(45deg, #f8cd1f, #f39c12);
}

.goldShadow {
  background: var(--bg-primary-gold);
  opacity: 0.4;
  border-radius: 10px;
  z-index: -1;
}

.red-border {
  outline: red 1px solid !important;
}

.order1 {
  order: 1;
}

.order2 {
  order: 2;
}

.d-none {
  display: none;
}

/* End Class */
.loginRegister {
  padding: 7px 12px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.navabr-list {
  display: none;
  align-items: center;
}
.navabr-list li {
  margin-right: 1rem;
  list-style: none;
  font-weight: bold;
}

.navbar,
.navbar-inner,
.navbar-large {
  background: var(--background-color-toolbar) !important;
}

.navbar,
.navbar-inner,
.navbar-large {
  border-radius: 3px;
}

.navbar-inner {
  top: 15px;
}
.navbar-inner .logo {
  margin-right: 1rem;
}
.navbar-inner .navbar-profile img {
  width: 2.5rem;
}

.navbar-inner .left,
.navbar-inner .right {
  padding-bottom: 8px;
}

.goldTitle {
  background-color: var(--bg-primary-gold-light);
  padding: 1px 2px;
  margin: 0 0.5rem 0 0.5rem;
  padding: 0 1rem 0 1rem;
  border-radius: 8px;
  font-size: 28px;
}

.h1title {
  font-size: 40px;
}

.toolbar .sc-menu-item,
.toolbar .sc-nav-indicator {
  display: block;
}

.toolbar.toolbar-hidden .sc-menu-item,
.toolbar.toolbar-hidden .sc-nav-indicator {
  display: none;
}

@keyframes a1 {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes a2 {
  to {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
input[type=tel] {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  display: block;
  border: var(--f7-searchbar-input-border-width) solid var(--f7-searchbar-input-border-color);
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
  font-weight: normal;
  color: var(--f7-searchbar-input-text-color);
  font-size: var(--f7-searchbar-input-font-size);
  background-color: var(--f7-searchbar-input-bg-color);
  border-radius: var(--f7-searchbar-input-border-radius);
  position: relative;
  padding: 0;
  padding-left: calc(var(--f7-searchbar-input-padding-horizontal) + var(--f7-searchbar-input-extra-padding-right, 0px));
  padding-right: calc(var(--f7-searchbar-input-padding-horizontal) + var(--f7-searchbar-input-extra-padding-left, 0px));
  margin-bottom: 1.25rem;
}

#otp-input {
  display: none;
  flex-direction: row-reverse;
  justify-content: center;
  column-gap: 8px;
}

#otp-input input {
  text-align: center;
  padding: 10px 8px 10px 8px;
  border-radius: 4px;
  outline: none;
  height: 40px;
  width: 40px;
  background-color: var(--light-gray);
}

#otp-input input:focus {
  border: 1px solid #497e76;
}

#otp-input input:focus::placeholder {
  color: transparent;
}

#otp-input input::-webkit-outer-spin-button,
#otp-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#otp-input input[type=number] {
  -moz-appearance: textfield; /* Firefox */
}

/* --------------------------------- */
.mobile-container {
  width: 100%;
  margin: 0 auto !important;
  overflow: hidden;
  background-color: var(--bg-primary-gold-extraLight2);
}

body,
.page-content,
.navbar-inner,
.navbar {
  background-color: var(--bg-primary-gold-extraLight2) !important;
}

@media screen and (min-width: 800px) {
  body {
    background-color: #212121;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh !important;
    margin: 0;
  }
  .mobile-container {
    width: 620px !important;
  }
}
@media screen and (min-width: 1400px) {
  .mobile-container {
    width: 620px !important;
  }
}
body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100% !important;
}

.navbar-bg {
  display: none;
}

.progressbarCustom, .progressbarCustomTrade {
  width: 100%;
  height: 3px;
  background: #fff;
  border-bottom-right-radius: 5%;
  border-bottom-left-radius: 5%;
  overflow: hidden;
  position: relative;
}
.progressbarCustom span, .progressbarCustomTrade span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(to right, var(--bg-primary-gold), var(--bg-primary-gold));
  transition: width 20s linear;
}

.mainPagePrice {
  background: #FEF2C0;
  box-shadow: 0px 4px 15px rgba(255, 165, 0, 0.3);
  backdrop-filter: blur(10px);
  color: #fff !important;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.blink-dot {
  position: relative;
  width: 10px;
  height: 10px;
  background-color: #2be656;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(83, 255, 123, 0.842);
}

.blink-dot::before,
.blink-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: rgba(60, 223, 98, 0.678);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: pulse 1s infinite linear;
}

.blink-dot::after {
  animation-delay: 1s;
}

.cooperation-info {
  display: none;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
.dlDefaultBtn {
  margin: 0;
  border: none;
  outline: none;
  width: 85px;
  padding: 10px 15px;
  cursor: pointer;
}

.btnMainPageContainer :first-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.btnMainPageContainer :last-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.dlDefaultBtnActive span {
  background: var(--bg-primary-gold);
  color: var(--title-color) !important;
  padding: 3px 10px;
  border-radius: 10px;
}

.backCard .container {
  position: relative;
  background: linear-gradient(135deg, rgb(255, 233, 154) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 238, 197, 0.8) 100%);
  border: 1px solid rgba(255, 215, 0, 0.5);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.6) inset;
  backdrop-filter: blur(10px);
  background-size: cover;
  padding: 20px;
  border-radius: 28px;
  max-width: 325px;
  width: 100%;
  height: 220px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.backCard .container * {
  color: var(--title-color);
}

.mehr {
  background: linear-gradient(210deg, rgba(100, 214, 34, 0.6) 0%, rgba(255, 255, 255, 0.2) 25%, rgba(102, 247, 19, 0.8) 100%) !important;
  border: 1px solid rgba(37, 255, 9, 0.5) !important;
  box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3), 0 0 20px rgba(64, 250, 64, 0.6) inset !important;
}

.mellat {
  background: linear-gradient(210deg, rgba(240, 64, 33, 0.6) 0%, rgba(255, 255, 255, 0.2) 25%, rgba(233, 61, 31, 0.8) 100%) !important;
  border: 1px solid rgba(240, 58, 26, 0.5) !important;
  box-shadow: 0 4px 10px rgba(255, 99, 71, 0.3), 0 0 20px rgba(247, 55, 21, 0.685) inset !important;
}

.saman {
  background: linear-gradient(135deg, rgba(0, 153, 255, 0.6) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(0, 153, 255, 0.8) 100%) !important;
  border: 1px solid rgba(0, 153, 255, 0.5) !important;
  box-shadow: 0 4px 10px rgba(0, 153, 255, 0.3), 0 0 20px rgba(0, 153, 255, 0.6) inset !important;
}

.sepah {
  background: linear-gradient(135deg, rgba(255, 165, 0, 0.6) 0%, rgba(255, 255, 255, 0.2) 40%, rgba(214, 183, 3, 0.8) 100%) !important;
  border: 1px solid rgba(255, 165, 0, 0.5) !important;
  box-shadow: 0 4px 10px rgba(255, 165, 0, 0.3), 0 0 20px rgba(204, 174, 5, 0.6) inset !important;
}

.saderat {
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.6) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(0, 191, 255, 0.8) 100%) !important;
  border: 1px solid rgba(0, 191, 255, 0.5) !important;
  box-shadow: 0 4px 10px rgba(0, 191, 255, 0.3), 0 0 20px rgba(0, 191, 255, 0.6) inset !important;
}

.melli {
  background: linear-gradient(135deg, rgba(51, 197, 255, 0.6) 0%, rgba(255, 255, 255, 0.2) 15%, rgba(51, 197, 255, 0.8) 100%) !important;
  border: 1px solid rgba(51, 180, 255, 0.5) !important;
  box-shadow: 0 4px 10px rgba(51, 190, 255, 0.3), 0 0 20px rgba(29, 141, 245, 0.6) inset !important;
}

.backCard header,
.backCard .logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.backCard .logo img {
  width: 48px;
  margin-right: 10px;
}

.backCard h5 {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin-block-start: 9px !important;
  margin-block-end: 9px !important;
}

.backCard header .card_chip {
  width: 35px;
  display: block;
}

.backCard h6 {
  color: #fff;
  font-size: 10px;
  font-weight: 400;
}

.backCard h5.number {
  font-size: 18px;
  letter-spacing: 1px;
  margin-block-start: 9px !important;
  margin-block-end: 9px !important;
}

.backCard h5.name {
  margin-block-start: 9px !important;
  margin-block-end: 9px !important;
}

.backCard .container .card-details {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.mainPageProperty {
  width: 94%;
  height: 130px;
  background: rgba(255, 255, 255, 0.6901960784);
  border-radius: 8px;
}

.backCard {
  user-select: none !important;
}

.boxMainContainer {
  background-image: url("../../img/walletBack.png");
  background-repeat: no-repeat;
  border-radius: 12px;
  background-size: cover;
  position: relative;
}
.boxMainContainer * {
  color: var(--title-color);
}
.boxMainContainer section {
  background-color: #fff;
  position: absolute;
  bottom: -220px;
  right: 3%;
  border-radius: 10px;
}

.asd8d4s5 {
  position: absolute;
  bottom: -70px;
  right: 3%;
  z-index: 9999999;
}

.mainPageBTns {
  height: 34px;
  width: 46%;
  padding: 25px 15px !important;
  background-color: rgba(236, 222, 222, 0.8705882353);
}
.mainPageBTns span {
  font-size: 13px;
  color: #4f4f4f;
  margin-right: 1rem;
  font-weight: bold;
}
.mainPageBTns i {
  font-size: 17px;
  color: #4f4f4f;
  background-color: #fff;
  padding: 5px;
  border-radius: 50%;
}

.changeTitle {
  font-weight: bold;
  font-size: 15px;
  text-align: center;
  margin-bottom: 0;
  color: var(--title-color);
}

.changeSub {
  text-align: center;
  font-size: 14px;
  margin-top: 0;
}

.dpCanvasGreen {
  color: rgb(67, 171, 121) !important;
}

.dpCanvasRed {
  color: red !important;
}

#recorderCoop .container {
  margin-top: 50px;
}

#recorderCoop .recorder {
  position: relative;
  display: inline-block;
}

#recorderCoop button {
  margin: 10px;
  padding: 15px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 50%;
  width: 52px;
  height: 50px;
  transition: 0.3s;
}

#recorderCoop #recordBtn {
  background: red;
  color: white;
}

#recorderCoop #pauseBtn {
  background: orange;
  color: white;
}

#recorderCoop #stopBtn {
  background: gray;
  color: white;
}

#recorderCoop #uploadBtn {
  background: blue;
  color: white;
}

#recorderCoop .recorder {
  position: relative;
  width: 80px;
  height: 80px;
}

#recorderCoop .wave {
  position: absolute;
  top: 5px;
  right: 7px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.3);
  animation: pulse 1.5s linear infinite;
  display: none;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  25% {
    transform: scale(1.1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.2);
    opacity: 0;
  }
  75% {
    transform: scale(1.3);
    opacity: 0.4;
  }
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}
/* Start Responsive */
@media screen and (max-width: 400px) {
  .loginRegister {
    padding: 5px 10px;
    font-size: 13px;
  }
}
@media screen and (max-width: 370px) {
  .link.logo {
    display: none;
  }
}
@media screen and (max-width: 1436px) {
  .container {
    width: 100%;
  }
}
@media screen and (max-width: 1280px) {
  .container {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .container {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .container {
    width: 100%;
  }
  .tradeResponsivebtnright {
    margin-right: 3rem !important;
  }
  .tradeResponsivebtnleft {
    margin-left: 3rem !important;
  }
}
@media screen and (max-width: 640px) {
  .container {
    width: 100%;
  }
  .navbar-inner {
    width: 100% !important;
  }
  .tradeResponsivebtnright {
    margin-right: 1rem !important;
  }
  .tradeResponsivebtnleft {
    margin-left: 1rem !important;
  }
}
@media screen and (min-width: 640px) {
  .backCard .container {
    max-width: 500px;
  }
  .newCardNumbers {
    width: 120px !important;
  }
}
@media screen and (min-width: 768px) {
  .backCardResponsive {
    width: 60%;
  }
}
@media screen and (max-width: 492px) {
  #leftNavH4 {
    font-size: 14px !important;
  }
  #logoNavbar {
    width: 40px !important;
  }
}
@media screen and (max-width: 415px) {
  #leftNavH4 {
    display: none;
  }
}
/* End Responsive */

/*# sourceMappingURL=style.css.map */
