body{
    background-image: url("bg.jpg");
    background-size: 30px;
}
    .modal-content {
      background-color: #212529 !important;
      color: white !important;
    }
    .btn-close {
      filter: invert(1) !important;
    }

    .modal-content .btn-secondary {
        background-color: #6c757d !important;
        border-color: #6c757d !important;
    }

.container-text{
    display: inline-block;
    border: 2px solid #3d0000;
	border-radius: 4px;
	background-color: #590000;
    padding: 5px;
    margin-top: 2px;
}
.container-iskl{
    display: flex;
    border: 2px solid #0a2f00;
	border-radius: 4px;
	background-color: #005b05;
    padding: 5px;
    margin-top: 2px;
    flex-direction: column;
    width: fit-content;
    clear: both;

}

.pad{
    margin-bottom: 380px;
}

.admin-forma{

    margin-top: 200px;
    margin-bottom: 300px;

}

.donate-forma{

    margin-top: 250px;
    margin-bottom: 200px;

}

.admin-panel{

    margin-top: 50px;
    margin-bottom: 40px;

}

.preloader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-image: url("bg.jpg");
  background-size: 30px;
  z-index: 1001;
}

.preloader__row {
  position: relative;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  margin-top: -35px;
  margin-left: -35px;
  text-align: center;
  animation: preloader-rotate 2s infinite linear;
}

.preloader__item {
  position: absolute;
  display: inline-block;
  top: 0;
  background-image: url("bg.jpg");
  background-size: 30px;
  border-radius: 100%;
  width: 35px;
  height: 35px;
  animation: preloader-bounce 2s infinite ease-in-out;
}

.preloader__item:last-child {
  top: auto;
  bottom: 0;
  animation-delay: -2s;
}

@keyframes preloader-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes preloader-bounce {

  0%,
  100% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }
}

.loaded_hiding .preloader {
  transition: 0.3s opacity;
  opacity: 0;
}

.loaded .preloader {
  display: none;
}