.everything-module__ground {
  background-color: rgba(0, 0, 0, 0.2);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease-out;
}

.everything-module__ground_open {
  visibility: visible;
  opacity: 1;
}

.everything-module__inner {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.everything-module__block {
  margin: 50px auto;
  font-family: 'Open Sans', 'open_sansregular';
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  background-color: #ffffff;
  max-width: 782px;
  width: 100%;
  padding: 70px 60px 60px 60px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px 3px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 10;
  transform: translateY(-50%);
  opacity: 0;
  transition: transform 0.5s ease-out;
}

.everything-module__block_open {
  opacity: 1;
  transform: translateY(0);
}

.everything-module__close {
  background: inherit;
  padding: 0;
  box-sizing: content-box;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #1a202c;
}

.everything-module__close:focus {
  outline: none;
}

.everything-module__close-image {
  margin: 7px;
  display: block;
}
.everything-module__content_center {
  text-align: center;
}

.everything-module__title {
  margin: 0;
  font-weight: 500;
  font-family: "Rubik";
  color: #1a202c;
  font-size: 20px;
  line-height: 160%;
}
.everything-module__image {
   width: 100px;
   display: block;
   margin: 30px auto 0;
}
.everything-module__description {
  margin: 0;
  margin-top: 30px !important;
  font-family: 'Open Sans', 'open_sansregular';
  font-size: 16px;
  line-height: 28px;
  color: #4A5568;
}

.everything-module__description a {
  color: #E63756;
  text-decoration: underline;
}

.everything-module__description a:hover {
  text-decoration: none;
}

.everything-module__close-ground {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  min-height: 100%;
}

.body_lock {
  overflow: hidden;
}