
.swal2-popup{
  font-family: Vazirmatn, sans-serif !important;
  direction: rtl;
  font-size: .7rem;
}
body {
  font-family: Vazirmatn, sans-serif !important;
  background-color: #201f1f !important;
  color: rgb(225 ,225 ,225 ) !important;
}
.card1 {
  padding: 30px 20px;
  width: 100%;
  height: 100%;
  background: #484848;
  border-radius: 10px;
  text-align: center;
}
.card-border {
  margin: 12px 0;
  padding: 10px 0;
  border: 1px solid darkgray;
  border-radius: 10px;
}

button {
  width: fit-content;
  color: rgb(225 ,225 ,225 );
  padding: 0.35em 1.4em;
  font-size: 18px;
  border-radius: 0.5em;
  background: #6a6a6a;
  border: 1px solid #6a6a6a;
  transition: all .1s;
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.6),
      -6px -6px 12px rgba(0, 0, 0, 0.3);
}

button:active:not(:disabled) {
  color: #666 !important;
  box-shadow: inset 4px 4px 12px rgba(0, 0, 0, 0.6),
      inset -4px -4px 12px rgba(0, 0, 0, 0.3);
}

button:disabled {
  color: #666 !important;
  box-shadow: inset 4px 4px 12px rgba(0, 0, 0, 0.6),
      inset -4px -4px 12px rgba(0, 0, 0, 0.3);
}



/* Hide the default checkbox */
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox {
  display: inline-block;
  position: relative;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  user-select: none;
}

/* Create a custom checkbox */
.checkmark {
  position: relative;
  top: 0;
  left: 0;
  height: 1.6em;
  width: 1.6em;
  background-color: #6a6a6a;
  border-radius: 100%;
  background: #6a6a6a;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.6),
      -3px -3px 5px rgba(0, 0, 0, 0.3);
  transition-duration: 0.5s;
}

.checkbox input:checked ~ .checkmark {
  box-shadow: inset 3px 3px 5px rgba(0, 0, 0, 0.6),
      inset -3px -3px 5px rgba(0, 0, 0, 0.3);
}

.checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
}

.checkbox input:checked ~ .checkmark:after {
  opacity: 1;
}

.checkbox .checkmark:after {
  left: 0.64em;
  top: 0.35em;
  width: 0.35em;
  height: 0.7em;
  border: solid rgb(0, 0, 0);
  border-width: 0 0.15em 0.15em 0;
  transform: rotate(45deg);
}

.checktext{
  position: absolute;
  top: 3px;
  left: 35px;
  color: rgb(150, 150, 150);
  text-decoration: line-through;
}
.checkbox input:checked ~ .checktext {
  color: rgb(225, 225, 225);
  text-decoration: none;
}




.switch-holder {
  display: flex;
  flex-flow: row wrap;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: #484848;
  justify-content: space-around;
  align-items: center;
}

.switch-label {
  padding: 0 20px 0 10px
}

.switch-label i {
  margin-right: 5px;
}

.switch-toggle {
  height: 40px;
}

.switch-toggle input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  z-index: -2;
}

.switch-toggle input[type="checkbox"]+label {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 40px;
  border-radius: 20px;
  margin: 0;
  cursor: pointer;
  box-shadow: inset -8px -8px 15px rgba(100, 100, 100, .6),
      inset 10px 10px 10px rgba(0, 0, 0, .25);
}

.switch-toggle input[type="checkbox"]+label::before {
  position: absolute;
  content: '';
  font-size: 13px;
  text-align: center;
  line-height: 25px;
  top: 5px;
  left: 5px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  /* border-radius: 20px; */
  background-color: #eeeeee;
  box-shadow: -3px -3px 5px rgba(100, 100, 100, .5),
          3px 3px 5px rgba(0, 0, 0, .25);
  transition: .3s ease-in-out;
}

.switch-toggle input[type="checkbox"]:checked+label::before {
  left: 60%;
  content: '';
  color: #fff;
  background-color: #1c995f;
}


.login-input {
  border: none;
  padding: 1rem;
  border-radius: 1rem;
  background: #484848;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.6),
          -20px -20px 60px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.login-input:focus {
  outline-color: #484848;
  background: #484848;
  box-shadow: inset 20px 20px 60px rgba(0, 0, 0, 0.6),
          inset -20px -20px 60px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

/* .trade {
} */

.bold{
  font-family: Vazirmatn, sans-serif !important; 
  font-weight: bold;
}


.lds-dual-ring {
  display: inline-block;
  width: 18px;
  height: 18px;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid black;
  border-color: black transparent black transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


