.popup {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background: rgba(33, 37, 41, 0.3);
}
.popup_close {
  display: none;
}
.popup__container {
  position: relative;
  width: 950px;
  height: 860px;
  padding: 36px;
  background: #FFFFFF;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.15), 0px 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
}
.popup__close {
  position: absolute;
  right: 36px;
  top: 36px;
  cursor: pointer;
}
.popup__close img {
  width: 40px;
  height: 40px;
}

.popup__content {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.popup__content-logo {
  margin-bottom: 48px;
}
.popup__content-logo img {
  width: 254px;
  height: 254px;
}
.popup__content-title {
  font-size: 44px;
  font-weight: 500;
  line-height: 52px;
  margin-bottom: 16px;
}
.popup__content-description {
  width: 600px;
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 63px;
  text-align: center;
}
.popup__content-list-links {
  display: flex;
}
.popup__content-list-links .link-browser {
  width: 179px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.15), 0px 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 24px;
  padding: 48px 24px 38px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  color: #000000;
}
.popup__content-list-links .link-browser:not(:last-of-type) {
  margin-right: 24px;
}
.link-browser__name {
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
}
.popup__content-list-links .link-browser img {
  width: 87px;
  height: 87px;
  margin-bottom: 30px;
}
