.section-alert {
  z-index: 10000;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(42, 42, 42, 0);
  transition: all 0.5s ease-in-out 0.5s;
  pointer-events: none;
}

.section-alert.opened {
  background-color: rgba(42, 42, 42, 0.5);
  pointer-events: all;
}

.section-alert .alert {
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  max-width: 800px;
  padding: 0 5.625rem;
  background-color: #fff;
  transform: translateX(100%);
  transition: all 0.5s ease-in-out;
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  .section-alert .alert {
    height: 100vh;
    overflow: scroll;
  }
}

.section-alert.opened .alert {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}

.section-alert .alert-top {
  padding: 5rem 0 5rem ;
}

.section-alert .alert-close {
  color: #2e2e2e;
  text-decoration: none;
}
.section-alert .alert-close:hover {
  color: #ec0928;
}

.section-alert .alert-content .alert-title {
  line-height: 2rem;
  padding: 0 0 3rem 0 ;
}
.section-alert .alert-content .alert-text {
  margin: 0;
  padding: 0 0 2rem;
}

.cross{
  width: 20px;
  height: 20px;
  line-height: 20px;
  vertical-align: middle;
  display: inline-block;
  position: relative;
  margin-right: 0.5rem;
}
.cross::after {
  bottom: 10px;
  content: '';
  width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
  transform: rotate( 45deg );
}
.cross::before {
  bottom: 10px;
  content: '';
  width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
  transform: rotate( -45deg );
}

.section-alert .alert h3 {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}
.section-alert .alert .block-list ul {
  width: 100%;
  padding-left: 20px;
  text-align: left;
}
.section-alert .alert .block-list ul li {
  margin-bottom: 0.5rem;
}
.section-alert .alert .block-list ul li:before {
  content: '— ';
}


@media (max-width: 767px) {
  .section-alert {
		right: 0;
    width: 100%;
	}
  .section-alert .alert-top {
    padding: 2rem 0 2rem ;
  }
  .section-alert .alert {
    padding: 0 2rem;
  }
  .section-alert .alert-content .alert-title {
    padding: 0 0 2rem 0 ;
  }
}
