.user-banned-block {
    position: fixed;
  display: none;
  justify-content: center;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  font-family: 'Gilroy-Regular', sans-serif;
  -webkit-animation-name: fadeIn;
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s;
}

.user-banned-block__user-banned {
  background-color: white;
  margin: auto;
  border-radius: 20px;
  border: none;
  width: 260px;
}

.user-banned {
  padding: 20px;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s;
}

.user-banned__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.user-banned__title h3 {
  float: left;
  order: 1;
  margin-right: auto;
}

.user-banned__title img {
  float: right;
  order: 2;
  margin-left: auto;
  height: 25px;
  width: 25px;
  cursor: pointer;
}

.user-banned__text {
  margin: 20px auto;
}

.user-banned__text p {
    text-align: center;
}

.user-banned__text p a {
    color: deepskyblue;
}

.user-banned button {
  display: block;
  width: 200px;
  height: 35px;
  background: #75155C;
  color: white;
  font-size: 18px;
  margin: 7px auto;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

@-webkit-keyframes slideIn {
  from {
    top: -100%;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    top: -100%;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}