.modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: all .2s ease;
}
.modal.active {
  opacity: 1;
  pointer-events: all;
}
.modal__wrapper {
  position: relative;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--white);
  border-radius: 16px;
  z-index: 2;
  transform: scale(.5);
  transition: all .2s ease;
}
.modal.active .modal__wrapper {
  transform: scale(1);
}
.modal__wrapper .message {
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  color: var(--dark);
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
}
.modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 5, 33, 0.4);
}


.support-modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 550;
	display: none;
}

.support-modal.active {
	display: flex;
	justify-content: center;
}

.support-modal__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.50);
}

.support-modal__content {
	padding: 40px 48px 48px;
	margin-top: auto;
	margin-bottom: auto;
	border-radius: 16px;
	background: #000521;
	z-index: 102;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
	overflow-y: scroll;
}

.support-modal__content::-webkit-scrollbar {
  display: none;
}

.support-modal__content-gradient {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	width: 320px;
	height: 500px;
	border-radius: 100px;
	opacity: 0.5;
	background: #3893FF;
	filter: blur(300px);
}

.support-modal__content .title {
	font-size: 40px;
	font-weight: 600;
	line-height: 130%;
	color: #A4A4A4;
}

.support-modal__content .subtitle {
	font-size: 18px;
	font-weight: 600;
	line-height: 120%;
	color: #A4A4A4;
}

.support-modal__content .subtitle a {
	color: #fff;
	transition: color .15s ease;
	margin-left: 4px;
}

.support-modal__content .subtitle a svg {
	position: relative;
	top: 1px;
	left: 4px;
}

.support-modal__content .subtitle a svg path {
	transition: all .2s ease;
}

.support-modal__content .subtitle a:hover {
	color: #275EC7;
}

.support-modal__content .subtitle a:hover svg path {
	stroke: #275EC7;
}

.support-modal__content form {
	display: flex;
	flex-direction: column;
}


@media (max-width: 520px) {
  .modal.active {
    padding: 0 20px;
  }
  .modal__wrapper .message {
    text-align: center;
  }
}