/* .md_overlay {
    display: none;
    position: fixed;
    z-index: 1;
    opacity: 1;
    visibility: visible;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    animation-name: fadeIn;
    animation-duration: 0.4s;

  }
  

  
 
  
  .md_close:hover {
    color: #ff0000;
  }
  


  body {
    font-family: Arial, Helvetica, sans-serif
}

#confirmation-modal {
    display: none;
    background-color: rgba(0, 0, 0, 0.4);
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1;
    opacity: 1;
    visibility: visible;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;


}

#modal-content {
 background-color: black;
    margin: 7% auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 10px;
    width: 50%;
    animation-name: slideIn;
    animation-duration: 0.4s;
    display: flex;
    flex-direction: column;
} */

.dep_trade-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

#dep_trade-statusModalText{
  color: rgba(255, 255, 255, 0.821);
  font-size: 20px;
}

#dep_trade-balanceModalText{
  color: #4caf50;
  font-size: 30px;
  margin-top: 10px;
}

.dep_trade-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 0px;
  border-radius: 8px;
  text-align: center;
  
  
  
}

.dep_trade-loading-content {
  position: absolute;
  border-radius: 8px;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 2;
  background-color: black;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 10px;
    width: 50%;
  color: white;
}

.dep_trade-loader {
  border: 2px solid #000000;
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  width: 300px;
  height: 300px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
  margin-top: 20px;
  animation: spin 1s linear infinite;
  
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#dep_trade-balanceSpan2{
  color: white;
}
#dep_trade-balanceSpan1{
  color: white;
}

#dep_trade-balanceSpan4{
  color: rgb(66, 214, 33);
  font-size: 20px;
  font-weight: bold;
}

#dep_trade-balanceSpan5{
  color: rgb(66, 214, 33);
  font-size: 20px;
  font-weight: bold;
}

.dep_trade-balance-span {
  font-size: 12px;
  display: inline-block;
  color: #646a71;
}

#with_modal_outputText {
  color: white;
  text-align: center;
  font-size: 30px;
}


.dep_trade-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.dep_trade-modal-content {
  background-color: black;
  margin: 7% auto;
  padding: 50px;
  border: 1px solid #888;
  border-radius: 10px;
  width: 50%;
  color: white;
}

.dep_trade-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}

#progressBarContainer {
  width: 100%;
  height: 20px;
  background-color: #ccc;
  border-radius: 10px;
  margin-top: 20px;
  overflow: hidden;
}

#progressBar {
  height: 100%;
  width: 0;
  background-color: #4caf50;
  border-radius: 10px;
  animation: fillProgress 3s infinite;
}

@keyframes fillProgress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

#dep_trade-balanceModal {
  font-size: 24px;
  margin-bottom: 20px;
}

#dep_trade-statusModal {
  font-size: 16px;
  margin-top: 10px;
}
.with_modal_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Затемнение с прозрачностью 0.5 */
  z-index: 1;
}

.with_modal_modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 2;
  background-color: black;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 10px;
    width: 50%;
}

.with_modal_loader {
  border: 2px solid #000000;
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  width: 300px;
  height: 300px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
  margin-top: 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.with_modal_close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
   font-size: 20px;
    color: white;
}