.Modal__bg {
  width: 100%;
  min-height: 100%;
  background-color: rgba(11, 54, 125, 1);
}

.Modal__overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  height: 0;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  -webkit-transition-duration: 150ms;
  transition-duration: 150ms;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.Modal__opened {
  opacity: 1;
  height: 100%;
}

.Modal__opened .Modal__modal {
  -webkit-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}

.Modal__modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

.Modal__body {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow-y: scroll;
}

.Modal__btnClose {
  position: absolute;
  top: calc(10% - 0px);
  right: calc(10% - 30px);
  padding: 30px;
  cursor: pointer;
}

.Modal__iconClose {
  width: 26px;
  height: 2px;
  background-color: #fff;
}

.Modal__iconClose.Modal__right {
  -webkit-transform: rotate(45deg) translate(6px, -5px) scale(1.2, 1.01);
  transform: rotate(45deg) translate(6px, -5px) scale(1.2, 1.01);
}

.Modal__iconClose.Modal__left {
  -webkit-transform: rotate(-45deg) translate(6px, 5px) scale(1.2, 1.01);
  transform: rotate(-45deg) translate(6px, 5px) scale(1.2, 1.01);
}

.Modal__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: calc(100% - 80px);
  padding: 40px 0;
  color: #fff;
}

.Simple__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  line-height: 2;
}

.Simple__item {
  width: 90%;
  font-size: 14px;
}

@media (max-width: 480px) {
  .Simple__item {
    font-size: 14px;
  }
}

@media (min-width: 480px) and (max-width: 1024px) {
  .Simple__item {
    font-size: 16px;
  }
}

.Simple__notes {
  width: 300px;
  margin: 0 auto;
  margin-top: 16px;
  text-align: left;
  letter-spacing: 0.3em;
  font-size: 12px;
}

@media (min-width: 480px) and (max-width: 1024px) {
  .Simple__notes {
    width: 460px;
    font-size: 12px;
  }
}

@media (min-width: 1024px) {
  .Simple__notes {
    width: 540px;
    font-size: 14px;
  }
}
